EMIT data is missing from CMR

Use this Forum to find information on, or ask a question about, NASA Earth Science data.
Post Reply
zxdawn
Posts: 3
Joined: Mon Sep 25, 2023 11:41 am America/New_York
Answers: 0
Been thanked: 1 time

EMIT data is missing from CMR

by zxdawn » Mon Sep 25, 2023 11:45 am America/New_York

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

Tags:

LP DAAC - dgolon
User Services
User Services
Posts: 296
Joined: Mon Sep 30, 2019 10:00 am America/New_York
Answers: 0
Has thanked: 18 times
Been thanked: 2 times
Contact:

Re: EMIT data is missing from CMR

by LP DAAC - dgolon » Tue Sep 26, 2023 9:53 am America/New_York

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.

zxdawn
Posts: 3
Joined: Mon Sep 25, 2023 11:41 am America/New_York
Answers: 0
Been thanked: 1 time

Re: EMIT data is missing from CMR

by zxdawn » Thu Sep 28, 2023 11:22 am America/New_York

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())
```

zxdawn
Posts: 3
Joined: Mon Sep 25, 2023 11:41 am America/New_York
Answers: 0
Been thanked: 1 time

Re: EMIT data is missing from CMR

by zxdawn » Thu Oct 05, 2023 4:08 am America/New_York

This code works well:

url = 'https://cmr.earthdata.nasa.gov/stac/LPCLOUD/?page=2'
collections = ['EMITL1BRAD.v001']

Post Reply