Philip Chmielowiec
Philip Chmielowiec
Occasionally, the range of my longitude values may be in the range of `[0, 360]` instead of `[-180, 180]`. I'm wondering if it would be useful to allow for a...
Closes #XXX ## Overview * This PR takes parts from #785 and implements them using the recent additions from #989 * Implements the API for the ``UxDataArray.zonal_mean()`` function using the...
Closes #945 ## Overview * Preserves coordinates when indexing a `UxDataArray`
Closes #XXX ## Overview ## Expected Usage ```Python import uxarray as ux grid_path = "/path/to/grid.nc" data_path = "/path/to/data.nc" uxds = ux.open_dataset(grid_path, data_path) # this is how you use this function...
Hi @philipc2, I have another small question about something that doesn't seem to be working. I would like to use the `.where()` functionality with a uxds array, something like ~~~...
## Overview The highest resolution grid benchmarked by our current benchmarks is a 120km MPAS Ocean Grid. To get a better idea of UXarray's performance at scale, benchmarks should be...
Add support for computing and storing the sign of each edge, which is necessary for correctly calculating the gradient and handling flows. For reference, an MPAS specific implementation can be...
Closes #980, #981 ## Overview ## Expected Usage ```Python import uxarray as ux grid_path = "/path/to/grid.nc" data_path = "/path/to/data.nc" uxds = ux.open_dataset(grid_path, data_path) # this is how you use this...
Closes #956 ## Overview
Add support for computing the finite-volume curl at each vertices using a vector on the cell edges. An MPAS specific example can be found [here ](https://github.com/theweathermanda/MPAS_utilities/blob/ab88e21400089eb4a6d9f3416962e0f449103e8c/mpas_calc_operators.py#L377)