uxarray
uxarray copied to clipboard
Xarray extension for unstructured climate and global weather data analysis and visualization.
https://github.com/nschloe/pyfma/pull/17
### Version latest ### How did you install UXarray? Pip ### What happened? https://uxarray.readthedocs.io/en/latest/installation.html referenced here: Documentation section has a installation hyperlink https://pypi.org/project/uxarray/ ### What did you expect to happen?...
Closes #865 ## Overview * Adds the `merge_duplicate_node_indices()` function that replaces the index of nodes that have the exact latitude and longitude to only reference one node. ## Expected Usage...
Closes #822 ## Overview Added user guide notebook on parallel loading with Dask; and workflow examples with E3SM output with visualization and calculations. ## PR Checklist **General** - [x] An...
Closes #826 ## 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...
### Proposed new feature or change: ### Summary As discussed thoroughly in [#785](#785), many of the geometry functions were implemented before multiple refactors and changes to data structures, and they...
### Version v2024.06 ### How did you install UXarray? Conda ### What happened? Our project performs geometric operations on unstructured grids on a unit sphere, which means all points on...
Some of our testing grids include duplicates of certain nodes, meaning that there existing multiple nodes that share the same latitude and longitude location, but each have their own index...
Description The hard coded file path in `test/test_api.py::TestAPI::test_open_mf_dataset` is unsafe. I added a test file to `test/meshfiles/ugrid/outCSne30/outCSne30_test2.nc` from Paul, and it failed. Details The test test/test_api.py::TestAPI::test_open_mf_dataset is failing after I...