uxarray icon indicating copy to clipboard operation
uxarray copied to clipboard

Xarray extension for unstructured climate and global weather data analysis and visualization.

Results 242 uxarray issues
Sort by recently updated
recently updated
newest added

Closes #786 ## Overview Adds two UXarray-styled colormaps: diverging and sequential. Diverging: ![image](https://github.com/user-attachments/assets/de19d238-a8c5-4044-a46c-8618d49a063c) Sequential: ![image](https://github.com/user-attachments/assets/a3f7e3dd-9f30-4896-a09b-215496e49433) ## 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. ##...

new feature

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.

scalability

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.

new feature

Add support for quickly converting a UxDataArray to a structured grid by providing the lattitude and longitude values of a structured grid.

new feature

Support remapping between Unstructured to Structured grids using a nearest neighbor approach

new feature

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...

documentation