How does earthaccess handle 'point' data? #417
Unanswered
BriannaLind
asked this question in
Q&A
Replies: 1 comment
-
|
@BriannaLind you found the very first dataset that was published by ORNL DAAC :). Spatial subsetting seems to work. See an example below, which will return 7 granules: import earthaccess
auth = earthaccess.login(strategy="netrc")
granules = earthaccess.search_data(
count=-1,
doi='10.3334/ORNLDAAC/1',
bounding_box=(-97, 38, -95, 40) ,
temporal=('1985-01-01','1985-06-01')
) |
Beta Was this translation helpful? Give feedback.
0 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.
-
while looking at outputs from NASA-Earth-Data I noticed that bounding box information was missing for this dataset from ORNL @rupesh2 ..... that got me wondering, how does earthaccess handle point data and does the lack of a bounding box affect querability negatively?@giswqs
Beta Was this translation helpful? Give feedback.
All reactions