Skip to content

R-CF/zarr_conventions_cs

Repository files navigation

Coordinate Set Convention

Description

Zarr arrays have a mandatory shape attribute with an element for each array dimension and the element value giving the length of the dimension. This establishes an indexing space with which elements in the array can be addressed. Zarr is agnostic with regards to the semantics of dimensions and shape elements. This convention presents a schema to attach coordinate values to the dimensions of the array shape and its elements. In common language, this is usually referred to as a coordinate system.

This convention implements the relevant parts of the OGC standard Referencing by Coordinates, but applied to the Zarr specification and extended to dimensions beyond the spatio-temporal domain. The central concept is the coordinate reference system (CRS), which links a coordinate system to a reference frame (formerly named a "datum", which registers the coordinate system to some location on Earth). The coordinate system has axes and properties such as units-of-measure and direction. These concepts are all still "abstract": they define a model to describe the locations of points on Earth, but the coordinates of the points themselves are not there. A coordinate set is a materialization of a CRS: where the CRS is a conceptual model, the coordinate set is the specific set of axes and their coordinate values that apply to a specific Zarr array. More formally (section 7.1 of the OGC standard):

A coordinate is one of n scalar values that define the position of a single point.

A coordinate tuple is an ordered list of coordinates that define the position of a single point. The coordinates within a coordinate tuple are mutually independent. The number of coordinates in a tuple is equal to the dimension of the coordinate space.

A coordinate set is a collection of coordinate tuples referenced to the same coordinate reference system. For a coordinate set, one CRS identification or definition may be associated with the coordinate set and then all coordinate tuples in that coordinate set inherit that association.

This convention implements a coordinate set for Zarr arrays based on the OGC model for referencing by coordinates. It implements a subset of the standard (a CRS is always assumed to have a Cartesian coordinate system, for instance), but it extends it to accommodate non-spatial dimensions that are commonly found in higher-dimensional Zarr arrays. The design of this convention is reversed from the OGC description. Whereas in the OGC standard the CRS is the principal object to which other objects relate, in this convention the principal object is the coordinate set which has the coordinate system and one or more CRSs embedded in its structure.

The top-level property is cs and is usually placed at the root attributes level of the Zarr array metadata. The cs property has an array of crs objects that jointly describe the coordinate set. Coordinate sets may be shared between multiple arrays in a single Zarr store. This is achieved by placing an array of crs objects in a group and referencing that group and its crs attribute from a Zarr array.

This convention uses the proj: convention to describe the CRS, including the reference frame linking the coordinate system to Earth. See the Examples section on how these two conventions can be combined.

Compositing a coordinate set

In the OGC standard, a CRS describes a spatial (2D, 3D), vertical (1D) or temporal (1D) domain. Each CRS has its own coordinate system. In this convention multiple CRSs are composited to create a single coordinate system that has the same rank as the Zarr array whose coordinate set is represented. The cs property of a Zarr array describes one or more CRSs in its crs array property. Each crs object in that array describes one or more axes and each axis has one or more sets of coordinates for the positions along the axis. Jointly, these crs objects must have the same rank as the Zarr array and the composition of the coordinates from the axes constitute the coordinate set of the Zarr array.

The crs objects may be shared between multiple Zarr arrays by defining the crs objects in the metadata of a Zarr group. The Zarr array will then have a reference to the crs objects in its cs object. The composition of the coordinate set is otherwise exactly the same. As an example, a Zarr group may define a crs object for the planar X-Y coordinates and another one for a vertical atmospheric profile. A Zarr array with surface temperature will reference just the X-Y crs from the Zarr group, while another Zarr array in the same store using the same X-Y crs object can composite both CRSs to describe vertical temperature profiles. A temporal CRS may be added to store time series for either Zarr array. The specific parameters that the Zarr array derives from these CRSs then materializes the coordinate set. Note that this arrangements mimics the composition of CRSs in the OGC standard.

The Zarr arrays must have their dimension_names attribute set. Each entry in the dimension_names attribute must map to the name attribute of an axis defined by the set of crs objects that the Zarr array refers to. Inversely, the same requirement is in place: every axis in the set of crs objects that the Zarr array refers to must be present in the dimension_names attribute of the Zarr array. The exception to this rule is for axes that have a length of 1 and which are defined in a crs object; these do not have to be present in the shape or dimension_names attributes of the Zarr array, although it is legal to do so.

CF Metadata Conventions

The objects that make up this convention are in part implemented using the CF Metadata Conventions for coordinate types and their associated objects. In practice this means that netCDF files that apply the CF Metadata Conventions may be stored in Zarr using this convention without loss of information. The following features of the CF Metadata Conventions are supported by this convention:

  • Coordinate types are largely supported, with minor differences. Latitude and longitude coordinates may use other units ("degrees_north" and "degrees_east" are not true units and they are not used here) and are identified by axis abbreviation and direction. Parametric vertical coordinates are not yet supported. Time coordinates are supported for all calendars except explicitly defined calendars. A discrete axis is an ordinal axis here.
  • Scalar coordinate variables are represented as regular axes of length 1. These do not necessarily have to be present in the shape and dimension_names attributes of the Zarr array.
  • Bounds for one-dimensional coordinate variables are an attribute of the coordinates of each axis.
  • String-valued auxiliary coordinate variables are included in the definition of an axis, which may have multiple sets of coordinates. This is particularly useful for ordinal axes but it may be applied to any type of axis.

This convention uses Zarr-specific and/or industry-standard alternatives for several constructs from the CF Metadata Conventions:

Some other parts of the CF Metadata Conventions can be addressed with other Zarr conventions, such as Ancillary Data and External Variables that can be encoded using the ref convention also used by this convention.

This convention is not a Zarr implementation of the full CF Metadata Conventions and many features are not supported. It is the responsibility of the user of this convention to ensure that other relevant parts of a CF-compatible netCDF are adequately addressed, such as user attributes and any other features present in the netCDF file.

Motivation

  • Consistent and explicit description of the semantics of axes and coordinate values for n-dimensional Zarr arrays.
  • Compact representation of axes and coordinate values.
  • Versatile, expressive and flexible constructs for coordinate reference systems, axes and coordinates.
  • Standards-based, easy integration with or translation by existing tools.
  • Extensible design to allow for multiple representations of axes and coordinate values.

Inheritance Model

The cs convention is to a single array. The crs object may also be defined in a group so that it can be referenced by multiple arrays located elsewhere in the Zarr store. When using inheritance, the array has a reference to the crs attribute with a path to the group where it is defined. Inheritance is by fully-qualified reference relative to the referencing array.

Convention Registration

The convention must be registered in the zarr_conventions attribute of the group or array:

{
  "zarr_conventions": [
    {
      "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/schema.json",
      "spec_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/README.md",
      "uuid": "e4dbf0b7-7a00-4ce6-b23e-484292014ab4",
      "name": "cs",
      "description": "Coordinate system for arrays"
    }
  ]
}

Application

This convention can be used with these parts of the Zarr hierarchy:

  • Group
  • Array

Group properties

A Zarr group can declare any number of crs objects. These will be referenced by key by Zarr arrays elsewhere in the store. The crs property is placed at the root of the group attributes.

Field Name Type Description Required
crs object Keyed crs object. No

This field holds any number of [CRS object]s as a key-value pair. The key is not necessarily identical to the name of the crs. See the "Group" definition of the "CRU monthly data" example, below, for its formulation.

This field MUST have at least one crs object if it is given.

Array properties

The cs property is placed at the root attributes level of an array. It is an object with the following fields:

Field Name Type Description Required
name string Name of the CS. No
crs [CRS object] Array of crs objects. Yes
id proj: object Unique identifier of the CS. No

Irrespective of the order in which crs objects are defined, the composite set of axes resulting from combining the objects in the crs array MUST be interpreted in the order in which the axis names appear in the dimension_names attribute of the array to which the composited CRS is applied for addressing elements in the Zarr array. Axes of length 1 that are not reflected in the array dimension_names attribute may be managed in an application-specific manner.

name

The name field is a descriptive name of the coordinate set. The name MUST follow standard Zarr requirements for object names.

crs

An array of crs objects or references to a crs object in a group elsewhere in the Zarr store.

id

The unique identifier of the composite CRS, encoded using the proj: convention. This field SHOULD be included if the coordinate set is composited from multiple crs objects for the spatio-temporal domain. If this field is provided it overrides any CRS identifiers from CRSs in the crs array.

CRS object

The crs object defines the coordinate system of a single CRS. A Zarr array may have multiple CRSs to fully encompass its coordinate system.

Field Name Type Description Required
name string Name of the CRS. No
axes [Axis object] Array of axis properties. Yes
id proj: object Unique identifier of the CS. No

name

The name field is a descriptive name of the coordinate reference system. If given, the name MUST follow standard Zarr requirements for object names.

axes

An array of axis objects.

id

The unique identifier of the CRS, encoded using the proj: convention. This field SHOULD be included if the cs object does not include an id field. If the id field of the cs object is included, this identifier SHOULD be omitted.

Axis object

The axis object defines all the properties of an individual axis.

Field Name Type Description Required
name string Name of the axis. Yes
abbreviation string Abbreviation of the axis name. Conditional
direction string Direction of the axis. Conditional
coordinates [Coordinates object] Array of coordinates for the axis. Conditional
attributes object Any other attributes of the axis. No

name

A short name that describes this axis. The name MUST be present in the dimension_names attribute of the array, unless the axis is single-valued. The name MAY NOT be used by any other axis in the CRS, including across composited CRSs.

abbreviation

The abbreviation of the axis. It MUST be provided for axes that are in the spatio-temporal domain, using one of the values "X", "Y", "Z" or "T", as appropriate. There may be only one occurrence of any of the abbreviations in the CRS, including across composited CRSs. It MUST be omitted otherwise.

direction

The direction of increasing coordinate values. The direction MUST be given for an axis using numeric coordinate values; it MAY be given for a string-valued or ordinal axis if the axis has a natural direction, it SHOULD be omitted otherwise. The value of the "direction" field MUST be taken from Table 48 of the OGC Standard "Referencing by Coordinates".

For interoperability and ease of interpretation, the following arrangement, as appropriate, is strongly recommended:

abbreviation typical name direction
"X" "longitude", "easting" "east"
"Y" "latitude", "northing" "north"
"Z" "pressure", "depth", "elevation" "up", "down" *
"T" "time" "future", "past" *
others Any name Any appropriate value or omitted

* Depending on which way increasing coordinate values go. For instance, pressure and depth are positive down, elevation is positive up.

In image data with a typical coordinate system made up of the (X, Y) coordinate values of the upper-left corner and a grid cell size, the direction for the Y axis will still be "north" but the "increment" value in the "values" parameter of the Y axis will be negative.

coordinates

An array of coordinates objects.

attributes

Any additional attributes of the axis. This convention does not require or place restrictions on any of these attributes. The interpretation of the attributes is left to the application.

Coordinates object

An axis may have multiple sets of coordinates. A typical scenario would be an axis representing categorical data where there are multiple sets of categories.

If this field is omitted, the axis is ordinal, i.e. a sequence 0..n-1 with n being the length of the dimension of the shape that this axis refers to. This field MUST be specified for all other types of axes.

Field Name Type Description Required
name string Name of the set of coordinates. No
unit Unit object Unit-of-measure of the coordinates. Conditional
time Time object Time definition for temporal coordinates. Conditional
values Values object The values of the coordinates. Yes
boundaries Boundaries object Boundary values of the coordinates. Conditional
attributes object Any other attributes of the coordinates. No

name

A short name that describes this set of coordinates. The name MAY NOT be used by any other set of coordinates for this axis.

Unit object

The unit-of-measure of coordinate values can be expressed as a simple string or using the uom convention. It MUST be specified for numeric coordinate values, it MAY NOT be specified for temporal or string-valued coordinates or ordinal axes.

When the unit is conventional and commonly understood a simple string value suffices, such as "m" or "kg m-2 s-1". If the unit is uncommon or more complex, use of the uom convention is recommended.

Time object

Temporal coordinates are specified using a reference date-time and a calendar, using the specification of the CF Metadata Conventions. It MUST be specified for an axis representing the temporal domain, it MAY NOT be specified otherwise.

Field Name Type Description Required
reference string Reference date-time and unit from which time coordinates are calculated. Yes
calendar string Name of a calendar. No

reference

The reference date-time from which time coordinates are calculated. This takes the form of "<time unit> since <timestamp>", e.g. "days since 1949-12-01T12:00:00".

calendar

A calendar to use for the calculations. This can be a common calendar or a model calendar as used in climate projection data sets. This field is recommended but it may be omitted, in which case the calendar will be application-defined, typically "standard" or "proleptic_gregorian".

Values object

The values the coordinates can be represented in different ways. One, and only one, of the below fields MUST be specified.

Field Name Type Description Required
regular [number] Initial coordinate value and increment. Conditional
external string Path to a 1-dimensional array with coordinate values. Conditional
explicit [] JSON array of coordinate values. Conditional

regular

This method is preferred when the numeric coordinate values are equally spaced and thus monotonically increasing or decreasing. The JSON array consists of the coordinate of the first element along the dimension (at shape index 0) of the axis, followed by the increment to make subsequent coordinate values, possibly negative. The increment may not be 0.

external

When coordinate values are irregular or for long string-valued axes, the coordinate values should be supplied in a 1-dimensional array elsewhere in the Zarr store. This parameter gives the path to the array with the coordinate values. That array MUST have one dimension in its shape, whose value is identical to the dimension in the shape of this array that the axis refers to.

explicit

For short axes (max. 20 ~ 25 elements) and single-valued axes this parameter supplies the coordinate values. For axes having a greater length use of the "external" object is recommended.

Boundaries object

By default, numeric coordinate values represent a point in the coordinate space. If the coordinate is representative for a finite extent in the coordinate space of the axis, the boundary values of the coordinates specify the extent. The boundary values can be represented in different ways. One, and only one, of the below fields MUST be specified if the coordinate values represent a finite extent; this clause MUST be omitted if the coordinates represent a point.

Boundary values are only applicable to coordinates expressed in numeric values. They SHOULD NOT be specified for string-type or ordinal axes.

Field Name Type Description Required
regular [number] JSON array with the extent below and above the coordinate value. Conditional
external ref Reference to an array providing boundary values. Conditional

regular

When the extent around coordinate values is constant over the coordinate space of the axis, for lower and higher values separately, the boundary values are regular and expressed as a JSON array with the lower and higher extent, respectively, in units of the coordinate values.

external

When the extent around coordinate values is irregular, the boundary values should be given in a Zarr array external to this array or group. This field contains a reference with the path to a 2-dimensional array with boundary values, with the first dimension having a length of 2 for the lower and upper boundary values, respectively, and the second dimension having a length equal to the dimension of the shape that the axis refers to.

Examples

The below examples focus on the specification of the cs attribute for various types of files - other parts of the Zarr array specification, including general attributes, are omitted for brevity.

Typical CMIP6 data set at daily resolution

Data set: tasmin_day_GFDL-ESM4_historical_r1i1p1f1_gr1_19260605-19491231

