stac-utils / stac-sentinel

STAC Collections and Items for Sentinel data
MIT License
7 stars 3 forks source link

Status of `sentinel-s2-l1c` collection on Earth Search #4

Open fnattino opened 2 years ago

fnattino commented 2 years ago

Hello, not sure whether this is the proper place to raise this issue - apologies in advance if this is not the case and hope you can redirect me to a more suitable place :)

I have noticed that the sentinel-s2-l1c collection from the Earth Search STAC API endpoint does not seem to include items after June this year (actually for some tiles which I am interested in, data from May seems to be already missing):

from pystac_client import Client

client = Client.open("https://earth-search.aws.element84.com/v0")

client.search(collections=["sentinel-s2-l1c"], datetime="2021-06-07").matched()
# 11932

client.search(collections=["sentinel-s2-l1c"], datetime="2021-06-09/2021-11-15").matched()
# 0  

The sentinel-s2-l2a and the sentinel-s2-l2a-cogs collections correctly return the most recent items.

I was wondering whether this is due to some technical issues or whether the L1C collection is being dropped and won't be updated anymore.

Really thanks in advance!

fnattino commented 2 years ago

Just realised this is duplicate of https://github.com/sat-utils/sat-stac-sentinel/issues/32