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
trafficstars

Creation of a better storage area for testing files, similar to `xarray.testing` or geocat-datafiles _Originally posted by @anissa111 in https://github.com/UXARRAY/uxarray/discussions/88#discussioncomment-3335742_

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

Apply a neighborhood filter within a circular radius r to a UxDataset or UxDataArray. Issue #930 ## Overview This is kind of like `uxarray.UxDataArray.inverse_distance_weighted_remap` , but the neighborhood is defined...

new feature

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)

### Proposed new feature or change: This "minimal" reader would only reads corner nodes and face node connectivity, ignoring other info in grid file. #953

new feature

Our test directory and scripts were initially intended to have a test script in correspondence with each code scripts we have. For some while, we seem to have lost track...

Discussion initialized in https://github.com/UXARRAY/uxarray/issues/512#issuecomment-1765325749 Thank you for sharing your approach to handling the connectivity issue. Your method resonates with certain concepts from computational geometry, specifically the idea of mesh arrangements....