Assuming that I don't want to compute calculations outside of Medunda and in other languages,
If I want to get 1 daily thetao value between 0-25 meters depth for the entire adriatic sea, I currently have 2 options:
- download broad datasets (e.g 0-250 meters) -> reducer with
average_between_layes to get the average of thetao for each cell between 0-25 -> get out of medunda and do the calculations to get the average across all the cells
- download datasets with correct depths (0-25) -> use reducer with
calculate_average but double axis use seems not supported:
Args:
data (xr.Dataset): Input dataset. Must include ``depth``,
``latitude``, ``longitude``, and ``time`` coordinates as required
by the chosen axis.
axis (str): Axis along which to compute the average. One of
"depth", "space"``, or "time".
I think there is the potential to expand calculate_average to accomodate a min-depth and max-depth argument and double-axis use, incorporating the functionalities of average_between_layers and reducing the steps required to get a temporal timeseries
Assuming that I don't want to compute calculations outside of Medunda and in other languages,
If I want to get 1 daily thetao value between 0-25 meters depth for the entire adriatic sea, I currently have 2 options:
average_between_layesto get the average of thetao for each cell between 0-25 -> get out of medunda and do the calculations to get the average across all the cellscalculate_averagebut double axis use seems not supported:I think there is the potential to expand
calculate_averageto accomodate amin-depthandmax-depthargument and double-axis use, incorporating the functionalities ofaverage_between_layersand reducing the steps required to get a temporal timeseries