-
Notifications
You must be signed in to change notification settings - Fork 17
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
Integration over time #457
Comments
Interesting use case. In a similar scenario, I did retrieve first the temporal labels and then compute the date difference client side, since I didn't know how to do everything using openEO processes. |
You could compute the differences only once and pass them in via the context into reduce_dimension, right?
Would this be faster/better? Additional questions:
|
A use case requires us to sum a band over an irregular time dimension. To do this correctly, the number of days between observations needs to be taken into account.
The question here is if we require a new process, for convenience, or if we can define a process graph that solves this.
This is somewhat similar to: https://docs.xarray.dev/en/stable/generated/xarray.DataArray.integrate.html
I made an attempt to solve this with existing processes, but couldn't verify it yet because our backend doesn't support all the details yet. It also has the downside that it is hard to optimize for the backend: we apply a function over the whole time dimension, while we only need information about the next label:
The text was updated successfully, but these errors were encountered: