uxarray
uxarray copied to clipboard
Xarray extension for unstructured climate and global weather data analysis and visualization.
Closes #786 ## Overview Adds two UXarray-styled colormaps: diverging and sequential. Diverging:  Sequential:  ## Expected Usage ```Python import uxarray as ux uxds = ux.open_dataset(grid_path, data_path) uxds[v1].plot(cmap=ux.cmaps.sequential, backend='matplotlib') uxds[v1].plot(cmap=ux.cmaps.diverging,...
## Overview Support a general area weighted conservative remapping method. The overlap between source and destinations will be computed and used as a weight for obtaining the remapped value. ##...
Currently, we are excplicitly converting our data array into Numpy with the `.values` method. https://github.com/UXARRAY/uxarray/blob/778e05e27af90a27e4ea81d84e137a33b6064a7a/uxarray/core/dataarray.py#L896 To support Dask, we should avoid this.
Closes #858 ## Overview * [User guide section on Accurate Spherical Operators ](https://uxarray--856.org.readthedocs.build/en/856/user-guide/accurate-helpers.html)
Closes #893, #894, #895 ## Overview * Introduces Unstructured to Structured Remapping using a Nearest Neighbor approach * New [user guide section](https://uxarray--892.org.readthedocs.build/en/892/user-guide/remapping-u2s.html) on Unstructured to Structured Remapping ## Expected Usage...
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...
Add support for quickly converting a UxDataset to a structured grid by providing the lattitude and longitude values of a structured grid.
Add support for quickly converting a UxDataArray to a structured grid by providing the lattitude and longitude values of a structured grid.
Support remapping between Unstructured to Structured grids using a nearest neighbor approach
We mention "intended" functionality in our README. This should be updated to outline our "Supported" functionality. Below is the section I am referring to. ## UXarray Functionality The following intended...