Skip to content

Commit e03a1ab

Browse files
committed
Add additional sentinel product
1 parent 1c88113 commit e03a1ab

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

demo/api/backends/earthsearch_backend.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818
MAX_MAX_ITEMS = 100
1919

2020
LANDSAT_COLLECTION_ID = "landsat-c2-l2"
21-
SENTINEL_COLLECTION_ID = "sentinel-2-l1c"
21+
SENTINEL_L1C_COLLECTION_ID = "sentinel-2-l1c"
22+
SENTINEL_L2A_COLLECTION_ID = "sentinel-2-l2a"
2223

23-
PRODUCT_IDS = [LANDSAT_COLLECTION_ID, SENTINEL_COLLECTION_ID]
24+
PRODUCT_IDS = [LANDSAT_COLLECTION_ID, SENTINEL_L1C_COLLECTION_ID, SENTINEL_L2A_COLLECTION_ID]
2425

2526
# The api works by pretending the past is the future. It takes a users search request and searches for data in the
2627
# past. This is the amount of time in the past we search from a request.

0 commit comments

Comments
 (0)