Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing image #44

Open
waltersdan opened this issue May 23, 2024 · 0 comments
Open

Missing image #44

waltersdan opened this issue May 23, 2024 · 0 comments

Comments

@waltersdan
Copy link

Hello,
I have run into an L2A image that is missing from the STAC, but is available on Sentinel Hub EO browser. I confirmed there is an equivalent L1C image.

Minimum reproducible code below. The missing image is from 2023-08-08.
AWS path from Sentinel Hub: s3://sentinel-s2-l2a/tiles/36/W/VB/2023/8/8/0/

from pystac_client import Client
geom = {'type': 'Polygon',
 'coordinates': [[[33.24979,68.99431],
   [33.24979,69.07646],
   [32.99250,69.07646],
   [32.99257, 68.994314],
   [33.24979,68.99431]]]}
date_query = '2023-08-07/2023-08-12'

url = r"https://earth-search.aws.element84.com/v1"
cat = Client.open(url)
params = {
    "intersects": geom,
    "collections": ["sentinel-2-l2a"],
    "datetime": date_query,
}

search = cat.search(**params)

items = search.item_collection()

for item in items:
    print(item.get_datetime())

Output:

2023-08-12 09:41:21.248000+00:00
2023-08-12 09:41:15.222000+00:00
2023-08-07 09:41:21.520000+00:00
2023-08-07 09:41:15.500000+00:00

There should be an image for 2023-08-08, but it is missing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant