Skip to content

Examples

solson-nws edited this page Jul 13, 2023 · 32 revisions

*** Work in Progress ***

The following examples provide sample EDR paths, some context for what resource the URL path locates, and some idealized sample JSON. These are intended to give a developer or analyst specific details regarding how the EDR API works with various data types.

Contents


To Be Added

  • A climate model or weather reanalysis might be accessed at a point or within a bounding rectangle.
  • Geospatial gridded data such as a digital elevation model might be accessed along a transect.
  • Weather information from meteorological stations might be queried within a specified polygon.
  • An ensemble of forecast model data might be accessed for a specific location.

Template {the following section is for development of new ones}

High level summary of the technical use cases shown in the example.

/collections/{collectionID}

Unroll for JSON Example

{
  "paste your example here"
}

/collections/{collectionID}/...

Summarize the query pattern of the example in a few sentences

Unroll for JSON Example

{
 "paste your example response document here"
}

/collections/{collectionID}/...

An additional query endpoint on the same collection

/collections/{collectionID}/.../{...}

maybe explain a little more here.

All EDR APIs

All EDR APIs will have the following two end points.

/

Provides basic information about the API

/collections

Lists all collections including collection info.

Weather reanalysis

In this example, a simple weather reanalysis dataset is made available via EDR. A person may want to access a daily timeseries of precipitation and min/max temperature for some time period for a point or polygonal area. For this example, the University of Idaho GridMet dataset has been used for inspiration.

/collections/gridmet

The collection document includes the following elements:

  • links: links to other representations of this document.
  • collections: information about the current collection.
    • id: the id in the {collectionID} parameter of the current resource path
    • title: a title for the collection
    • description: an extended description of the collection
    • keywords: useful keywords for cataloging
    • extent: a bounding extent
    • crs: the coordinate reference system(s) supported by the collection
    • distanceunits: the distance units used by the collection
    • outputformat: supported output formats of the collection
    • parameters: parameters available from the collection
    • links: paths available relative to the collection
Unroll for JSON Example

{
  {
    "links": [
      {
        "href": "http://www.example.org/edr/collections/",
        "hreflang": "en",
        "rel": "self",
        "type": "application/json"
      },
      {
        "href": "http://www.example.org/edr/collections/",
        "hreflang": "en",
        "rel": "alternate",
        "type": "text/html"
      },
      {
        "href": "http://www.example.org/edr/collections/",
        "hreflang": "en",
        "rel": "alternate",
        "type": "application/xml"
      }
    ],
    "collections": [
      {
        "id": "gridmet",
        "title": "Gridded Meteorological Data",
        "description": "Gridded historical meteorological data from the University of Idaho GridMet dataset",
        "keywords": [
          "temperature",
          "precipitation",
          "daily",
          "weather"
        ],
        "extent": {
          "spatial": {
            "bbox": [
              -15.0,
              48.0,
              5.0,
              62.0
            ],
            "crs": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          },
          "temporal": {
            "interval": [
              "1979-01-01T00:00:00Z/2021-11-26T00:00:00Z"
            ],
            "trs": "TIMECRS[\"DateTime\",TDATUM[\"Gregorian Calendar\"],CS[TemporalDateTime,1],AXIS[\"Time (T)\",future]"
          }
        },
        "crs": [
          {
            "name": "CRS84",
            "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          }
        ],
        "distanceunits": [
          "km",
          "miles"
        ],
        "outputformat": [
          {
            "name": "NetCDF"
          },
          {
            "name": "CoverageJSON"
          }
        ],
        "parameters": {
          "minimum_temperature": {
            "type": "Parameter",
            "description": {
              "en": "Minimum Daily Temperature"
            },
            "unit": {
              "label": {
                "en": "Degrees C"
              },
              "symbol": {
                "value": "C",
                "type": "http://www.example.org/edr/metadata/units/c"
              }
            },
            "observedProperty": {
              "id": "http://www.example.org/edr/metadata/obsprop/min_temp",
              "label": {
                "en": "Minimum Daily Temperature"
              }
            },
            "measurementType": {
              "method": "minimum",
              "period": "P1D"
            }
          },
          "maximum_temperature": {
            "type": "Parameter",
            "description": {
              "en": "Maximum Daily Temperature"
            },
            "unit": {
              "label": {
                "en": "Degrees C"
              },
              "symbol": {
                "value": "C",
                "type": "http://www.example.org/edr/metadata/units/c"
              }
            },
            "observedProperty": {
              "id": "http://www.example.org/edr/metadata/obsprop/max_temp",
              "label": {
                "en": "Maximum Daily Temperature"
              }
            },
            "measurementType": {
              "method": "maximum",
              "period": "P1D"
            }
          },
          "precipitation": {
            "type": "Parameter",
            "description": {
              "en": "Total Daily Precipitation"
            },
            "unit": {
              "label": {
                "en": "mm"
              },
              "symbol": {
                "value": "mm",
                "type": "http://www.example.org/edr/metadata/units/mm"
              }
            },
            "observedProperty": {
              "id": "http://www.example.org/edr/metadata/obsprop/daily_precip",
              "label": {
                "en": "Total Daily Precipitation"
              }
            },
            "measurementType": {
              "method": "sum",
              "period": "P1D"
            }
          }
        },
        "links": [
          {
            "href": "http://www.example.org/service-doc",
            "hreflang": "en",
            "rel": "service-doc",
            "type": "text/html",
            "title": "Service Documentation"
          },
          {
            "href": "http://www.example.org/license",
            "hreflang": "en",
            "rel": "license",
            "type": "text/html",
            "title": "license"
          },
          {
            "href": "http://www.example.org/edr/collections/gridmet/position",
            "hreflang": "en",
            "rel": "data",
            "type": "position",
            "title": "position"
          },
          {
            "href": "http://www.example.org/edr/collections/gridmet/radius",
            "hreflang": "en",
            "rel": "data",
            "type": "radius",
            "title": "radius"
          },
          {
            "href": "http://www.example.org/edr/collections/gridmet/area",
            "hreflang": "en",
            "rel": "data",
            "type": "area",
            "title": "area"
          }
        ]
      }
    ]
  }
}

/collections/gridmet/position

The position query provides access to the collection data at a given position for a defined set of parameters and time range.

/collections/gridmet/position?coords=POINT(-90 40)&datetime=2018-02-12T00:00:00Z/2018-02-15T00:00:00Z&parameter-name=precipitation,minimum_temperature,maximum_temperature&f=CoverageJSON

Unroll for JSON Example

{
  "type": "Coverage",
  "domain": {
    "type": "Domain",
    "domainType": "PointSeries",
    "axes": {
      "x": {
        "values": [-90]
      },
      "y": {
        "values": [40]
      },
      "t": {
        "values": ["2018-05-13", "2018-05-14", "2018-05-15", "2018-05-16", "2018-05-17", "2018-05-18", "2018-05-19", "2018-05-20", "2018-05-21", "2018-05-22", "2018-05-23", "2018-05-24", "2018-05-25", "2018-05-26", "2018-05-27", "2018-05-28", "2018-05-29", "2018-05-30", "2018-05-31", "2018-06-01", "2018-06-02", "2018-06-03", "2018-06-04", "2018-06-05", "2018-06-06", "2018-06-07", "2018-06-08", "2018-06-09", "2018-06-10", "2018-06-11", "2018-06-12", "2018-06-13", "2018-06-14", "2018-06-15", "2018-06-16", "2018-06-17", "2018-06-18", "2018-06-19", "2018-06-20", "2018-06-21", "2018-06-22", "2018-06-23", "2018-06-24", "2018-06-25", "2018-06-26", "2018-06-27", "2018-06-28", "2018-06-29", "2018-06-30", "2018-07-01", "2018-07-02", "2018-07-03", "2018-07-04", "2018-07-05", "2018-07-06", "2018-07-07", "2018-07-08", "2018-07-09", "2018-07-10", "2018-07-11", "2018-07-12", "2018-07-13", "2018-07-14", "2018-07-15", "2018-07-16", "2018-07-17", "2018-07-18", "2018-07-19", "2018-07-20", "2018-07-21", "2018-07-22", "2018-07-23", "2018-07-24", "2018-07-25", "2018-07-26", "2018-07-27", "2018-07-28", "2018-07-29", "2018-07-30", "2018-07-31", "2018-08-01", "2018-08-02", "2018-08-03", "2018-08-04", "2018-08-05", "2018-08-06", "2018-08-07", "2018-08-08", "2018-08-09", "2018-08-10", "2018-08-11", "2018-08-12", "2018-08-13"]
      }
    },
    "referencing": [
      {
        "coordinates": [
          "x",
          "y"
        ],
        "system": {
          "type": "GeographicCRS",
          "id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
        }
      },
      {
        "coordinates": [
          "t"
        ],
        "system": {
          "type": "TemporalRS",
          "calendar": "Gregorian"
        }
      }
    ]
  },
  "parameters": {
    "precipitation_amount": {
      "type": "Parameter",
      "description": {
        "en": "long name for var"
      },
      "unit": {
        "label": {
          "en": "units for var"
        },
        "symbol": {
          "value": "symbol",
          "type": "uri for symbol"
        }
      },
      "observedProperty": {
        "id": "uri for observed property",
        "label": {
          "en": "label for obs prop"
        }
      }
    }
  },
  "ranges": {
    "precipitation_amount": {
      "type": "NdArray",
      "dataType": "float",
      "shape": [93],
      "axisNames": ["t"],
      "values": [0, 2.7, 1, 0, 0, 0.9, 0, 23.3, 1.4, 0, 0, 0, 15.7, 0, 0, 11.8, 20.6, 6.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 40.3, 1.1, 0, 0, 0.7, 0, 0, 0, 0, 21.7, 18.8, 6.2, 1.2, 0, 0, 0.6, 0.4, 0, 9.8, 0, 0, 2, 0, 5.7, 0, 9.3, 0, 0, 0, 0, 0, 0, 0, 0.7, 36.6, 0, 0.9, 0, 0, 6.9, 0, 0, 0, 0, 0, 0, 0, 0, 6.8, 37.7, 2.9, 13.1, 0, 1.2, 0, 0, 0, 1, 1.6, 0, 0, 0, 0, 0, 0]
    }
  }
}

/collections/gridmet/area

The area query provides access to the collection data in a given polygonal area for a defined set of parameters and time range.

/collections/gridmet/area?coords=POLYGON((-90 40,-88 40,-88 38,-90 38,-90 40))&datetime=2018-02-12T00:00:00Z/2018-02-15T00:00:00Z&parameter-name=precipitation,minimum_temperature,maximum_temperature&f=CoverageJSON

Unroll for JSON Example

{
  {
   "type": "Coverage",
   "domain": {
     "type": "Domain",
     "domainType": "Grid",
     "axes": {
       "x": {
         "values": [-89.975, -89.9333, -89.8917, -89.85, -89.8083, -89.7667, -89.725, -89.6833, -89.6417, -89.6, -89.5583, -89.5167]
       },
       "y": {
         "values": [38.9833, 38.9417, 38.9, 38.8583, 38.8167, 38.775, 38.7333, 38.6917, 38.65, 38.6083, 38.5667, 38.525]
       },
       "t": {
         "values": ["2018-02-13T00:00:00Z", "2018-02-14T00:00:00Z"]
       }
     },
     "referencing": [
       {
         "coordinates": [
           "x",
           "y"
         ],
         "system": {
           "type": "GeographicCRS",
           "id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
         }
       },
       {
         "coordinates": [
           "t"
         ],
         "system": {
           "type": "TemporalRS",
           "calendar": "Gregorian"
         }
       }
     ]
   },
   "parameters": {
     "precipitation_amount": {
       "type": "Parameter",
       "description": {
         "en": "long name for var"
       },
       "unit": {
         "label": {
           "en": "units for var"
         },
         "symbol": {
           "value": "symbol",
           "type": "uri for symbol"
         }
       },
       "observedProperty": {
         "id": "uri for observed property",
         "label": {
           "en": "label for obs prop"
         }
       }
     }
   },
   "ranges": {
     "precipitation_amount": {
       "type": "NdArray",
       "dataType": "float",
       "shape": [2, 12, 12],
       "axisNames": [
         "t",
         "y",
         "x"
       ],
       "values": [1, 0.8, 0.4, 0, 0, 0.4, 0.6, 0.7, 0.9, 1.1, 1.4, 1.5, 1.2, 0.9, 0.4, 0, 0, 0.4, 0.8, 1.1, 1.3, 1.6, 1.8, 1.9, 1.6, 1.4, 1, 0.8, 0.8, 1, 1.3, 1.5, 1.6, 2.1, 2.3, 2.2, 2.3, 2.2, 1.9, 1.7, 1.6, 1.7, 1.8, 2, 2.2, 2.8, 2.8, 2.7, 2.9, 2.8, 2.5, 2.3, 2.3, 2.5, 2.8, 3.2, 3.3, 3.5, 3.4, 3.3, 2.9, 2.8, 2.5, 2.5, 2.6, 3.2, 4.1, 4.8, 4.8, 4.3, 4, 3.8, 2.6, 2.5, 2.5, 2.8, 3.1, 3.8, 4.8, 5.4, 5.3, 4.8, 4.4, 4.2, 2.6, 3.1, 3.6, 3.7, 3.6, 4, 4.6, 5, 4.9, 4.6, 4.3, 4.2, 2.6, 3.2, 3.5, 3.7, 3.8, 4, 4.4, 4.5, 4.4, 4.2, 4, 4.3, 2.7, 3, 3.2, 3.4, 3.7, 3.9, 4.2, 4.2, 4.1, 3.9, 3.9, 4.2, 2.5, 2.6, 3, 3.2, 3.4, 3.5, 3.6, 3.5, 3.5, 3.6, 3.8, 4, 2.7, 2.8, 2.8, 2.9, 2.9, 2.9, 3, 3.2, 3.3, 3.4, 3.6, 3.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.3, 0.3, 0.3, 0.4, 0, 0, 0, 0, 0, 0, 0.3, 0.5, 0.6, 0.5, 0.4, 0.5, 0, 0, 0, 0, 0.4, 0.5, 0.7, 0.9, 1, 0.8, 0.7, 0.8, 0, 0.3, 0.5, 0.5, 0.8, 1, 1, 1.2, 1.4, 1.3, 1.2, 1.3, 0.3, 0.6, 0.9, 1.1, 1.2, 1.3, 1.2, 1.2, 1.4, 1.3, 1.2, 1.1, 0.4, 0.8, 1.2, 1.1, 1.1, 1, 1, 1.1, 1.1, 0.8, 0.6, 0.5, 0.7, 0.9, 1.1, 0.8, 0.7, 0.6, 0.5, 0.5, 0.7, 0.5, 0.6, 0.8, 0.7, 0.7, 0.6, 0.4, 0.4, 0.5, 0.5, 0.5, 0.6, 0.5, 0.7, 1.2, 0, 0.3, 0.3, 0.4, 0.5, 0.4, 0.5, 0.4, 0.5, 0.8, 1.4, 1.9, 0, 0.4, 0.3, 0.4, 0.5, 0.5, 0.5, 0.7, 1.1, 1.9, 2.3, 2.4, 0.5, 0.5, 0.5, 0.8, 1, 1.1, 1.1, 1.5, 1.9, 2.3, 2.2, 2.1]
     }
   }
 }
}

Digital Elevation Model

Retrieval of values from a gridded data source at a point, along a transect, or within a polygonal area is common when working with either continuous or categorical data sources. In this example, the EDR collection is a digital elevation model which represents land elevation on a rectilinear "raster" grid. Retrieval of elevation from such a data set along a transect, such as a cross section through a river valley is very common. The examples below illustrate common use cases using a demonstration EDR server (examples retrieved on 2020-05-27).

/collections/dem

/collections/dem

Unroll for JSON Example

{
  "id": "dem",
  "title": "Global digital elevation data",
  "description": "Copernicus Digital Elevation Model (DEM) was accessed on May 24, 2022 from https://registry.opendata.aws/copernicus-dem.",
  "keywords": [
    "Height",
    "description",
    "licence",
    "collection",
    "position",
    "radius",
    "area",
    "trajectory"
  ],
  "links": [
    {
      "href": "http://www.edr.demo/collections",
      "hreflang": "en",
      "rel": "self",
      "type": "application/json"
    },
    {
      "href": "http://www.edr.demo/collections?f=html",
      "hreflang": "en",
      "rel": "alternate",
      "type": "text/html"
    },
    {
      "href": "http://www.edr.demo/collections?f=xml",
      "hreflang": "en",
      "rel": "alternate",
      "type": "application/xml"
    },
    {
      "href": "https://copernicus-dem-30m.s3.amazonaws.com/readme.html",
      "hreflang": "en",
      "rel": "service-doc",
      "type": "text/html"
    },
    {
      "href": "https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf",
      "hreflang": "en",
      "rel": "licence",
      "type": "text/html"
    }
  ],
  "extent": {
    "spatial": {
      "bbox": [
        [
          -180.0,
          -89.9,
          180.0,
          89.9
        ]
      ],
      "crs": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
    }
  },
  "data_queries": {
    "position": {
      "link": {
        "href": "http://www.edr.demo/collections/dem/position",
        "hreflang": "en",
        "rel": "data",
        "variables": {
          "title": "Position query",
          "query_type": "position",
          "output_formats": [
            "CoverageJSON"
          ],
          "default_output_format": "CoverageJSON",
          "crs_details": [
            {
              "crs": "EPSG:4326",
              "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
            }
          ]
        }
      }
    },
    "radius": {
      "link": {
        "href": "http://www.edr.demo/collections/dem/radius",
        "hreflang": "en",
        "rel": "data",
        "variables": {
          "title": "Radius query",
          "description": "Radius query",
          "query_type": "radius",
          "output_formats": [
            "CoverageJSON",
            "GeoTiff"
          ],
          "default_output_format": "CoverageJSON",
          "within_units": [
            "km",
            "miles"
          ],
          "crs_details": [
            {
              "crs": "EPSG:4326",
              "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
            }
          ]
        }
      }
    },
    "area": {
      "link": {
        "href": "http://www.edr.demo/collections/dem/area",
        "hreflang": "en",
        "rel": "data",
        "variables": {
          "title": "Area query",
          "query_type": "area",
          "output_formats": [
            "CoverageJSON",
            "GeoTiff"
          ],
          "default_output_format": "CoverageJSON",
          "crs_details": [
            {
              "crs": "EPSG:4326",
              "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
            }
          ]
        }
      }
    },
    "trajectory": {
      "link": {
        "href": "http://www.edr.demo/collections/dem/trajectory",
        "hreflang": "en",
        "rel": "data",
        "variables": {
          "title": "Trajectory query",
          "query_type": "trajectory",
          "output_formats": [
            "CoverageJSON"
          ],
          "default_output_format": "CoverageJSON",
          "crs_details": [
            {
              "crs": "EPSG:4326",
              "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
            }
          ]
        }
      }
    },
    "locations": {
      "link": {
        "href": "http://www.edr.demo/collections/dem/locations",
        "hreflang": "en",
        "rel": "data",
        "variables": {
          "title": "Locations query",
          "query_type": "locations",
          "output_formats": [
            "CoverageJSON",
            "GeoTiff"
          ],
          "default_output_format": "CoverageJSON",
          "crs_details": [
            {
              "crs": "EPSG:4326",
              "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
            }
          ]
        }
      }
    }
  },
  "crs": [
    "EPSG:4326"
  ],
  "output_formats": [
    "CoverageJSON"
  ],
  "parameter_names": {
    "Height": {
      "type": "Parameter",
      "description": "Height above MSL",
      "unit": {
        "label": "m",
        "symbol": {
          "value": "m",
          "type": "http://www.edr.demo/metadata/units/m"
        }
      },
      "observedProperty": {
        "id": "http://vocab.nerc.ac.uk/standard_name/height_above_mean_sea_level/",
        "label": "Height above MSL"
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    }
  }
}

/collections/dem/position

Example position request:

http://www.edr.demo/collections/dem/position?coords=POINT(-105.496 39.740)&parameter-name=Height&crs=EPSG:4326&f=CoverageJSON

Unroll for JSON Example

{
  "type": "Coverage",
  "domain": {
    "type": "Domain",
    "domainType": "Point",
    "axes": {
      "x": {
        "values": [
          -105.496
        ]
      },
      "y": {
        "values": [
          39.74
        ]
      }
    },
    "referencing": [
      {
        "coordinates": [
          "x",
          "y"
        ],
        "system": {
          "type": "GeographicCRS",
          "id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
        }
      }
    ]
  },
  "parameters": {
    "Height": {
      "type": "Parameter",
      "description": {
        "en": "Height above MSL"
      },
      "observedProperty": {
        "id": "http://vocab.nerc.ac.uk/standard_name/height_above_mean_sea_level/",
        "label": {
          "en": "Height above MSL"
        }
      }
    }
  },
  "ranges": {
    "Height": {
      "type": "NdArray",
      "dataType": "integer",
      "values": [
        2283
      ]
    }
  }
}

/collections/dem/radius

In the radius query, the server will return a geotiff or CoverageJSON response. Here we show a screen capture of the geotiff returned.

https://www.edr.demo/collections/dem/radius?coords=POINT(-105.235 39.753)&within=20&within-units=km&parameter-name=Height&crs=EPSG:4326&f=GeoTiff

image

/collections/dem/area

http://www.edr.demo/collections/dem/area?coords=POLYGON((-105.2554 39.7591,-105.2282 39.7591,-105.2282 39.7412,-105.2554 39.7412,-105.2554 39.7591))&parameter-name=Height&crs=EPSG:4326&f=CoverageJSON

In the area query, the server will return a geotiff or CoverageJSON response. Here we show the CoverageJSON response from the above request.

Unroll for JSON Example

{
	"type": "Coverage",
	"domain": {
		"type": "Domain",
		"domainType": "Grid",
		"axes": {"x":{"values":[-105.255262,-105.254984,-105.254706,-105.254429,-105.254151,-105.253873,-105.253595,-105.253318,-105.25304,-105.252762,-105.252484,-105.252206,-105.251929,-105.251651,-105.251373,-105.251095,-105.250818,-105.25054,-105.250262,-105.249984,-105.249706,-105.249429,-105.249151,-105.248873,-105.248595,-105.248318,-105.24804,-105.247762,-105.247484,-105.247206,-105.246929,-105.246651,-105.246373,-105.246095,-105.245818,-105.24554,-105.245262,-105.244984,-105.244706,-105.244429,-105.244151,-105.243873,-105.243595,-105.243318,-105.24304,-105.242762,-105.242484,-105.242206,-105.241929,-105.241651,-105.241373,-105.241095,-105.240818,-105.24054,-105.240262,-105.239984,-105.239706,-105.239429,-105.239151,-105.238873,-105.238595,-105.238318,-105.23804,-105.237762,-105.237484,-105.237206,-105.236929,-105.236651,-105.236373,-105.236095,-105.235818,-105.23554,-105.235262,-105.234984,-105.234706,-105.234429,-105.234151,-105.233873,-105.233595,-105.233318,-105.23304,-105.232762,-105.232484,-105.232206,-105.231929,-105.231651,-105.231373,-105.231095,-105.230818,-105.23054,-105.230262,-105.229984,-105.229706,-105.229429,-105.229151,-105.228873,-105.228595,-105.228318]},"y":{"values":[39.75897,39.758692,39.758414,39.758137,39.757859,39.757581,39.757303,39.757026,39.756748,39.75647,39.756192,39.755914,39.755637,39.755359,39.755081,39.754803,39.754526,39.754248,39.75397,39.753692,39.753414,39.753137,39.752859,39.752581,39.752303,39.752026,39.751748,39.75147,39.751192,39.750914,39.750637,39.750359,39.750081,39.749803,39.749526,39.749248,39.74897,39.748692,39.748414,39.748137,39.747859,39.747581,39.747303,39.747026,39.746748,39.74647,39.746192,39.745914,39.745637,39.745359,39.745081,39.744803,39.744526,39.744248,39.74397,39.743692,39.743414,39.743137,39.742859,39.742581,39.742303,39.742026,39.741748,39.74147]}		},
		"referencing": [
			{
				"coordinates": [
					"x",
					"y"
				],
				"system": {
					"type": "GeographicCRS",
					"id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
				}
			}
		]
	},
	"parameters": {
		"Height": {
			"type": "Parameter",
			"description": {
				"en": "Height above MSL"
			},
			"observedProperty": {
				"id": "http://vocab.nerc.ac.uk/standard_name/height_above_mean_sea_level/",
				"label": {
					"en": "Height above MSL"
				}
			},
		}
	},
	"ranges": {
		"Height": {
			"type":"NdArray",
			"dataType":"integer",
			"axisNames":["y","x"],
			"shape":[64,98],"values":[2040,2026,2013,2006,2004,2002,1999,1995,1992,1993,1989,1981,1976,1974,1971,1971,1972,1972,1974,1976,1976,1976,1975,1972,1967,1960,1955,1954,1953,1948,1939,1927,1916,1907,1905,1899,1896,1895,1897,1899,1896,1887,1879,1874,1870,1867,1862,1855,1851,1848,1849,1854,1858,1862,1864,1860,1851,1842,1832,1822,1814,1807,1802,1802,1803,1802,1800,1799,1798,1797,1794,1790,1787,1784,1778,1771,1773,1775,1773,1771,1769,1767,1764,1762,1762,1761,1759,1757,1756,1756,1755,1751,1750,1749,1747,1746,1746,1745,2048,2035,2023,2017,2012,2007,2002,2000,2003,2008,2005,1994,1984,1978,1972,1967,1963,1960,1960,1961,1961,1959,1955,1952,1950,1943,1937,1936,1936,1934,1930,1921,1915,1916,1921,1918,1912,1913,1918,1921,1913,1904,1897,1893,1890,1882,1874,1868,1865,1866,1870,1874,1878,1882,1883,1876,1867,1857,1846,1836,1826,1818,1808,1801,1797,1795,1794,1795,1796,1794,1792,1793,1788,1780,1773,1770,1773,1774,1772,1770,1769,1769,1763,1762,1761,1761,1760,1757,1756,1755,1753,1752,1750,1748,1747,1746,1745,1744,2052,2041,2033,2032,2026,2022,2020,2018,2020,2023,2022,2012,2003,1996,1990,1981,1974,1967,1961,1956,1952,1949,1948,1946,1943,1941,1940,1937,1932,1927,1922,1919,1926,1935,1940,1938,1934,1935,1940,1940,1931,1923,1919,1916,1908,1896,1888,1885,1884,1887,1892,1897,1898,1897,1893,1885,1876,1867,1857,1845,1834,1824,1815,1808,1801,1795,1790,1788,1790,1793,1793,1791,1786,1776,1769,1770,1773,1774,1771,1769,1767,1766,1765,1761,1761,1759,1758,1756,1756,1756,1754,1751,1748,1746,1745,1744,1743,1742,2059,2050,2047,2045,2041,2039,2036,2032,2028,2026,2026,2024,2016,2010,2005,1998,1990,1981,1975,1970,1966,1966,1968,1965,1963,1961,1957,1953,1947,1939,1933,1934,1942,1952,1957,1958,1956,1955,1956,1954,1948,1944,1941,1934,1922,1911,1905,1905,1907,1908,1911,1910,1903,1896,1890,1882,1872,1862,1853,1843,1831,1821,1812,1806,1801,1796,1792,1787,1785,1785,1787,1786,1780,1771,1766,1770,1772,1772,1771,1768,1766,1764,1763,1761,1759,1759,1758,1757,1756,1753,1751,1749,1746,1744,1743,1740,1739,1740,2068,2061,2058,2053,2046,2041,2035,2028,2021,2016,2015,2013,2009,2005,2004,2001,1999,1995,1991,1987,1987,1987,1989,1987,1982,1977,1974,1970,1964,1960,1957,1956,1960,1966,1971,1972,1968,1963,1958,1954,1956,1958,1956,1950,1939,1929,1925,1926,1928,1926,1921,1912,1902,1892,1882,1874,1865,1855,1846,1837,1829,1822,1815,1807,1801,1795,1790,1786,1782,1779,1781,1782,1774,1766,1766,1771,1771,1771,1771,1769,1765,1763,1762,1760,1757,1757,1756,1753,1749,1745,1745,1745,1743,1742,1741,1738,1738,1738,2077,2069,2061,2051,2041,2032,2025,2016,2009,2003,2000,1999,1995,1992,1991,1990,1990,1991,1992,1993,1995,1996,1998,1997,1990,1981,1975,1970,1966,1965,1965,1962,1961,1962,1963,1963,1958,1952,1947,1945,1949,1954,1957,1960,1955,1948,1945,1944,1943,1937,1928,1919,1909,1900,1890,1881,1872,1864,1857,1850,1843,1831,1820,1811,1802,1795,1787,1780,1778,1776,1776,1776,1768,1763,1767,1771,1770,1770,1770,1769,1766,1762,1759,1756,1756,1752,1749,1746,1746,1745,1743,1742,1740,1740,1740,1739,1740,1738,2083,2074,2065,2055,2045,2035,2027,2020,2012,2004,1996,1989,1984,1980,1977,1976,1978,1981,1983,1985,1987,1988,1990,1988,1981,1972,1964,1958,1954,1952,1952,1950,1948,1948,1948,1949,1944,1936,1931,1930,1936,1941,1946,1953,1956,1959,1957,1952,1946,1939,1935,1928,1920,1910,1901,1891,1881,1871,1861,1854,1847,1833,1820,1810,1802,1794,1785,1779,1775,1773,1769,1765,1762,1763,1768,1770,1770,1770,1767,1768,1766,1761,1756,1755,1751,1747,1746,1745,1744,1742,1741,1741,1740,1740,1739,1738,1738,1737,2080,2071,2061,2053,2046,2040,2035,2029,2020,2010,2001,1994,1988,1981,1976,1969,1967,1970,1973,1975,1977,1979,1982,1982,1975,1965,1955,1946,1939,1938,1938,1936,1933,1933,1935,1936,1930,1922,1914,1915,1921,1926,1933,1940,1945,1952,1951,1944,1937,1931,1930,1929,1923,1914,1905,1893,1881,1869,1856,1845,1836,1826,1816,1807,1800,1793,1785,1778,1773,1770,1766,1760,1759,1759,1764,1770,1770,1768,1767,1766,1766,1760,1755,1750,1746,1745,1744,1743,1741,1743,1742,1741,1741,1739,1738,1737,1737,1735,2074,2066,2055,2043,2035,2031,2030,2029,2024,2017,2010,2002,1994,1986,1978,1969,1961,1959,1963,1965,1966,1972,1976,1979,1977,1970,1958,1946,1935,1927,1924,1922,1920,1920,1922,1925,1919,1909,1898,1898,1904,1911,1919,1925,1931,1938,1938,1930,1922,1917,1917,1917,1912,1907,1901,1895,1885,1873,1862,1851,1838,1826,1815,1806,1799,1791,1784,1776,1770,1766,1760,1757,1760,1758,1763,1767,1768,1767,1767,1766,1760,1753,1751,1747,1745,1744,1743,1741,1740,1741,1741,1741,1741,1739,1739,1739,1735,1732,2062,2057,2049,2038,2024,2017,2018,2020,2018,2015,2013,2007,2000,1992,1982,1973,1964,1956,1952,1953,1958,1964,1971,1976,1979,1975,1965,1953,1941,1930,1920,1911,1908,1908,1911,1915,1910,1899,1887,1882,1888,1895,1901,1909,1918,1926,1927,1917,1906,1899,1898,1897,1895,1892,1888,1887,1886,1882,1872,1859,1845,1832,1820,1809,1799,1791,1782,1773,1766,1759,1756,1760,1759,1759,1765,1766,1767,1766,1760,1753,1749,1747,1748,1748,1744,1742,1742,1741,1740,1741,1741,1740,1739,1740,1738,1734,1732,1731,2046,2042,2038,2029,2016,2005,2005,2008,2007,2005,2003,1999,1993,1989,1985,1980,1970,1959,1948,1944,1949,1956,1963,1969,1974,1977,1971,1959,1947,1936,1926,1915,1905,1898,1899,1903,1901,1891,1879,1870,1872,1877,1884,1893,1902,1909,1910,1903,1892,1883,1879,1879,1878,1875,1873,1873,1876,1877,1871,1860,1847,1834,1822,1810,1799,1789,1778,1767,1760,1754,1758,1762,1759,1758,1764,1765,1762,1754,1749,1747,1747,1747,1745,1743,1742,1741,1741,1740,1740,1740,1738,1739,1738,1736,1732,1732,1732,1732,2024,2022,2022,2016,2005,1995,1992,1995,1994,1990,1987,1983,1976,1974,1973,1972,1969,1960,1948,1935,1937,1946,1955,1965,1974,1980,1978,1969,1960,1950,1937,1924,1910,1896,1887,1888,1892,1886,1874,1862,1857,1860,1868,1878,1887,1893,1893,1887,1877,1868,1863,1862,1861,1858,1856,1858,1862,1863,1857,1847,1837,1825,1814,1804,1794,1784,1774,1762,1755,1755,1761,1762,1759,1757,1757,1755,1750,1748,1748,1747,1747,1744,1743,1743,1742,1741,1741,1740,1740,1739,1740,1742,1740,1735,1732,1732,1731,1731,2005,1999,2001,1999,1992,1984,1979,1980,1975,1969,1963,1959,1955,1953,1953,1950,1952,1951,1941,1927,1925,1934,1947,1961,1972,1977,1974,1970,1963,1955,1944,1930,1915,1901,1887,1878,1881,1882,1871,1859,1849,1847,1855,1865,1873,1878,1877,1872,1863,1854,1847,1847,1846,1843,1841,1843,1847,1847,1843,1833,1821,1811,1802,1793,1785,1778,1769,1759,1754,1755,1761,1761,1757,1753,1749,1748,1747,1748,1747,1746,1744,1744,1743,1743,1742,1741,1742,1742,1739,1740,1741,1741,1737,1733,1732,1732,1732,1732,1990,1979,1979,1980,1980,1974,1967,1965,1956,1948,1942,1938,1933,1929,1928,1927,1931,1934,1929,1918,1913,1923,1936,1952,1960,1960,1956,1950,1945,1943,1938,1926,1911,1896,1882,1870,1872,1879,1870,1856,1844,1838,1843,1851,1858,1861,1860,1857,1851,1842,1835,1833,1833,1829,1825,1827,1830,1831,1827,1819,1807,1798,1791,1784,1777,1771,1766,1756,1750,1755,1758,1754,1751,1750,1750,1749,1748,1748,1748,1746,1744,1743,1742,1740,1741,1742,1740,1734,1734,1734,1734,1733,1734,1732,1731,1731,1730,1731,1979,1965,1958,1962,1965,1965,1960,1953,1942,1931,1923,1917,1911,1907,1907,1907,1912,1916,1914,1904,1901,1912,1926,1938,1942,1937,1929,1923,1921,1922,1923,1914,1901,1885,1872,1858,1861,1869,1871,1855,1836,1827,1830,1839,1843,1841,1841,1840,1838,1832,1823,1819,1819,1817,1812,1811,1814,1814,1810,1803,1794,1786,1781,1775,1770,1765,1760,1754,1750,1752,1750,1749,1750,1749,1748,1749,1747,1747,1747,1745,1744,1741,1740,1740,1741,1739,1733,1733,1733,1732,1733,1733,1733,1732,1732,1732,1730,1730,1968,1954,1944,1947,1954,1959,1959,1951,1941,1928,1915,1905,1895,1889,1887,1888,1894,1899,1899,1890,1891,1900,1910,1920,1924,1918,1909,1902,1899,1899,1899,1895,1886,1873,1857,1844,1847,1852,1849,1830,1810,1807,1810,1825,1827,1823,1821,1822,1822,1821,1815,1808,1806,1804,1800,1797,1799,1799,1796,1790,1782,1775,1771,1767,1762,1757,1754,1753,1753,1752,1751,1751,1749,1748,1748,1748,1747,1746,1745,1743,1742,1740,1740,1738,1735,1733,1732,1732,1732,1732,1733,1732,1730,1730,1736,1738,1733,1730,1955,1941,1932,1934,1943,1953,1960,1954,1943,1932,1921,1910,1897,1882,1872,1870,1876,1883,1885,1879,1879,1888,1898,1905,1907,1901,1892,1884,1879,1876,1876,1872,1864,1853,1841,1829,1829,1823,1811,1794,1782,1781,1783,1799,1808,1803,1801,1803,1803,1804,1804,1801,1796,1792,1790,1786,1786,1786,1783,1777,1771,1765,1761,1757,1754,1753,1753,1753,1754,1753,1751,1749,1747,1747,1748,1747,1746,1745,1743,1741,1740,1739,1736,1735,1733,1732,1733,1734,1733,1732,1731,1733,1738,1735,1734,1732,1731,1729,1940,1928,1920,1922,1932,1945,1953,1950,1938,1925,1913,1902,1891,1879,1867,1856,1859,1868,1870,1866,1869,1878,1884,1889,1889,1885,1877,1868,1861,1857,1856,1853,1845,1834,1821,1812,1810,1806,1790,1781,1776,1774,1775,1781,1788,1785,1783,1784,1784,1783,1782,1782,1781,1779,1777,1774,1771,1771,1768,1764,1760,1756,1755,1754,1755,1755,1756,1753,1752,1751,1748,1745,1745,1745,1748,1746,1744,1742,1741,1741,1741,1737,1735,1735,1734,1733,1733,1734,1735,1732,1732,1733,1732,1730,1729,1729,1730,1729,1927,1915,1908,1913,1926,1941,1948,1941,1929,1917,1906,1894,1880,1869,1859,1849,1844,1849,1850,1847,1855,1865,1869,1872,1873,1870,1863,1854,1846,1841,1837,1835,1829,1818,1803,1788,1785,1784,1778,1777,1776,1773,1771,1768,1766,1762,1762,1763,1761,1760,1758,1757,1757,1759,1759,1758,1757,1758,1758,1757,1756,1756,1757,1756,1757,1756,1754,1752,1749,1749,1745,1743,1742,1741,1742,1742,1742,1741,1739,1737,1736,1735,1736,1734,1731,1734,1734,1733,1734,1734,1731,1730,1730,1730,1730,1729,1730,1731,1917,1904,1898,1905,1915,1925,1928,1922,1913,1903,1895,1888,1880,1868,1856,1845,1834,1830,1830,1830,1841,1848,1852,1856,1858,1856,1850,1843,1835,1828,1822,1818,1814,1803,1785,1776,1774,1775,1775,1774,1771,1766,1761,1757,1755,1755,1753,1751,1749,1748,1747,1746,1747,1750,1752,1753,1752,1751,1751,1751,1751,1751,1751,1751,1750,1747,1745,1744,1747,1749,1747,1744,1737,1739,1739,1740,1739,1736,1735,1735,1736,1735,1736,1737,1734,1735,1734,1734,1733,1732,1730,1730,1731,1732,1731,1731,1734,1736,1906,1893,1884,1890,1900,1907,1909,1904,1896,1888,1878,1872,1868,1861,1853,1843,1836,1826,1816,1817,1823,1829,1833,1838,1842,1842,1837,1830,1824,1818,1812,1805,1800,1793,1785,1777,1773,1772,1769,1762,1757,1754,1751,1750,1750,1750,1748,1747,1745,1742,1741,1742,1741,1741,1741,1742,1743,1743,1744,1743,1743,1742,1742,1744,1745,1743,1741,1740,1742,1746,1746,1743,1736,1736,1735,1735,1735,1734,1734,1735,1735,1735,1736,1736,1735,1734,1733,1733,1732,1731,1734,1735,1737,1739,1739,1738,1738,1738,1892,1881,1871,1875,1885,1890,1890,1885,1878,1871,1862,1854,1850,1843,1835,1827,1824,1821,1814,1806,1804,1809,1815,1822,1828,1830,1826,1819,1812,1807,1802,1798,1792,1784,1779,1773,1769,1764,1757,1753,1750,1748,1748,1748,1749,1748,1747,1746,1742,1742,1743,1743,1742,1741,1742,1742,1740,1740,1741,1742,1741,1741,1741,1741,1740,1739,1738,1738,1740,1742,1744,1743,1737,1735,1734,1736,1736,1735,1734,1734,1734,1734,1733,1734,1733,1733,1733,1733,1736,1738,1739,1740,1740,1741,1741,1741,1740,1738,1873,1866,1858,1860,1869,1874,1872,1867,1860,1852,1844,1836,1830,1823,1814,1807,1801,1798,1797,1797,1795,1791,1795,1805,1815,1819,1817,1810,1803,1798,1794,1790,1785,1776,1768,1762,1757,1754,1752,1748,1746,1745,1745,1744,1745,1746,1746,1746,1746,1745,1745,1745,1746,1745,1744,1742,1740,1740,1740,1739,1739,1739,1738,1738,1737,1737,1736,1737,1738,1738,1737,1737,1737,1736,1735,1736,1737,1735,1733,1733,1734,1735,1736,1736,1735,1736,1736,1738,1740,1741,1742,1742,1742,1744,1742,1743,1741,1739,1856,1852,1847,1847,1853,1856,1855,1849,1842,1835,1826,1817,1808,1800,1796,1794,1793,1790,1786,1784,1786,1785,1782,1792,1800,1805,1805,1802,1797,1790,1786,1783,1778,1769,1760,1754,1749,1748,1746,1745,1745,1749,1753,1757,1758,1757,1755,1755,1756,1754,1752,1750,1750,1748,1747,1746,1743,1742,1741,1741,1741,1742,1741,1741,1743,1741,1740,1740,1738,1738,1738,1739,1743,1743,1741,1738,1736,1736,1734,1735,1738,1739,1738,1740,1741,1742,1743,1743,1744,1742,1743,1744,1744,1743,1742,1743,1743,1744,1846,1843,1838,1834,1834,1837,1837,1831,1823,1816,1811,1805,1805,1807,1808,1808,1806,1802,1796,1787,1780,1776,1773,1775,1782,1787,1791,1791,1789,1783,1779,1773,1765,1758,1752,1748,1745,1745,1748,1755,1764,1773,1777,1777,1775,1774,1774,1773,1770,1768,1768,1767,1764,1760,1757,1755,1753,1749,1745,1743,1742,1742,1743,1744,1745,1745,1745,1744,1743,1741,1742,1741,1742,1745,1744,1742,1740,1740,1740,1740,1739,1740,1740,1744,1746,1744,1744,1743,1744,1743,1745,1740,1744,1743,1743,1745,1747,1748,1865,1860,1851,1844,1834,1826,1821,1818,1817,1817,1819,1824,1827,1826,1824,1822,1819,1815,1808,1801,1793,1785,1777,1772,1768,1768,1771,1776,1776,1770,1762,1756,1751,1750,1749,1747,1748,1754,1761,1772,1785,1795,1802,1801,1796,1794,1792,1785,1778,1782,1787,1785,1781,1776,1771,1769,1767,1762,1756,1753,1749,1747,1749,1750,1750,1749,1748,1748,1751,1754,1755,1753,1749,1747,1746,1746,1745,1745,1744,1744,1743,1742,1741,1746,1748,1746,1744,1744,1744,1744,1744,1744,1745,1746,1747,1747,1748,1748,1883,1877,1867,1859,1850,1845,1842,1841,1840,1840,1843,1847,1849,1845,1841,1838,1834,1828,1823,1817,1809,1801,1794,1787,1777,1767,1760,1763,1760,1754,1750,1748,1748,1747,1749,1754,1761,1768,1776,1788,1804,1818,1826,1822,1816,1812,1803,1791,1791,1800,1807,1806,1801,1795,1789,1786,1785,1782,1776,1772,1767,1763,1762,1761,1760,1758,1757,1763,1771,1777,1778,1769,1760,1753,1750,1749,1746,1747,1747,1747,1746,1745,1744,1748,1749,1749,1746,1744,1744,1744,1745,1746,1746,1746,1748,1748,1749,1748,1902,1896,1887,1879,1872,1869,1867,1867,1865,1864,1864,1864,1861,1856,1849,1839,1831,1826,1822,1816,1807,1801,1796,1790,1780,1766,1757,1755,1754,1750,1751,1751,1752,1755,1760,1767,1774,1782,1791,1804,1820,1835,1842,1839,1833,1823,1809,1800,1805,1816,1826,1827,1821,1814,1807,1804,1805,1802,1797,1792,1788,1784,1780,1776,1774,1775,1778,1785,1793,1796,1789,1779,1772,1764,1757,1754,1753,1750,1749,1749,1749,1747,1746,1749,1748,1750,1749,1746,1745,1747,1748,1752,1749,1747,1748,1749,1748,1750,1919,1914,1907,1901,1897,1894,1888,1880,1872,1864,1858,1854,1850,1845,1838,1827,1814,1804,1800,1794,1790,1787,1782,1776,1767,1760,1754,1750,1752,1753,1754,1757,1762,1768,1774,1781,1789,1797,1807,1817,1830,1843,1854,1854,1843,1829,1816,1810,1817,1829,1841,1847,1840,1832,1826,1823,1825,1822,1819,1817,1813,1807,1800,1792,1792,1795,1800,1805,1809,1805,1797,1793,1787,1776,1767,1761,1759,1757,1752,1751,1751,1749,1748,1748,1750,1750,1751,1750,1750,1750,1749,1749,1748,1748,1748,1749,1751,1756,1929,1924,1913,1902,1898,1891,1881,1871,1860,1849,1842,1837,1833,1828,1820,1810,1798,1785,1777,1772,1770,1768,1764,1759,1755,1752,1750,1752,1755,1760,1766,1773,1778,1784,1791,1800,1808,1816,1824,1834,1845,1856,1867,1867,1853,1840,1827,1820,1825,1836,1849,1857,1857,1851,1845,1843,1845,1843,1842,1845,1838,1828,1820,1812,1815,1818,1820,1822,1820,1815,1811,1806,1795,1784,1774,1767,1764,1761,1757,1755,1753,1752,1752,1751,1752,1753,1753,1754,1754,1753,1753,1754,1755,1754,1754,1755,1756,1760,1919,1914,1900,1886,1879,1872,1864,1855,1845,1836,1827,1821,1817,1812,1803,1792,1780,1770,1763,1760,1758,1755,1752,1751,1751,1752,1756,1761,1767,1775,1783,1791,1797,1803,1810,1818,1827,1835,1842,1852,1863,1876,1889,1881,1865,1849,1838,1833,1836,1848,1859,1869,1873,1869,1865,1864,1866,1866,1865,1866,1858,1849,1840,1833,1840,1843,1840,1836,1830,1826,1821,1814,1802,1789,1776,1771,1771,1766,1761,1759,1758,1756,1754,1753,1753,1753,1754,1755,1755,1755,1756,1757,1759,1760,1762,1762,1762,1762,1900,1891,1881,1872,1863,1855,1847,1839,1830,1821,1812,1804,1801,1798,1789,1777,1766,1761,1758,1754,1752,1753,1755,1758,1760,1765,1772,1788,1803,1811,1814,1815,1818,1826,1834,1842,1850,1858,1865,1877,1888,1900,1902,1887,1871,1859,1852,1848,1848,1859,1872,1884,1892,1889,1885,1886,1889,1892,1891,1887,1878,1868,1856,1851,1858,1861,1855,1848,1841,1835,1828,1818,1805,1791,1782,1782,1780,1772,1765,1765,1768,1764,1758,1757,1757,1755,1756,1757,1756,1756,1757,1758,1759,1760,1762,1764,1765,1767,1890,1880,1871,1863,1854,1845,1836,1828,1820,1813,1805,1795,1786,1780,1775,1768,1762,1757,1752,1755,1762,1767,1773,1777,1779,1787,1802,1821,1840,1851,1848,1842,1844,1855,1865,1871,1879,1885,1890,1901,1915,1922,1910,1895,1882,1875,1869,1864,1862,1872,1886,1900,1912,1913,1908,1907,1911,1914,1914,1906,1894,1880,1871,1870,1873,1871,1865,1858,1849,1840,1830,1818,1804,1792,1792,1792,1786,1775,1770,1773,1772,1765,1761,1760,1759,1758,1758,1759,1758,1759,1760,1761,1763,1764,1765,1768,1772,1773,1890,1881,1874,1867,1861,1854,1846,1838,1830,1822,1812,1800,1785,1772,1765,1763,1758,1755,1761,1769,1778,1785,1791,1799,1811,1826,1835,1851,1868,1876,1872,1870,1875,1885,1895,1894,1902,1910,1916,1923,1935,1931,1918,1907,1901,1896,1889,1883,1879,1886,1899,1914,1928,1934,1932,1930,1934,1936,1931,1920,1908,1896,1891,1890,1888,1882,1872,1861,1849,1838,1826,1813,1802,1800,1801,1795,1787,1778,1777,1780,1775,1769,1765,1765,1763,1762,1761,1761,1761,1762,1763,1765,1768,1769,1770,1774,1782,1781,1898,1890,1881,1873,1865,1855,1844,1834,1825,1816,1806,1795,1783,1769,1764,1760,1756,1760,1771,1784,1796,1807,1819,1833,1845,1856,1866,1875,1886,1894,1896,1894,1893,1903,1914,1917,1923,1931,1938,1943,1947,1942,1933,1926,1923,1917,1911,1904,1898,1903,1913,1925,1939,1949,1952,1952,1955,1955,1947,1935,1924,1916,1912,1907,1901,1890,1878,1865,1852,1840,1827,1815,1810,1811,1807,1801,1794,1786,1784,1784,1782,1777,1771,1770,1767,1765,1764,1764,1766,1767,1769,1770,1772,1773,1775,1782,1789,1786,1905,1892,1878,1865,1852,1841,1830,1820,1811,1803,1795,1785,1775,1767,1764,1758,1761,1775,1792,1808,1824,1836,1847,1857,1868,1878,1886,1894,1900,1906,1910,1913,1916,1922,1931,1939,1946,1954,1962,1966,1968,1963,1955,1952,1950,1942,1933,1924,1918,1923,1932,1942,1953,1963,1970,1976,1978,1973,1962,1951,1943,1937,1930,1920,1907,1894,1880,1866,1853,1840,1828,1823,1826,1823,1816,1808,1801,1795,1791,1790,1788,1783,1775,1773,1770,1768,1767,1768,1770,1773,1777,1779,1780,1778,1781,1787,1792,1791,1904,1888,1872,1858,1846,1839,1834,1827,1820,1814,1805,1794,1780,1769,1763,1759,1768,1788,1809,1824,1841,1851,1861,1870,1876,1881,1884,1888,1892,1898,1904,1910,1919,1929,1941,1953,1966,1977,1983,1982,1980,1978,1976,1975,1973,1965,1955,1945,1942,1945,1951,1961,1972,1982,1990,1996,1994,1987,1977,1967,1956,1947,1936,1921,1906,1892,1880,1869,1859,1849,1837,1836,1842,1836,1825,1815,1806,1800,1797,1794,1788,1781,1777,1774,1773,1771,1771,1772,1774,1778,1783,1788,1790,1787,1785,1788,1789,1789,1907,1889,1873,1865,1861,1858,1854,1847,1840,1830,1818,1803,1787,1771,1764,1758,1764,1781,1803,1818,1830,1843,1853,1859,1862,1865,1868,1872,1879,1888,1897,1907,1919,1933,1948,1963,1975,1989,1990,1988,1986,1986,1984,1983,1979,1975,1971,1968,1970,1973,1979,1987,1995,2001,2005,2008,2003,1995,1986,1975,1963,1951,1941,1927,1913,1902,1891,1881,1871,1860,1849,1849,1852,1843,1830,1819,1810,1804,1800,1795,1789,1785,1783,1776,1774,1773,1774,1776,1779,1783,1788,1794,1799,1796,1794,1797,1797,1794,1907,1894,1886,1883,1883,1882,1874,1860,1848,1833,1819,1802,1785,1772,1767,1761,1759,1773,1786,1806,1819,1828,1839,1847,1852,1856,1859,1863,1873,1885,1899,1910,1923,1936,1954,1969,1985,2000,2001,1999,1996,1994,1993,1991,1989,1986,1988,1991,1993,1995,2000,2007,2011,2014,2016,2016,2011,2002,1992,1980,1967,1952,1941,1928,1915,1903,1892,1881,1873,1868,1865,1862,1855,1845,1834,1823,1814,1809,1804,1798,1792,1795,1790,1781,1777,1776,1776,1780,1784,1788,1793,1799,1801,1799,1799,1798,1797,1797,1916,1910,1909,1907,1905,1897,1881,1862,1845,1829,1818,1805,1790,1777,1769,1765,1758,1763,1775,1793,1803,1815,1829,1840,1845,1849,1853,1860,1870,1883,1897,1909,1920,1932,1951,1965,1982,1989,1995,2001,2003,2003,2001,1999,1998,1996,1997,1998,2003,2009,2015,2021,2025,2027,2027,2025,2018,2007,1994,1982,1968,1952,1938,1924,1910,1899,1893,1888,1885,1881,1875,1866,1857,1847,1836,1827,1819,1813,1809,1801,1799,1799,1792,1784,1780,1779,1780,1785,1790,1796,1801,1804,1803,1802,1802,1800,1800,1800,1932,1933,1934,1924,1909,1893,1877,1863,1852,1843,1831,1817,1798,1784,1772,1768,1759,1760,1767,1780,1793,1806,1816,1823,1828,1832,1840,1850,1860,1873,1885,1898,1911,1923,1936,1951,1961,1971,1984,1997,2005,2007,2008,2007,2006,2004,2005,2006,2010,2016,2023,2029,2034,2037,2037,2031,2022,2009,1995,1980,1965,1950,1937,1923,1915,1910,1906,1902,1898,1892,1883,1873,1863,1854,1843,1833,1824,1818,1812,1806,1806,1803,1794,1786,1784,1783,1784,1791,1799,1806,1811,1812,1809,1806,1807,1808,1808,1807,1957,1955,1947,1934,1918,1901,1887,1877,1871,1862,1847,1829,1809,1795,1783,1775,1764,1758,1761,1770,1780,1788,1794,1801,1807,1812,1823,1835,1846,1858,1873,1885,1898,1910,1922,1932,1943,1956,1973,1989,2002,2010,2015,2017,2016,2014,2013,2016,2019,2023,2030,2038,2042,2044,2042,2033,2021,2006,1992,1977,1964,1952,1941,1935,1930,1927,1923,1916,1907,1897,1888,1879,1869,1859,1848,1837,1829,1821,1814,1814,1812,1805,1796,1789,1786,1786,1791,1799,1808,1815,1817,1817,1815,1813,1814,1814,1813,1811,1979,1971,1956,1940,1926,1912,1904,1900,1893,1878,1858,1837,1824,1816,1806,1792,1778,1770,1764,1761,1761,1767,1772,1778,1785,1794,1805,1816,1835,1846,1858,1870,1883,1894,1905,1916,1931,1948,1968,1984,2000,2013,2021,2026,2027,2026,2024,2027,2031,2035,2041,2048,2052,2052,2046,2034,2025,2010,1997,1985,1974,1962,1954,1950,1947,1940,1932,1924,1912,1902,1892,1882,1872,1862,1851,1840,1831,1822,1821,1820,1814,1805,1798,1792,1790,1791,1798,1808,1817,1820,1820,1818,1817,1816,1816,1816,1815,1812,1995,1983,1968,1954,1942,1933,1927,1916,1901,1882,1866,1855,1849,1843,1833,1818,1803,1797,1797,1787,1772,1763,1761,1764,1770,1780,1793,1805,1821,1831,1841,1856,1871,1887,1904,1919,1934,1956,1978,1994,2008,2017,2024,2028,2032,2036,2037,2040,2044,2048,2051,2055,2059,2058,2053,2043,2033,2022,2009,1997,1986,1975,1964,1958,1951,1942,1933,1925,1914,1903,1893,1884,1875,1866,1853,1841,1833,1829,1827,1823,1818,1811,1803,1797,1794,1798,1807,1817,1824,1824,1823,1821,1820,1818,1816,1816,1814,1811,1994,1982,1971,1959,1951,1944,1936,1924,1910,1896,1884,1878,1873,1866,1851,1834,1824,1827,1829,1818,1804,1789,1778,1768,1764,1771,1783,1795,1805,1820,1836,1856,1877,1896,1913,1929,1943,1958,1981,1998,2006,2014,2020,2028,2034,2041,2047,2051,2055,2059,2061,2063,2065,2064,2061,2051,2041,2031,2017,2004,1990,1977,1967,1959,1949,1939,1930,1921,1910,1898,1887,1877,1869,1860,1851,1845,1840,1837,1832,1827,1821,1813,1807,1801,1799,1804,1814,1824,1829,1826,1824,1823,1821,1820,1818,1816,1815,1812,1986,1974,1960,1946,1935,1928,1922,1919,1910,1899,1894,1891,1886,1880,1870,1857,1853,1853,1850,1837,1828,1820,1805,1787,1771,1770,1775,1784,1801,1819,1838,1859,1879,1894,1910,1927,1941,1953,1973,1989,1998,2009,2017,2027,2036,2045,2052,2059,2064,2068,2071,2072,2072,2070,2063,2052,2042,2031,2018,2005,1994,1984,1978,1970,1959,1948,1936,1925,1914,1904,1895,1887,1880,1872,1866,1858,1848,1843,1837,1832,1824,1813,1807,1805,1807,1814,1823,1830,1830,1828,1827,1824,1823,1822,1820,1817,1815,1814,1986,1972,1960,1947,1933,1917,1904,1897,1890,1883,1877,1873,1869,1865,1860,1851,1848,1850,1854,1855,1851,1843,1820,1799,1778,1770,1774,1783,1799,1816,1834,1854,1874,1888,1902,1914,1927,1945,1965,1983,1993,2004,2015,2026,2037,2046,2056,2064,2071,2076,2079,2081,2079,2073,2064,2054,2044,2035,2024,2014,2005,1997,1989,1981,1969,1957,1946,1935,1926,1917,1908,1899,1891,1883,1875,1865,1855,1848,1842,1835,1824,1814,1814,1817,1822,1828,1833,1834,1832,1830,1829,1827,1825,1822,1820,1818,1817,1814,1990,1980,1971,1956,1938,1919,1901,1885,1873,1864,1857,1851,1847,1846,1842,1833,1826,1825,1827,1835,1846,1840,1824,1807,1784,1772,1774,1783,1798,1815,1831,1847,1862,1874,1886,1899,1917,1937,1954,1973,1985,1996,2008,2021,2036,2047,2058,2068,2077,2083,2088,2090,2087,2079,2072,2064,2055,2045,2035,2025,2015,2007,1998,1987,1975,1964,1954,1944,1933,1923,1914,1904,1894,1886,1879,1869,1859,1851,1843,1832,1822,1818,1823,1831,1836,1838,1837,1836,1834,1835,1834,1830,1826,1825,1822,1820,1818,1817,1985,1978,1971,1962,1947,1920,1900,1885,1872,1857,1844,1833,1827,1824,1821,1814,1805,1801,1802,1804,1811,1817,1814,1802,1784,1768,1767,1780,1795,1806,1817,1833,1846,1859,1875,1893,1913,1930,1942,1960,1978,1992,2003,2017,2033,2044,2058,2069,2080,2090,2098,2101,2097,2089,2082,2074,2065,2056,2044,2037,2026,2015,2005,1993,1981,1969,1958,1948,1937,1924,1916,1905,1895,1886,1877,1869,1862,1851,1839,1830,1824,1828,1835,1842,1843,1842,1840,1839,1838,1837,1836,1832,1828,1828,1826,1823,1821,1819,1979,1971,1962,1955,1948,1924,1903,1886,1872,1858,1844,1831,1816,1805,1799,1794,1786,1781,1782,1784,1787,1792,1796,1792,1778,1767,1773,1785,1804,1817,1825,1833,1843,1855,1870,1890,1904,1917,1932,1945,1966,1985,2000,2014,2030,2046,2058,2072,2086,2098,2109,2114,2110,2102,2094,2084,2074,2062,2050,2043,2031,2020,2011,1999,1986,1972,1959,1947,1934,1922,1912,1901,1889,1878,1870,1864,1861,1854,1846,1837,1834,1841,1847,1849,1847,1845,1844,1842,1840,1839,1838,1835,1831,1830,1828,1826,1823,1820,1971,1968,1955,1943,1933,1917,1897,1884,1868,1854,1839,1826,1813,1797,1783,1777,1771,1769,1769,1769,1771,1774,1775,1773,1768,1770,1780,1792,1812,1828,1845,1857,1865,1870,1876,1891,1900,1915,1936,1948,1964,1980,1994,2008,2023,2041,2059,2077,2091,2107,2123,2130,2125,2115,2106,2096,2082,2067,2054,2043,2032,2021,2011,2000,1986,1971,1956,1941,1928,1916,1906,1894,1884,1882,1883,1879,1873,1864,1854,1846,1849,1853,1854,1853,1851,1850,1849,1845,1842,1840,1840,1836,1833,1830,1828,1827,1826,1823,1961,1963,1953,1937,1920,1903,1886,1870,1853,1840,1825,1813,1801,1788,1777,1771,1774,1783,1790,1785,1775,1771,1769,1769,1774,1786,1796,1811,1826,1840,1858,1871,1884,1894,1901,1908,1917,1933,1955,1968,1979,1988,1995,2006,2024,2041,2059,2075,2094,2116,2134,2138,2131,2120,2107,2095,2081,2068,2052,2040,2029,2018,2008,1998,1986,1971,1953,1936,1919,1907,1899,1895,1896,1897,1894,1888,1879,1871,1864,1859,1859,1858,1856,1855,1855,1853,1851,1847,1845,1842,1841,1839,1836,1833,1830,1829,1827,1824,1946,1946,1941,1932,1922,1908,1895,1877,1857,1833,1815,1800,1788,1778,1774,1776,1787,1803,1814,1810,1800,1795,1789,1789,1793,1799,1811,1829,1836,1843,1859,1874,1890,1902,1915,1927,1938,1950,1962,1978,1992,2004,2018,2025,2036,2050,2071,2090,2109,2126,2141,2136,2125,2114,2102,2090,2079,2066,2050,2037,2022,2009,1999,1991,1983,1972,1956,1933,1916,1912,1912,1914,1913,1909,1903,1895,1885,1875,1868,1865,1863,1860,1860,1859,1856,1854,1851,1848,1845,1843,1841,1838,1836,1835,1834,1830,1827,1826,1929,1928,1925,1920,1913,1906,1896,1880,1859,1832,1816,1795,1780,1775,1779,1790,1807,1821,1831,1831,1823,1819,1817,1814,1813,1816,1825,1835,1847,1856,1863,1875,1891,1906,1919,1933,1946,1960,1973,1984,2001,2017,2033,2044,2053,2068,2093,2114,2129,2135,2138,2131,2118,2105,2092,2081,2069,2058,2047,2034,2019,2003,1989,1978,1972,1966,1952,1934,1923,1928,1934,1933,1927,1918,1908,1899,1889,1878,1871,1868,1866,1865,1862,1860,1858,1854,1851,1850,1848,1845,1844,1841,1839,1837,1835,1830,1829,1827,1911,1909,1907,1903,1899,1892,1880,1865,1844,1825,1806,1788,1779,1782,1790,1805,1823,1839,1849,1853,1845,1838,1837,1837,1837,1836,1839,1845,1854,1865,1875,1885,1893,1906,1919,1937,1954,1971,1984,1998,2010,2023,2039,2055,2069,2090,2112,2128,2139,2143,2136,2126,2113,2100,2085,2070,2057,2046,2036,2024,2010,1996,1983,1969,1959,1952,1945,1935,1933,1940,1942,1936,1927,1918,1907,1898,1888,1879,1874,1871,1868,1867,1864,1861,1857,1857,1854,1851,1849,1845,1845,1842,1838,1836,1835,1833,1830,1828,1890,1888,1886,1884,1882,1876,1869,1857,1839,1818,1800,1786,1784,1791,1804,1822,1840,1853,1865,1872,1866,1861,1860,1859,1858,1857,1860,1862,1867,1878,1889,1900,1907,1915,1921,1931,1950,1969,1983,1997,2009,2027,2047,2067,2085,2106,2122,2135,2145,2143,2133,2121,2109,2095,2080,2065,2051,2037,2024,2012,2000,1987,1973,1964,1958,1952,1947,1943,1942,1939,1933,1926,1918,1910,1901,1893,1885,1880,1876,1873,1870,1869,1866,1861,1857,1856,1855,1853,1850,1847,1847,1843,1839,1837,1836,1834,1831,1828,1870,1868,1866,1865,1862,1858,1853,1847,1835,1813,1796,1789,1793,1802,1817,1836,1857,1874,1888,1893,1889,1883,1880,1880,1880,1878,1878,1880,1882,1894,1906,1919,1926,1930,1938,1945,1951,1966,1978,1992,2008,2029,2047,2067,2087,2103,2119,2139,2142,2136,2127,2114,2102,2089,2075,2060,2047,2032,2018,2006,1997,1987,1982,1982,1979,1970,1962,1952,1941,1931,1922,1915,1908,1900,1894,1887,1882,1878,1875,1873,1870,1869,1869,1864,1859,1857,1855,1853,1850,1849,1847,1845,1841,1838,1836,1834,1831,1829,1838,1836,1836,1839,1840,1840,1840,1832,1823,1809,1796,1794,1804,1817,1830,1848,1871,1892,1906,1913,1914,1908,1905,1907,1906,1901,1899,1900,1902,1912,1926,1942,1950,1951,1953,1961,1970,1982,1991,2001,2019,2038,2052,2068,2086,2107,2125,2138,2135,2129,2119,2108,2096,2084,2071,2057,2046,2035,2031,2025,2017,2009,2005,1999,1989,1976,1962,1948,1936,1925,1915,1908,1901,1895,1889,1883,1882,1881,1879,1876,1873,1869,1868,1866,1862,1858,1857,1854,1851,1849,1845,1843,1841,1838,1835,1833,1832,1829,1804,1806,1810,1814,1818,1823,1825,1815,1802,1792,1791,1797,1810,1828,1843,1861,1880,1898,1912,1924,1930,1928,1925,1929,1931,1927,1921,1919,1923,1934,1950,1963,1972,1977,1980,1983,1989,1997,2005,2016,2033,2052,2065,2073,2089,2108,2121,2129,2130,2122,2113,2104,2095,2085,2074,2063,2056,2051,2046,2040,2033,2025,2015,2002,1988,1973,1959,1946,1936,1928,1919,1910,1903,1896,1890,1890,1893,1893,1889,1882,1874,1869,1868,1865,1861,1858,1858,1853,1851,1847,1844,1842,1840,1838,1834,1831,1830,1828,1786,1787,1788,1790,1795,1799,1798,1794,1787,1786,1794,1806,1821,1840,1859,1878,1892,1905,1916,1932,1942,1948,1950,1953,1953,1948,1944,1942,1941,1947,1960,1973,1988,1997,2001,2006,2012,2016,2022,2036,2054,2071,2081,2089,2100,2112,2122,2129,2131,2124,2116,2107,2100,2093,2085,2077,2069,2062,2056,2047,2038,2027,2015,2002,1991,1979,1971,1963,1953,1941,1929,1917,1908,1901,1894,1895,1903,1905,1898,1888,1879,1871,1866,1863,1862,1858,1856,1853,1850,1846,1842,1840,1840,1838,1834,1832,1833,1828,1790,1788,1786,1784,1781,1781,1780,1779,1784,1795,1807,1822,1837,1851,1870,1892,1908,1921,1932,1947,1956,1967,1979,1988,1987,1984,1977,1970,1968,1971,1975,1987,2001,2010,2019,2026,2031,2036,2043,2054,2068,2087,2099,2111,2119,2125,2130,2134,2133,2127,2120,2114,2109,2101,2093,2085,2076,2067,2060,2053,2043,2032,2021,2011,2001,1992,1983,1973,1961,1950,1938,1926,1916,1907,1898,1900,1909,1914,1907,1897,1886,1877,1869,1865,1860,1858,1856,1851,1849,1847,1846,1843,1839,1837,1835,1833,1831,1829,1822,1816,1809,1802,1794,1792,1793,1796,1800,1810,1818,1831,1847,1856,1871,1894,1911,1925,1947,1958,1964,1981,2006,2017,2019,2018,2012,2004,1997,1995,1998,2006,2018,2028,2037,2046,2053,2059,2064,2072,2080,2091,2100,2112,2122,2129,2133,2133,2129,2124,2119,2113,2107,2101,2093,2084,2073,2063,2057,2051,2042,2032,2021,2009,1997,1986,1975,1965,1954,1945,1936,1927,1917,1907,1902,1909,1920,1924,1916,1906,1893,1883,1873,1866,1863,1861,1857,1853,1850,1848,1848,1844,1841,1838,1837,1835,1834,1831,1860,1855,1841,1830,1822,1817,1821,1826,1829,1830,1836,1844,1851,1861,1873,1886,1899,1917,1936,1946,1955,1977,1999,2014,2025,2034,2036,2029,2021,2020,2023,2027,2035,2047,2057,2069,2079,2084,2084,2089,2096,2105,2113,2119,2126,2129,2128,2124,2120,2116,2112,2106,2101,2095,2089,2080,2068,2058,2044,2037,2031,2024,2014,2002,1989,1976,1964,1952,1941,1930,1920,1914,1910,1907,1912,1923,1933,1933,1921,1909,1897,1887,1878,1870,1866,1862,1860,1858,1854,1850,1850,1847,1843,1840,1840,1839,1835,1833,1879,1882,1875,1865,1858,1855,1860,1865,1865,1863,1863,1866,1869,1873,1882,1889,1896,1911,1926,1937,1948,1965,1984,2001,2015,2028,2044,2046,2044,2039,2041,2047,2056,2069,2081,2092,2103,2109,2110,2110,2114,2121,2126,2129,2130,2127,2121,2115,2110,2106,2101,2096,2092,2087,2082,2076,2065,2052,2036,2022,2014,2011,2005,1993,1980,1967,1954,1942,1931,1921,1919,1921,1922,1925,1932,1942,1946,1937,1925,1913,1902,1892,1884,1875,1870,1866,1865,1863,1860,1853,1850,1848,1845,1843,1843,1842,1840,1838]		}
	}
}

/collections/dem/trajectory

http://www.edr.demo/collections/dem/trajectory?coords=LINESTRING(-105.450231 39.723032,-105.379374 39.771603,-105.244079 39.748378,-105.139688 39.808536,-104.950823 39.75049,-104.858795 39.761575)&parameter-name=Height&crs=EPSG:4326&f=CoverageJSON

Unroll for JSON Example

{
  "type": "Coverage",
  "domain": {
    "type": "Domain",
    "domainType": "Trajectory",
    "axes": {
      "composite":{
        "dataType":"tuple",
        "coordinates":["x","y"],
        "values":[[-105.450231,39.723032],[-105.450002,39.723189],[-105.449773,39.723346],[-105.449544,39.723503],[-105.449314,39.72366],[-105.449085,39.723817],[-105.448856,39.723974],[-105.448627,39.724131],[-105.448398,39.724289],[-105.448169,39.724446],[-105.44794,39.724603],[-105.447711,39.72476],[-105.447481,39.724917],[-105.447252,39.725074],[-105.447023,39.725231],[-105.446794,39.725388],[-105.446565,39.725545],[-105.446336,39.725702],[-105.446107,39.725859],[-105.445877,39.726016],[-105.445648,39.726173],[-105.445419,39.72633],[-105.44519,39.726487],[-105.444961,39.726645],[-105.444732,39.726802],[-105.444503,39.726959],[-105.444273,39.727116],[-105.444044,39.727273],[-105.443815,39.72743],[-105.443586,39.727587],[-105.443357,39.727744],[-105.443128,39.727901],[-105.442899,39.728058],[-105.44267,39.728215],[-105.44244,39.728372],[-105.442211,39.728529],[-105.441982,39.728686],[-105.441753,39.728843],[-105.441524,39.729001],[-105.441295,39.729158],[-105.441066,39.729315],[-105.440836,39.729472],[-105.440607,39.729629],[-105.440378,39.729786],[-105.440149,39.729943],[-105.43992,39.7301],[-105.439691,39.730257],[-105.439462,39.730414],[-105.439233,39.730571],[-105.439003,39.730728],[-105.438774,39.730885],[-105.438545,39.731042],[-105.438316,39.7312],[-105.438087,39.731357],[-105.437858,39.731514],[-105.437629,39.731671],[-105.437399,39.731828],[-105.43717,39.731985],[-105.436941,39.732142],[-105.436712,39.732299],[-105.436483,39.732456],[-105.436254,39.732613],[-105.436025,39.73277],[-105.435795,39.732927],[-105.435566,39.733084],[-105.435337,39.733241],[-105.435108,39.733398],[-105.434879,39.733556],[-105.43465,39.733713],[-105.434421,39.73387],[-105.434192,39.734027],[-105.433962,39.734184],[-105.433733,39.734341],[-105.433504,39.734498],[-105.433275,39.734655],[-105.433046,39.734812],[-105.432817,39.734969],[-105.432588,39.735126],[-105.432358,39.735283],[-105.432129,39.73544],[-105.4319,39.735597],[-105.431671,39.735754],[-105.431442,39.735912],[-105.431213,39.736069],[-105.430984,39.736226],[-105.430754,39.736383],[-105.430525,39.73654],[-105.430296,39.736697],[-105.430067,39.736854],[-105.429838,39.737011],[-105.429609,39.737168],[-105.42938,39.737325],[-105.429151,39.737482],[-105.428921,39.737639],[-105.428692,39.737796],[-105.428463,39.737953],[-105.428234,39.73811],[-105.428005,39.738268],[-105.427776,39.738425],[-105.427547,39.738582],[-105.427317,39.738739],[-105.427088,39.738896],[-105.426859,39.739053],[-105.42663,39.73921],[-105.426401,39.739367],[-105.426172,39.739524],[-105.425943,39.739681],[-105.425714,39.739838],[-105.425484,39.739995],[-105.425255,39.740152],[-105.425026,39.740309],[-105.424797,39.740466],[-105.424568,39.740624],[-105.424339,39.740781],[-105.42411,39.740938],[-105.42388,39.741095],[-105.423651,39.741252],[-105.423422,39.741409],[-105.423193,39.741566],[-105.422964,39.741723],[-105.422735,39.74188],[-105.422506,39.742037],[-105.422276,39.742194],[-105.422047,39.742351],[-105.421818,39.742508],[-105.421589,39.742665],[-105.42136,39.742823],[-105.421131,39.74298],[-105.420902,39.743137],[-105.420673,39.743294],[-105.420443,39.743451],[-105.420214,39.743608],[-105.419985,39.743765],[-105.419756,39.743922],[-105.419527,39.744079],[-105.419298,39.744236],[-105.419069,39.744393],[-105.418839,39.74455],[-105.41861,39.744707],[-105.418381,39.744864],[-105.418152,39.745021],[-105.417923,39.745179],[-105.417694,39.745336],[-105.417465,39.745493],[-105.417236,39.74565],[-105.417006,39.745807],[-105.416777,39.745964],[-105.416548,39.746121],[-105.416319,39.746278],[-105.41609,39.746435],[-105.415861,39.746592],[-105.415632,39.746749],[-105.415402,39.746906],[-105.415173,39.747063],[-105.414944,39.74722],[-105.414715,39.747377],[-105.414486,39.747535],[-105.414257,39.747692],[-105.414028,39.747849],[-105.413798,39.748006],[-105.413569,39.748163],[-105.41334,39.74832],[-105.413111,39.748477],[-105.412882,39.748634],[-105.412653,39.748791],[-105.412424,39.748948],[-105.412195,39.749105],[-105.411965,39.749262],[-105.411736,39.749419],[-105.411507,39.749576],[-105.411278,39.749733],[-105.411049,39.749891],[-105.41082,39.750048],[-105.410591,39.750205],[-105.410361,39.750362],[-105.410132,39.750519],[-105.409903,39.750676],[-105.409674,39.750833],[-105.409445,39.75099],[-105.409216,39.751147],[-105.408987,39.751304],[-105.408757,39.751461],[-105.408528,39.751618],[-105.408299,39.751775],[-105.40807,39.751932],[-105.407841,39.752089],[-105.407612,39.752247],[-105.407383,39.752404],[-105.407154,39.752561],[-105.406924,39.752718],[-105.406695,39.752875],[-105.406466,39.753032],[-105.406237,39.753189],[-105.406008,39.753346],[-105.405779,39.753503],[-105.40555,39.75366],[-105.40532,39.753817],[-105.405091,39.753974],[-105.404862,39.754131],[-105.404633,39.754288],[-105.404404,39.754446],[-105.404175,39.754603],[-105.403946,39.75476],[-105.403717,39.754917],[-105.403487,39.755074],[-105.403258,39.755231],[-105.403029,39.755388],[-105.4028,39.755545],[-105.402571,39.755702],[-105.402342,39.755859],[-105.402113,39.756016],[-105.401883,39.756173],[-105.401654,39.75633],[-105.401425,39.756487],[-105.401196,39.756644],[-105.400967,39.756802],[-105.400738,39.756959],[-105.400509,39.757116],[-105.400279,39.757273],[-105.40005,39.75743],[-105.399821,39.757587],[-105.399592,39.757744],[-105.399363,39.757901],[-105.399134,39.758058],[-105.398905,39.758215],[-105.398676,39.758372],[-105.398446,39.758529],[-105.398217,39.758686],[-105.397988,39.758843],[-105.397759,39.759],[-105.39753,39.759158],[-105.397301,39.759315],[-105.397072,39.759472],[-105.396842,39.759629],[-105.396613,39.759786],[-105.396384,39.759943],[-105.396155,39.7601],[-105.395926,39.760257],[-105.395697,39.760414],[-105.395468,39.760571],[-105.395239,39.760728],[-105.395009,39.760885],[-105.39478,39.761042],[-105.394551,39.761199],[-105.394322,39.761356],[-105.394093,39.761514],[-105.393864,39.761671],[-105.393635,39.761828],[-105.393405,39.761985],[-105.393176,39.762142],[-105.392947,39.762299],[-105.392718,39.762456],[-105.392489,39.762613],[-105.39226,39.76277],[-105.392031,39.762927],[-105.391801,39.763084],[-105.391572,39.763241],[-105.391343,39.763398],[-105.391114,39.763555],[-105.390885,39.763712],[-105.390656,39.76387],[-105.390427,39.764027],[-105.390198,39.764184],[-105.389968,39.764341],[-105.389739,39.764498],[-105.38951,39.764655],[-105.389281,39.764812],[-105.389052,39.764969],[-105.388823,39.765126],[-105.388594,39.765283],[-105.388364,39.76544],[-105.388135,39.765597],[-105.387906,39.765754],[-105.387677,39.765911],[-105.387448,39.766069],[-105.387219,39.766226],[-105.38699,39.766383],[-105.38676,39.76654],[-105.386531,39.766697],[-105.386302,39.766854],[-105.386073,39.767011],[-105.385844,39.767168],[-105.385615,39.767325],[-105.385386,39.767482],[-105.385157,39.767639],[-105.384927,39.767796],[-105.384698,39.767953],[-105.384469,39.76811],[-105.38424,39.768267],[-105.384011,39.768425],[-105.383782,39.768582],[-105.383553,39.768739],[-105.383323,39.768896],[-105.383094,39.769053],[-105.382865,39.76921],[-105.382636,39.769367],[-105.382407,39.769524],[-105.382178,39.769681],[-105.381949,39.769838],[-105.38172,39.769995],[-105.38149,39.770152],[-105.381261,39.770309],[-105.381032,39.770466],[-105.380803,39.770623],[-105.380574,39.770781],[-105.380345,39.770938],[-105.380116,39.771095],[-105.379886,39.771252],[-105.379657,39.771409],[-105.379428,39.771566],[-105.379165,39.771567],[-105.378891,39.77152],[-105.378617,39.771473],[-105.378344,39.771426],[-105.37807,39.771379],[-105.377796,39.771332],[-105.377522,39.771285],[-105.377248,39.771238],[-105.376975,39.771191],[-105.376701,39.771144],[-105.376427,39.771097],[-105.376153,39.77105],[-105.375879,39.771003],[-105.375606,39.770956],[-105.375332,39.770909],[-105.375058,39.770862],[-105.374784,39.770815],[-105.37451,39.770768],[-105.374237,39.770721],[-105.373963,39.770674],[-105.373689,39.770627],[-105.373415,39.77058],[-105.373141,39.770533],[-105.372868,39.770486],[-105.372594,39.770439],[-105.37232,39.770392],[-105.372046,39.770345],[-105.371772,39.770298],[-105.371499,39.770251],[-105.371225,39.770204],[-105.370951,39.770157],[-105.370677,39.77011],[-105.370403,39.770063],[-105.37013,39.770016],[-105.369856,39.769969],[-105.369582,39.769922],[-105.369308,39.769875],[-105.369034,39.769828],[-105.368761,39.769781],[-105.368487,39.769734],[-105.368213,39.769687],[-105.367939,39.76964],[-105.367665,39.769593],[-105.367392,39.769546],[-105.367118,39.769499],[-105.366844,39.769452],[-105.36657,39.769405],[-105.366297,39.769358],[-105.366023,39.769311],[-105.365749,39.769264],[-105.365475,39.769217],[-105.365201,39.76917],[-105.364928,39.769123],[-105.364654,39.769076],[-105.36438,39.769029],[-105.364106,39.768982],[-105.363832,39.768935],[-105.363559,39.768888],[-105.363285,39.768841],[-105.363011,39.768794],[-105.362737,39.768747],[-105.362463,39.7687],[-105.36219,39.768653],[-105.361916,39.768606],[-105.361642,39.768559],[-105.361368,39.768512],[-105.361094,39.768465],[-105.360821,39.768418],[-105.360547,39.768371],[-105.360273,39.768324],[-105.359999,39.768277],[-105.359725,39.76823],[-105.359452,39.768183],[-105.359178,39.768136],[-105.358904,39.768089],[-105.35863,39.768042],[-105.358356,39.767995],[-105.358083,39.767948],[-105.357809,39.767901],[-105.357535,39.767854],[-105.357261,39.767807],[-105.356987,39.76776],[-105.356714,39.767713],[-105.35644,39.767666],[-105.356166,39.767619],[-105.355892,39.767572],[-105.355618,39.767525],[-105.355345,39.767478],[-105.355071,39.767431],[-105.354797,39.767384],[-105.354523,39.767337],[-105.354249,39.76729],[-105.353976,39.767243],[-105.353702,39.767196],[-105.353428,39.767149],[-105.353154,39.767102],[-105.352881,39.767055],[-105.352607,39.767008],[-105.352333,39.766961],[-105.352059,39.766914],[-105.351785,39.766867],[-105.351512,39.76682],[-105.351238,39.766773],[-105.350964,39.766726],[-105.35069,39.766679],[-105.350416,39.766632],[-105.350143,39.766585],[-105.349869,39.766538],[-105.349595,39.766491],[-105.349321,39.766444],[-105.349047,39.766397],[-105.348774,39.76635],[-105.3485,39.766303],[-105.348226,39.766256],[-105.347952,39.766209],[-105.347678,39.766162],[-105.347405,39.766115],[-105.347131,39.766068],[-105.346857,39.766021],[-105.346583,39.765974],[-105.346309,39.765927],[-105.346036,39.76588],[-105.345762,39.765833],[-105.345488,39.765786],[-105.345214,39.765739],[-105.34494,39.765692],[-105.344667,39.765645],[-105.344393,39.765598],[-105.344119,39.765551],[-105.343845,39.765504],[-105.343571,39.765457],[-105.343298,39.76541],[-105.343024,39.765363],[-105.34275,39.765316],[-105.342476,39.765269],[-105.342202,39.765222],[-105.341929,39.765175],[-105.341655,39.765128],[-105.341381,39.765081],[-105.341107,39.765034],[-105.340833,39.764987],[-105.34056,39.76494],[-105.340286,39.764893],[-105.340012,39.764846],[-105.339738,39.764799],[-105.339465,39.764752],[-105.339191,39.764705],[-105.338917,39.764658],[-105.338643,39.764611],[-105.338369,39.764564],[-105.338096,39.764517],[-105.337822,39.76447],[-105.337548,39.764423],[-105.337274,39.764376],[-105.337,39.764329],[-105.336727,39.764282],[-105.336453,39.764235],[-105.336179,39.764188],[-105.335905,39.764141],[-105.335631,39.764094],[-105.335358,39.764047],[-105.335084,39.764],[-105.33481,39.763953],[-105.334536,39.763906],[-105.334262,39.763859],[-105.333989,39.763812],[-105.333715,39.763765],[-105.333441,39.763718],[-105.333167,39.763671],[-105.332893,39.763624],[-105.33262,39.763577],[-105.332346,39.76353],[-105.332072,39.763483],[-105.331798,39.763436],[-105.331524,39.763389],[-105.331251,39.763342],[-105.330977,39.763295],[-105.330703,39.763248],[-105.330429,39.763201],[-105.330155,39.763154],[-105.329882,39.763107],[-105.329608,39.76306],[-105.329334,39.763013],[-105.32906,39.762966],[-105.328786,39.762919],[-105.328513,39.762872],[-105.328239,39.762825],[-105.327965,39.762778],[-105.327691,39.762731],[-105.327417,39.762684],[-105.327144,39.762637],[-105.32687,39.76259],[-105.326596,39.762543],[-105.326322,39.762496],[-105.326049,39.762449],[-105.325775,39.762402],[-105.325501,39.762355],[-105.325227,39.762308],[-105.324953,39.762261],[-105.32468,39.762214],[-105.324406,39.762167],[-105.324132,39.76212],[-105.323858,39.762073],[-105.323584,39.762026],[-105.323311,39.761979],[-105.323037,39.761932],[-105.322763,39.761885],[-105.322489,39.761838],[-105.322215,39.761791],[-105.321942,39.761744],[-105.321668,39.761697],[-105.321394,39.76165],[-105.32112,39.761603],[-105.320846,39.761556],[-105.320573,39.761509],[-105.320299,39.761462],[-105.320025,39.761415],[-105.319751,39.761368],[-105.319477,39.761321],[-105.319204,39.761274],[-105.31893,39.761227],[-105.318656,39.76118],[-105.318382,39.761133],[-105.318108,39.761086],[-105.317835,39.761039],[-105.317561,39.760992],[-105.317287,39.760945],[-105.317013,39.760898],[-105.316739,39.760851],[-105.316466,39.760804],[-105.316192,39.760757],[-105.315918,39.76071],[-105.315644,39.760663],[-105.31537,39.760616],[-105.315097,39.760569],[-105.314823,39.760522],[-105.314549,39.760475],[-105.314275,39.760428],[-105.314001,39.760381],[-105.313728,39.760334],[-105.313454,39.760287],[-105.31318,39.76024],[-105.312906,39.760193],[-105.312633,39.760146],[-105.312359,39.760099],[-105.312085,39.760052],[-105.311811,39.760005],[-105.311537,39.759958],[-105.311264,39.759911],[-105.31099,39.759864],[-105.310716,39.759817],[-105.310442,39.75977],[-105.310168,39.759723],[-105.309895,39.759676],[-105.309621,39.759629],[-105.309347,39.759582],[-105.309073,39.759535],[-105.308799,39.759488],[-105.308526,39.759441],[-105.308252,39.759394],[-105.307978,39.759347],[-105.307704,39.7593],[-105.30743,39.759253],[-105.307157,39.759206],[-105.306883,39.759159],[-105.306609,39.759112],[-105.306335,39.759065],[-105.306061,39.759018],[-105.305788,39.758971],[-105.305514,39.758924],[-105.30524,39.758877],[-105.304966,39.75883],[-105.304692,39.758783],[-105.304419,39.758736],[-105.304145,39.758689],[-105.303871,39.758642],[-105.303597,39.758595],[-105.303323,39.758548],[-105.30305,39.758501],[-105.302776,39.758454],[-105.302502,39.758407],[-105.302228,39.75836],[-105.301954,39.758313],[-105.301681,39.758266],[-105.301407,39.758219],[-105.301133,39.758172],[-105.300859,39.758125],[-105.300585,39.758078],[-105.300312,39.758031],[-105.300038,39.757984],[-105.299764,39.757937],[-105.29949,39.75789],[-105.299217,39.757843],[-105.298943,39.757796],[-105.298669,39.757749],[-105.298395,39.757702],[-105.298121,39.757655],[-105.297848,39.757608],[-105.297574,39.757561],[-105.2973,39.757514],[-105.297026,39.757467],[-105.296752,39.75742],[-105.296479,39.757373],[-105.296205,39.757326],[-105.295931,39.757279],[-105.295657,39.757232],[-105.295383,39.757185],[-105.29511,39.757138],[-105.294836,39.757091],[-105.294562,39.757044],[-105.294288,39.756997],[-105.294014,39.75695],[-105.293741,39.756903],[-105.293467,39.756856],[-105.293193,39.756809],[-105.292919,39.756762],[-105.292645,39.756715],[-105.292372,39.756668],[-105.292098,39.756621],[-105.291824,39.756574],[-105.29155,39.756527],[-105.291276,39.75648],[-105.291003,39.756433],[-105.290729,39.756386],[-105.290455,39.756339],[-105.290181,39.756292],[-105.289907,39.756245],[-105.289634,39.756198],[-105.28936,39.756151],[-105.289086,39.756104],[-105.288812,39.756057],[-105.288538,39.75601],[-105.288265,39.755963],[-105.287991,39.755916],[-105.287717,39.755869],[-105.287443,39.755822],[-105.287169,39.755775],[-105.286896,39.755728],[-105.286622,39.755681],[-105.286348,39.755634],[-105.286074,39.755587],[-105.285801,39.75554],[-105.285527,39.755493],[-105.285253,39.755446],[-105.284979,39.755399],[-105.284705,39.755352],[-105.284432,39.755305],[-105.284158,39.755258],[-105.283884,39.755211],[-105.28361,39.755164],[-105.283336,39.755117],[-105.283063,39.75507],[-105.282789,39.755023],[-105.282515,39.754976],[-105.282241,39.754929],[-105.281967,39.754882],[-105.281694,39.754835],[-105.28142,39.754788],[-105.281146,39.754741],[-105.280872,39.754694],[-105.280598,39.754647],[-105.280325,39.7546],[-105.280051,39.754553],[-105.279777,39.754506],[-105.279503,39.754459],[-105.279229,39.754412],[-105.278956,39.754365],[-105.278682,39.754318],[-105.278408,39.754271],[-105.278134,39.754224],[-105.27786,39.754177],[-105.277587,39.75413],[-105.277313,39.754083],[-105.277039,39.754036],[-105.276765,39.753989],[-105.276491,39.753942],[-105.276218,39.753895],[-105.275944,39.753848],[-105.27567,39.753801],[-105.275396,39.753754],[-105.275122,39.753707],[-105.274849,39.75366],[-105.274575,39.753613],[-105.274301,39.753566],[-105.274027,39.753519],[-105.273753,39.753472],[-105.27348,39.753425],[-105.273206,39.753378],[-105.272932,39.753331],[-105.272658,39.753284],[-105.272385,39.753237],[-105.272111,39.75319],[-105.271837,39.753143],[-105.271563,39.753096],[-105.271289,39.753049],[-105.271016,39.753002],[-105.270742,39.752955],[-105.270468,39.752908],[-105.270194,39.752861],[-105.26992,39.752814],[-105.269647,39.752767],[-105.269373,39.75272],[-105.269099,39.752673],[-105.268825,39.752626],[-105.268551,39.752579],[-105.268278,39.752532],[-105.268004,39.752485],[-105.26773,39.752438],[-105.267456,39.752391],[-105.267182,39.752344],[-105.266909,39.752297],[-105.266635,39.75225],[-105.266361,39.752203],[-105.266087,39.752156],[-105.265813,39.752109],[-105.26554,39.752062],[-105.265266,39.752015],[-105.264992,39.751968],[-105.264718,39.751921],[-105.264444,39.751874],[-105.264171,39.751827],[-105.263897,39.75178],[-105.263623,39.751733],[-105.263349,39.751686],[-105.263075,39.751639],[-105.262802,39.751592],[-105.262528,39.751545],[-105.262254,39.751498],[-105.26198,39.751451],[-105.261706,39.751404],[-105.261433,39.751357],[-105.261159,39.75131],[-105.260885,39.751263],[-105.260611,39.751216],[-105.260337,39.751169],[-105.260064,39.751122],[-105.25979,39.751075],[-105.259516,39.751028],[-105.259242,39.750981],[-105.258969,39.750934],[-105.258695,39.750887],[-105.258421,39.75084],[-105.258147,39.750793],[-105.257873,39.750746],[-105.2576,39.750699],[-105.257326,39.750652],[-105.257052,39.750605],[-105.256778,39.750558],[-105.256504,39.750511],[-105.256231,39.750464],[-105.255957,39.750417],[-105.255683,39.75037],[-105.255409,39.750323],[-105.255135,39.750276],[-105.254862,39.750229],[-105.254588,39.750182],[-105.254314,39.750135],[-105.25404,39.750088],[-105.253766,39.750041],[-105.253493,39.749994],[-105.253219,39.749947],[-105.252945,39.7499],[-105.252671,39.749853],[-105.252397,39.749806],[-105.252124,39.749759],[-105.25185,39.749712],[-105.251576,39.749665],[-105.251302,39.749618],[-105.251028,39.749571],[-105.250755,39.749524],[-105.250481,39.749477],[-105.250207,39.74943],[-105.249933,39.749383],[-105.249659,39.749336],[-105.249386,39.749289],[-105.249112,39.749242],[-105.248838,39.749195],[-105.248564,39.749148],[-105.24829,39.749101],[-105.248017,39.749054],[-105.247743,39.749007],[-105.247469,39.74896],[-105.247195,39.748913],[-105.246921,39.748866],[-105.246648,39.748819],[-105.246374,39.748772],[-105.2461,39.748725],[-105.245826,39.748678],[-105.245553,39.748631],[-105.245279,39.748584],[-105.245005,39.748537],[-105.244731,39.74849],[-105.244457,39.748443],[-105.244184,39.748396],[-105.24393,39.748464],[-105.24369,39.748602],[-105.243449,39.748741],[-105.243208,39.74888],[-105.242967,39.749019],[-105.242727,39.749157],[-105.242486,39.749296],[-105.242245,39.749435],[-105.242005,39.749573],[-105.241764,39.749712],[-105.241523,39.749851],[-105.241283,39.74999],[-105.241042,39.750128],[-105.240801,39.750267],[-105.24056,39.750406],[-105.24032,39.750544],[-105.240079,39.750683],[-105.239838,39.750822],[-105.239598,39.75096],[-105.239357,39.751099],[-105.239116,39.751238],[-105.238876,39.751377],[-105.238635,39.751515],[-105.238394,39.751654],[-105.238154,39.751793],[-105.237913,39.751931],[-105.237672,39.75207],[-105.237431,39.752209],[-105.237191,39.752348],[-105.23695,39.752486],[-105.236709,39.752625],[-105.236469,39.752764],[-105.236228,39.752902],[-105.235987,39.753041],[-105.235747,39.75318],[-105.235506,39.753318],[-105.235265,39.753457],[-105.235025,39.753596],[-105.234784,39.753735],[-105.234543,39.753873],[-105.234302,39.754012],[-105.234062,39.754151],[-105.233821,39.754289],[-105.23358,39.754428],[-105.23334,39.754567],[-105.233099,39.754706],[-105.232858,39.754844],[-105.232618,39.754983],[-105.232377,39.755122],[-105.232136,39.75526],[-105.231895,39.755399],[-105.231655,39.755538],[-105.231414,39.755676],[-105.231173,39.755815],[-105.230933,39.755954],[-105.230692,39.756093],[-105.230451,39.756231],[-105.230211,39.75637],[-105.22997,39.756509],[-105.229729,39.756647],[-105.229489,39.756786],[-105.229248,39.756925],[-105.229007,39.757064],[-105.228766,39.757202],[-105.228526,39.757341],[-105.228285,39.75748],[-105.228044,39.757618],[-105.227804,39.757757],[-105.227563,39.757896],[-105.227322,39.758034],[-105.227082,39.758173],[-105.226841,39.758312],[-105.2266,39.758451],[-105.22636,39.758589],[-105.226119,39.758728],[-105.225878,39.758867],[-105.225637,39.759005],[-105.225397,39.759144],[-105.225156,39.759283],[-105.224915,39.759422],[-105.224675,39.75956],[-105.224434,39.759699],[-105.224193,39.759838],[-105.223953,39.759976],[-105.223712,39.760115],[-105.223471,39.760254],[-105.22323,39.760392],[-105.22299,39.760531],[-105.222749,39.76067],[-105.222508,39.760809],[-105.222268,39.760947],[-105.222027,39.761086],[-105.221786,39.761225],[-105.221546,39.761363],[-105.221305,39.761502],[-105.221064,39.761641],[-105.220824,39.76178],[-105.220583,39.761918],[-105.220342,39.762057],[-105.220101,39.762196],[-105.219861,39.762334],[-105.21962,39.762473],[-105.219379,39.762612],[-105.219139,39.762751],[-105.218898,39.762889],[-105.218657,39.763028],[-105.218417,39.763167],[-105.218176,39.763305],[-105.217935,39.763444],[-105.217695,39.763583],[-105.217454,39.763721],[-105.217213,39.76386],[-105.216972,39.763999],[-105.216732,39.764138],[-105.216491,39.764276],[-105.21625,39.764415],[-105.21601,39.764554],[-105.215769,39.764692],[-105.215528,39.764831],[-105.215288,39.76497],[-105.215047,39.765109],[-105.214806,39.765247],[-105.214565,39.765386],[-105.214325,39.765525],[-105.214084,39.765663],[-105.213843,39.765802],[-105.213603,39.765941],[-105.213362,39.766079],[-105.213121,39.766218],[-105.212881,39.766357],[-105.21264,39.766496],[-105.212399,39.766634],[-105.212159,39.766773],[-105.211918,39.766912],[-105.211677,39.76705],[-105.211436,39.767189],[-105.211196,39.767328],[-105.210955,39.767467],[-105.210714,39.767605],[-105.210474,39.767744],[-105.210233,39.767883],[-105.209992,39.768021],[-105.209752,39.76816],[-105.209511,39.768299],[-105.20927,39.768437],[-105.20903,39.768576],[-105.208789,39.768715],[-105.208548,39.768854],[-105.208307,39.768992],[-105.208067,39.769131],[-105.207826,39.76927],[-105.207585,39.769408],[-105.207345,39.769547],[-105.207104,39.769686],[-105.206863,39.769825],[-105.206623,39.769963],[-105.206382,39.770102],[-105.206141,39.770241],[-105.2059,39.770379],[-105.20566,39.770518],[-105.205419,39.770657],[-105.205178,39.770795],[-105.204938,39.770934],[-105.204697,39.771073],[-105.204456,39.771212],[-105.204216,39.77135],[-105.203975,39.771489],[-105.203734,39.771628],[-105.203494,39.771766],[-105.203253,39.771905],[-105.203012,39.772044],[-105.202771,39.772183],[-105.202531,39.772321],[-105.20229,39.77246],[-105.202049,39.772599],[-105.201809,39.772737],[-105.201568,39.772876],[-105.201327,39.773015],[-105.201087,39.773153],[-105.200846,39.773292],[-105.200605,39.773431],[-105.200365,39.77357],[-105.200124,39.773708],[-105.199883,39.773847],[-105.199642,39.773986],[-105.199402,39.774124],[-105.199161,39.774263],[-105.19892,39.774402],[-105.19868,39.774541],[-105.198439,39.774679],[-105.198198,39.774818],[-105.197958,39.774957],[-105.197717,39.775095],[-105.197476,39.775234],[-105.197235,39.775373],[-105.196995,39.775511],[-105.196754,39.77565],[-105.196513,39.775789],[-105.196273,39.775928],[-105.196032,39.776066],[-105.195791,39.776205],[-105.195551,39.776344],[-105.19531,39.776482],[-105.195069,39.776621],[-105.194829,39.77676],[-105.194588,39.776899],[-105.194347,39.777037],[-105.194106,39.777176],[-105.193866,39.777315],[-105.193625,39.777453],[-105.193384,39.777592],[-105.193144,39.777731],[-105.192903,39.777869],[-105.192662,39.778008],[-105.192422,39.778147],[-105.192181,39.778286],[-105.19194,39.778424],[-105.1917,39.778563],[-105.191459,39.778702],[-105.191218,39.77884],[-105.190977,39.778979],[-105.190737,39.779118],[-105.190496,39.779257],[-105.190255,39.779395],[-105.190015,39.779534],[-105.189774,39.779673],[-105.189533,39.779811],[-105.189293,39.77995],[-105.189052,39.780089],[-105.188811,39.780228],[-105.18857,39.780366],[-105.18833,39.780505],[-105.188089,39.780644],[-105.187848,39.780782],[-105.187608,39.780921],[-105.187367,39.78106],[-105.187126,39.781198],[-105.186886,39.781337],[-105.186645,39.781476],[-105.186404,39.781615],[-105.186164,39.781753],[-105.185923,39.781892],[-105.185682,39.782031],[-105.185441,39.782169],[-105.185201,39.782308],[-105.18496,39.782447],[-105.184719,39.782586],[-105.184479,39.782724],[-105.184238,39.782863],[-105.183997,39.783002],[-105.183757,39.78314],[-105.183516,39.783279],[-105.183275,39.783418],[-105.183035,39.783556],[-105.182794,39.783695],[-105.182553,39.783834],[-105.182312,39.783973],[-105.182072,39.784111],[-105.181831,39.78425],[-105.18159,39.784389],[-105.18135,39.784527],[-105.181109,39.784666],[-105.180868,39.784805],[-105.180628,39.784944],[-105.180387,39.785082],[-105.180146,39.785221],[-105.179905,39.78536],[-105.179665,39.785498],[-105.179424,39.785637],[-105.179183,39.785776],[-105.178943,39.785914],[-105.178702,39.786053],[-105.178461,39.786192],[-105.178221,39.786331],[-105.17798,39.786469],[-105.177739,39.786608],[-105.177499,39.786747],[-105.177258,39.786885],[-105.177017,39.787024],[-105.176776,39.787163],[-105.176536,39.787302],[-105.176295,39.78744],[-105.176054,39.787579],[-105.175814,39.787718],[-105.175573,39.787856],[-105.175332,39.787995],[-105.175092,39.788134],[-105.174851,39.788272],[-105.17461,39.788411],[-105.17437,39.78855],[-105.174129,39.788689],[-105.173888,39.788827],[-105.173647,39.788966],[-105.173407,39.789105],[-105.173166,39.789243],[-105.172925,39.789382],[-105.172685,39.789521],[-105.172444,39.78966],[-105.172203,39.789798],[-105.171963,39.789937],[-105.171722,39.790076],[-105.171481,39.790214],[-105.17124,39.790353],[-105.171,39.790492],[-105.170759,39.79063],[-105.170518,39.790769],[-105.170278,39.790908],[-105.170037,39.791047],[-105.169796,39.791185],[-105.169556,39.791324],[-105.169315,39.791463],[-105.169074,39.791601],[-105.168834,39.79174],[-105.168593,39.791879],[-105.168352,39.792018],[-105.168111,39.792156],[-105.167871,39.792295],[-105.16763,39.792434],[-105.167389,39.792572],[-105.167149,39.792711],[-105.166908,39.79285],[-105.166667,39.792988],[-105.166427,39.793127],[-105.166186,39.793266],[-105.165945,39.793405],[-105.165705,39.793543],[-105.165464,39.793682],[-105.165223,39.793821],[-105.164982,39.793959],[-105.164742,39.794098],[-105.164501,39.794237],[-105.16426,39.794376],[-105.16402,39.794514],[-105.163779,39.794653],[-105.163538,39.794792],[-105.163298,39.79493],[-105.163057,39.795069],[-105.162816,39.795208],[-105.162575,39.795346],[-105.162335,39.795485],[-105.162094,39.795624],[-105.161853,39.795763],[-105.161613,39.795901],[-105.161372,39.79604],[-105.161131,39.796179],[-105.160891,39.796317],[-105.16065,39.796456],[-105.160409,39.796595],[-105.160169,39.796734],[-105.159928,39.796872],[-105.159687,39.797011],[-105.159446,39.79715],[-105.159206,39.797288],[-105.158965,39.797427],[-105.158724,39.797566],[-105.158484,39.797705],[-105.158243,39.797843],[-105.158002,39.797982],[-105.157762,39.798121],[-105.157521,39.798259],[-105.15728,39.798398],[-105.15704,39.798537],[-105.156799,39.798675],[-105.156558,39.798814],[-105.156317,39.798953],[-105.156077,39.799092],[-105.155836,39.79923],[-105.155595,39.799369],[-105.155355,39.799508],[-105.155114,39.799646],[-105.154873,39.799785],[-105.154633,39.799924],[-105.154392,39.800063],[-105.154151,39.800201],[-105.15391,39.80034],[-105.15367,39.800479],[-105.153429,39.800617],[-105.153188,39.800756],[-105.152948,39.800895],[-105.152707,39.801033],[-105.152466,39.801172],[-105.152226,39.801311],[-105.151985,39.80145],[-105.151744,39.801588],[-105.151504,39.801727],[-105.151263,39.801866],[-105.151022,39.802004],[-105.150781,39.802143],[-105.150541,39.802282],[-105.1503,39.802421],[-105.150059,39.802559],[-105.149819,39.802698],[-105.149578,39.802837],[-105.149337,39.802975],[-105.149097,39.803114],[-105.148856,39.803253],[-105.148615,39.803391],[-105.148375,39.80353],[-105.148134,39.803669],[-105.147893,39.803808],[-105.147652,39.803946],[-105.147412,39.804085],[-105.147171,39.804224],[-105.14693,39.804362],[-105.14669,39.804501],[-105.146449,39.80464],[-105.146208,39.804779],[-105.145968,39.804917],[-105.145727,39.805056],[-105.145486,39.805195],[-105.145245,39.805333],[-105.145005,39.805472],[-105.144764,39.805611],[-105.144523,39.805749],[-105.144283,39.805888],[-105.144042,39.806027],[-105.143801,39.806166],[-105.143561,39.806304],[-105.14332,39.806443],[-105.143079,39.806582],[-105.142839,39.80672],[-105.142598,39.806859],[-105.142357,39.806998],[-105.142116,39.807137],[-105.141876,39.807275],[-105.141635,39.807414],[-105.141394,39.807553],[-105.141154,39.807691],[-105.140913,39.80783],[-105.140672,39.807969],[-105.140432,39.808107],[-105.140191,39.808246],[-105.13995,39.808385],[-105.13971,39.808524],[-105.139446,39.808462],[-105.139181,39.80838],[-105.138915,39.808298],[-105.13865,39.808217],[-105.138384,39.808135],[-105.138118,39.808054],[-105.137853,39.807972],[-105.137587,39.80789],[-105.137322,39.807809],[-105.137056,39.807727],[-105.136791,39.807646],[-105.136525,39.807564],[-105.13626,39.807482],[-105.135994,39.807401],[-105.135729,39.807319],[-105.135463,39.807238],[-105.135198,39.807156],[-105.134932,39.807074],[-105.134666,39.806993],[-105.134401,39.806911],[-105.134135,39.806829],[-105.13387,39.806748],[-105.133604,39.806666],[-105.133339,39.806585],[-105.133073,39.806503],[-105.132808,39.806421],[-105.132542,39.80634],[-105.132277,39.806258],[-105.132011,39.806177],[-105.131745,39.806095],[-105.13148,39.806013],[-105.131214,39.805932],[-105.130949,39.80585],[-105.130683,39.805768],[-105.130418,39.805687],[-105.130152,39.805605],[-105.129887,39.805524],[-105.129621,39.805442],[-105.129356,39.80536],[-105.12909,39.805279],[-105.128825,39.805197],[-105.128559,39.805116],[-105.128293,39.805034],[-105.128028,39.804952],[-105.127762,39.804871],[-105.127497,39.804789],[-105.127231,39.804708],[-105.126966,39.804626],[-105.1267,39.804544],[-105.126435,39.804463],[-105.126169,39.804381],[-105.125904,39.804299],[-105.125638,39.804218],[-105.125372,39.804136],[-105.125107,39.804055],[-105.124841,39.803973],[-105.124576,39.803891],[-105.12431,39.80381],[-105.124045,39.803728],[-105.123779,39.803647],[-105.123514,39.803565],[-105.123248,39.803483],[-105.122983,39.803402],[-105.122717,39.80332],[-105.122451,39.803239],[-105.122186,39.803157],[-105.12192,39.803075],[-105.121655,39.802994],[-105.121389,39.802912],[-105.121124,39.80283],[-105.120858,39.802749],[-105.120593,39.802667],[-105.120327,39.802586],[-105.120062,39.802504],[-105.119796,39.802422],[-105.119531,39.802341],[-105.119265,39.802259],[-105.118999,39.802178],[-105.118734,39.802096],[-105.118468,39.802014],[-105.118203,39.801933],[-105.117937,39.801851],[-105.117672,39.801769],[-105.117406,39.801688],[-105.117141,39.801606],[-105.116875,39.801525],[-105.11661,39.801443],[-105.116344,39.801361],[-105.116078,39.80128],[-105.115813,39.801198],[-105.115547,39.801117],[-105.115282,39.801035],[-105.115016,39.800953],[-105.114751,39.800872],[-105.114485,39.80079],[-105.11422,39.800709],[-105.113954,39.800627],[-105.113689,39.800545],[-105.113423,39.800464],[-105.113158,39.800382],[-105.112892,39.8003],[-105.112626,39.800219],[-105.112361,39.800137],[-105.112095,39.800056],[-105.11183,39.799974],[-105.111564,39.799892],[-105.111299,39.799811],[-105.111033,39.799729],[-105.110768,39.799648],[-105.110502,39.799566],[-105.110237,39.799484],[-105.109971,39.799403],[-105.109705,39.799321],[-105.10944,39.79924],[-105.109174,39.799158],[-105.108909,39.799076],[-105.108643,39.798995],[-105.108378,39.798913],[-105.108112,39.798831],[-105.107847,39.79875],[-105.107581,39.798668],[-105.107316,39.798587],[-105.10705,39.798505],[-105.106784,39.798423],[-105.106519,39.798342],[-105.106253,39.79826],[-105.105988,39.798179],[-105.105722,39.798097],[-105.105457,39.798015],[-105.105191,39.797934],[-105.104926,39.797852],[-105.10466,39.797771],[-105.104395,39.797689],[-105.104129,39.797607],[-105.103864,39.797526],[-105.103598,39.797444],[-105.103332,39.797362],[-105.103067,39.797281],[-105.102801,39.797199],[-105.102536,39.797118],[-105.10227,39.797036],[-105.102005,39.796954],[-105.101739,39.796873],[-105.101474,39.796791],[-105.101208,39.79671],[-105.100943,39.796628],[-105.100677,39.796546],[-105.100411,39.796465],[-105.100146,39.796383],[-105.09988,39.796301],[-105.099615,39.79622],[-105.099349,39.796138],[-105.099084,39.796057],[-105.098818,39.795975],[-105.098553,39.795893],[-105.098287,39.795812],[-105.098022,39.79573],[-105.097756,39.795649],[-105.097491,39.795567],[-105.097225,39.795485],[-105.096959,39.795404],[-105.096694,39.795322],[-105.096428,39.795241],[-105.096163,39.795159],[-105.095897,39.795077],[-105.095632,39.794996],[-105.095366,39.794914],[-105.095101,39.794832],[-105.094835,39.794751],[-105.09457,39.794669],[-105.094304,39.794588],[-105.094038,39.794506],[-105.093773,39.794424],[-105.093507,39.794343],[-105.093242,39.794261],[-105.092976,39.79418],[-105.092711,39.794098],[-105.092445,39.794016],[-105.09218,39.793935],[-105.091914,39.793853],[-105.091649,39.793772],[-105.091383,39.79369],[-105.091118,39.793608],[-105.090852,39.793527],[-105.090586,39.793445],[-105.090321,39.793363],[-105.090055,39.793282],[-105.08979,39.7932],[-105.089524,39.793119],[-105.089259,39.793037],[-105.088993,39.792955],[-105.088728,39.792874],[-105.088462,39.792792],[-105.088197,39.792711],[-105.087931,39.792629],[-105.087665,39.792547],[-105.0874,39.792466],[-105.087134,39.792384],[-105.086869,39.792302],[-105.086603,39.792221],[-105.086338,39.792139],[-105.086072,39.792058],[-105.085807,39.791976],[-105.085541,39.791894],[-105.085276,39.791813],[-105.08501,39.791731],[-105.084744,39.79165],[-105.084479,39.791568],[-105.084213,39.791486],[-105.083948,39.791405],[-105.083682,39.791323],[-105.083417,39.791242],[-105.083151,39.79116],[-105.082886,39.791078],[-105.08262,39.790997],[-105.082355,39.790915],[-105.082089,39.790833],[-105.081824,39.790752],[-105.081558,39.79067],[-105.081292,39.790589],[-105.081027,39.790507],[-105.080761,39.790425],[-105.080496,39.790344],[-105.08023,39.790262],[-105.079965,39.790181],[-105.079699,39.790099],[-105.079434,39.790017],[-105.079168,39.789936],[-105.078903,39.789854],[-105.078637,39.789773],[-105.078371,39.789691],[-105.078106,39.789609],[-105.07784,39.789528],[-105.077575,39.789446],[-105.077309,39.789364],[-105.077044,39.789283],[-105.076778,39.789201],[-105.076513,39.78912],[-105.076247,39.789038],[-105.075982,39.788956],[-105.075716,39.788875],[-105.075451,39.788793],[-105.075185,39.788712],[-105.074919,39.78863],[-105.074654,39.788548],[-105.074388,39.788467],[-105.074123,39.788385],[-105.073857,39.788303],[-105.073592,39.788222],[-105.073326,39.78814],[-105.073061,39.788059],[-105.072795,39.787977],[-105.07253,39.787895],[-105.072264,39.787814],[-105.071998,39.787732],[-105.071733,39.787651],[-105.071467,39.787569],[-105.071202,39.787487],[-105.070936,39.787406],[-105.070671,39.787324],[-105.070405,39.787243],[-105.07014,39.787161],[-105.069874,39.787079],[-105.069609,39.786998],[-105.069343,39.786916],[-105.069077,39.786834],[-105.068812,39.786753],[-105.068546,39.786671],[-105.068281,39.78659],[-105.068015,39.786508],[-105.06775,39.786426],[-105.067484,39.786345],[-105.067219,39.786263],[-105.066953,39.786182],[-105.066688,39.7861],[-105.066422,39.786018],[-105.066157,39.785937],[-105.065891,39.785855],[-105.065625,39.785774],[-105.06536,39.785692],[-105.065094,39.78561],[-105.064829,39.785529],[-105.064563,39.785447],[-105.064298,39.785365],[-105.064032,39.785284],[-105.063767,39.785202],[-105.063501,39.785121],[-105.063236,39.785039],[-105.06297,39.784957],[-105.062704,39.784876],[-105.062439,39.784794],[-105.062173,39.784713],[-105.061908,39.784631],[-105.061642,39.784549],[-105.061377,39.784468],[-105.061111,39.784386],[-105.060846,39.784305],[-105.06058,39.784223],[-105.060315,39.784141],[-105.060049,39.78406],[-105.059784,39.783978],[-105.059518,39.783896],[-105.059252,39.783815],[-105.058987,39.783733],[-105.058721,39.783652],[-105.058456,39.78357],[-105.05819,39.783488],[-105.057925,39.783407],[-105.057659,39.783325],[-105.057394,39.783244],[-105.057128,39.783162],[-105.056863,39.78308],[-105.056597,39.782999],[-105.056331,39.782917],[-105.056066,39.782835],[-105.0558,39.782754],[-105.055535,39.782672],[-105.055269,39.782591],[-105.055004,39.782509],[-105.054738,39.782427],[-105.054473,39.782346],[-105.054207,39.782264],[-105.053942,39.782183],[-105.053676,39.782101],[-105.05341,39.782019],[-105.053145,39.781938],[-105.052879,39.781856],[-105.052614,39.781775],[-105.052348,39.781693],[-105.052083,39.781611],[-105.051817,39.78153],[-105.051552,39.781448],[-105.051286,39.781366],[-105.051021,39.781285],[-105.050755,39.781203],[-105.05049,39.781122],[-105.050224,39.78104],[-105.049958,39.780958],[-105.049693,39.780877],[-105.049427,39.780795],[-105.049162,39.780714],[-105.048896,39.780632],[-105.048631,39.78055],[-105.048365,39.780469],[-105.0481,39.780387],[-105.047834,39.780306],[-105.047569,39.780224],[-105.047303,39.780142],[-105.047037,39.780061],[-105.046772,39.779979],[-105.046506,39.779897],[-105.046241,39.779816],[-105.045975,39.779734],[-105.04571,39.779653],[-105.045444,39.779571],[-105.045179,39.779489],[-105.044913,39.779408],[-105.044648,39.779326],[-105.044382,39.779245],[-105.044117,39.779163],[-105.043851,39.779081],[-105.043585,39.779],[-105.04332,39.778918],[-105.043054,39.778836],[-105.042789,39.778755],[-105.042523,39.778673],[-105.042258,39.778592],[-105.041992,39.77851],[-105.041727,39.778428],[-105.041461,39.778347],[-105.041196,39.778265],[-105.04093,39.778184],[-105.040664,39.778102],[-105.040399,39.77802],[-105.040133,39.777939],[-105.039868,39.777857],[-105.039602,39.777776],[-105.039337,39.777694],[-105.039071,39.777612],[-105.038806,39.777531],[-105.03854,39.777449],[-105.038275,39.777367],[-105.038009,39.777286],[-105.037744,39.777204],[-105.037478,39.777123],[-105.037212,39.777041],[-105.036947,39.776959],[-105.036681,39.776878],[-105.036416,39.776796],[-105.03615,39.776715],[-105.035885,39.776633],[-105.035619,39.776551],[-105.035354,39.77647],[-105.035088,39.776388],[-105.034823,39.776307],[-105.034557,39.776225],[-105.034291,39.776143],[-105.034026,39.776062],[-105.03376,39.77598],[-105.033495,39.775898],[-105.033229,39.775817],[-105.032964,39.775735],[-105.032698,39.775654],[-105.032433,39.775572],[-105.032167,39.77549],[-105.031902,39.775409],[-105.031636,39.775327],[-105.03137,39.775246],[-105.031105,39.775164],[-105.030839,39.775082],[-105.030574,39.775001],[-105.030308,39.774919],[-105.030043,39.774838],[-105.029777,39.774756],[-105.029512,39.774674],[-105.029246,39.774593],[-105.028981,39.774511],[-105.028715,39.774429],[-105.02845,39.774348],[-105.028184,39.774266],[-105.027918,39.774185],[-105.027653,39.774103],[-105.027387,39.774021],[-105.027122,39.77394],[-105.026856,39.773858],[-105.026591,39.773777],[-105.026325,39.773695],[-105.02606,39.773613],[-105.025794,39.773532],[-105.025529,39.77345],[-105.025263,39.773368],[-105.024997,39.773287],[-105.024732,39.773205],[-105.024466,39.773124],[-105.024201,39.773042],[-105.023935,39.77296],[-105.02367,39.772879],[-105.023404,39.772797],[-105.023139,39.772716],[-105.022873,39.772634],[-105.022608,39.772552],[-105.022342,39.772471],[-105.022077,39.772389],[-105.021811,39.772308],[-105.021545,39.772226],[-105.02128,39.772144],[-105.021014,39.772063],[-105.020749,39.771981],[-105.020483,39.771899],[-105.020218,39.771818],[-105.019952,39.771736],[-105.019687,39.771655],[-105.019421,39.771573],[-105.019156,39.771491],[-105.01889,39.77141],[-105.018624,39.771328],[-105.018359,39.771247],[-105.018093,39.771165],[-105.017828,39.771083],[-105.017562,39.771002],[-105.017297,39.77092],[-105.017031,39.770839],[-105.016766,39.770757],[-105.0165,39.770675],[-105.016235,39.770594],[-105.015969,39.770512],[-105.015703,39.77043],[-105.015438,39.770349],[-105.015172,39.770267],[-105.014907,39.770186],[-105.014641,39.770104],[-105.014376,39.770022],[-105.01411,39.769941],[-105.013845,39.769859],[-105.013579,39.769778],[-105.013314,39.769696],[-105.013048,39.769614],[-105.012783,39.769533],[-105.012517,39.769451],[-105.012251,39.769369],[-105.011986,39.769288],[-105.01172,39.769206],[-105.011455,39.769125],[-105.011189,39.769043],[-105.010924,39.768961],[-105.010658,39.76888],[-105.010393,39.768798],[-105.010127,39.768717],[-105.009862,39.768635],[-105.009596,39.768553],[-105.00933,39.768472],[-105.009065,39.76839],[-105.008799,39.768309],[-105.008534,39.768227],[-105.008268,39.768145],[-105.008003,39.768064],[-105.007737,39.767982],[-105.007472,39.7679],[-105.007206,39.767819],[-105.006941,39.767737],[-105.006675,39.767656],[-105.00641,39.767574],[-105.006144,39.767492],[-105.005878,39.767411],[-105.005613,39.767329],[-105.005347,39.767248],[-105.005082,39.767166],[-105.004816,39.767084],[-105.004551,39.767003],[-105.004285,39.766921],[-105.00402,39.76684],[-105.003754,39.766758],[-105.003489,39.766676],[-105.003223,39.766595],[-105.002957,39.766513],[-105.002692,39.766431],[-105.002426,39.76635],[-105.002161,39.766268],[-105.001895,39.766187],[-105.00163,39.766105],[-105.001364,39.766023],[-105.001099,39.765942],[-105.000833,39.76586],[-105.000568,39.765779],[-105.000302,39.765697],[-105.000036,39.765615],[-104.999771,39.765534],[-104.999505,39.765452],[-104.99924,39.76537],[-104.998974,39.765289],[-104.998709,39.765207],[-104.998443,39.765126],[-104.998178,39.765044],[-104.997912,39.764962],[-104.997647,39.764881],[-104.997381,39.764799],[-104.997116,39.764718],[-104.99685,39.764636],[-104.996584,39.764554],[-104.996319,39.764473],[-104.996053,39.764391],[-104.995788,39.76431],[-104.995522,39.764228],[-104.995257,39.764146],[-104.994991,39.764065],[-104.994726,39.763983],[-104.99446,39.763901],[-104.994195,39.76382],[-104.993929,39.763738],[-104.993663,39.763657],[-104.993398,39.763575],[-104.993132,39.763493],[-104.992867,39.763412],[-104.992601,39.76333],[-104.992336,39.763249],[-104.99207,39.763167],[-104.991805,39.763085],[-104.991539,39.763004],[-104.991274,39.762922],[-104.991008,39.762841],[-104.990743,39.762759],[-104.990477,39.762677],[-104.990211,39.762596],[-104.989946,39.762514],[-104.98968,39.762432],[-104.989415,39.762351],[-104.989149,39.762269],[-104.988884,39.762188],[-104.988618,39.762106],[-104.988353,39.762024],[-104.988087,39.761943],[-104.987822,39.761861],[-104.987556,39.76178],[-104.98729,39.761698],[-104.987025,39.761616],[-104.986759,39.761535],[-104.986494,39.761453],[-104.986228,39.761372],[-104.985963,39.76129],[-104.985697,39.761208],[-104.985432,39.761127],[-104.985166,39.761045],[-104.984901,39.760963],[-104.984635,39.760882],[-104.984369,39.7608],[-104.984104,39.760719],[-104.983838,39.760637],[-104.983573,39.760555],[-104.983307,39.760474],[-104.983042,39.760392],[-104.982776,39.760311],[-104.982511,39.760229],[-104.982245,39.760147],[-104.98198,39.760066],[-104.981714,39.759984],[-104.981449,39.759902],[-104.981183,39.759821],[-104.980917,39.759739],[-104.980652,39.759658],[-104.980386,39.759576],[-104.980121,39.759494],[-104.979855,39.759413],[-104.97959,39.759331],[-104.979324,39.75925],[-104.979059,39.759168],[-104.978793,39.759086],[-104.978528,39.759005],[-104.978262,39.758923],[-104.977996,39.758842],[-104.977731,39.75876],[-104.977465,39.758678],[-104.9772,39.758597],[-104.976934,39.758515],[-104.976669,39.758433],[-104.976403,39.758352],[-104.976138,39.75827],[-104.975872,39.758189],[-104.975607,39.758107],[-104.975341,39.758025],[-104.975076,39.757944],[-104.97481,39.757862],[-104.974544,39.757781],[-104.974279,39.757699],[-104.974013,39.757617],[-104.973748,39.757536],[-104.973482,39.757454],[-104.973217,39.757373],[-104.972951,39.757291],[-104.972686,39.757209],[-104.97242,39.757128],[-104.972155,39.757046],[-104.971889,39.756964],[-104.971623,39.756883],[-104.971358,39.756801],[-104.971092,39.75672],[-104.970827,39.756638],[-104.970561,39.756556],[-104.970296,39.756475],[-104.97003,39.756393],[-104.969765,39.756312],[-104.969499,39.75623],[-104.969234,39.756148],[-104.968968,39.756067],[-104.968703,39.755985],[-104.968437,39.755903],[-104.968171,39.755822],[-104.967906,39.75574],[-104.96764,39.755659],[-104.967375,39.755577],[-104.967109,39.755495],[-104.966844,39.755414],[-104.966578,39.755332],[-104.966313,39.755251],[-104.966047,39.755169],[-104.965782,39.755087],[-104.965516,39.755006],[-104.96525,39.754924],[-104.964985,39.754843],[-104.964719,39.754761],[-104.964454,39.754679],[-104.964188,39.754598],[-104.963923,39.754516],[-104.963657,39.754434],[-104.963392,39.754353],[-104.963126,39.754271],[-104.962861,39.75419],[-104.962595,39.754108],[-104.962329,39.754026],[-104.962064,39.753945],[-104.961798,39.753863],[-104.961533,39.753782],[-104.961267,39.7537],[-104.961002,39.753618],[-104.960736,39.753537],[-104.960471,39.753455],[-104.960205,39.753374],[-104.95994,39.753292],[-104.959674,39.75321],[-104.959409,39.753129],[-104.959143,39.753047],[-104.958877,39.752965],[-104.958612,39.752884],[-104.958346,39.752802],[-104.958081,39.752721],[-104.957815,39.752639],[-104.95755,39.752557],[-104.957284,39.752476],[-104.957019,39.752394],[-104.956753,39.752313],[-104.956488,39.752231],[-104.956222,39.752149],[-104.955956,39.752068],[-104.955691,39.751986],[-104.955425,39.751905],[-104.95516,39.751823],[-104.954894,39.751741],[-104.954629,39.75166],[-104.954363,39.751578],[-104.954098,39.751496],[-104.953832,39.751415],[-104.953567,39.751333],[-104.953301,39.751252],[-104.953036,39.75117],[-104.95277,39.751088],[-104.952504,39.751007],[-104.952239,39.750925],[-104.951973,39.750844],[-104.951708,39.750762],[-104.951442,39.75068],[-104.951177,39.750599],[-104.950911,39.750517],[-104.950639,39.750512],[-104.950363,39.750545],[-104.950087,39.750579],[-104.949811,39.750612],[-104.949536,39.750645],[-104.94926,39.750678],[-104.948984,39.750712],[-104.948708,39.750745],[-104.948432,39.750778],[-104.948157,39.750811],[-104.947881,39.750844],[-104.947605,39.750878],[-104.947329,39.750911],[-104.947053,39.750944],[-104.946777,39.750977],[-104.946502,39.751011],[-104.946226,39.751044],[-104.94595,39.751077],[-104.945674,39.75111],[-104.945398,39.751143],[-104.945123,39.751177],[-104.944847,39.75121],[-104.944571,39.751243],[-104.944295,39.751276],[-104.944019,39.75131],[-104.943744,39.751343],[-104.943468,39.751376],[-104.943192,39.751409],[-104.942916,39.751442],[-104.94264,39.751476],[-104.942365,39.751509],[-104.942089,39.751542],[-104.941813,39.751575],[-104.941537,39.751609],[-104.941261,39.751642],[-104.940986,39.751675],[-104.94071,39.751708],[-104.940434,39.751741],[-104.940158,39.751775],[-104.939882,39.751808],[-104.939606,39.751841],[-104.939331,39.751874],[-104.939055,39.751908],[-104.938779,39.751941],[-104.938503,39.751974],[-104.938227,39.752007],[-104.937952,39.75204],[-104.937676,39.752074],[-104.9374,39.752107],[-104.937124,39.75214],[-104.936848,39.752173],[-104.936573,39.752206],[-104.936297,39.75224],[-104.936021,39.752273],[-104.935745,39.752306],[-104.935469,39.752339],[-104.935194,39.752373],[-104.934918,39.752406],[-104.934642,39.752439],[-104.934366,39.752472],[-104.93409,39.752505],[-104.933815,39.752539],[-104.933539,39.752572],[-104.933263,39.752605],[-104.932987,39.752638],[-104.932711,39.752672],[-104.932436,39.752705],[-104.93216,39.752738],[-104.931884,39.752771],[-104.931608,39.752804],[-104.931332,39.752838],[-104.931056,39.752871],[-104.930781,39.752904],[-104.930505,39.752937],[-104.930229,39.752971],[-104.929953,39.753004],[-104.929677,39.753037],[-104.929402,39.75307],[-104.929126,39.753103],[-104.92885,39.753137],[-104.928574,39.75317],[-104.928298,39.753203],[-104.928023,39.753236],[-104.927747,39.75327],[-104.927471,39.753303],[-104.927195,39.753336],[-104.926919,39.753369],[-104.926644,39.753402],[-104.926368,39.753436],[-104.926092,39.753469],[-104.925816,39.753502],[-104.92554,39.753535],[-104.925265,39.753569],[-104.924989,39.753602],[-104.924713,39.753635],[-104.924437,39.753668],[-104.924161,39.753701],[-104.923885,39.753735],[-104.92361,39.753768],[-104.923334,39.753801],[-104.923058,39.753834],[-104.922782,39.753868],[-104.922506,39.753901],[-104.922231,39.753934],[-104.921955,39.753967],[-104.921679,39.754],[-104.921403,39.754034],[-104.921127,39.754067],[-104.920852,39.7541],[-104.920576,39.754133],[-104.9203,39.754167],[-104.920024,39.7542],[-104.919748,39.754233],[-104.919473,39.754266],[-104.919197,39.754299],[-104.918921,39.754333],[-104.918645,39.754366],[-104.918369,39.754399],[-104.918094,39.754432],[-104.917818,39.754466],[-104.917542,39.754499],[-104.917266,39.754532],[-104.91699,39.754565],[-104.916714,39.754598],[-104.916439,39.754632],[-104.916163,39.754665],[-104.915887,39.754698],[-104.915611,39.754731],[-104.915335,39.754765],[-104.91506,39.754798],[-104.914784,39.754831],[-104.914508,39.754864],[-104.914232,39.754897],[-104.913956,39.754931],[-104.913681,39.754964],[-104.913405,39.754997],[-104.913129,39.75503],[-104.912853,39.755064],[-104.912577,39.755097],[-104.912302,39.75513],[-104.912026,39.755163],[-104.91175,39.755196],[-104.911474,39.75523],[-104.911198,39.755263],[-104.910923,39.755296],[-104.910647,39.755329],[-104.910371,39.755363],[-104.910095,39.755396],[-104.909819,39.755429],[-104.909544,39.755462],[-104.909268,39.755495],[-104.908992,39.755529],[-104.908716,39.755562],[-104.90844,39.755595],[-104.908164,39.755628],[-104.907889,39.755662],[-104.907613,39.755695],[-104.907337,39.755728],[-104.907061,39.755761],[-104.906785,39.755794],[-104.90651,39.755828],[-104.906234,39.755861],[-104.905958,39.755894],[-104.905682,39.755927],[-104.905406,39.755961],[-104.905131,39.755994],[-104.904855,39.756027],[-104.904579,39.75606],[-104.904303,39.756093],[-104.904027,39.756127],[-104.903752,39.75616],[-104.903476,39.756193],[-104.9032,39.756226],[-104.902924,39.75626],[-104.902648,39.756293],[-104.902373,39.756326],[-104.902097,39.756359],[-104.901821,39.756392],[-104.901545,39.756426],[-104.901269,39.756459],[-104.900993,39.756492],[-104.900718,39.756525],[-104.900442,39.756559],[-104.900166,39.756592],[-104.89989,39.756625],[-104.899614,39.756658],[-104.899339,39.756691],[-104.899063,39.756725],[-104.898787,39.756758],[-104.898511,39.756791],[-104.898235,39.756824],[-104.89796,39.756858],[-104.897684,39.756891],[-104.897408,39.756924],[-104.897132,39.756957],[-104.896856,39.75699],[-104.896581,39.757024],[-104.896305,39.757057],[-104.896029,39.75709],[-104.895753,39.757123],[-104.895477,39.757157],[-104.895202,39.75719],[-104.894926,39.757223],[-104.89465,39.757256],[-104.894374,39.757289],[-104.894098,39.757323],[-104.893823,39.757356],[-104.893547,39.757389],[-104.893271,39.757422],[-104.892995,39.757456],[-104.892719,39.757489],[-104.892443,39.757522],[-104.892168,39.757555],[-104.891892,39.757588],[-104.891616,39.757622],[-104.89134,39.757655],[-104.891064,39.757688],[-104.890789,39.757721],[-104.890513,39.757755],[-104.890237,39.757788],[-104.889961,39.757821],[-104.889685,39.757854],[-104.88941,39.757887],[-104.889134,39.757921],[-104.888858,39.757954],[-104.888582,39.757987],[-104.888306,39.75802],[-104.888031,39.758054],[-104.887755,39.758087],[-104.887479,39.75812],[-104.887203,39.758153],[-104.886927,39.758186],[-104.886652,39.75822],[-104.886376,39.758253],[-104.8861,39.758286],[-104.885824,39.758319],[-104.885548,39.758353],[-104.885272,39.758386],[-104.884997,39.758419],[-104.884721,39.758452],[-104.884445,39.758485],[-104.884169,39.758519],[-104.883893,39.758552],[-104.883618,39.758585],[-104.883342,39.758618],[-104.883066,39.758651],[-104.88279,39.758685],[-104.882514,39.758718],[-104.882239,39.758751],[-104.881963,39.758784],[-104.881687,39.758818],[-104.881411,39.758851],[-104.881135,39.758884],[-104.88086,39.758917],[-104.880584,39.75895],[-104.880308,39.758984],[-104.880032,39.759017],[-104.879756,39.75905],[-104.879481,39.759083],[-104.879205,39.759117],[-104.878929,39.75915],[-104.878653,39.759183],[-104.878377,39.759216],[-104.878101,39.759249],[-104.877826,39.759283],[-104.87755,39.759316],[-104.877274,39.759349],[-104.876998,39.759382],[-104.876722,39.759416],[-104.876447,39.759449],[-104.876171,39.759482],[-104.875895,39.759515],[-104.875619,39.759548],[-104.875343,39.759582],[-104.875068,39.759615],[-104.874792,39.759648],[-104.874516,39.759681],[-104.87424,39.759715],[-104.873964,39.759748],[-104.873689,39.759781],[-104.873413,39.759814],[-104.873137,39.759847],[-104.872861,39.759881],[-104.872585,39.759914],[-104.87231,39.759947],[-104.872034,39.75998],[-104.871758,39.760014],[-104.871482,39.760047],[-104.871206,39.76008],[-104.870931,39.760113],[-104.870655,39.760146],[-104.870379,39.76018],[-104.870103,39.760213],[-104.869827,39.760246],[-104.869551,39.760279],[-104.869276,39.760313],[-104.869,39.760346],[-104.868724,39.760379],[-104.868448,39.760412],[-104.868172,39.760445],[-104.867897,39.760479],[-104.867621,39.760512],[-104.867345,39.760545],[-104.867069,39.760578],[-104.866793,39.760612],[-104.866518,39.760645],[-104.866242,39.760678],[-104.865966,39.760711],[-104.86569,39.760744],[-104.865414,39.760778],[-104.865139,39.760811],[-104.864863,39.760844],[-104.864587,39.760877],[-104.864311,39.760911],[-104.864035,39.760944],[-104.86376,39.760977],[-104.863484,39.76101],[-104.863208,39.761043],[-104.862932,39.761077],[-104.862656,39.76111],[-104.86238,39.761143],[-104.862105,39.761176],[-104.861829,39.76121],[-104.861553,39.761243],[-104.861277,39.761276],[-104.861001,39.761309],[-104.860726,39.761342],[-104.86045,39.761376],[-104.860174,39.761409],[-104.859898,39.761442],[-104.859622,39.761475],[-104.859347,39.761509],[-104.859071,39.761542],[-104.858795,39.761575]]}    },
    "referencing": [
      {
        "coordinates": [
          "x",
          "y"
        ],
        "system": {
          "type": "GeographicCRS",
          "id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
        }
      }
    ]
  },
  "parameters": {
    "Height": {
      "type": "Parameter",
      "description": {
        "en": "Height above MSL"
      },
      "observedProperty": {
        "id": "http://vocab.nerc.ac.uk/standard_name/height_above_mean_sea_level/",
        "label": {
          "en": "Height above MSL"
        }
      },
    }
  },
  "ranges": {
    "Height":{
    "type":"NdArray",
    "dataType":"integer",
    "axisNames":["composite"],
    "shape":[2283],
    "values":[2813,2813,2808,2803,2796,2790,2790,2792,2786,2784,2775,2769,2769,2761,2753,2744,2739,2734,2735,2727,2708,2696,2688,2677,2666,2648,2638,2617,2595,2595,2572,2566,2550,2537,2521,2513,2504,2489,2480,2467,2467,2455,2454,2446,2439,2437,2429,2426,2417,2416,2397,2387,2387,2384,2383,2379,2378,2370,2363,2365,2357,2362,2358,2358,2346,2349,2339,2339,2353,2352,2366,2376,2384,2384,2383,2383,2378,2380,2369,2366,2358,2350,2350,2337,2331,2301,2301,2286,2283,2263,2258,2258,2258,2264,2261,2254,2225,2198,2198,2186,2182,2182,2186,2194,2223,2242,2265,2277,2295,2295,2308,2306,2319,2338,2336,2360,2364,2379,2386,2394,2396,2400,2402,2406,2411,2415,2422,2431,2427,2426,2417,2409,2409,2401,2391,2387,2389,2381,2394,2385,2389,2379,2379,2390,2379,2379,2374,2377,2370,2376,2373,2365,2357,2351,2348,2348,2357,2364,2360,2362,2362,2369,2366,2373,2367,2365,2370,2363,2364,2362,2369,2371,2373,2367,2369,2358,2357,2346,2346,2333,2322,2326,2319,2319,2308,2310,2293,2297,2278,2254,2252,2230,2229,2209,2204,2190,2168,2163,2142,2137,2132,2132,2142,2166,2177,2209,2209,2232,2225,2231,2217,2212,2226,2216,2219,2213,2223,2225,2233,2244,2249,2268,2286,2285,2307,2323,2336,2347,2357,2357,2370,2382,2399,2410,2424,2427,2439,2449,2459,2467,2467,2469,2472,2470,2470,2461,2469,2458,2459,2458,2444,2443,2443,2441,2446,2458,2468,2467,2470,2476,2474,2481,2479,2479,2480,2478,2488,2490,2499,2489,2497,2495,2501,2508,2507,2507,2498,2504,2492,2495,2488,2489,2491,2493,2494,2498,2498,2505,2508,2511,2514,2516,2519,2520,2522,2526,2525,2530,2530,2531,2528,2524,2520,2521,2515,2513,2508,2505,2501,2501,2498,2497,2494,2492,2490,2488,2486,2485,2484,2484,2484,2482,2478,2476,2474,2472,2470,2469,2467,2467,2467,2467,2468,2470,2478,2476,2474,2471,2469,2468,2476,2475,2474,2474,2473,2471,2467,2463,2458,2453,2447,2441,2437,2434,2431,2429,2428,2427,2428,2427,2426,2426,2426,2431,2432,2433,2433,2434,2434,2442,2443,2443,2440,2441,2446,2462,2466,2469,2471,2472,2470,2456,2451,2445,2440,2435,2430,2432,2433,2434,2436,2437,2437,2447,2445,2442,2438,2434,2432,2421,2420,2418,2416,2412,2404,2394,2384,2375,2366,2358,2352,2350,2346,2342,2339,2337,2335,2331,2328,2327,2325,2323,2320,2317,2315,2313,2312,2311,2307,2305,2305,2306,2305,2304,2298,2298,2298,2296,2295,2295,2303,2305,2305,2305,2305,2301,2304,2296,2289,2283,2278,2277,2278,2282,2287,2291,2296,2300,2293,2300,2306,2312,2320,2331,2334,2342,2348,2352,2354,2352,2336,2333,2330,2326,2319,2313,2296,2291,2287,2283,2281,2279,2273,2269,2260,2247,2233,2218,2221,2218,2215,2211,2204,2205,2192,2172,2155,2140,2126,2126,2118,2113,2109,2111,2118,2113,2123,2137,2137,2150,2161,2165,2181,2193,2203,2213,2226,2222,2235,2249,2261,2267,2262,2256,2247,2238,2232,2232,2234,2228,2228,2225,2223,2222,2223,2231,2236,2241,2243,2242,2237,2233,2228,2222,2216,2208,2202,2205,2195,2185,2181,2185,2192,2180,2183,2186,2188,2190,2202,2209,2212,2214,2217,2221,2235,2236,2238,2241,2246,2250,2260,2261,2260,2258,2257,2257,2256,2253,2253,2250,2246,2240,2241,2236,2230,2224,2216,2208,2215,2210,2205,2198,2193,2185,2174,2160,2153,2158,2169,2182,2204,2214,2219,2223,2223,2222,2220,2221,2216,2211,2204,2196,2184,2180,2177,2175,2172,2167,2149,2150,2159,2171,2184,2194,2201,2205,2204,2202,2198,2193,2188,2191,2195,2199,2203,2210,2215,2219,2221,2224,2227,2222,2222,2219,2216,2215,2214,2206,2206,2206,2204,2202,2199,2199,2208,2213,2220,2225,2231,2238,2247,2257,2266,2274,2282,2288,2298,2307,2315,2319,2321,2320,2323,2322,2317,2310,2302,2287,2278,2271,2268,2268,2265,2257,2253,2247,2243,2237,2227,2222,2219,2218,2217,2214,2210,2205,2201,2198,2194,2189,2193,2189,2185,2182,2179,2177,2178,2173,2166,2160,2152,2145,2134,2125,2117,2116,2117,2121,2132,2130,2118,2104,2089,2076,2086,2071,2056,2049,2046,2045,2077,2087,2094,2090,2075,2059,2076,2072,2066,2055,2039,2023,2018,2011,2012,2013,2010,2003,1980,1969,1957,1945,1932,1922,1931,1929,1932,1935,1937,1932,1920,1909,1901,1891,1882,1863,1855,1845,1836,1828,1820,1823,1812,1800,1786,1772,1766,1761,1757,1761,1771,1785,1797,1837,1847,1858,1868,1878,1878,1884,1888,1893,1898,1904,1910,1920,1933,1949,1963,1976,1990,2001,1999,1997,1994,1985,1983,1973,1965,1933,1933,1904,1899,1887,1900,1901,1912,1892,1889,1866,1864,1845,1844,1819,1818,1793,1788,1763,1762,1751,1750,1745,1745,1741,1740,1738,1738,1745,1744,1736,1736,1739,1740,1742,1742,1743,1742,1744,1742,1742,1741,1740,1741,1742,1743,1742,1742,1741,1740,1740,1739,1740,1740,1741,1740,1738,1738,1738,1738,1737,1737,1738,1736,1736,1735,1735,1736,1737,1735,1737,1736,1739,1737,1738,1740,1739,1738,1738,1740,1738,1740,1736,1736,1740,1741,1747,1747,1748,1748,1747,1747,1748,1746,1747,1746,1746,1746,1749,1748,1749,1748,1745,1744,1746,1746,1743,1740,1747,1752,1761,1759,1762,1762,1763,1759,1765,1764,1769,1769,1774,1770,1775,1770,1775,1772,1781,1780,1794,1791,1797,1790,1795,1788,1792,1792,1793,1783,1778,1776,1786,1788,1801,1801,1812,1810,1821,1816,1818,1812,1828,1823,1841,1838,1855,1850,1856,1851,1860,1849,1841,1830,1831,1826,1843,1843,1856,1851,1854,1844,1849,1839,1836,1836,1831,1818,1806,1794,1785,1777,1776,1768,1763,1759,1760,1765,1782,1783,1798,1798,1806,1799,1804,1803,1818,1818,1825,1818,1825,1818,1819,1810,1809,1809,1815,1809,1808,1796,1791,1780,1782,1770,1760,1751,1741,1738,1732,1731,1731,1730,1727,1727,1729,1729,1730,1730,1738,1738,1742,1742,1732,1731,1729,1729,1727,1726,1725,1726,1721,1720,1720,1719,1717,1716,1716,1714,1715,1719,1719,1721,1716,1717,1710,1709,1708,1708,1708,1710,1706,1706,1706,1705,1705,1705,1705,1705,1705,1705,1705,1704,1701,1702,1702,1702,1703,1703,1704,1705,1703,1704,1705,1703,1703,1703,1704,1704,1702,1702,1701,1702,1702,1702,1704,1704,1704,1704,1703,1702,1702,1704,1703,1702,1702,1702,1701,1702,1701,1700,1700,1700,1699,1699,1700,1700,1702,1702,1700,1700,1701,1700,1700,1698,1699,1699,1700,1698,1698,1700,1700,1702,1703,1706,1697,1695,1691,1690,1688,1687,1687,1686,1685,1685,1684,1684,1683,1683,1684,1683,1683,1682,1680,1681,1681,1681,1681,1680,1679,1678,1677,1677,1676,1676,1676,1676,1675,1676,1675,1675,1675,1676,1679,1678,1678,1678,1680,1680,1684,1684,1686,1687,1690,1689,1691,1691,1692,1692,1693,1693,1689,1687,1685,1685,1684,1683,1682,1682,1681,1682,1681,1679,1679,1678,1674,1675,1674,1674,1679,1680,1680,1679,1681,1681,1682,1682,1687,1687,1690,1690,1692,1692,1691,1689,1689,1689,1688,1688,1685,1684,1684,1683,1683,1682,1683,1683,1682,1683,1682,1682,1681,1682,1681,1679,1679,1680,1679,1678,1676,1676,1676,1675,1674,1674,1673,1672,1670,1671,1672,1670,1670,1670,1667,1667,1668,1666,1665,1665,1664,1664,1663,1662,1661,1661,1660,1660,1659,1659,1659,1659,1658,1657,1656,1656,1656,1654,1654,1654,1655,1654,1652,1653,1653,1651,1650,1650,1650,1648,1648,1648,1646,1645,1645,1645,1643,1644,1643,1643,1643,1644,1642,1642,1640,1640,1640,1639,1639,1640,1640,1640,1639,1640,1640,1641,1641,1641,1642,1643,1643,1644,1644,1644,1643,1645,1645,1645,1651,1647,1646,1650,1646,1646,1644,1646,1646,1647,1649,1649,1649,1646,1648,1647,1647,1649,1650,1650,1650,1652,1652,1652,1657,1658,1660,1656,1656,1655,1653,1651,1651,1650,1648,1647,1647,1648,1645,1645,1645,1642,1642,1641,1641,1640,1640,1641,1640,1639,1639,1639,1640,1641,1640,1639,1638,1637,1637,1638,1638,1637,1637,1635,1636,1634,1633,1633,1632,1630,1630,1628,1626,1626,1625,1627,1627,1627,1625,1623,1622,1623,1624,1623,1622,1621,1626,1625,1622,1623,1622,1620,1621,1621,1621,1620,1622,1621,1621,1620,1622,1622,1619,1619,1619,1618,1620,1620,1619,1620,1621,1621,1619,1617,1618,1618,1618,1616,1617,1617,1617,1618,1618,1616,1618,1618,1616,1616,1616,1616,1617,1618,1621,1624,1624,1623,1616,1612,1610,1610,1613,1613,1614,1614,1614,1615,1614,1614,1614,1615,1620,1622,1623,1623,1622,1621,1619,1610,1609,1609,1615,1612,1610,1610,1611,1611,1610,1610,1609,1609,1610,1610,1611,1614,1620,1621,1620,1620,1622,1622,1623,1624,1624,1624,1626,1625,1626,1626,1625,1626,1627,1629,1629,1629,1629,1630,1630,1631,1631,1631,1632,1632,1633,1633,1631,1632,1632,1632,1630,1630,1631,1629,1631,1632,1633,1633,1633,1633,1633,1632,1632,1636,1635,1633,1633,1635,1636,1637,1642,1639,1636,1634,1636,1638,1638,1641,1641,1640,1639,1640,1639,1640,1639,1639,1640,1641,1640,1639,1640,1641,1640,1641,1641,1641,1642,1642,1641,1641,1642,1645,1643,1643,1642,1642,1642,1642,1643,1645,1644,1644,1643,1646,1645,1644,1644,1644,1645,1645,1645,1646,1646,1645,1645,1646,1647,1647,1647,1645,1650,1648,1650,1650,1650,1651,1651,1651,1652,1653,1651,1651,1652,1651,1650,1650,1650,1648,1649,1648,1648,1648,1647,1648,1647,1645,1644,1645,1644,1641,1640,1641,1639,1637,1636,1636,1635,1634,1634,1632,1631,1629,1631,1632,1633,1630,1627,1626,1626,1625,1625,1623,1623,1622,1622,1622,1622,1621,1621,1621,1620,1620,1620,1619,1619,1619,1622,1620,1619,1619,1616,1615,1617,1615,1615,1615,1615,1615,1614,1613,1614,1614,1613,1614,1613,1611,1611,1612,1611,1610,1610,1610,1610,1608,1608,1608,1610,1611,1605,1603,1606,1604,1603,1603,1602,1603,1602,1601,1601,1600,1598,1598,1597,1596,1596,1592,1591,1592,1590,1589,1588,1587,1587,1586,1584,1583,1583,1582,1581,1582,1584,1583,1582,1579,1579,1579,1581,1583,1582,1578,1577,1577,1577,1576,1577,1579,1578,1578,1577,1581,1579,1581,1578,1569,1569,1575,1576,1577,1576,1577,1578,1581,1577,1578,1578,1579,1579,1580,1577,1577,1578,1578,1578,1582,1584,1577,1575,1571,1574,1578,1578,1578,1578,1576,1581,1584,1585,1587,1583,1583,1584,1585,1588,1586,1586,1586,1586,1586,1587,1586,1586,1587,1587,1588,1589,1588,1590,1589,1591,1590,1589,1590,1590,1594,1594,1595,1593,1593,1593,1592,1591,1593,1594,1593,1593,1593,1591,1591,1592,1594,1594,1595,1597,1594,1594,1595,1596,1596,1595,1595,1597,1597,1597,1597,1596,1598,1596,1596,1595,1597,1598,1598,1597,1597,1598,1598,1599,1599,1598,1599,1603,1603,1603,1601,1602,1602,1603,1602,1601,1601,1605,1605,1605,1605,1603,1603,1602,1604,1604,1602,1600,1601,1600,1598,1602,1602,1602,1600,1599,1601,1600,1599,1599,1598,1599,1598,1600,1599,1601,1601,1602,1599,1602,1603,1604,1605,1606,1606,1606,1606,1607,1608,1609,1609,1610,1608,1609,1608,1608,1609,1608,1609,1609,1610,1611,1612,1613,1613,1614,1615,1618,1620,1619,1619,1617,1619,1618,1619,1619,1618,1619,1617,1616,1617,1616,1616,1615,1615,1617,1619,1617,1617,1617,1616,1617,1618,1619,1618,1620,1619,1620,1621,1620,1621,1620,1621,1619,1620,1619,1620,1619,1620,1619,1621,1620,1620,1620,1620,1621,1622,1621,1624,1623,1622,1622,1623,1622,1621,1623,1623,1624,1623,1623,1623,1623,1622,1623,1623,1622,1624,1622,1623,1623,1623,1622,1625,1623,1623,1626,1624,1623,1623,1622,1623,1623,1622,1622,1622,1622,1622,1621,1623,1628,1627,1631,1631,1622,1619,1621,1622,1621,1622,1621,1620,1620,1620,1623,1621,1622,1623,1621,1621,1622,1622,1621,1621,1622,1624,1624,1621,1622,1622,1622,1623,1623,1625,1625,1624,1624,1622,1623,1623,1624,1623,1625,1624,1625,1626,1625,1626,1626,1625,1625,1625,1624,1623,1625,1623,1623,1623,1622,1623,1624,1623,1622,1623,1624,1622,1622,1621,1622,1623,1621,1621,1624,1626,1628,1628,1625,1624,1623,1624,1625,1624,1620,1624,1622,1624,1623,1623,1624,1621,1620,1620,1621,1623,1623,1622,1622,1621,1621,1620,1621,1621,1621,1621,1622,1621,1621,1620,1618,1619,1619,1620,1620,1617,1617,1620,1619,1619,1617,1617,1618,1616,1616,1617,1617,1616,1616,1617,1617,1618,1617,1616,1615,1617,1618,1619,1619,1618,1618,1618,1618,1618,1617,1617,1616,1617,1615,1615,1614,1613,1614,1615,1614,1613,1614,1612,1610,1610,1609,1608,1608,1608,1609,1609,1608,1609,1608,1609,1611,1615,1616,1615,1614,1616,1615,1615,1616,1616,1616,1611,1614,1614,1614,1614,1617,1616,1616,1614,1614,1614,1615,1616,1616,1617,1617,1617,1617,1617,1618,1618,1618,1618,1619,1619,1620,1621,1622,1621,1619,1618,1617,1614,1611,1610,1610,1610,1610,1611,1613,1615,1614,1612,1613,1612,1612,1612,1612,1612,1611,0]}  }
}

Monitoring Station Data

This mockup is intended to provide a minimal example of the Environmental Data Retrieval API used with a network of monitoring station data that can provide data as timeseries.

/collections/stream_gage

Unroll for JSON Example

{
  "links": [
    {
      "href": "http://www.example.org/edr/collections/",
      "hreflang": "en",
      "rel": "self",
      "type": "application/json"
    },
    {
      "href": "http://www.example.org/edr/collections/",
      "hreflang": "en",
      "rel": "alternate",
      "type": "text/html"
    },
    {
      "href": "http://www.example.org/edr/collections/",
      "hreflang": "en",
      "rel": "alternate",
      "type": "application/xml"
    }
  ],
  "collections": [
    {
      "id": "stream_gage",
      "title": "Stream Gage Observations",
      "description": "Observations from stream gages operated by the USGS.",
      "keywords": [
        "streamflow",
        "stage"
      ],
      "extent": {
        "spatial": {
          "bbox": [
            -15.0,
            48.0,
            5.0,
            62.0
          ],
          "crs": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
        },
        "temporal": {
          "interval": [
            "2020-04-19T11:00:00Z/2020-06-30T09:00:00Z"
          ],
          "trs": "TIMECRS[\"DateTime\",TDATUM[\"Gregorian Calendar\"],CS[TemporalDateTime,1],AXIS[\"Time (T)\",future]"
        }
      },
      "crs": [
        {
          "name": "CRS84",
          "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
        }
      ],
      "distanceunits": [
        "km",
        "miles"
      ],
      "outputformat": [
        {
          "name": "GeoJSON",
          "data_schema": "http://www.example.org/edr/static/json/dp_schema.json"
        },
        {
          "name": "CoverageJSON"
        }
      ],
      "parameters": {
        "daily_streamflow": {
          "type": "Parameter",
          "description": {
            "en": "Daily Streamflow"
          },
          "unit": {
            "label": {
              "en": "Cubic Feet per Second"
            },
            "symbol": {
              "value": "ft³/s",
              "type": "http://www.example.org/edr/metadata/units/cfs"
            }
          },
          "observedProperty": {
            "id": "https://waterdata.usgs.gov/nwisweb/rdf?parmCd=00060",
            "label": {
              "en": "Streamflow"
            }
          },
          "measurementType": {
            "method": "mean",
            "period": "P1D"
          }
        },
        "gage_height": {
          "type": "Parameter",
          "description": {
            "en": "Instantaneous River Stage"
          },
          "unit": {
            "label": {
              "en": "ft"
            },
            "symbol": {
              "value": "ft",
              "type": "http://www.example.org/edr/metadata/units/ft"
            }
          },
          "observedProperty": {
            "id": "https://waterdata.usgs.gov/nwisweb/rdf?parmCd=00065",
            "label": {
              "en": "Gage Height"
            }
          },
          "measurementType": {
            "method": "instantaneous"
          }
        }
      },
      "links": [
        {
          "href": "http://www.example.org/service-doc",
          "hreflang": "en",
          "rel": "service-doc",
          "type": "text/html",
          "title": "license"
        },
        {
          "href": "http://www.example.org/license",
          "hreflang": "en",
          "rel": "license",
          "type": "text/html",
          "title": "license"
        },
        {
          "href": "http://www.example.org/edr/collections/stream_gages/position",
          "hreflang": "en",
          "rel": "data",
          "type": "position",
          "title": "position"
        },
        {
          "href": "http://www.example.org/edr/collections/stream_gages/radius",
          "hreflang": "en",
          "rel": "data",
          "type": "radius",
          "title": "radius"
        },
        {
          "href": "http://www.example.org/edr/collections/stream_gages/area",
          "hreflang": "en",
          "rel": "data",
          "type": "area",
          "title": "area"
        },
        {
          "href": "http://www.example.org/edr/collections/stream_gages/locations",
          "hreflang": "en",
          "rel": "data",
          "type": "location",
          "title": "location"
        },
        {
          "href": "http://www.example.org/edr/collections/stream_gages/items",
          "hreflang": "en",
          "rel": "data",
          "type": "items",
          "title": ""
        }
      ]
    }
  ]
}

/collections/stream_gage/items

OGC API Features interface that provides geoJSON, temporal, and parameter metadata for each item. This is ostensibly the catalog of data available from this EDR API as sampling features that already exist / are discoverable. For EDR, this would adhere to the EDRFeatureCollectionGeoJSON JSON Schema (properties declared here include: datetime, parametername, label, and edrqueryendpoint.)

Unroll for JSON Example

{
  "type": "Feature",
  "geometry": {
    "type": "Point",
    "coordinates": [
      -69.7155556,
      46.70055555999999
    ]
  },
  "properties": {
    "datetime": "2018-02-12T00:00:00Z/2018-03-18T12:31:12Z",
    "label": "Monitoring site name",
    "parametername": [
      "daily_streamflow",
      "gage_height"
    ],
    "edrqueryendpoint": "https://labs.waterservices.usgs.gov/collections/stream_gage/locations/0123456789"
  },
  "id": "0123456789",
  "links": [
    {
      "rel": "self",
      "type": "application/geo+json",
      "title": "This document as GeoJSON",
      "href": "https://labs.waterservices.usgs.gov/collections/stream_gage/items/0123456789?f=json"
    },
    {
      "rel": "alternate",
      "type": "text/html",
      "title": "This document as HTML",
      "href": "https://labs.waterservices.usgs.gov/collections/stream_gage/items/0123456789?f=html"
    },
    {
      "rel": "collection",
      "type": "application/json",
      "title": "Reference Gages",
      "href": "https://labs.waterservices.usgs.gov/collections/stream_gage/"
    }
  ]
}

/collections/stream_gage/locations

Provides access to timeseries data for monitoring locations. These can be discovered through the .../items endpoint.

/collections/stream_gage/locations/{featureID}

Provides access to the timeseries data for a particular monitoring location with EDR query parameters to filter on parameter and time.

Upper air forecast model

In this example, Upper Air forecast model data is made available as an EDR collection. Weather forecast models run on a regular schedule, each model run starts at a new time and the output results overlap earlier model runs. This can be handled in EDR by expressing each run as a different instance of the EDR collection

Upper Air forecast data has three spatial dimensions (x,y,z) and a time dimension (t)

Data can be accessed as a vertical profile through the atmosphere or reduced to the area of interest or retrieved for a predefined location. In the following examples, the collection id is global-pressure-levels.

Get the collection metadata

/collections/global-pressure-levels?f=json

The collection response document includes the following elements:

  • links: links to other representations of this document.
  • collections: information about the current collection.
    • id: the id in the {collectionID} parameter of the current resource path
    • title: a title for the collection
    • description: an extended description of the collection
    • keywords: useful keywords for cataloging and search indexing
    • extent: a bounding extent
    • data_queries: describes the functionality of the queries supported by the collection
    • crs: the coordinate reference system(s) supported by all collection queries
    • outputformat: the output formats supported by all collection queries
    • parameters: parameters available from the collection
    • links: paths available relative to the collection

When an EDR service has a collection which has instances

  • The collection extent decribes the bounds of all data exposed through the instances of the collection
  • If the publisher includes data queries at collection level (i.e. position,area,radius,cube,trajectory,items or locations) the publisher will provide the results from the best instance (the definition of best is at the discretion of the data publisher) for the requested query extent.

In the example response the publisher does not support data queries at collection level, so the data_queries section only lists support for an instances query.

The collections response example below is for a service that requires the user to specify an instance that they want data for:

http://www.edr.demo/collections/global-pressure-levels?f=json

Unroll for query response

{
    "id": "global-pressure-levels",
    "title": "Global forecast data at standard pressure levels",
    "description": "Global Atmospheric Model - parameters measured at standard pressure levels",
    "keywords": ["height","air temperature","cloud ice",
        "cloud water","relative humidity","upward air velocity",
        "wind direction","wind speed","geopotential","description",
        "licence","restrictions","service-desc","collection","items"],
    "links": [
        {
            "href": "http://www.edr.demo/collections",
            "hreflang": "en",
            "rel": "self",
            "type": "application/json"
        },
        {
            "href": "http://www.edr.demo/collections?f=html",
            "hreflang": "en",
            "rel": "alternate",
            "type": "text/html"
        },
        {
            "href": "http://www.edr.demo/collections?f=xml",
            "hreflang": "en",
            "rel": "alternate",
            "type": "application/xml"
        },
        {
            "href": "https://www.document.loc/pdf/data/global-model-parameters.pdf",
            "hreflang": "en",
            "rel": "service-doc",
            "type": "text/html"
        },
        {
            "href": "https://creativecommons.org/licenses/by-nc-nd/4.0/",
            "hreflang": "en",
            "rel": "licence",
            "type": "text/html"
        },
        {
            "href": "http://www.edr.demo/static/html/model_restrictions.html",
            "hreflang": "en",
            "rel": "restrictions",
            "type": "text/html"
        },
        {
            "href": "http://www.edr.demo/collections/global-pressure-levels/",
            "hreflang": "en",
            "rel": "collection",
            "type": "application/json"
        },
        {
            "href": "http://www.edr.demo/collections/global-pressure-levels/instances",
            "hreflang": "en",
            "rel": "collection",
            "type": "application/json"
        }
    ],
    "extent": {
        "spatial": {
            "bbox": [[-180.0,90.0,180.0,-90.0]],
            "crs": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
        },
        "temporal": {
            "interval": [["2022-06-17T00:00Z","2022-06-24T06:00Z"]],
            "values": ["R54/2022-06-17T00:00Z/PT1H",
                "R30/2022-06-23T06:00Z/PT3H",
                "R4/2022-06-23T06:00Z/PT6H"],
            "trs": "TIMECRS[\"DateTime\",TDATUM[\"Gregorian Calendar\"],CS[temporal,1],AXIS[\"Time (T)\",future],TIMEUNIT[\"day\",86400]]"
        },
        "vertical": {
            "interval": [["1000.0","100000.0"]],
            "values": ["100000.0","97500.0","95000.0","92500.0","90000.0","85000.0","80000.0","75000.0",
                "70000.0","65000.0","60000.0","55000.0","50000.0","45000.0","40000.0","37500.0","35000.0",
                "32500.0","30000.0","27500.0","25000.0","22500.0","20000.0","17500.0","15000.0","12500.0",
                "10000.0","7000.0","5000.0","4000.0","3000.0","2000.0","1000.0"],
            "vrs": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15°C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
        }
    },
    "data_queries": {
       "instances": {
            "link": {
                "href": "http://www.edr.demo/collections/global-pressure-levels/instances",
                "hreflang": "en",
                "rel": "collection",
                "variables": {
                    "title": "Instances query",
                    "query_type": "instances",
                    "output_formats": [
                        "json"
                    ],
                    "default_output_format": "json",
                    "crs_details": [
                        {
                            "crs": "SRC_Global",
                            "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                        }
                    ]
                }
            }
        }
    },
    "crs": [
        "SRC_Global"
    ],
    "output_formats": [
        "NetCDF"
    ],
    "parameter_names": {
        "air_temperature": {
            "type": "Parameter",
            "description": {
                "en": "Air temperature at pressure level"
            },
            "unit": {
                "label": {
                    "en": "Kelvin"
                },
                "symbol": {
                    "value": "K",
                    "type": "http://www.edr.demo/metadata/units/K"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
                "label": {
                    "en": "Temperature"
                }
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "relative_humidity": {
            "type": "Parameter",
            "description": {
                "en": "Relative Humidity in atmosphere at pressure level"
            },
            "unit": {
                "label": {
                    "en": "%"
                },
                "symbol": {
                    "value": "%",
                    "type": "http://codes.wmo.int/common/unit/percent"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
                "label": {
                    "en": "Relative humidity"
                }
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "wind_from_direction": {
            "type": "Parameter",
            "description": {
                "en": "Wind from direction at pressure level"
            },
            "unit": {
                "label": {
                    "en": "degree true"
                },
                "symbol": {
                    "value": "deg",
                    "type": "http://www.edr.demo/metadata/units/deg"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
                "label": {
                    "en": "Wind direction (from which blowing)"
                }
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "wind_speed": {
            "type": "Parameter",
            "description": {
                "en": "Wind speed at pressure level"
            },
            "unit": {
                "label": {
                    "en": "m/s"
                },
                "symbol": {
                    "value": "m/s",
                    "type": "http://codes.wmo.int/common/unit/m/s"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
                "label": {
                    "en": "Wind speed"
                }
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "upward_air_velocity": {
            "type": "Parameter",
            "description": "Upward air velocity at pressure level",
            "unit": {
                "label": "m/s",
                "symbol": {
                    "value": "m/s",
                    "type": "http://codes.wmo.int/common/unit/m/s"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-9",
                "label": "Vertical velocity"
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "cloud_ice_mixing_ratio": {
            "type": "Parameter",
            "description": "Cloud ice mixing-ratio at pressure level",
            "unit": {
                "label": "kg per kg",
                "symbol": {
                    "value": "kg/kg",
                    "type": "http://codes.wmo.int/common/unit/kg_kg-1"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-82",
                "label": "Cloud ice mixing-ratio"
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "cloud_liquid_water_mixing_ratio": {
            "type": "Parameter",
            "description": "Cloud liquid water mixing-ratio at pressure level",
            "unit": {
                "label": "kg per kg",
                "symbol": {
                    "value": "kg/kg",
                    "type": "http://codes.wmo.int/common/unit/kg_kg-1"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-23",
                "label": "Ice water mixing ratio"
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "cloud_volume_fraction_in_atmosphere_layer": {
            "type": "Parameter",
            "description": "Cloud volume fraction in atmosphere at pressure level",
            "unit": {
                "label": "1",
                "symbol": {
                    "value": "1",
                    "type": "http://codes.wmo.int/common/unit/1"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-6-32",
                "label": "Fraction of cloud cover"
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "geopotential_height": {
            "type": "Parameter",
            "description": "Geopotential height of pressure levels",
            "unit": {
                "label": "m",
                "symbol": {
                    "value": "m",
                    "type": "http://codes.wmo.int/common/unit/m"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-3-5",
                "label": "Geopotential height"
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        },
        "height": {
            "type": "Parameter",
            "description": "Height above ground level (the surface) of pressure levels",
            "unit": {
                "label": "m",
                "symbol": {
                    "value": "m",
                    "type": "http://codes.wmo.int/common/unit/m"
                }
            },
            "observedProperty": {
                "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-3-6",
                "label": "Geometric height"
            },
            "measurementType": {
                "method": "instantaneous",
                "period": "PT0M"
            }
        }
    }
}

The response below is for the instances query

/collections/global-pressure-levels/instances

http://www.edr.demo/collections/global-pressure-levels/instances?f=json

Unroll for query response

{
    "links": [
        {
            "href": "http://www.edr.demo/collections/global-pressure-levels/instances/",
            "hreflang": "en",
            "rel": "self",
            "type": "application/json"
        },
        {
            "href": "http://www.edr.demo/collections/global-pressure-levels/instances/?f=html",
            "hreflang": "en",
            "rel": "alternate",
            "type": "text/html"
        },
        {
            "href": "http://www.edr.demo/collections/global-pressure-levels/instances/?f=xml",
            "hreflang": "en",
            "rel": "alternate",
            "type": "application/xml"
        }
    ],
    "instances": [
        {
            "id": "2022061704",
            "title": "Global data at standard pressure levels",
            "description": "Global Atmospheric Model - parameters measured at standard pressure levels",
            "keywords": ["height","air temperature","cloud ice",
                "cloud water","relative humidity","upward air velocity",
                "wind direction","wind speed","geopotential","description",
                "licence","restrictions","service-desc","collection","items"],
            "links": [
                {
                    "href": "https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/global-model-aws-parameters-nov-2019.pdf",
                    "hreflang": "en",
                    "rel": "service-doc",
                    "type": "text/html"
                },
                {
                    "href": "https://creativecommons.org/licenses/by-nc-nd/4.0/",
                    "hreflang": "en",
                    "rel": "licence",
                    "type": "text/html"
                },
                {
                    "href": "http://www.edr.demo/static/html/model_restrictions.html",
                    "hreflang": "en",
                    "rel": "restrictions",
                    "type": "text/html"
                },
                {
                    "href": "http://www.edr.demo/collections/global-pressure-levels/",
                    "hreflang": "en",
                    "rel": "collection",
                    "type": "application/json"
                },
                {
                    "href": "http://www.edr.demo/collections/global-pressure-levels/instances",
                    "hreflang": "en",
                    "rel": "collection",
                    "type": "application/json"
                }
            ],
            "extent": {
                "spatial": {
                    "bbox": [[-180.0,90.0,180.0,-90.0]],
                    "crs": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                },
                "temporal": {
                    "interval": [["2022-06-16T00:00Z","2022-06-23T06:00Z"]],
                    "values": ["R54/2022-06-16T00:00Z/PT1H",
                        "R30/2022-06-22T06:00Z/PT3H","R4/2022-06-22T06:00Z/PT6H"],
                    "trs": "TIMECRS[\"DateTime\",TDATUM[\"Gregorian Calendar\"],CS[temporal,1],AXIS[\"Time (T)\",future],TIMEUNIT[\"day\",86400]]"
                },
                "vertical": {
                    "interval": [["1000.0","100000.0"]],
                    "values": ["100000.0","97500.0","95000.0","92500.0","90000.0","85000.0","80000.0","75000.0",
                    "70000.0","65000.0","60000.0","55000.0","50000.0","45000.0","40000.0","37500.0","35000.0",
                    "32500.0","30000.0","27500.0","25000.0","22500.0","20000.0","17500.0","15000.0","12500.0",
                    "10000.0","7000.0","5000.0","4000.0","3000.0","2000.0","1000.0"],
                    "vrs": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15°C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
                }
            },
            "data_queries": {
                "position": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/position",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Position query",
                            "query_type": "position",
                            "output_formats": ["CoverageJSON",
                                "GeoJSON","CSV"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "radius": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/radius",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Radius query",
                            "query_type": "radius",
                            "output_formats": ["CoverageJSON","NetCDF"],
                            "default_output_format": "CoverageJSON",
                            "within_units": ["km","miles"],
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "area": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/area",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "area query",
                            "query_type": "area",
                            "output_formats": ["CoverageJSON","NetCDF"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "cube": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/cube",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Cube query",
                            "query_type": "cube",
                            "output_formats": ["CoverageJSON",
                                "NetCDF","GRIB2"],
                            "default_output_format": "NetCDF",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "trajectory": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/trajectory",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Trajectory query",
                            "query_type": "trajectory",
                            "output_formats": ["CoverageJSON","NetCDF"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "items": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/items",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Items query",
                            "query_type": "items",
                            "output_formats": ["NetCDF"],
                            "default_output_format": "NetCDF",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                }
                            ]
                        }
                    }
                },
                "locations": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061704/locations",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Locations query",
                            "query_type": "locations",
                            "output_formats": ["CoverageJSON"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                }
                            ]
                        }
                    }
                }
            },
            "crs": ["SRC_Global"],
            "output_formats": ["NetCDF"],
            "parameter_names": {
                "air_temperature": {
                    "type": "Parameter",
                    "description": {
                        "en": "Air temperature at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "Kelvin"
                        },
                        "symbol": {
                            "value": "K",
                            "type": "http://www.edr.demo/metadata/units/K"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
                        "label": {
                            "en": "Temperature"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "relative_humidity": {
                    "type": "Parameter",
                    "description": {
                        "en": "Relative Humidity in atmosphere at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "%"
                        },
                        "symbol": {
                            "value": "%",
                            "type": "http://codes.wmo.int/common/unit/percent"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
                        "label": {
                            "en": "Relative humidity"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "wind_from_direction": {
                    "type": "Parameter",
                    "description": {
                        "en": "Wind from direction at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "degree true"
                        },
                        "symbol": {
                            "value": "deg",
                            "type": "http://www.edr.demo/metadata/units/deg"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
                        "label": {
                            "en": "Wind direction (from which blowing)"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "wind_speed": {
                    "type": "Parameter",
                    "description": {
                        "en": "Wind speed at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "m/s"
                        },
                        "symbol": {
                            "value": "m/s",
                            "type": "http://codes.wmo.int/common/unit/m/s"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
                        "label": {
                            "en": "Wind speed"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "upward_air_velocity": {
                    "type": "Parameter",
                    "description": "Upward air velocity at pressure level",
                    "unit": {
                        "label": "m/s",
                        "symbol": {
                            "value": "m/s",
                            "type": "http://codes.wmo.int/common/unit/m/s"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-9",
                        "label": "Vertical velocity"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "cloud_ice_mixing_ratio": {
                    "type": "Parameter",
                    "description": "Cloud ice mixing-ratio at pressure level",
                    "unit": {
                        "label": "kg per kg",
                        "symbol": {
                            "value": "kg/kg",
                            "type": "http://codes.wmo.int/common/unit/kg_kg-1"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-82",
                        "label": "Cloud ice mixing-ratio"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "cloud_liquid_water_mixing_ratio": {
                    "type": "Parameter",
                    "description": "Cloud liquid water mixing-ratio at pressure level",
                    "unit": {
                        "label": "kg per kg",
                        "symbol": {
                            "value": "kg/kg",
                            "type": "http://codes.wmo.int/common/unit/kg_kg-1"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-23",
                        "label": "Ice water mixing ratio"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "cloud_volume_fraction_in_atmosphere_layer": {
                    "type": "Parameter",
                    "description": "Cloud volume fraction in atmosphere at pressure level",
                    "unit": {
                        "label": "1",
                        "symbol": {
                            "value": "1",
                            "type": "http://codes.wmo.int/common/unit/1"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-6-32",
                        "label": "Fraction of cloud cover"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "geopotential_height": {
                    "type": "Parameter",
                    "description": "Geopotential height of pressure levels",
                    "unit": {
                        "label": "m",
                        "symbol": {
                            "value": "m",
                            "type": "http://codes.wmo.int/common/unit/m"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-3-5",
                        "label": "Geopotential height"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "height": {
                    "type": "Parameter",
                    "description": "Height above ground level (the surface) of pressure levels",
                    "unit": {
                        "label": "m",
                        "symbol": {
                            "value": "m",
                            "type": "http://codes.wmo.int/common/unit/m"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-3-6",
                        "label": "Geometric height"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                }
            }
        },
        {
            "id": "2022061804",
            "title": "Global data at standard pressure levels",
            "description": "Global Atmospheric Model - parameters measured at standard pressure levels",
            "keywords": ["height","air temperature","cloud ice",
                "cloud water","relative humidity","upward air velocity",
                "wind direction","wind speed","geopotential","description",
                "licence","restrictions","service-desc","collection","items"],
            "links": [
                {
                    "href": "https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/global-model-aws-parameters-nov-2019.pdf",
                    "hreflang": "en",
                    "rel": "service-doc",
                    "type": "text/html"
                },
                {
                    "href": "https://creativecommons.org/licenses/by-nc-nd/4.0/",
                    "hreflang": "en",
                    "rel": "licence",
                    "type": "text/html"
                },
                {
                    "href": "http://www.edr.demo/static/html/model_restrictions.html",
                    "hreflang": "en",
                    "rel": "restrictions",
                    "type": "text/html"
                },
                {
                    "href": "http://www.edr.demo/collections/global-pressure-levels/",
                    "hreflang": "en",
                    "rel": "collection",
                    "type": "application/json"
                },
                {
                    "href": "http://www.edr.demo/collections/global-pressure-levels/instances",
                    "hreflang": "en",
                    "rel": "collection",
                    "type": "application/json"
                }
            ],
            "extent": {
                "spatial": {
                    "bbox": [[-180.0,90.0,180.0,-90.0]],
                    "crs": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                },
                "temporal": {
                    "interval": [["2022-06-17T00:00Z","2022-06-24T06:00Z"]],
                    "values": ["R54/2022-06-17T00:00Z/PT1H",
                        "R30/2022-06-23T06:00Z/PT3H","R4/2022-06-23T06:00Z/PT6H"],
                    "trs": "TIMECRS[\"DateTime\",TDATUM[\"Gregorian Calendar\"],CS[temporal,1],AXIS[\"Time (T)\",future],TIMEUNIT[\"day\",86400]]"
                },
                "vertical": {
                    "interval": [["1000.0","100000.0"]],
                    "values": ["100000.0","97500.0","95000.0","92500.0","90000.0","85000.0","80000.0","75000.0",
                    "70000.0","65000.0","60000.0","55000.0","50000.0","45000.0","40000.0","37500.0","35000.0",
                    "32500.0","30000.0","27500.0","25000.0","22500.0","20000.0","17500.0","15000.0","12500.0",
                    "10000.0","7000.0","5000.0","4000.0","3000.0","2000.0","1000.0"],                    "vrs": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15°C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
                }
            },
            "data_queries": {
                "position": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/position",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Position query",
                            "query_type": "position",
                            "output_formats": ["CoverageJSON",
                                "GeoJSON","CSV"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "radius": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/radius",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Radius query",
                            "query_type": "radius",
                            "output_formats": ["CoverageJSON","NetCDF"],
                            "default_output_format": "CoverageJSON",
                            "within_units": ["km","miles"],
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "area": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/area",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "area query",
                            "query_type": "area",
                            "output_formats": ["CoverageJSON","NetCDF"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "cube": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/cube",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Cube query",
                            "query_type": "cube",
                            "output_formats": ["CoverageJSON",
                                "NetCDF","GRIB2"],
                            "default_output_format": "NetCDF",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "trajectory": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/trajectory",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Trajectory query",
                            "query_type": "trajectory",
                            "output_formats": ["CoverageJSON","NetCDF"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                },
                                {
                                    "crs": "EPSG:4326",
                                    "wkt": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
                                }
                            ]
                        }
                    }
                },
                "items": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/items",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Items query",
                            "query_type": "items",
                            "output_formats": ["NetCDF"],
                            "default_output_format": "NetCDF",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                }
                            ]
                        }
                    }
                },
                "locations": {
                    "link": {
                        "href": "http://www.edr.demo/collections/global-pressure-levels/instances/2022061804/locations",
                        "hreflang": "en",
                        "rel": "data",
                        "variables": {
                            "title": "Locations query",
                            "query_type": "locations",
                            "output_formats": ["CoverageJSON"],
                            "default_output_format": "CoverageJSON",
                            "crs_details": [
                                {
                                    "crs": "SRC_Global",
                                    "wkt": "GEOGCS[\"unknown\",DATUM[\"unnamed\",ELLIPSOID[\"Sphere\",6371229,0,LENGTHUNIT[\"metre\",1,ID[\"EPSG\",9001]]]],PRIMEM[\"Greenwich\",0,ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],CS[ellipsoidal,2],AXIS[\"latitude\",north,ORDER[1],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]],AXIS[\"longitude\",east,ORDER[2],ANGLEUNIT[\"degree\",0.0174532925199433,ID[\"EPSG\",9122]]]]"
                                }
                            ]
                        }
                    }
                }
            },
            "crs": [
                "SRC_Global"
            ],
            "output_formats": [
                "NetCDF"
            ],
            "parameter_names": {
                "air_temperature": {
                    "type": "Parameter",
                    "description": {
                        "en": "Air temperature at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "Kelvin"
                        },
                        "symbol": {
                            "value": "K",
                            "type": "http://www.edr.demo/metadata/units/K"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
                        "label": {
                            "en": "Temperature"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                    
                },
                "relative_humidity": {
                    "type": "Parameter",
                    "description": {
                        "en": "Relative Humidity in atmosphere at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "%"
                        },
                        "symbol": {
                            "value": "%",
                            "type": "http://codes.wmo.int/common/unit/percent"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
                        "label": {
                            "en": "Relative humidity"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "wind_from_direction": {
                    "type": "Parameter",
                    "description": {
                        "en": "Wind from direction at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "degree true"
                        },
                        "symbol": {
                            "value": "deg",
                            "type": "http://www.edr.demo/metadata/units/deg"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
                        "label": {
                            "en": "Wind direction (from which blowing)"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "wind_speed": {
                    "type": "Parameter",
                    "description": {
                        "en": "Wind speed at pressure level"
                    },
                    "unit": {
                        "label": {
                            "en": "m/s"
                        },
                        "symbol": {
                            "value": "m/s",
                            "type": "http://codes.wmo.int/common/unit/m/s"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
                        "label": {
                            "en": "Wind speed"
                        }
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "upward_air_velocity": {
                    "type": "Parameter",
                    "description": "Upward air velocity at pressure level",
                    "unit": {
                        "label": "m/s",
                        "symbol": {
                            "value": "m/s",
                            "type": "http://codes.wmo.int/common/unit/m/s"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-9",
                        "label": "Vertical velocity"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "cloud_ice_mixing_ratio": {
                    "type": "Parameter",
                    "description": "Cloud ice mixing-ratio at pressure level",
                    "unit": {
                        "label": "kg per kg",
                        "symbol": {
                            "value": "kg/kg",
                            "type": "http://codes.wmo.int/common/unit/kg_kg-1"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-82",
                        "label": "Cloud ice mixing-ratio"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "cloud_liquid_water_mixing_ratio": {
                    "type": "Parameter",
                    "description": "Cloud liquid water mixing-ratio at pressure level",
                    "unit": {
                        "label": "kg per kg",
                        "symbol": {
                            "value": "kg/kg",
                            "type": "http://codes.wmo.int/common/unit/kg_kg-1"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-23",
                        "label": "Ice water mixing ratio"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "cloud_volume_fraction_in_atmosphere_layer": {
                    "type": "Parameter",
                    "description": "Cloud volume fraction in atmosphere at pressure level",
                    "unit": {
                        "label": "1",
                        "symbol": {
                            "value": "1",
                            "type": "http://codes.wmo.int/common/unit/1"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-6-32",
                        "label": "Fraction of cloud cover"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "geopotential_height": {
                    "type": "Parameter",
                    "description": "Geopotential height of pressure levels",
                    "unit": {
                        "label": "m",
                        "symbol": {
                            "value": "m",
                            "type": "http://codes.wmo.int/common/unit/m"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-3-5",
                        "label": "Geopotential height"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                },
                "height": {
                    "type": "Parameter",
                    "description": "Height above ground level (the surface) of pressure levels",
                    "unit": {
                        "label": "m",
                        "symbol": {
                            "value": "m",
                            "type": "http://codes.wmo.int/common/unit/m"
                        }
                    },
                    "observedProperty": {
                        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-3-6",
                        "label": "Geometric height"
                    },
                    "measurementType": {
                        "method": "instantaneous",
                        "period": "PT0M"
                    }
                }
            }
        }
    ]
}

The schema of an instance is identical to that of a collection, this allows a service endpoint to describe occasions when parameter availability or query capability varies between instances of a collection.

The example above also provides examples of how it is possible to offer provide support for coordinate reference systems and output formats can vary by query type.

Extract data for a single data point from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/position

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022061704/position?coords=POINT(-0.115 51.508)&parameter-name=air_temperature,relative_humidity,wind_from_direction,wind_speed&datetime=2022-06-17T09:00Z&crs=EPSG:4326&f=CoverageJSON&z=100000.0

Query parameter Value
coords POINT(-0.115 51.508)
parameter-name air_temperature,relative_humidity,wind_from_direction,wind_speed
datetime 2022-06-17T09:00Z
crs EPSG:4326
f CoverageJSON&z=100000.0
Unroll for query response

{
    "type": "Coverage",
    "domain": {
      "type": "Domain",
      "domainType": "PointSeries",
      "axes": {
        "x": {"values": [-0.0703125]},
        "y": {"values": [51.515625]},
        "z": {"values": [100000.0]},
        "t": {"values": ["2022-06-17T09:00Z"]}
      },
      "referencing": [
        {"coordinates": ["x","y"],
          "system": {
            "type": "GeographicCRS",
            "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          }
        },
        {
          "coordinates": ["t"],
          "system": {
            "type": "TemporalCRS",
            "calendar": "Gregorian"
          }
        },
        {
          "coordinates": ["z"],
          "system": {
            "type": "ParametricCRS",
            "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
          }
        }
      ]
    },
    "parameters": {
      "air_temperature": {
        "type": "Parameter",
        "description": {
          "en": "Air temperature at pressure level"
        },
        "unit": {
          "label": {
            "en": "Kelvin"
          },
          "symbol": {
            "value": "K",
            "type": "http://codes.wmo.int/common/unit/K"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
          "label": {
            "en": "Temperature"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      },
      "relative_humidity": {
        "type": "Parameter",
        "description": {
          "en": "Relative Humidity in atmosphere at pressure level"
        },
        "unit": {
          "label": {
            "en": "%"
          },
          "symbol": {
            "value": "%",
            "type": "http://codes.wmo.int/common/unit/percent"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
          "label": {
            "en": "Relative humidity"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      },
      "wind_from_direction": {
        "type": "Parameter",
        "description": {
          "en": "Wind from direction at pressure level"
        },
        "unit": {
          "label": {
            "en": "degree true"
          },
          "symbol": {
            "value": "deg",
            "type": "http://codes.wmo.int/common/unit/degree_true"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
          "label": {
            "en": "Wind direction (from which blowing)"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      },
      "wind_speed": {
        "type": "Parameter",
        "description": {
          "en": "Wind speed at pressure level"
        },
        "unit": {
          "label": {
            "en": "m/s"
          },
          "symbol": {
            "value": "m/s",
            "type": "http://codes.wmo.int/common/unit/m_s-1"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
          "label": {
            "en": "Wind speed"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      }
    },
    "ranges": {
      "air_temperature": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [1],
        "values": [295.25]
      },
      "relative_humidity": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [1],
        "values": [0.427734375]
      },
      "wind_from_direction": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [1],
        "values": [202.625]
      },
      "wind_speed": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [1],
        "values": [5.25]
      }
    }
  }

Extract data for a single data point at specified time intervals from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/position

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022061704/position?coords=POINT(-0.115 51.508)&parameter-name=air_temperature,relative_humidity,wind_from_direction,wind_speed&datetime=2022-06-17T09:00Z,2022-06-17T12:00Z,2022-06-17T18:00Z&crs=EPSG:4326&f=CoverageJSON&z=100000.0

Query parameter Value
coords POINT(-0.115 51.508)
parameter-name air_temperature,relative_humidity,wind_from_direction,wind_speed
datetime 2022-06-17T09:00Z,2022-06-17T12:00Z,2022-06-17T18:00Z
crs EPSG:4326
z 100000.0
Unroll for query response

{
    "type": "Coverage",
    "domain": {
      "type": "Domain",
      "domainType": "PointSeries",
      "axes": {
        "x": {"values": [-0.0703125]},
        "y": {"values": [51.515625]},
        "z": {"values": [100000.0]},
        "t": {"values": ["2022-06-17T09:00Z","2022-06-17T12:00Z","2022-06-17T18:00Z"]}
      },
      "referencing": [
        {
          "coordinates": ["x","y"],
          "system": {
            "type": "GeographicCRS",
            "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          }
        },
        {
          "coordinates": ["t"],
          "system": {
            "type": "TemporalCRS",
            "calendar": "Gregorian"
          }
        },
        {
          "coordinates": ["z"],
          "system": {
            "type": "ParametricCRS",
            "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
          }
        }
      ]
    },
    "parameters": {
        "air_temperature": {
          "type": "Parameter",
          "description": {
            "en": "Air temperature at pressure level"
          },
          "unit": {
            "label": {
              "en": "Kelvin"
            },
            "symbol": {
              "value": "K",
              "type": "http://codes.wmo.int/common/unit/K"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
            "label": {
              "en": "Temperature"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "relative_humidity": {
          "type": "Parameter",
          "description": {
            "en": "Relative Humidity in atmosphere at pressure level"
          },
          "unit": {
            "label": {
              "en": "%"
            },
            "symbol": {
              "value": "%",
              "type": "http://codes.wmo.int/common/unit/percent"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
            "label": {
              "en": "Relative humidity"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_from_direction": {
          "type": "Parameter",
          "description": {
            "en": "Wind from direction at pressure level"
          },
          "unit": {
            "label": {
              "en": "degree true"
            },
            "symbol": {
              "value": "deg",
              "type": "http://codes.wmo.int/common/unit/degree_true"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
            "label": {
              "en": "Wind direction (from which blowing)"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_speed": {
          "type": "Parameter",
          "description": {
            "en": "Wind speed at pressure level"
          },
          "unit": {
            "label": {
              "en": "m/s"
            },
            "symbol": {
              "value": "m/s",
              "type": "http://codes.wmo.int/common/unit/m_s-1"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
            "label": {
              "en": "Wind speed"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        }
      },    "ranges": {
      "air_temperature": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [3],
        "values": [295.25,299.625,301.375]
      },
      "relative_humidity": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [3],
        "values": [0.427734375,0.3798828125,0.3408203125]
      },
      "wind_from_direction": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [3],
        "values": [202.625,214.3125,227.25]
      },
      "wind_speed": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [3],
        "values": [5.25,9.4375,10.25]
      }
    }
  }

Extract data for a timeSeries (a series of data points at the same spatial location with monotonically increasing times) from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/position

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022061704/position?coords=POINT(-0.115 51.508)&parameter-name=air_temperature,relative_humidity,wind_from_direction,wind_speed&datetime=2022-06-17T12:00Z/2022-06-18T09:00Z&crs=EPSG:4326&f=CoverageJSON&z=100000.0

Query parameter Value
coords POINT(-0.115 51.508)
parameter-name air_temperature,relative_humidity,wind_from_direction,wind_speed
datetime 2022-06-17T12:00Z/2022-06-18T09:00Z
crs EPSG:4326
f CoverageJSON
z 100000.0
Unroll for query response

{
    "type": "Coverage",
    "domain": {
      "type": "Domain",
      "domainType": "PointSeries",
      "axes": {
        "x": {"values": [-0.0703125]},
        "y": {"values": [51.515625]},
        "z": {"values": [100000.0]
        },
        "t": {"values": ["2022-06-17T12:00Z",
            "2022-06-17T13:00Z","2022-06-17T14:00Z",
            "2022-06-17T15:00Z","2022-06-17T16:00Z",
            "2022-06-17T17:00Z","2022-06-17T18:00Z",
            "2022-06-17T19:00Z","2022-06-17T20:00Z",
            "2022-06-17T21:00Z","2022-06-17T22:00Z",
            "2022-06-17T23:00Z","2022-06-18T00:00Z",
            "2022-06-18T01:00Z","2022-06-18T02:00Z",
            "2022-06-18T03:00Z","2022-06-18T04:00Z",
            "2022-06-18T05:00Z","2022-06-18T06:00Z",
            "2022-06-18T09:00Z"]
        }
      },
      "referencing": [
        {
          "coordinates": ["x","y"],
          "system": {
            "type": "GeographicCRS",
            "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          }
        },
        {
          "coordinates": ["t"],
          "system": {
            "type": "TemporalCRS",
            "calendar": "Gregorian"
          }
        },
        {
          "coordinates": ["z"],
          "system": {
            "type": "ParametricCRS",
            "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
          }
        }
      ]
    },
    "parameters": {
        "air_temperature": {
          "type": "Parameter",
          "description": {
            "en": "Air temperature at pressure level"
          },
          "unit": {
            "label": {
              "en": "Kelvin"
            },
            "symbol": {
              "value": "K",
              "type": "http://codes.wmo.int/common/unit/K"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
            "label": {
              "en": "Temperature"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "relative_humidity": {
          "type": "Parameter",
          "description": {
            "en": "Relative Humidity in atmosphere at pressure level"
          },
          "unit": {
            "label": {
              "en": "%"
            },
            "symbol": {
              "value": "%",
              "type": "http://codes.wmo.int/common/unit/percent"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
            "label": {
              "en": "Relative humidity"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_from_direction": {
          "type": "Parameter",
          "description": {
            "en": "Wind from direction at pressure level"
          },
          "unit": {
            "label": {
              "en": "degree true"
            },
            "symbol": {
              "value": "deg",
              "type": "http://codes.wmo.int/common/unit/degree_true"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
            "label": {
              "en": "Wind direction (from which blowing)"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_speed": {
          "type": "Parameter",
          "description": {
            "en": "Wind speed at pressure level"
          },
          "unit": {
            "label": {
              "en": "m/s"
            },
            "symbol": {
              "value": "m/s",
              "type": "http://codes.wmo.int/common/unit/m_s-1"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
            "label": {
              "en": "Wind speed"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        }
      }, 
    "ranges": {
      "air_temperature": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [20],
        "values": [299.625,300.5,
          300.75,300.875,301.5,
          301.625,301.375,300.875,
          300.25,299.125,298.0,
          297.0,296.25,295.375,
          294.625,293.625,292.5,
          291.25,290.375,290.625]
      },
      "relative_humidity": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [20],
        "values": [0.3798828125,
          0.35546875,0.3515625,
          0.34765625,0.3310546875,
          0.3349609375,0.3408203125,
          0.353515625,0.357421875,
          0.3837890625,0.4228515625,
          0.50390625,0.5771484375,
          0.619140625,0.6533203125,
          0.6875,0.7060546875,
          0.7314453125,0.794921875,
          0.7587890625]
      },
      "wind_from_direction": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [20],
        "values": [214.3125,
          217.5625,218.75,
          224.125,225.625,
          225.125,227.25,
          231.375,229.5,
          228.4375,241.3125,
          256.125,268.625,
          291.9375,308.3125,
          337.875,3.6875,
          15.0625,20.1875,
          19.4375]
      },
      "wind_speed": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t"],
        "shape": [20],
        "values": [9.4375,10.9375,
          11.3125,10.5,10.4375,
          10.5625,10.25,8.9375,
          7.875,7.3125,7.25,
          6.25,5.1875,4.5,
          4.1875,4.5,5.8125,
          6.25,6.4375,6.375]
      }
    }
  }

Extract data for a trajectory ( a series of data points along a path through space with monotonically increasing times) from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/trajectory

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022061704/trajectory?coords=LINESTRINGZM(-0.176 51.621 100000.0 1655769600,2.197 48.926 100000.0 1655776800,13.359 52.646 100000.0 1655780400,10.811 60.022 100000.0 1655784000,25.313 60.241 100000.0 1655787600)&parameter-name=air_temperature,relative_humidity,wind_from_direction,wind_speed&crs=EPSG:4326&f=CoverageJSON

Query parameter Value
coords LINESTRINGZM(-0.176 51.621 100000.0 1655769600,2.197 48.926 100000.0 1655776800,13.359 52.646 100000.0 1655780400,10.811 60.022 100000.0 1655784000,25.313 60.241 100000.0 1655787600)
parameter-name air_temperature,relative_humidity,wind_from_direction,wind_speed
crs EPSG:4326
f CoverageJSON
Unroll for query response

{
    "type": "Coverage",
    "domain": {
      "type": "Domain",
      "domainType": "Trajectory",
      "axes": {
        "composite": {
          "dataType": "tuple",
          "coordinates": ["t","x","y","z"],
          "values": [["2022-06-21T00:00Z",-0.2109375,51.609375,100000.0],
            ["2022-06-21T02:00Z",2.1796875,48.890625,100000.0],
            ["2022-06-21T03:00Z",13.2890625,52.640625,100000.0],
            ["2022-06-21T04:00Z",10.7578125,60.046875,100000.0],
            ["2022-06-21T05:00Z",25.3828125,60.234375,100000.0]]
        }
      },
      "referencing": [
        {
          "coordinates": ["x","y"],
          "system": {
            "type": "GeographicCRS",
            "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          }
        },
        {
          "coordinates": ["t"],
          "system": {
            "type": "TemporalCRS",
            "calendar": "Gregorian"
          }
        },
        {
          "coordinates": ["z"],
          "system": {
            "type": "ParametricCRS",
            "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
          }
        }
      ]
    },
    "parameters": {
        "air_temperature": {
          "type": "Parameter",
          "description": {
            "en": "Air temperature at pressure level"
          },
          "unit": {
            "label": {
              "en": "Kelvin"
            },
            "symbol": {
              "value": "K",
              "type": "http://codes.wmo.int/common/unit/K"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
            "label": {
              "en": "Temperature"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "relative_humidity": {
          "type": "Parameter",
          "description": {
            "en": "Relative Humidity in atmosphere at pressure level"
          },
          "unit": {
            "label": {
              "en": "%"
            },
            "symbol": {
              "value": "%",
              "type": "http://codes.wmo.int/common/unit/percent"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
            "label": {
              "en": "Relative humidity"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_from_direction": {
          "type": "Parameter",
          "description": {
            "en": "Wind from direction at pressure level"
          },
          "unit": {
            "label": {
              "en": "degree true"
            },
            "symbol": {
              "value": "deg",
              "type": "http://codes.wmo.int/common/unit/degree_true"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
            "label": {
              "en": "Wind direction (from which blowing)"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_speed": {
          "type": "Parameter",
          "description": {
            "en": "Wind speed at pressure level"
          },
          "unit": {
            "label": {
              "en": "m/s"
            },
            "symbol": {
              "value": "m/s",
              "type": "http://codes.wmo.int/common/unit/m_s-1"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
            "label": {
              "en": "Wind speed"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        }
    },
    "ranges": {
      "air_temperature": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["composite"],
        "shape": [5],
        "values": [287.625,289.5,284.0,288.375,286.125]
      },
      "relative_humidity": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["composite"],
        "shape": [5],
        "values": [0.71875,0.6787109375,0.8984375,0.8115234375,0.83984375]
      },
      "wind_from_direction": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["composite"],
        "shape": [5],
        "values": [118.0625,68.8125,276.625,214.6875,160.0]
      },
      "wind_speed": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["composite"],
        "shape": [5],
        "values": [3.75,3.3125,6.8125,1.0,0.75]
      }
    }
  }

Extract data for a profile (an ordered set of data points along a vertical line at a fixed horizontal position and fixed time) for specified height intervals from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/position

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022062204/position?coords=POINT(-75.718 45.492)&parameter-name=air_temperature,wind_from_direction,wind_speed&datetime=2022-06-22T10:00Z&crs=EPSG:4326&f=CoverageJSON&z=100000.0,97500.0,95000.0,92500.0,90000.0,85000.0,75000.0,65000.0,55000.0,45000.0,37500.0,35000.0,32500.0

Query parameter Value
coords POINT(-75.718 45.492)
parameter-name air_temperature,wind_from_direction,wind_speed
datetime 2022-06-22T10:00Z
crs EPSG:4326
f CoverageJSON
z 100000.0,97500.0,95000.0,92500.0,90000.0,85000.0,75000.0,65000.0,55000.0,45000.0,37500.0,35000.0,32500.0
Unroll for query response

{
    "type": "Coverage",
    "domain": {
      "type": "Domain",
      "domainType": "VerticalProfile",
      "axes": {
        "x": {"values": [-75.7265625]},
        "y": {"values": [45.515625]},
        "z": {
          "values": [32500.0,35000.0,
            37500.0,45000.0,55000.0,
            65000.0,75000.0,85000.0,
            90000.0,92500.0,95000.0,
            97500.0,100000.0]
        },
        "t": {"values": ["2022-06-22T10:00Z"]}
      },
      "referencing": [
        {
          "coordinates": ["x","y"],
          "system": {
            "type": "GeographicCRS",
            "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
          }
        },
        {
          "coordinates": ["t"],
          "system": {
            "type": "TemporalCRS",
            "calendar": "Gregorian"
          }
        },
        {
          "coordinates": ["z"],
          "system": {
            "type": "ParametricCRS",
            "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
          }
        }
      ]
    },
    "parameters": {
        "air_temperature": {
          "type": "Parameter",
          "description": {
            "en": "Air temperature at pressure level"
          },
          "unit": {
            "label": {
              "en": "Kelvin"
            },
            "symbol": {
              "value": "K",
              "type": "http://codes.wmo.int/common/unit/K"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
            "label": {
              "en": "Temperature"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "relative_humidity": {
          "type": "Parameter",
          "description": {
            "en": "Relative Humidity in atmosphere at pressure level"
          },
          "unit": {
            "label": {
              "en": "%"
            },
            "symbol": {
              "value": "%",
              "type": "http://codes.wmo.int/common/unit/percent"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
            "label": {
              "en": "Relative humidity"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_from_direction": {
          "type": "Parameter",
          "description": {
            "en": "Wind from direction at pressure level"
          },
          "unit": {
            "label": {
              "en": "degree true"
            },
            "symbol": {
              "value": "deg",
              "type": "http://codes.wmo.int/common/unit/degree_true"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
            "label": {
              "en": "Wind direction (from which blowing)"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        },
        "wind_speed": {
          "type": "Parameter",
          "description": {
            "en": "Wind speed at pressure level"
          },
          "unit": {
            "label": {
              "en": "m/s"
            },
            "symbol": {
              "value": "m/s",
              "type": "http://codes.wmo.int/common/unit/m_s-1"
            }
          },
          "observedProperty": {
            "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
            "label": {
              "en": "Wind speed"
            }
          },
          "measurementType": {
            "method": "instantaneous",
            "period": "PT0M"
          }
        }
    },
    "ranges": {
      "air_temperature": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t","z"],
        "shape": [1,13],
        "values": [244.75,249.0,
          253.0,262.125,269.375,
          279.375,286.875,290.875,
          293.25,293.125,290.0,289.375,
          290.5]
      },
      "wind_from_direction": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t","z"],
        "shape": [1,13],
        "values": [335.9375,338.25,
          337.125,339.3125,296.6875,
          292.125,280.8125,271.875,
          256.375,233.125,205.0,
          153.75,109.3125]
      },
      "wind_speed": {
        "type": "NdArray",
        "dataType": "float",
        "axisNames": ["t","z"],
        "shape": [1,13],
        "values": [10.0,10.125,
          10.0625,10.375,11.375,
          12.25,9.0,8.75,8.125,
          9.375,8.375,4.9375,2.0]
      }
    }
  }

Extract data for a profile (an ordered set of data points along a vertical line at a fixed horizontal position and fixed time) for a height range from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/position

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022062204/position?coords=POINT(-75.718 45.492)&parameter-name=air_temperature,wind_from_direction,wind_speed&datetime=2022-06-22T10:00Z&crs=EPSG:4326&f=CoverageJSON&z=32500/100000

Query parameter Value
coords POINT(-75.718 45.492)
parameter-name air_temperature,wind_from_direction,wind_speed
datetime 2022-06-22T10:00Z
crs EPSG:4326
f CoverageJSON
z 32500/100000
Unroll for query response

{
  "type": "Coverage",
  "domain": {
    "type": "Domain",
    "domainType": "VerticalProfile",
    "axes": {
      "x": {"values": [-75.7265625]},
      "y": {"values": [45.515625]},
      "z": {"values": [
          32500.0,35000.0,37500.0,
          40000.0,45000.0,50000.0,
          55000.0,60000.0,65000.0,
          70000.0,75000.0,80000.0,
          85000.0,90000.0,92500.0,
          95000.0,97500.0,100000.0]
      },
      "t": {"values": ["2022-06-22T10:00Z"]}
    },
    "referencing": [
      {
        "coordinates": ["x","y"],
        "system": {
          "type": "GeographicCRS",
          "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
        }
      },
      {
        "coordinates": ["t"],
        "system": {
          "type": "TemporalCRS",
          "calendar": "Gregorian"
        }
      },
      {
        "coordinates": ["z"],
        "system": {
          "type": "ParametricCRS",
          "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
        }
      }
    ]
  },
  "parameters": {
      "air_temperature": {
        "type": "Parameter",
        "description": {
          "en": "Air temperature at pressure level"
        },
        "unit": {
          "label": {
            "en": "Kelvin"
          },
          "symbol": {
            "value": "K",
            "type": "http://codes.wmo.int/common/unit/K"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
          "label": {
            "en": "Temperature"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      },
      "relative_humidity": {
        "type": "Parameter",
        "description": {
          "en": "Relative Humidity in atmosphere at pressure level"
        },
        "unit": {
          "label": {
            "en": "%"
          },
          "symbol": {
            "value": "%",
            "type": "http://codes.wmo.int/common/unit/percent"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
          "label": {
            "en": "Relative humidity"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      },
      "wind_from_direction": {
        "type": "Parameter",
        "description": {
          "en": "Wind from direction at pressure level"
        },
        "unit": {
          "label": {
            "en": "degree true"
          },
          "symbol": {
            "value": "deg",
            "type": "http://codes.wmo.int/common/unit/degree_true"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
          "label": {
            "en": "Wind direction (from which blowing)"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      },
      "wind_speed": {
        "type": "Parameter",
        "description": {
          "en": "Wind speed at pressure level"
        },
        "unit": {
          "label": {
            "en": "m/s"
          },
          "symbol": {
            "value": "m/s",
            "type": "http://codes.wmo.int/common/unit/m_s-1"
          }
        },
        "observedProperty": {
          "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
          "label": {
            "en": "Wind speed"
          }
        },
        "measurementType": {
          "method": "instantaneous",
          "period": "PT0M"
        }
      }
    },
    "ranges": {
    "air_temperature": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["t","z"],
      "shape": [1,18],
      "values": [244.75,249.0,
        253.0,256.375,262.125,
        266.625,269.375,274.25,
        279.375,282.75,286.875,
        289.625,290.875,293.25,
        293.125,290.0,289.375,
        290.5]
    },
    "wind_from_direction": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["t","z"],
      "shape": [1,18],
      "values": [335.9375,338.25,
        337.125,336.0625,339.3125,
        327.75,296.6875,293.875,
        292.125,284.375,280.8125,
        258.3125,271.875,256.375,
        233.125,205.0,153.75,109.3125]
    },
    "wind_speed": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["t","z"],
      "shape": [1,18],
      "values": [10.0,10.125,10.0625,
        10.1875,10.375,10.0,11.375,
        11.875,12.25,11.1875,9.0,8.0,
        8.75,8.125,9.375,8.375,4.9375,2.0]
    }
  }
}

Extract data for a timeSeriesProfile (a series of profile features at the same horizontal position with monotonically increasing times) from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/position

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022061704/position?coords=POINT(-92.427 35.461)&parameter-name=air_temperature,relative_humidity,wind_from_direction,wind_speed&datetime=2022-06-04T10:00Z/2022-06-04T17:00Z&crs=EPSG:4326&f=CoverageJSON&z=65000/100000

Query parameter Value
coords POINT(-92.427 35.461)
datetime 2022-06-04T10:00Z/2022-06-04T17:00Z
z 65000/100000
parameter-name air_temperature,relative_humidity,wind_from_direction,wind_speed
crs EPSG:4326
f CoverageJSON
Unroll for query response

{
  "type": "Coverage",
  "domain": {
    "type": "Domain",
    "domainType": "VerticalProfile",
    "axes": {
      "x": {
        "values": [
          -92.4609375
        ]
      },
      "y": {
        "values": [
          35.484375
        ]
      },
      "z": {
        "values": [
          65000.0,
          70000.0,
          75000.0,
          80000.0,
          85000.0,
          90000.0,
          92500.0,
          95000.0,
          97500.0,
          100000.0
        ]
      },
      "t": {
        "values": [
          "2022-06-04T10:00Z",
          "2022-06-04T11:00Z",
          "2022-06-04T12:00Z",
          "2022-06-04T13:00Z",
          "2022-06-04T14:00Z",
          "2022-06-04T15:00Z",
          "2022-06-04T16:00Z",
          "2022-06-04T17:00Z"
        ]
      }
    },
    "referencing": [
      {
        "coordinates": [
          "x",
          "y"
        ],
        "system": {
          "type": "GeographicCRS",
          "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
        }
      },
      {
        "coordinates": [
          "t"
        ],
        "system": {
          "type": "TemporalCRS",
          "calendar": "Gregorian"
        }
      },
      {
        "coordinates": [
          "z"
        ],
        "system": {
          "type": "ParametricCRS",
          "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
        }
      }
    ]
  },
  "parameters": {
    "air_temperature": {
      "type": "Parameter",
      "description": {
        "en": "Air temperature at pressure level"
      },
      "unit": {
        "label": {
          "en": "Kelvin"
        },
        "symbol": {
          "value": "K",
          "type": "http://codes.wmo.int/common/unit/K"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
        "label": {
          "en": "Temperature"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      },
      "categoryEncoding": {
        "#0E0E15": 242,
        "#0E1226": 245,
        "#0C133C": 247,
        "#171B4D": 249,
        "#20275F": 251,
        "#253070": 253,
        "#243C83": 255,
        "#375092": 257,
        "#50659F": 259,
        "#6879AB": 261,
        "#808EB9": 263,
        "#97A3C6": 265,
        "#AFB9D5": 267,
        "#C5CCE1": 269,
        "#DEE3EF": 271,
        "#F7F9FC": 273,
        "#FEF8DB": 275,
        "#FEEFBB": 277,
        "#FDE69B": 279,
        "#FDDF7D": 281,
        "#FED766": 283,
        "#FECC61": 285,
        "#FEC25C": 287,
        "#FCBC56": 289,
        "#FAAC50": 291,
        "#F9A34B": 293,
        "#F89846": 295,
        "#F68F40": 297,
        "#F5833B": 299,
        "#F37336": 301,
        "#F26234": 303,
        "#EC4F33": 305,
        "#E53B33": 307,
        "#DD2434": 309,
        "#D41F36": 311,
        "#C52035": 313,
        "#A41D2D": 315,
        "#811E24": 317,
        "#590B1C": 319,
        "#341117": 321,
        "#210B10": 323
      },
      "preferredPalette": {
        "colors": [
          "#0E0E15",
          "#0E1226",
          "#0C133C",
          "#171B4D",
          "#20275F",
          "#253070",
          "#243C83",
          "#375092",
          "#50659F",
          "#6879AB",
          "#808EB9",
          "#97A3C6",
          "#AFB9D5",
          "#C5CCE1",
          "#DEE3EF",
          "#F7F9FC",
          "#FEF8DB",
          "#FEEFBB",
          "#FDE69B",
          "#FDDF7D",
          "#FED766",
          "#FECC61",
          "#FEC25C",
          "#FCBC56",
          "#FAAC50",
          "#F9A34B",
          "#F89846",
          "#F68F40",
          "#F5833B",
          "#F37336",
          "#F26234",
          "#EC4F33",
          "#E53B33",
          "#DD2434",
          "#D41F36",
          "#C52035",
          "#A41D2D",
          "#811E24",
          "#590B1C",
          "#341117",
          "#210B10"
        ]
      }
    },
    "relative_humidity": {
      "type": "Parameter",
      "description": {
        "en": "Relative Humidity in atmosphere at pressure level"
      },
      "unit": {
        "label": {
          "en": "%"
        },
        "symbol": {
          "value": "%",
          "type": "http://codes.wmo.int/common/unit/percent"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
        "label": {
          "en": "Relative humidity"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    },
    "wind_from_direction": {
      "type": "Parameter",
      "description": {
        "en": "Wind from direction at pressure level"
      },
      "unit": {
        "label": {
          "en": "degree true"
        },
        "symbol": {
          "value": "deg",
          "type": "http://codes.wmo.int/common/unit/degree_true"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
        "label": {
          "en": "Wind direction (from which blowing)"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    },
    "wind_speed": {
      "type": "Parameter",
      "description": {
        "en": "Wind speed at pressure level"
      },
      "unit": {
        "label": {
          "en": "m/s"
        },
        "symbol": {
          "value": "m/s",
          "type": "http://codes.wmo.int/common/unit/m_s-1"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
        "label": {
          "en": "Wind speed"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    }
  },
  "ranges": {
    "air_temperature": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": [
        "t",
        "z"
      ],
      "shape": [
        8,
        10
      ],
      "values": [
        281.25,
        285.875,
        289.75,
        291.875,
        295.375,
        299.75,
        301.875,
        304.0,
        306.0,
        307.375,
        280.75,
        285.875,
        289.875,
        293.375,
        295.875,
        299.75,
        301.5,
        303.0,
        304.0,
        305.625,
        280.75,
        285.75,
        290.0,
        293.875,
        296.5,
        300.0,
        301.5,
        302.5,
        302.875,
        305.0,
        280.625,
        285.625,
        290.0,
        294.0,
        297.0,
        300.0,
        301.125,
        302.125,
        302.5,
        304.875,
        280.375,
        285.625,
        290.0,
        294.125,
        297.375,
        299.5,
        300.625,
        302.125,
        302.25,
        304.875,
        280.25,
        285.75,
        290.125,
        294.0,
        296.875,
        298.625,
        300.25,
        302.125,
        301.5,
        303.75,
        280.125,
        285.625,
        290.0,
        293.875,
        296.625,
        298.375,
        299.875,
        300.5,
        300.75,
        302.75,
        280.0,
        285.5,
        289.75,
        293.75,
        296.75,
        298.5,
        299.375,
        300.25,
        300.625,
        302.5
      ]
    },
    "relative_humidity": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": [
        "t",
        "z"
      ],
      "shape": [
        8,
        10
      ],
      "values": [
        0.5927734375,
        0.443359375,
        0.5009765625,
        0.5146484375,
        0.5029296875,
        0.4453125,
        0.4189453125,
        0.39453125,
        0.375,
        0.3779296875,
        0.619140625,
        0.4384765625,
        0.482421875,
        0.4326171875,
        0.4560546875,
        0.4248046875,
        0.43359375,
        0.4326171875,
        0.45703125,
        0.4658203125,
        0.6015625,
        0.44140625,
        0.4814453125,
        0.3798828125,
        0.423828125,
        0.396484375,
        0.4228515625,
        0.4404296875,
        0.494140625,
        0.5126953125,
        0.599609375,
        0.4501953125,
        0.48046875,
        0.322265625,
        0.38671875,
        0.39453125,
        0.43359375,
        0.4521484375,
        0.5009765625,
        0.541015625,
        0.619140625,
        0.4541015625,
        0.474609375,
        0.3115234375,
        0.3408203125,
        0.419921875,
        0.4560546875,
        0.443359375,
        0.5078125,
        0.548828125,
        0.62109375,
        0.4375,
        0.46875,
        0.2578125,
        0.3447265625,
        0.478515625,
        0.4716796875,
        0.4365234375,
        0.541015625,
        0.57421875,
        0.6220703125,
        0.44140625,
        0.4775390625,
        0.2138671875,
        0.3583984375,
        0.5029296875,
        0.482421875,
        0.55078125,
        0.5791015625,
        0.630859375,
        0.6240234375,
        0.45703125,
        0.478515625,
        0.197265625,
        0.375,
        0.494140625,
        0.5126953125,
        0.552734375,
        0.583984375,
        0.67578125
      ]
    },
    "wind_from_direction": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": [
        "t",
        "z"
      ],
      "shape": [
        8,
        10
      ],
      "values": [
        88.5625,
        71.4375,
        70.5,
        21.875,
        19.375,
        81.6875,
        107.125,
        123.5,
        132.4375,
        132.0,
        82.1875,
        80.4375,
        80.25,
        59.875,
        353.5625,
        42.6875,
        114.4375,
        153.625,
        165.375,
        169.5,
        66.375,
        84.3125,
        83.3125,
        85.125,
        31.75,
        36.875,
        132.375,
        169.8125,
        181.0625,
        184.4375,
        57.875,
        85.125,
        87.375,
        94.875,
        75.875,
        68.1875,
        164.6875,
        184.6875,
        187.375,
        189.4375,
        59.875,
        83.375,
        90.875,
        102.25,
        95.8125,
        180.0,
        194.0625,
        198.9375,
        189.875,
        193.6875,
        61.9375,
        81.25,
        92.25,
        107.0,
        94.375,
        226.625,
        215.0,
        206.3125,
        202.25,
        216.875,
        69.6875,
        84.8125,
        100.375,
        99.4375,
        46.5,
        264.125,
        231.125,
        213.125,
        229.3125,
        253.75,
        74.625,
        94.4375,
        108.4375,
        81.8125,
        27.0,
        283.25,
        240.0625,
        228.0625,
        242.5625,
        258.875
      ]
    },
    "wind_speed": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": [
        "t",
        "z"
      ],
      "shape": [
        8,
        10
      ],
      "values": [
        3.8125,
        8.25,
        9.375,
        3.25,
        2.4375,
        2.8125,
        3.5,
        4.5625,
        3.9375,
        2.125,
        4.375,
        8.8125,
        9.625,
        6.375,
        3.875,
        2.1875,
        2.25,
        4.625,
        4.9375,
        2.25,
        4.125,
        8.8125,
        9.4375,
        7.6875,
        3.875,
        1.375,
        1.9375,
        4.75,
        5.1875,
        2.0,
        4.75,
        8.4375,
        8.9375,
        8.0625,
        4.5,
        0.6875,
        2.375,
        5.3125,
        4.875,
        1.6875,
        5.625,
        8.125,
        8.25,
        7.6875,
        4.9375,
        0.6875,
        3.5,
        5.5625,
        4.1875,
        1.1875,
        5.875,
        7.1875,
        7.1875,
        6.375,
        3.3125,
        2.3125,
        4.5625,
        5.625,
        3.875,
        1.25,
        5.125,
        5.875,
        5.9375,
        4.75,
        2.5,
        3.0625,
        4.125,
        7.0,
        4.125,
        1.8125,
        3.5625,
        4.4375,
        4.5625,
        3.5,
        3.4375,
        3.8125,
        4.75,
        7.375,
        4.625,
        1.8125
      ]
    }
  }
}

Extract data for a trajectoryProfile (a series of profile features located at points ordered along a trajectory) from the 2022061704 instance

/collections/moglobal-pressure-levels/instances/2022061704/trajectory

http://www.edr.demo/collections/moglobal-pressure-levels/instances/2022062204/trajectory?coords=LINESTRINGZM(2.109 41.374 100000.0 1655884800,5.405 43.291 75000.0 1655892000,7.493 43.753 35000.0 1655895600,8.987 44.432 50000.0 1655906400,11.272 43.753 70000.0 1655830800,12.458 41.834 100000.0 1655834400)&parameter-name=air_temperature,relative_humidity,wind_from_direction,wind_speed&crs=EPSG:4326&f=CoverageJSON

Query parameter Value
coords LINESTRINGZM(2.109 41.374 100000.0 1655884800,5.405 43.291 75000.0 1655892000,7.493 43.753 35000.0 1655895600,8.987 44.432 50000.0 1655906400,11.272 43.753 70000.0 1655830800,12.458 41.834 100000.0 1655834400)
parameter-name air_temperature,relative_humidity,wind_from_direction,wind_speed
crs EPSG:4326
f CoverageJSON
Unroll for query response

{
  "type": "Coverage",
  "domain": {
    "type": "Domain",
    "domainType": "Trajectory",
    "axes": {
      "composite": {
        "dataType": "tuple",
        "coordinates": ["t","x","y","z"],
        "values": [["2022-06-22T08:00Z",2.0390625,41.390625,100000.0],
          ["2022-06-22T10:00Z",5.4140625,43.265625,75000.0],
          ["2022-06-22T11:00Z",7.5234375,43.734375,35000.0],
          ["2022-06-22T14:00Z",8.9296875,44.390625,50000.0],
          ["2022-06-21T17:00Z",11.3203125,43.734375,70000.0],
          ["2022-06-21T18:00Z",12.4453125,41.859375,100000.0]
        ]
      }
    },
    "referencing": [
      {
        "coordinates": ["x","y"],
        "system": {
          "type": "GeographicCRS",
          "id": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]"
        }
      },
      {
        "coordinates": ["t"],
        "system": {
          "type": "TemporalCRS",
          "calendar": "Gregorian"
        }
      },
      {
        "coordinates": ["z"],
        "system": {
          "type": "ParametricCRS",
          "id": "PARAMETRICCRS[\"WMO standard atmosphere layer 0\",PDATUM[\"Mean Sea Level\",ANCHOR[\"101325 Pa at 15\u00b0C\"]],CS[parametric,1],AXIS[\"pressure (Pa)\",up],PARAMETRICUNIT[\"Pascal\",1.0]]"
        }
      }
    ]
  },
"parameters": {
    "air_temperature": {
      "type": "Parameter",
      "description": {
        "en": "Air temperature at pressure level"
      },
      "unit": {
        "label": {
          "en": "Kelvin"
        },
        "symbol": {
          "value": "K",
          "type": "http://codes.wmo.int/common/unit/K"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-0-0",
        "label": {
          "en": "Temperature"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    },
    "relative_humidity": {
      "type": "Parameter",
      "description": {
        "en": "Relative Humidity in atmosphere at pressure level"
      },
      "unit": {
        "label": {
          "en": "%"
        },
        "symbol": {
          "value": "%",
          "type": "http://codes.wmo.int/common/unit/percent"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-1-1",
        "label": {
          "en": "Relative humidity"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    },
    "wind_from_direction": {
      "type": "Parameter",
      "description": {
        "en": "Wind from direction at pressure level"
      },
      "unit": {
        "label": {
          "en": "degree true"
        },
        "symbol": {
          "value": "deg",
          "type": "http://codes.wmo.int/common/unit/degree_true"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-0",
        "label": {
          "en": "Wind direction (from which blowing)"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    },
    "wind_speed": {
      "type": "Parameter",
      "description": {
        "en": "Wind speed at pressure level"
      },
      "unit": {
        "label": {
          "en": "m/s"
        },
        "symbol": {
          "value": "m/s",
          "type": "http://codes.wmo.int/common/unit/m_s-1"
        }
      },
      "observedProperty": {
        "id": "http://codes.wmo.int/grib2/codeflag/4.2/0-2-1",
        "label": {
          "en": "Wind speed"
        }
      },
      "measurementType": {
        "method": "instantaneous",
        "period": "PT0M"
      }
    }
  },
  "ranges": {
    "air_temperature": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["composite"],
      "shape": [6],
      "values": [297.375,
        282.375,243.625,
        262.0,282.5,299.625]
    },
    "relative_humidity": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["composite"],
      "shape": [6],
      "values": [0.767578125,
        0.8173828125,0.7666015625,
        0.8974609375,0.634765625,
        0.5283203125]
    },
    "wind_from_direction": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["composite"],
      "shape": [6],
      "values": [230.125,
        224.9375,224.0625,
        225.3125,265.375,
        232.9375]
    },
    "wind_speed": {
      "type": "NdArray",
      "dataType": "float",
      "axisNames": ["composite"],
      "shape": [6],
      "values": [3.9375,18.125,
        27.375,28.5625,13.9375,
        3.375]
    }
  }
}

Mark Burgoyne http://labs.metoffice.gov.uk/edr

Shane Mill http://edr-api.mdl.nws.noaa.gov/OGC-EDR-API

Igor Andruska http://ogcie.iblsoft.com:8089/oab/

Pete Trevelyan ESRI Image Server facade?

Peng Yue http://geos.whu.edu.cn/whu-edr-demo/

Clone this wiki locally