uxarray
uxarray copied to clipboard
Xarray extension for unstructured climate and global weather data analysis and visualization.
### Proposed new feature or change: Support remapping from unstructured to structured grids.
### Proposed new feature or change: Introduce the ability to load in a regular structured grid and represented it as unstructured.
### Proposed new feature or change: All types of grid reductions for averaging are handled by `uxda.topological_mean()`, eliminating the need for `uxda.nodal_average()`
### Proposed new feature or change: Support performing reductions on grid dimensions, taking into account connectivity information. Support the following reductions: * `mean` * `max` * `min` * `prod` *...
### Proposed new feature or change: Apply reductions (i.e. `mean`) on the faces that surround each node, storing the result on each node.
### Proposed new feature or change: Apply reductions (i.e. `mean`) on the faces that saddle each edge, storing the result on each edge.
### Proposed new feature or change: Apply reductions (i.e. `mean`) on the edges that surround each node, with the result stored on each node.
### Proposed new feature or change: Apply reductions (i.e. `mean`) on the nodes that saddle each edge, with the result stored on each edge.,
### Proposed new feature or change: Apply reductions (i.e. `mean`) on the nodes that surround each face, storing the result on each face.
### Proposed new feature or change: Currently, our grid system supports faces where all edges are defined as Great Circle Arcs (GCA). However, this approach may not fully meet the...