-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandsat_handler.py
53 lines (44 loc) · 1.4 KB
/
landsat_handler.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# AWS Lambda function for returning list of landsat scenes ids for input path/row
import json
import boto3
event = {
"queryStringParameters": {
"path": "143",
"row": "37"
}
}
def landsat_handler(event):
# parse event
path = event['queryStringParameters']['path']
row = event['queryStringParameters']['row']
path = path.zfill(3)
row = row.zfill(3)
if int(path) > 233 or int(row) > 233:
return bad_request()
# search landsat s3 bucket
s3 = boto3.client('s3', region_name='us-west-2')
params = {
'Bucket': 'landsat-pds',
'Prefix': f'c1/L8/{path}/{row}/',
'Delimiter': '/'
}
dirs = []
s3Response = s3.list_objects_v2(**params)
prefixes = s3Response['CommonPrefixes']
for prefix in prefixes:
raw_dir = list(prefix.values())
dirs.append(raw_dir[0])
# construct body of response object
landsatResponse = {}
landsatResponse['Dirs'] = dirs
landsatResponse['Message'] = 'Hello from lambda land'
# construct http response object
responseObject = {}
responseObject['statusCode'] = 200
responseObject['headers'] = {}
responseObject['headers']['Content-Type'] = 'application/json'
responseObject['body'] = json.dumps(landsatResponse)
# return
return responseObject
responseObject = add_zero(path)
print(responseObject)