U.S. Geological Survey · JSON Structure

Usgs Earthquake Api Earthquake Geometry Structure

GeoJSON Point geometry for the earthquake epicenter location.

Type: object Properties: 2
Federal GovernmentGeologicalEarth ScienceNatural ResourcesEarthquakeWaterHydrology

EarthquakeGeometry is a JSON Structure definition published by U.S. Geological Survey, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type coordinates

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-geological-survey/refs/heads/main/json-structure/usgs-earthquake-api-earthquake-geometry-structure.json",
  "description": "GeoJSON Point geometry for the earthquake epicenter location.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "GeoJSON geometry type (always Point).",
      "example": "Point"
    },
    "coordinates": {
      "type": "array",
      "description": "Array of [longitude, latitude, depth_km]. Depth is in kilometers below the surface (positive = deeper).",
      "items": {
        "type": "double"
      },
      "example": [
        -122.0,
        37.75,
        10.5
      ]
    }
  },
  "name": "EarthquakeGeometry"
}