Enhanced Historical Earthquake Sample

This page provides a complete sample response for an enhanced historical earthquake hazard. Enhanced historical hazards use the legacy DAE hazard schema, which differs significantly from the V2 API response format used by the Active Hazards endpoint. This sample demonstrates the full structure of a legacy earthquake hazard object, including the earthquakeAssessment block with USGS ShakeMap data and PGA contours.

circle-exclamation

Earthquake Assessment (Enhanced Data)

The earthquakeAssessment object contains USGS ShakeMap data for the earthquake, including Peak Ground Acceleration (PGA) contours as GeoJSON features. This is the primary enhancement over the base hazard record.

Key properties:

Property
Type
Description

usgs_event_id

string

USGS event identifier (e.g., us6000rt1x)

shakemap_version

string

Version of the ShakeMap product

magnitude

number

Earthquake magnitude from ShakeMap

depth_km

number

Depth of the earthquake in kilometers

source

string

Data source (e.g., USGS ShakeMap)

max_pga_pctg

number

Maximum PGA value in percent-g

max_pga_g

number

Maximum PGA value in g (gravitational acceleration)

max_mmi

string

Maximum Modified Mercalli Intensity

pga_contour_count

integer

Number of PGA contour levels

pga_contours

object

GeoJSON FeatureCollection of PGA contour lines

PGA Contours

The pga_contours property is a GeoJSON FeatureCollection containing MultiLineString features representing Peak Ground Acceleration contour lines. Each feature represents a specific PGA threshold level.

Contour feature properties:

Property
Type
Description

value

number

PGA threshold value in percent-g

units

string

Unit of measurement (always pctg for percent-g)

color

string

Hex color code for rendering the contour

weight

integer

Line weight for rendering

This sample includes 10 contour levels at the following PGA values (in %g):

Value
Color

0.005

#ffffff

0.01

#ffffff

0.02

#ffffff

0.05

#fbfcff

0.1

#d3dcff

0.2

#b7d2ff

0.5

#a5e1ff

1.0

#96edff

2.0

#87f9ff

5.0

#7cffb7

Exposure Assessment

The legacy schema wraps exposure values in {value: ...} objects and organizes exposure into numbered levels within an exposureLevels array. Each level includes population, capital, and humanitarian needs data.

Exposure levels for this earthquake:

Level
Description
Population
Capital (USD)

1

Moderate to strong shaking (30 - 100km)

5.2

$209,800

2

Very strong shaking (10-30km)

0

$0

3

Severe shaking and above (0-10km)

0

$0

Legacy Hazard Field Reference

Top-level hazard fields:

Field
Type
Description

hazard_ID

integer

Unique hazard identifier

uuid

string

UUID for the hazard

hazard_Name

string

Full hazard title including magnitude and location

type_ID

string

Hazard type (e.g., EARTHQUAKE)

category_ID

string

Category classification (e.g., EVENT)

severity_ID

string

Severity level (e.g., ADVISORY, WATCH, WARNING)

status

string

Active status (A = active)

latitude / longitude

number

Epicenter coordinates

start_Date

string

Event start time in epoch milliseconds

end_Date

string

Event end time in epoch milliseconds

create_Date

string

Record creation time in epoch milliseconds

last_Update

string

Last update time in epoch milliseconds

creator

string

System or user that created the record

update_User

string

System or user that last updated the record

description

string

Human-readable event description

autoexpire

string

Whether the hazard auto-expires (Y/N)

snc_url

string

URL to the Hazard Brief page

product_total

string

Number of associated products

tier

string

Access tier (e.g., Enterprise)

tier_tag

string

Short tier code (e.g., ent)

master_Incident_ID

string

Internal incident tracking ID

org_ID

integer

Organization ID (-1 for system-generated)

app_ID

integer

Application ID

in_Dashboard

string

Dashboard visibility flag

locationDetails

object

Structured location metadata (country, state, continent)

activeGeography

object

Smart alert area geometry with WKT polygon

exposureAssessment

object

Structured exposure data with nested value objects

earthquakeAssessment

object

USGS ShakeMap data and PGA contours

exposureArea

object

GeoJSON FeatureCollection of exposure area polygons

Sample Response

circle-info

In this sample, coordinate arrays in activeGeography.wkt, exposureArea, and pga_contours geometries have been replaced with [...] or (...truncated...) for brevity. In actual API responses, these properties contain complete coordinate data. The activeGeography.wkt.text field contains a full WKT POLYGON string defining the smart alert boundary.

Last updated