MODIS product MYD10A1 two tiles are missing: #121
aftabhunzai
started this conversation in
General
Replies: 1 comment 2 replies
-
I think https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061/items/MYD10A1.A2007357.h15v16.061.2021081061440 is the tile you're looking for, right? from pystac_client import Client
from datetime import datetime
import shapely.geometry
catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1')
longitude=-79
latitude=-75
bbox = [-172.7631,-80, -58.4517, -70]
location = shapely.geometry.Point(longitude,latitude)
collection="modis-10A1-061"
datetime='2007-12-23 07:00:10-06:00'
search = catalog.search(
collections=[collection],
datetime=str(datetime),
query={
"modis:vertical-tile": {"eq": 16},
"modis:horizontal-tile": {"eq": 15},
}
)
items = search.item_collection()
len(items) That returns two items, because the item seems to have been reprocessed at some point. I got 0 results with your |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to access tiles v16h15 and v16h20 using following code:
To access v16h15 tile I used bbox and location but both didn't work.
It looks like both tiles are missing as I am getting different tiles. Please check and help.
Beta Was this translation helpful? Give feedback.
All reactions