-
Notifications
You must be signed in to change notification settings - Fork 5
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
load_stac: omit time interval in STAC API search request if no temporal extent provided #950
Closed
bossie opened this issue
Nov 26, 2024
· 3 comments
· Fixed by Open-EO/openeo-python-driver#330 or #952
Closed
load_stac: omit time interval in STAC API search request if no temporal extent provided #950
bossie opened this issue
Nov 26, 2024
· 3 comments
· Fixed by Open-EO/openeo-python-driver#330 or #952
Labels
Comments
bossie
added a commit
to Open-EO/openeo-python-driver
that referenced
this issue
Nov 28, 2024
bossie
added a commit
to Open-EO/openeo-python-driver
that referenced
this issue
Nov 28, 2024
bossie
added a commit
to Open-EO/openeo-python-driver
that referenced
this issue
Nov 28, 2024
* assert default temporal extent Open-EO/openeo-geopyspark-driver#950 * quick fix to allow omitting datetime from item search request Open-EO/openeo-geopyspark-driver#950
bossie
added a commit
that referenced
this issue
Nov 28, 2024
bossie
added a commit
that referenced
this issue
Nov 28, 2024
Quick-fixed by:
This should:
|
@VincentVerelst: this is available on CDSE dev (someone aborted the deploy to staging). Please try it out; the STAC API request should be in the logs (INFO level) so you can check for the presence of the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If a date-time interval is passed to a STAC API
search
request, VITO STAC APIs will only consider including items for which thedatetime
property is set; items that lack adatetime
and instead specify astart_datetime
/end_datetime
will not be returned even if they intersect the given interval.As discussed, the STAC API will probably be adapted to include these items but seeing as it takes time to include these changes in the upstream repo, a quicker fix would be to omit the time interval from the
search
request; in this case the STAC API will return all items, as one would expect.One obstacle is the fact that without a given temporal extent, OpenEO will fall back to ["1970-01-01", "2070-01-01"] pretty early in the process graph evaluation.
The text was updated successfully, but these errors were encountered: