MonitoringLocationFeature

GeoJSON Feature for a single USGS water monitoring location.

Federal GovernmentGeologicalEarth ScienceNatural ResourcesEarthquakeWaterHydrology

Properties

Name Type Description
type string GeoJSON type.
geometry object GeoJSON Point geometry with longitude and latitude.
properties object
View JSON Schema on GitHub

JSON Schema

usgs-water-data-api-monitoring-location-feature-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-geological-survey/refs/heads/main/json-schema/usgs-water-data-api-monitoring-location-feature-schema.json",
  "title": "MonitoringLocationFeature",
  "description": "GeoJSON Feature for a single USGS water monitoring location.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "GeoJSON type.",
      "example": "Feature"
    },
    "geometry": {
      "type": "object",
      "description": "GeoJSON Point geometry with longitude and latitude.",
      "properties": {
        "type": {
          "type": "string",
          "example": "Point"
        },
        "coordinates": {
          "type": "array",
          "items": {
            "type": "number"
          },
          "example": [
            -122.419,
            37.775
          ]
        }
      }
    },
    "properties": {
      "$ref": "#/components/schemas/MonitoringLocationProperties"
    }
  }
}