Skip to content

Commit

Permalink
Merge pull request #9 from brazil-data-cube/hotfix/stac_compose
Browse files Browse the repository at this point in the history
fix code to search in cbers STAC
  • Loading branch information
gracielle-ch authored May 21, 2020
2 parents 93d2eb4 + 5086964 commit 0df8d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forest_monitor/stac_compose/business.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def search_kepler_stac(cls, url, collection, bbox, time=False):
padrao = "L4"
for i in features:

if padrao in i['id']:
if i.get('id') and padrao in i['id']:
#print(i['id'])
listL4.append(i)

Expand Down

0 comments on commit 0df8d05

Please sign in to comment.