uxarray
uxarray copied to clipboard
Xarray extension for unstructured climate and global weather data analysis and visualization.
(optional) A DataArray of indices indicating faces that are neighboring each face. `Grid.Mesh2_face_links: int` DataArray of size (`nMesh2_face`, `MaxNumNodesPerFace`)
(optional; not in UGRID standard) A DataArray of indices storing the indices of the parent face from grid A, available when this Grid is a supermesh. `Grid.Mesh2_overlapfaces_a: int` DataArray of...
(optional; not in UGRID standard) A DataArray of indices storing the indices of the parent face from grid B, available when this Grid is a supermesh. `Grid.Mesh2_overlapfaces_b: int` DataArray of...
Construct the super mesh, consisting of all face edges from Grids self and other. `Grid Grid.super_mesh(self, Grid other)`
### Proposed new feature or change: If an inputted dataset already contains face areas, we should recognize and parse them, performing any unit conversions if necessary.
### Proposed new feature or change: Allow for the following groupings to obtain Dimension, Coordinate, & Connectivity Variables as a dict-like container or similar implementation. ```Python Grid.dims Grid.coords Grid.spherical_coords Grid.cartesian_coords...
### Proposed new feature or change: Plot the geometry of the unstructured grid (i.e. mesh) without any data variables, using internal connectivity information to derive the necessary data structures to...
### Proposed new feature or change: As our test suite has grown to over 100 tests, we need to consider our approach to testing in order to maintain our development...
### Proposed new feature or change: Rasterized version #483
### Proposed new feature or change: Create a usage example on how to plot data variables by triangulating the coordinates they are mapped to.