全球地震数据
路径: /gq
数据来自 GlobalQuake 全球地震监测网络,订阅全球范围内的实时地震事件。
事件列表
| type | action | 说明 |
|---|---|---|
earthquake | update | 地震参数更新/新地震 |
earthquake | archived | 地震事件结束归档 |
earthquake | cancelled | 地震事件被取消 |
地震更新 / 归档
{
// 数据源标识
"source": "gq",
// 事件分类: earthquake / cluster / station / status
"type": "earthquake",
// 事件动作: update / archived / cancelled
"action": "update",
// 事件发生时间戳(ms)
"timestampMs": 1740787200000,
"payload": {
// 地震事件唯一标识
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
// 纬度
"latitude": 35.0,
// 经度
"longitude": 140.0,
// 深度(km)
"depth": 10.0,
// 震级
"magnitude": 6.5,
// 发震时间戳(ms)
"originTimeMs": 1740787200000,
// 发震时间 ISO 8601
"originTimeIso": "2026-03-01T00:00:00Z",
// 最后更新时间戳
"lastUpdateMs": 1740787205000,
// 修订版本号
"revisionId": 3,
// 地区名称
"region": "日本关东地区",
// 是否为固定深度
"fixedDepth": false,
// 最大峰值地面加速度(Gal)
"maxPGA": 140.0,
// MMI 烈度(罗马数字 I–XII)
"intensity": "VIII",
// 事件簇信息
"cluster": {
// 簇 ID
"id": "cluster-uuid",
// 簇中心纬度
"latitude": 35.1,
// 簇中心经度
"longitude": 140.1,
// 簇层级
"level": 1
},
// 定位质量信息
"quality": {
// 发震时间误差(s)
"errOrigin": 0.5,
// 深度误差(km)
"errDepth": 2.0,
// 南北方向误差(km)
"errNS": 5.0,
// 东西方向误差(km)
"errEW": 4.0,
// 质量百分比
"pct": 80.0,
// 参与定位台站数
"stations": 15
},
// 台站统计
"stationCount": {
// 总台站数
"total": 30,
// 选中台站数
"selected": 20,
// 使用台站数
"used": 15,
// 匹配台站数
"matching": 12
},
// 深度置信区间
"depthConfidence": {
// 最小可能深度(km)
"minDepth": 8.0,
// 最大可能深度(km)
"maxDepth": 12.0
}
}
}
地震取消
{
"source": "gq",
"type": "earthquake",
// action: cancelled - 地震事件被取消
"action": "cancelled",
"timestampMs": 1740787200000,
"payload": {
// 被取消的地震事件 ID
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}