Skip to content

Commit 0ee06a6

Browse files
committed
fix(usgs-eq): anchor system/deployments at USGS NEIC Golden, CO
Replace [0,0] (Gulf of Guinea) with [-105.2214, 39.7392] — the USGS National Earthquake Information Center in Golden, Colorado, where the feed originates. Re-bootstrapped: same IDs (sys=059g, ds=05ag, deploys=054g/0550).
1 parent 588cb72 commit 0ee06a6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

publishers/usgs_eq/bootstrap_usgs_eq.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _system_stub(config: dict) -> dict:
112112
"type": "Feature",
113113
"geometry": {
114114
"type": "Point",
115-
"coordinates": [0.0, 0.0], # Global coverage — center of world
115+
"coordinates": [-105.2214, 39.7392], # USGS NEIC, Golden, Colorado
116116
},
117117
"properties": {
118118
"uid": SYSTEM_UID,
@@ -257,7 +257,7 @@ def _system_sml(config: dict) -> dict:
257257
],
258258
"position": {
259259
"type": "Point",
260-
"coordinates": [0.0, 0.0],
260+
"coordinates": [-105.2214, 39.7392], # USGS NEIC, Golden, Colorado
261261
"srsName": "http://www.opengis.net/def/crs/EPSG/0/4326",
262262
},
263263
}
@@ -319,7 +319,7 @@ def _deploy_root() -> dict:
319319
"type": "Feature",
320320
"geometry": {
321321
"type": "Point",
322-
"coordinates": [0.0, 0.0], # Global coverage
322+
"coordinates": [-105.2214, 39.7392], # USGS NEIC, Golden, Colorado
323323
},
324324
"properties": {
325325
"uid": DEPLOY_ROOT_UID,
@@ -345,7 +345,7 @@ def _deploy_feed(system_server_id: str) -> dict:
345345
"type": "Feature",
346346
"geometry": {
347347
"type": "Point",
348-
"coordinates": [0.0, 0.0], # Global coverage
348+
"coordinates": [-105.2214, 39.7392], # USGS NEIC, Golden, Colorado
349349
},
350350
"properties": {
351351
"uid": DEPLOY_FEED_UID,

0 commit comments

Comments
 (0)