EMIT data is missing from CMR
EMIT data is missing from CMR
Hi, I can't find the EMIT data collection on https://cmr.earthdata.nasa.gov/stac/LPCLOUD. Is the API down?
Thank you for your help,
Xin
Thank you for your help,
Xin
Filters:
-
- User Services
- Posts: 420
- Joined: Mon Sep 30, 2019 10:00 am America/New_York
- Has thanked: 30 times
- Been thanked: 8 times
- Contact:
Re: EMIT data is missing from CMR
Hello @zxdawn EMIT data are on page two of the CMR STAC API. https://cmr.earthdata.nasa.gov/stac/LPCLOUD?page=2 We are aware of an existing paging issue that makes it appear as if data after page one are missing, we are working with the CMR team to have this issue resolved. I apologize for the inconvenience. Thanks - Danielle
Subscribe to the LP DAAC listserv by sending a blank email to lpdaac-join@lists.nasa.gov.
Sign up for the Landsat listserv to receive the most up to date information about Landsat data: https://public.govdelivery.com/accounts/USDOIGS/subscriber/new#tab1.
Sign up for the Landsat listserv to receive the most up to date information about Landsat data: https://public.govdelivery.com/accounts/USDOIGS/subscriber/new#tab1.
Re: EMIT data is missing from CMR
Thanks for your reply, Danielle. Do you have any idea how to search data by CMR when it's on page 2?
I used this code to search data before and it works well. Any suggestions are welcome ;)
```
from pystac_client import Client
url = 'https://cmr.earthdata.nasa.gov/stac/LPCLOUD/'
collections = ['EMITL1BRAD_001']
bbox = [-99.65, 18.85, -98.5, 19.95]
date_range = "2022-05/2023-08"
catalog = Client.open(url)
search = catalog.search(
collections=collections,
bbox=bbox,
datetime=date_range,
limit=100
)
print('Matching STAC Items:', search.matched())
```
I used this code to search data before and it works well. Any suggestions are welcome ;)
```
from pystac_client import Client
url = 'https://cmr.earthdata.nasa.gov/stac/LPCLOUD/'
collections = ['EMITL1BRAD_001']
bbox = [-99.65, 18.85, -98.5, 19.95]
date_range = "2022-05/2023-08"
catalog = Client.open(url)
search = catalog.search(
collections=collections,
bbox=bbox,
datetime=date_range,
limit=100
)
print('Matching STAC Items:', search.matched())
```
Re: EMIT data is missing from CMR
This code works well:
url = 'https://cmr.earthdata.nasa.gov/stac/LPCLOUD/?page=2'
collections = ['EMITL1BRAD.v001']
url = 'https://cmr.earthdata.nasa.gov/stac/LPCLOUD/?page=2'
collections = ['EMITL1BRAD.v001']