A typical CMIP6 data set contains a single data variable. The coordinate system can then be specified in the attributes of the Zarr array. The spatial and temporal dimensions are regular and specified in-line. A single-valued axis "height" ("scalar axis" in the CF Metadata Conventions) is not present in the Zarr array but can still be specified.

{
  "zarr_format": 3,
  "node_type": "array",
  "shape": [8605, 180, 288],
  "dimension_names": ["time", "lat", "lon"],
  "attributes": {
    "zarr_conventions": [
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/schema.json",
        "name": "cs"
      }
    ],
    "cs": {
      "crs": [
        {
          "name": "WGS84",
          "axes": [
            {
              "name": "lon",
              "abbreviation": "X",
              "direction": "east",
              "coordinates": [
                {
                  "unit": "degrees",
                  "values": { "regular": [0.625, 1.25] },
                  "boundaries": { "regular": [-0.625, 0.625] }
                }
              ]
            },
            {
              "name": "lat",
              "abbreviation": "Y",
              "direction": "north",
              "coordinates": [
                {
                  "unit": "degrees",
                  "values": { "regular": [-89.5, 1] },
                  "boundaries": { "regular": [-0.5, 0.5] }
                }
              ]
            }
          ],
          "id": { "proj:code": "EPSG:4326" }
        },
        {
          "name": "Temporal scale based on the 'noleap' model calendar.",
          "axes": [
            {
              "name": "time",
              "abbreviation": "T",
              "direction": "future",
              "coordinates": [
                {
                  "time": {
                    "reference": "days since 1850-01-01",
                    "calendar": "noleap"
                  },
                  "values": { "regular": [27895.5, 1] },
                  "boundaries": { "regular": [-0.5, 0.5] }
                }
              ]
            }
          ]
        },
        {
          "name": "Height above surface for standard meteorological measurements.",
          "axes": [
            {
              "name": "height",
              "abbreviation": "Z",
              "direction": "up",
              "coordinates": [
                {
                  "unit": "meter",
                  "values": { "explicit": [2] }
                }
              ]
            }
          ]
        }
      ]
    }
  }
}

Typical CMIP6 data set at monthly resolution

Data set: ts_Amon_GFDL-ESM4_historical_r1i1p1f1_gr1_18500116-19491216

As the previous example, less the single-valued axis, but now the temporal dimension and its boundary values are irregular and stored as external Zarr arrays in the same store.

{
  "zarr_format": 3,
  "node_type": "array",
  "shape": [1200, 180, 288],
  "dimension_names": ["time", "lat", "lon"],
  "attributes": {
    "zarr_conventions": [
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/schema.json",
        "name": "cs"
      },
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_ref/main/schema.json",
        "name": "ref"
      }
    ],
    "cs": {
      "crs": [
        {
          "name": "WGS84",
          "axes": [
            {
              "name": "lon",
              "abbreviation": "X",
              "direction": "east",
              "coordinates": [
                {
                  "unit": "degrees",
                  "values": { "regular": [0.625, 1.25] },
                  "boundaries": { "regular": [-0.625, 0.625] }
                }
              ]
            },
            {
              "name": "lat",
              "abbreviation": "Y",
              "direction": "north",
              "coordinates": [
                {
                  "unit": "degrees",
                  "values": { "regular": [-89.5, 1] },
                  "boundaries": { "regular": [-0.5, 0.5] }
                }
              ]
            }
          ]
        },
        {
          "name": "Temporal scale based on the 'noleap' model calendar.",
          "axes": [
            {
              "name": "time",
              "abbreviation": "T",
              "direction": "future",
              "coordinates": [
                {
                  "time": {
                    "reference": "days since 1850-01-01",
                    "calendar": "noleap"
                  },
                  "values": {
                    "external": { "node": "time" }
                  },
                  "boundaries": {
                    "external": { "node": "time_bnds" }
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  }
}

CRU Monthly data

Data set: cru_ts4.07.1901.2022.tmp.dat

The CRU data files usually have a single data variable but an additional variable to indicate the number of stations contributing data to the local interpolated value. The additional variable has the same coordinate system as the principal variable and the cs object is thus shared between the two variables.

Group: Defining the coordinate system

{
  "zarr_format": 3,
  "node_type": "group",
  "attributes": {
    "zarr_conventions": [
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/schema.json",
        "name": "cs"
      },
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_ref/main/schema.json",
        "name": "ref"
      }
    ],
    "crs": {
      "WGS84": {
        "axes": [
          {
            "name": "lon",
            "abbreviation": "X",
            "direction": "east",
            "coordinates": [
              {
                "unit": "degrees",
                "values": { "regular": [-179.75, 0.5] }
              }
            ]
          },
          {
            "name": "lat",
            "abbreviation": "Y",
            "direction": "north",
            "coordinates": [
              {
                "unit": "degrees",
                "values": { "regular": [-89.75, 0.5] }
              }
            ]
          }
        ],
        "id": { "proj:code": "EPSG:4326" }
      },
      "standard_calendar": {
        "axes": [
          {
            "name": "time",
            "abbreviation": "T",
            "direction": "future",
            "coordinates": [
              {
                "time": {
                  "reference": "days since 1900-01-01",
                  "calendar": "standard"
                },
                "values": {
                  "external": { "node": "time" }
                }
              }
            ]
          }
        ]
      }
    }
  }
}

Array: Referencing the coordinate system

{
  "zarr_format": 3,
  "node_type": "array",
  "shape": [1464, 360, 720],
  "dimension_names": ["time", "lat", "lon"],
  "attributes": {
    "zarr_conventions": [
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/schema.json",
        "name": "cs"
      },
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_ref/main/schema.json",
        "name": "ref"
      }
    ],
    "cs": {
      "crs": [
        {
          "node": "/",
          "attribute": "/attributes/crs/WGS84"
        },
        {
          "node": "/",
          "attribute": "/attributes/crs/standard_calendar"
        }
      ]
    }
  }
}

HadUK-Grid Climatological data by geographic region

Data set: sun_hadukgrid_uk_river_ann-30y_199101-202012

A climatological dataset by geographic regions, summarised to a single date-time instant. The "time" axis is represented in the Zarr array, even though it has a length of 1.

{
  "zarr_format": 3,
  "node_type": "array",
  "shape": [1, 23],
  "dimension_names": ["time", "geo_region"],
  "attributes": {
    "zarr_conventions": [
      {
        "schema_url": "https://raw.githubusercontent.com/R-CF/zarr_convention_cs/main/schema.json",
        "name": "cs"
      }
    ],
    "cs": {
      "crs": [
        {
          "axes": [
            {
              "name": "geo_region",
              "coordinates": [
                {
                  "values": {
                    "explicit": ["Anglian", "Argyll", "Clyde", "Dee", "Forth", "Humber", "Neagh Bann", "North East Scotland", "North Eastern Ireland", "North Highland", "North West England", "North Western Ireland", "Northumbria", "Orkney and Shetland", "Severn", "Solway", "South East England", "South West England", "Tay", "Thames", "Tweed", "West Highland", "Western Wales"]
                  }
                }
              ]
            }
          ]
        },
        {
          "axes": [
            {
              "name": "time",
              "abbreviation": "T",
              "direction": "future",
              "coordinates": [
                {
                  "time": {
                    "reference": "hours since 1800-01-01",
                    "calendar": "standard"
                  },
                  "values": { "explicit": [1678608] },
                  "boundaries": { "regular": [-4344, 258624] }
                }
              ]
            }
          ]
        }
      ]
    }
  }
}

Known Implementations

If you implement or use this convention, please add your implementation to this list by opening an issue or submitting a pull request.

Acknowledgements

This template is based on the STAC extensions template.

About

Coordinate System convention for Zarr arrays

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from zarr-conventions/template