Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ recognizing unstructured grid model outputs. We picked the name "UXarray"
## Features

* ``Grid`` class for storing grid information and providing grid-specific functionality
* Support for reading UGRID, MPAS, ESMF, ICON, GEOS-CS, SCRIP, and EXODUS grid formats
* Support for reading UGRID, MPAS, ESMF, ICON, GEOS-CS, SCRIP, FESOM2, and EXODUS grid formats
* Extension of xarray's ``DataArray`` and ``Dataset`` classe to support unstructured grid operations
* ``uxarray.UxDataArray`` inherits ``xarray.DataArray`` and is attached to a ``Grid`` instance through the ``.uxgrid`` accessor
* ``uxarray.UxDataset`` inherits ``xarray.Dataset`` and is attached to a ``Grid`` instance through the ``.uxgrid`` accessor
Expand Down
1 change: 1 addition & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ I/O & Conversion
Grid.from_dataset
Grid.from_file
Grid.from_topology
Grid.from_fesom2_ascii
Grid.to_xarray
Grid.to_geodataframe
Grid.to_polycollection
Expand Down
13 changes: 13 additions & 0 deletions docs/user-guide/grid-formats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ NetCDF file format. As of the most recent release, the following grid formats ar
* ESMF
* GEOS CS
* ICON
* FESOM2

While each of these formats can be encoded in the UGRID conventions, the amount of information that is parsed from them
varies. The following sections describes how each format is converted into the UGRID conventions and what variables
Expand Down Expand Up @@ -142,6 +143,18 @@ References
* https://mpimet.mpg.de/en/research/modeling
* https://scivis2017.dkrz.de/hd-cp-2/en-icon_grid.pdf

FESOM2
======
The Finite volumE Sea Ice-Ocean Model (FESOM2) is a Multi-resolution ocean general circulation
model that solves the equations of motion describing the ocean and sea ice using finite-volume methods
on unstructured computational grids. The model is developed and supported by researchers at the
Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research (AWI), in Bremerhaven, Germany.

References
----------
* https://fesom2.readthedocs.io/en/latest/index.html#


Parsed Variables
================

Expand Down
Loading