-
Notifications
You must be signed in to change notification settings - Fork 13
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
Use case for retrieving a slice (e.g. of time) within a certain range #105
Comments
@jerstlouis This is verging onto PubSub territory. How about using that? |
This is one of our main use cases. Thanks @jerstlouis for writing this up! I'd add that the time range in the second case would be kind of flattened, i.e., the server would respond with a mosaic including all the contained data with for example the latest on top. |
Coverages SWG call:
|
see WCPS 1.1 for enhanced coverage search options. |
Coverages SWG call: Formulate this as a permission allowing servers to respond to fill in data from the closest time. |
Addressed by #122 |
A couple of thoughts on this:
Just to note that I think WMS1.3 has the capability to get the nearest map image to a requested time, although I'm not sure how much this was adopted. |
@jonblower We had to address |
yes, generally speaking interpolation along time is an interesting challenge. On ocasion of such novel undertakings it often turns out that people understand their data (and consequences of operations) less than they would think. More often than not we have to explain consequences to data providers, believe it or not. WCPS can accommodate the different views on what users could want, based on concisely stating that desire. BTW, at some time literature was requested, here are 160+ publications: https://www.faculty.jacobs-university.de/pbaumann/iu-bremen.de_pbaumann//pubs.php |
In GeoServer WMS we allow to use the nearest time, but also allow the admin to specify a maximum search range, it could be something like "1 hour", or an asymmetrical one like "5 days in the past, up to present, but no future". If the match happens outside that range, an exception is thrown. Current issue, the search range is not published anywhere. |
A very common use case for satellite imagery is retrieving a single slice of imagery covering a certain region, but with some flexibility in the temporal dimension, considering the fact that satellites capture images of different areas at different times (e.g. every 5 days).
The current WCS and OGC API - Coverages are not well suited to this basic use case, and this is a challenge to both adoption and developing conforming implementations that support the users' needs.
This use case could be addressed by supporting either (or both):
In the first case of specifying a single time coordinate, the client may wish to indicate to the server to either:
In the second case of specifying a time range, the client may wish to indicate to the server to either:
This would also work very well in in addition to filtering individual scenes by their properties, e.g. the cloud cover, season, time of day, so that these criterias could be considered in ignoring data not fitting these criteria and/or to prefer some data.
A filtering extension using CQL has been considered for this, although a different type of filtering extension using CQL as well was also proposed as a mechanism to filter the actual values being returned.
It would not be an issue for two different types of filtering extensions to make use of CQL, but the two types of filtering should be properly distinguished.
I realize STAC is currently being used for this type of functionality, but I would find a Coverages extension supporting this directly as part of a request to be extremely convenient and useful for server and client developers as well as users.
The text was updated successfully, but these errors were encountered: