diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 5ed8b1067..ada5deb8f 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -15,7 +15,7 @@ Hello! Thanks for contributing. For the fastest response and resolution, please
- For build issues: Can you reproduce it on a clean install of the example app? Please include full steps to reproduce from `react-native init`
- - Include a link to a minimal demonstration of the bug, ideally a single component with one MapView. Use an example like [PointInMapView](/packages/examples/src/BugReportPage.js) as a starting point.
+ - Include a link to a minimal demonstration of the bug, ideally a single component with one MapView. Use an example like [PointInMapView](/packages/examples/src/BugReport.tsx) as a starting point.
- Ensure you can reproduce the bug using the latest release.
@@ -48,5 +48,6 @@ Hello! Thanks for contributing. For the fastest response and resolution, please
- MapLibre Native Version: [e.g. 6.7.0]
- `react-native` Version: [e.g. 0.75.0]
- `expo` Version: [e.g. 51.0.0]
+- Architecture: [new/old]
### Additional context
diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml
index dbe6bdce6..da31cd0af 100644
--- a/.github/actions/setup/action.yml
+++ b/.github/actions/setup/action.yml
@@ -27,7 +27,7 @@ runs:
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
restore-keys: |
- ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
+ ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-
${{ runner.os }}-yarn-
- name: Install dependencies
diff --git a/.github/workflows/review-android.yml b/.github/workflows/review-android.yml
index ac91d7800..c5900a0bf 100644
--- a/.github/workflows/review-android.yml
+++ b/.github/workflows/review-android.yml
@@ -37,10 +37,10 @@ jobs:
./packages/react-native-app/android/.gradle
./packages/react-native-app/android/app/build
./packages/react-native-app/android/build
- key: ${{ runner.os }}-android-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ github.workflow }}-${{ github.sha }}
+ key: ${{ runner.os }}-android-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}-${{ hashFiles('android/**') }}
restore-keys: |
- ${{ runner.os }}-android-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ github.workflow }}-${{ github.sha }}
- ${{ runner.os }}-android-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ github.workflow }}-
+ ${{ runner.os }}-android-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('yarn.lock') }}-
+ ${{ runner.os }}-android-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-
- name: Build
if: steps.android-build-cache.outputs.cache-hit != 'true'
diff --git a/.github/workflows/review-ios.yml b/.github/workflows/review-ios.yml
index 3f4e68777..d912769c9 100644
--- a/.github/workflows/review-ios.yml
+++ b/.github/workflows/review-ios.yml
@@ -26,14 +26,12 @@ jobs:
id: cocoapods-cache
with:
path: ./packages/react-native-app/ios/Pods
- key: ${{ runner.os }}-cocoapods-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('./packages/react-native-app/ios/Podfile.lock') }}
+ key: ${{ runner.os }}-cocoapods-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
restore-keys: |
- ${{ runner.os }}-cocoapods-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('./packages/react-native-app/ios/Podfile.lock') }}
+ ${{ runner.os }}-cocoapods-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('yarn.lock') }}-
${{ runner.os }}-cocoapods-${{ matrix.new-arch && 'new' || 'old' }}-arch-
- name: Install Cocoapods
- # New Arch changes Podfile.lock so it always has to run
- if: matrix.new-arch || steps.cocoapods-cache.outputs.cache-hit != 'true'
run: RCT_NEW_ARCH_ENABLED=${{ matrix.new-arch && '1' || '0' }} yarn pod:install
- name: Cache Build
@@ -41,10 +39,10 @@ jobs:
id: ios-build-cache
with:
path: ./packages/react-native-app/ios/build
- key: ${{ runner.os }}-ios-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ github.workflow }}-${{ github.sha }}
+ key: ${{ runner.os }}-ios-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}-${{ hashFiles('ios/**') }}
restore-keys: |
- ${{ runner.os }}-ios-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ github.workflow }}-${{ github.sha }}
- ${{ runner.os }}-ios-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ github.workflow }}-
+ ${{ runner.os }}-ios-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-${{ hashFiles('yarn.lock') }}-
+ ${{ runner.os }}-ios-build-${{ matrix.new-arch && 'new' || 'old' }}-arch-
- name: Build
if: steps.ios-build-cache.outputs.cache-hit != 'true'
diff --git a/README.md b/README.md
index 3909153f8..72b3b16fd 100644
--- a/README.md
+++ b/README.md
@@ -17,11 +17,11 @@ diverged, it has become necessary to separate the projects into specific wrapper
diff --git a/packages/examples/src/App.tsx b/packages/examples/src/App.tsx
index f6683a0da..cc00a481a 100755
--- a/packages/examples/src/App.tsx
+++ b/packages/examples/src/App.tsx
@@ -1,13 +1,11 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { useEffect, useState } from "react";
-import { StyleSheet, Text, View, LogBox } from "react-native";
-import { SafeAreaView, SafeAreaProvider } from "react-native-safe-area-context";
+import { LogBox, Platform, StyleSheet, Text, View } from "react-native";
+import { SafeAreaProvider, SafeAreaView } from "react-native-safe-area-context";
import "react-native-gesture-handler";
-import { default as Home } from "./scenes/Examples";
-import colors from "./styles/colors";
-import sheet from "./styles/sheet";
-import { IS_ANDROID } from "./utils";
+import { default as Home } from "./Examples";
+import { sheet } from "./styles/sheet";
LogBox.ignoreLogs([
"Warning: isMounted(...) is deprecated",
@@ -21,6 +19,8 @@ const styles = StyleSheet.create({
},
});
+const IS_ANDROID = Platform.OS === "android";
+
MapLibreGL.setAccessToken(null);
export function App() {
@@ -47,9 +47,7 @@ export function App() {
return (
-
+
You need to accept location permissions in order to use this
diff --git a/packages/examples/src/scenes/Examples.tsx b/packages/examples/src/Examples.tsx
similarity index 85%
rename from packages/examples/src/scenes/Examples.tsx
rename to packages/examples/src/Examples.tsx
index 935d18ffb..fa6666ea1 100644
--- a/packages/examples/src/scenes/Examples.tsx
+++ b/packages/examples/src/Examples.tsx
@@ -8,13 +8,10 @@ import {
View,
} from "react-native";
-import * as MapLibreExamples from "../examples";
-import { default as sheet } from "../styles/sheet";
+import * as MapLibreExamples from "./examples/index";
+import { sheet } from "./styles/sheet";
const styles = StyleSheet.create({
- exampleList: {
- flex: 1,
- },
exampleListItem: {
flexDirection: "row",
justifyContent: "space-between",
@@ -59,19 +56,19 @@ class ExampleGroup {
const Examples = new ExampleGroup(
"MapLibre React Native",
[
- new ExampleItem("Bug Report Template", MapLibreExamples.BugReportPage),
+ new ExampleItem("Bug Report", MapLibreExamples.BugReport),
new ExampleGroup("Map", [
new ExampleItem("Show Map", MapLibreExamples.ShowMap),
new ExampleItem(
- "Show Map With Local Style.JSON",
+ "Show Map with Local Style.JSON",
MapLibreExamples.ShowMapLocalStyle,
),
new ExampleItem("Show Click", MapLibreExamples.ShowClick),
new ExampleItem(
- "Show Region Did Change",
+ "Show Region did Change",
MapLibreExamples.ShowRegionDidChange,
),
- new ExampleItem("Two Map Views", MapLibreExamples.TwoByTwo),
+ new ExampleItem("Two Map Views", MapLibreExamples.TwoMapViews),
new ExampleItem(
"Create Offline Region",
MapLibreExamples.CreateOfflineRegion,
@@ -101,11 +98,7 @@ const Examples = new ExampleGroup(
new ExampleItem("Set Heading", MapLibreExamples.SetHeading),
new ExampleItem("Fly To", MapLibreExamples.FlyTo),
new ExampleItem("Restrict Bounds", MapLibreExamples.RestrictMapBounds),
- new ExampleItem(
- "Set User Tracking Modes",
- MapLibreExamples.SetUserTrackingMode,
- ),
- new ExampleItem("Yo Yo Camera", MapLibreExamples.YoYo),
+ new ExampleItem("Yo-yo Camera", MapLibreExamples.YoYo),
new ExampleItem(
"Take Snapshot Without Map",
MapLibreExamples.TakeSnapshot,
@@ -114,7 +107,7 @@ const Examples = new ExampleGroup(
"Take Snapshot With Map",
MapLibreExamples.TakeSnapshotWithMap,
),
- new ExampleItem("Get Current Zoom", MapLibreExamples.GetZoom),
+ new ExampleItem("Get current Zoom", MapLibreExamples.GetZoom),
new ExampleItem("Get Center", MapLibreExamples.GetCenter),
new ExampleItem("Compass View", MapLibreExamples.CompassView),
]),
@@ -138,28 +131,28 @@ const Examples = new ExampleGroup(
),
new ExampleItem(
- "Set Preferred Frames Per Second\n(Android only)",
+ "Set preferred Frames per Second\n(Android only)",
MapLibreExamples.SetAndroidPreferredFramesPerSecond,
),
]),
new ExampleGroup("Symbol/CircleLayer", [
new ExampleItem("Custom Icon", MapLibreExamples.CustomIcon),
- new ExampleItem("Clustering EarthQuakes", MapLibreExamples.EarthQuakes),
+ new ExampleItem("Clustering Earthquakes", MapLibreExamples.Earthquakes),
new ExampleItem(
- "Shape Source From Icon",
+ "Icon from Shape Source",
MapLibreExamples.ShapeSourceIcon,
),
new ExampleItem(
- "Data Driven Circle Colors",
+ "Data-driven Circle Colors",
MapLibreExamples.DataDrivenCircleColors,
),
]),
new ExampleGroup("Fill/RasterLayer", [
new ExampleItem("GeoJSON Source", MapLibreExamples.GeoJSONSource),
new ExampleItem(
- "Watercolor Raster Tiles",
- MapLibreExamples.WatercolorRasterTiles,
+ "OpenStreetMap Raster Tiles",
+ MapLibreExamples.OpenStreetMapRasterTiles,
),
new ExampleItem("Indoor Building Map", MapLibreExamples.IndoorBuilding),
new ExampleItem("Query Feature Point", MapLibreExamples.QueryAtPoint),
@@ -172,13 +165,9 @@ const Examples = new ExampleGroup(
MapLibreExamples.CustomVectorSource,
),
new ExampleItem("Image Overlay", MapLibreExamples.ImageOverlay),
- new ExampleItem(
- "Choropleth Layer By Zoom Level",
- MapLibreExamples.ChoroplethLayerByZoomLevel,
- ),
]),
new ExampleGroup("LineLayer", [
- new ExampleItem("GradientLine", MapLibreExamples.GradientLine),
+ new ExampleItem("Gradient Line", MapLibreExamples.GradientLine),
]),
new ExampleGroup("Annotations", [
new ExampleItem(
@@ -200,7 +189,7 @@ const Examples = new ExampleGroup(
MapLibreExamples.AnimateCircleAlongLine,
),
]),
- new ExampleItem("Cache management", MapLibreExamples.CacheManagement),
+ new ExampleItem("Cache Management", MapLibreExamples.CacheManagement),
],
true,
);
@@ -251,9 +240,9 @@ function ExampleList({ route, navigation }: ExampleListProps) {
return (
-
+
item.label}
renderItem={renderItem}
diff --git a/packages/examples/src/assets/earthquakes.json b/packages/examples/src/assets/earthquakes.json
deleted file mode 100644
index 81ba871bc..000000000
--- a/packages/examples/src/assets/earthquakes.json
+++ /dev/null
@@ -1,2075 +0,0 @@
-{"type":"FeatureCollection","metadata":{"generated":1645125486000,"url":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_week.geojson","title":"USGS All Earthquakes, Past Week","status":200,"api":"1.10.3","count":2075},"features":[{"type":"Feature","properties":{"mag":1.58,"place":"23km SSW of New Idria, CA","time":1645125379410,"updated":1645125474177,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694191","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694191.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":38,"net":"nc","code":"73694191","ids":",nc73694191,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":8,"dmin":0.02676,"rms":0.04,"gap":202,"magType":"md","type":"earthquake","title":"M 1.6 - 23km SSW of New Idria, CA"},"geometry":{"type":"Point","coordinates":[-120.8033371,36.2426682,5.47]},"id":"nc73694191"},
- {"type":"Feature","properties":{"mag":0.97,"place":"8km NW of The Geysers, CA","time":1645125373020,"updated":1645125469181,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694186","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694186.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73694186","ids":",nc73694186,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":17,"dmin":0.007133,"rms":0.01,"gap":61,"magType":"md","type":"earthquake","title":"M 1.0 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.810997,38.8305016,1.77]},"id":"nc73694186"},
- {"type":"Feature","properties":{"mag":0.85,"place":"6km WNW of The Geysers, CA","time":1645125275860,"updated":1645125369224,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694181","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694181.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73694181","ids":",nc73694181,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":7,"dmin":0.007215,"rms":0.01,"gap":85,"magType":"md","type":"earthquake","title":"M 0.9 - 6km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8216629,38.8046684,1.67]},"id":"nc73694181"},
- {"type":"Feature","properties":{"mag":1.04,"place":"10km SE of Anza, CA","time":1645125194830,"updated":1645125415318,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188240","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188240.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":17,"net":"ci","code":"40188240","ids":",ci40188240,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.01036,"rms":0.19,"gap":45,"magType":"ml","type":"earthquake","title":"M 1.0 - 10km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5898333,33.494,10.03]},"id":"ci40188240"},
- {"type":"Feature","properties":{"mag":1.3,"place":"23 km W of Anchorage, Alaska","time":1645123541501,"updated":1645123958204,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227os74q","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227os74q.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02227os74q","ids":",ak02227os74q,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.28,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 23 km W of Anchorage, Alaska"},"geometry":{"type":"Point","coordinates":[-150.3331,61.2162,56.2]},"id":"ak02227os74q"},
- {"type":"Feature","properties":{"mag":2.35,"place":"7 km E of Pāhala, Hawaii","time":1645122656520,"updated":1645122986110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920522","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920522.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":85,"net":"hv","code":"72920522","ids":",hv72920522,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.140000001,"gap":152,"magType":"ml","type":"earthquake","title":"M 2.4 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.406997680664,19.2089996337891,31.4699993133545]},"id":"hv72920522"},
- {"type":"Feature","properties":{"mag":3.25,"place":"29 km NW of Stanley, Idaho","time":1645121762830,"updated":1645124218220,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538624","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538624.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":162,"net":"mb","code":"80538624","ids":",mb80538624,","sources":",mb,","types":",origin,phase-data,","nst":23,"dmin":0.847,"rms":0.23,"gap":84,"magType":"ml","type":"earthquake","title":"M 3.3 - 29 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.2195,44.3875,12.22]},"id":"mb80538624"},
- {"type":"Feature","properties":{"mag":5.2,"place":"294 km SSW of ‘Ohonua, Tonga","time":1645121637013,"updated":1645123137040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glrd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glrd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":416,"net":"us","code":"7000glrd","ids":",us7000glrd,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.697,"rms":1.31,"gap":72,"magType":"mb","type":"earthquake","title":"M 5.2 - 294 km SSW of ‘Ohonua, Tonga"},"geometry":{"type":"Point","coordinates":[-175.6598,-23.9139,10]},"id":"us7000glrd"},
- {"type":"Feature","properties":{"mag":2,"place":"2km W of San Juan Bautista, CA","time":1645121150710,"updated":1645123394259,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694161","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694161.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"nc","code":"73694161","ids":",nc73694161,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.04786,"rms":0.13,"gap":68,"magType":"md","type":"earthquake","title":"M 2.0 - 2km W of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5554962,36.8465004,6.31]},"id":"nc73694161"},
- {"type":"Feature","properties":{"mag":1.46,"place":"10km NNW of Idyllwild, CA","time":1645120863270,"updated":1645122231190,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188184","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188184.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"ci","code":"40188184","ids":",ci40188184,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.0452,"rms":0.14,"gap":39,"magType":"ml","type":"earthquake","title":"M 1.5 - 10km NNW of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7431667,33.8308333,13.21]},"id":"ci40188184"},
- {"type":"Feature","properties":{"mag":0.87,"place":"7km NW of The Geysers, CA","time":1645120455090,"updated":1645122794083,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694156","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694156.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73694156","ids":",nc73694156,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.006633,"rms":0.02,"gap":63,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8018341,38.8250008,2.59]},"id":"nc73694156"},
- {"type":"Feature","properties":{"mag":2.41,"place":"2 km SW of Guánica, Puerto Rico","time":1645120361580,"updated":1645122982710,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335323","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335323.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":89,"net":"pr","code":"71335323","ids":",pr71335323,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.07,"gap":208,"magType":"md","type":"earthquake","title":"M 2.4 - 2 km SW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9296666666667,17.9546666666667,9.8]},"id":"pr71335323"},
- {"type":"Feature","properties":{"mag":1.98,"place":"2 km WSW of Guánica, Puerto Rico","time":1645120143180,"updated":1645122626050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335318","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335318.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":60,"net":"pr","code":"71335318","ids":",pr71335318,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.1,"gap":202,"magType":"md","type":"earthquake","title":"M 2.0 - 2 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9298333333333,17.9581666666667,11.09]},"id":"pr71335318"},
- {"type":"Feature","properties":{"mag":1.17,"place":"10km ENE of Lebec, CA","time":1645120025540,"updated":1645121440596,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188168","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188168.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40188168","ids":",ci40188168,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.1062,"rms":0.28,"gap":102,"magType":"ml","type":"quarry blast","title":"M 1.2 Quarry Blast - 10km ENE of Lebec, CA"},"geometry":{"type":"Point","coordinates":[-118.7658333,34.873,-1.15]},"id":"ci40188168"},
- {"type":"Feature","properties":{"mag":2.77,"place":"2 km SW of Guánica, Puerto Rico","time":1645119863200,"updated":1645121892800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335308","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335308.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":118,"net":"pr","code":"71335308","ids":",pr71335308,","sources":",pr,","types":",origin,phase-data,","nst":25,"dmin":null,"rms":0.15,"gap":177,"magType":"md","type":"earthquake","title":"M 2.8 - 2 km SW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9265,17.9575,9.95]},"id":"pr71335308"},
- {"type":"Feature","properties":{"mag":2.97,"place":"2 km SW of Guánica, Puerto Rico","time":1645119758450,"updated":1645124201896,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335303","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335303.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":136,"net":"pr","code":"71335303","ids":",pr71335303,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":26,"dmin":null,"rms":0.18,"gap":178,"magType":"md","type":"earthquake","title":"M 3.0 - 2 km SW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.93,17.955,10.17]},"id":"pr71335303"},
- {"type":"Feature","properties":{"mag":3.04,"place":"2 km WSW of Guánica, Puerto Rico","time":1645119691950,"updated":1645121794847,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335298","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335298.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":142,"net":"pr","code":"71335298","ids":",pr71335298,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":24,"dmin":null,"rms":0.24,"gap":173,"magType":"md","type":"earthquake","title":"M 3.0 - 2 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9268333333333,17.9633333333333,9.83]},"id":"pr71335298"},
- {"type":"Feature","properties":{"mag":0.89,"place":"13km SW of Searles Valley, CA","time":1645119431760,"updated":1645120680714,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188160","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188160.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40188160","ids":",ci40188160,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.0925,"rms":0.16,"gap":159,"magType":"ml","type":"earthquake","title":"M 0.9 - 13km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.496,35.675,9.28]},"id":"ci40188160"},
- {"type":"Feature","properties":{"mag":1.19,"place":"5km WNW of The Geysers, CA","time":1645119197640,"updated":1645120871877,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694151","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694151.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"nc","code":"73694151","ids":",nc73694151,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.01121,"rms":0.03,"gap":57,"magType":"md","type":"earthquake","title":"M 1.2 - 5km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8078308,38.8025017,2.27]},"id":"nc73694151"},
- {"type":"Feature","properties":{"mag":0.61,"place":"21km ENE of Mammoth Lakes, CA","time":1645118899570,"updated":1645121476940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694146","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694146.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nc","code":"73694146","ids":",nc73694146,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.06306,"rms":0.03,"gap":324,"magType":"md","type":"earthquake","title":"M 0.6 - 21km ENE of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.7765,37.7338333,5.87]},"id":"nc73694146"},
- {"type":"Feature","properties":{"mag":1.8,"place":"55 km NW of Rampart, Alaska","time":1645118681982,"updated":1645119447054,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227o28nf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227o28nf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02227o28nf","ids":",ak02227o28nf,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.2,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 55 km NW of Rampart, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0005,65.8633,0]},"id":"ak02227o28nf"},
- {"type":"Feature","properties":{"mag":2.24,"place":"15 km SSE of Sunnyside, Utah","time":1645118645220,"updated":1645122547970,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482337","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482337.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":77,"net":"uu","code":"60482337","ids":",uu60482337,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.01117,"rms":0.15,"gap":196,"magType":"md","type":"earthquake","title":"M 2.2 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3108333,39.4225,-1.66]},"id":"uu60482337"},
- {"type":"Feature","properties":{"mag":0.71,"place":"26 km SSE of West Yellowstone, Montana","time":1645118169690,"updated":1645118791470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482332","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482332.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"uu","code":"60482332","ids":",uu60482332,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.08371,"rms":0.19,"gap":140,"magType":"md","type":"earthquake","title":"M 0.7 - 26 km SSE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.9526667,44.4536667,5.81]},"id":"uu60482332"},
- {"type":"Feature","properties":{"mag":0.35,"place":"7km NW of The Geysers, CA","time":1645117896550,"updated":1645119195703,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694141","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694141.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73694141","ids":",nc73694141,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.001541,"rms":0.02,"gap":96,"magType":"md","type":"earthquake","title":"M 0.4 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8081665,38.8230019,2.04]},"id":"nc73694141"},
- {"type":"Feature","properties":{"mag":1.5,"place":"29 km ENE of Healy, Alaska","time":1645117801502,"updated":1645118092918,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227nz6k8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227nz6k8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02227nz6k8","ids":",ak02227nz6k8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.28,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 29 km ENE of Healy, Alaska"},"geometry":{"type":"Point","coordinates":[-148.4024,63.9397,108.6]},"id":"ak02227nz6k8"},
- {"type":"Feature","properties":{"mag":1.90999997,"place":"3 km SSE of Pāhala, Hawaii","time":1645117431290,"updated":1645117623400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920467","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920467.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"hv","code":"72920467","ids":",hv72920467,","sources":",hv,","types":",origin,phase-data,","nst":36,"dmin":null,"rms":0.150000006,"gap":157,"magType":"md","type":"earthquake","title":"M 1.9 - 3 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.467163085938,19.1746673583984,36.560001373291]},"id":"hv72920467"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"8 km E of Pāhala, Hawaii","time":1645117170020,"updated":1645117369380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920452","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920452.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72920452","ids":",hv72920452,","sources":",hv,","types":",origin,phase-data,","nst":32,"dmin":null,"rms":0.150000006,"gap":160,"magType":"md","type":"earthquake","title":"M 1.8 - 8 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.400497436523,19.2106666564941,32.4000015258789]},"id":"hv72920452"},
- {"type":"Feature","properties":{"mag":0.96,"place":"10km ENE of Desert Hot Springs, CA","time":1645116815350,"updated":1645120272669,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188120","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188120.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40188120","ids":",ci40188120,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.06222,"rms":0.1,"gap":58,"magType":"ml","type":"earthquake","title":"M 1.0 - 10km ENE of Desert Hot Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.4125,34.0098333,7.78]},"id":"ci40188120"},
- {"type":"Feature","properties":{"mag":1.04,"place":"10km ENE of Desert Hot Springs, CA","time":1645116732770,"updated":1645119479599,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188112","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188112.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40188112","ids":",ci40188112,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.06363,"rms":0.1,"gap":120,"magType":"ml","type":"earthquake","title":"M 1.0 - 10km ENE of Desert Hot Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.4063333,34.007,7.04]},"id":"ci40188112"},
- {"type":"Feature","properties":{"mag":0.67,"place":"8km NE of Coso Junction, CA","time":1645115082270,"updated":1645120127654,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188096","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188096.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40188096","ids":",ci40188096,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.03428,"rms":0.05,"gap":214,"magType":"ml","type":"earthquake","title":"M 0.7 - 8km NE of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.8816667,36.091,4.52]},"id":"ci40188096"},
- {"type":"Feature","properties":{"mag":4.8,"place":"Mid-Indian Ridge","time":1645114569867,"updated":1645117489040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gln1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gln1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gln1","ids":",us7000gln1,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.547,"rms":0.63,"gap":138,"magType":"mb","type":"earthquake","title":"M 4.8 - Mid-Indian Ridge"},"geometry":{"type":"Point","coordinates":[68.1868,-20.1396,10]},"id":"us7000gln1"},
- {"type":"Feature","properties":{"mag":0.9,"place":"38 km SE of Mina, Nevada","time":1645114337729,"updated":1645114584694,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834033","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834033.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nn","code":"00834033","ids":",nn00834033,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.102,"rms":0.0433,"gap":200.72,"magType":"ml","type":"earthquake","title":"M 0.9 - 38 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7688,38.1664,12.5]},"id":"nn00834033"},
- {"type":"Feature","properties":{"mag":1,"place":"108 km S of McCarthy, Alaska","time":1645113914649,"updated":1645121440462,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227nckdp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227nckdp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"ak","code":"02227nckdp","ids":",ak02227nckdp,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.61,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 108 km S of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-142.927,60.4566,1.5]},"id":"ak02227nckdp"},
- {"type":"Feature","properties":{"mag":1.88,"place":"4km NNE of McCloud, CA","time":1645112886890,"updated":1645120810875,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694126","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694126.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":54,"net":"nc","code":"73694126","ids":",nc73694126,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01232,"rms":0.1,"gap":78,"magType":"md","type":"earthquake","title":"M 1.9 - 4km NNE of McCloud, CA"},"geometry":{"type":"Point","coordinates":[-122.1256667,41.2861667,9.13]},"id":"nc73694126"},
- {"type":"Feature","properties":{"mag":1.18,"place":"8km NW of The Geysers, CA","time":1645112801200,"updated":1645119190702,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694121","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694121.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73694121","ids":",nc73694121,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01064,"rms":0.01,"gap":73,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8150024,38.8333321,1.76]},"id":"nc73694121"},
- {"type":"Feature","properties":{"mag":0.6,"place":"10km ENE of Desert Hot Springs, CA","time":1645111431140,"updated":1645118041123,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188064","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188064.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40188064","ids":",ci40188064,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.06223,"rms":0.08,"gap":125,"magType":"ml","type":"earthquake","title":"M 0.6 - 10km ENE of Desert Hot Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.4098333,34.0091667,7.61]},"id":"ci40188064"},
- {"type":"Feature","properties":{"mag":2.56,"place":"2 km W of Guánica, Puerto Rico","time":1645110923070,"updated":1645115549865,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335288","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335288.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":101,"net":"pr","code":"71335288","ids":",pr71335288,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":9,"dmin":null,"rms":0.2,"gap":191,"magType":"md","type":"earthquake","title":"M 2.6 - 2 km W of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9301666666667,17.9675,9.62]},"id":"pr71335288"},
- {"type":"Feature","properties":{"mag":1.9,"place":"50 km S of Denali National Park, Alaska","time":1645110035026,"updated":1645114135748,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227mq8h2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227mq8h2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02227mq8h2","ids":",ak02227mq8h2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.7,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 50 km S of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.5417,63.0995,0]},"id":"ak02227mq8h2"},
- {"type":"Feature","properties":{"mag":0.69,"place":"13km WNW of Anza, CA","time":1645109964940,"updated":1645117600744,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188032","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188032.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40188032","ids":",ci40188032,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.035,"rms":0.17,"gap":42,"magType":"ml","type":"earthquake","title":"M 0.7 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8046667,33.5848333,7.91]},"id":"ci40188032"},
- {"type":"Feature","properties":{"mag":1.73,"place":"14km NE of Willits, CA","time":1645109873940,"updated":1645117630535,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694111","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694111.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":46,"net":"nc","code":"73694111","ids":",nc73694111,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.08246,"rms":0.05,"gap":119,"magType":"md","type":"earthquake","title":"M 1.7 - 14km NE of Willits, CA"},"geometry":{"type":"Point","coordinates":[-123.2310028,39.4891663,6.33]},"id":"nc73694111"},
- {"type":"Feature","properties":{"mag":1.18,"place":"10km NW of The Geysers, CA","time":1645109690660,"updated":1645116070373,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694106","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694106.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73694106","ids":",nc73694106,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.00125,"rms":0.01,"gap":112,"magType":"md","type":"earthquake","title":"M 1.2 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.836998,38.8390007,2.15]},"id":"nc73694106"},
- {"type":"Feature","properties":{"mag":1.03,"place":"8km NW of The Geysers, CA","time":1645108104610,"updated":1645114215181,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694101","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694101.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":16,"net":"nc","code":"73694101","ids":",nc73694101,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.0122,"rms":0.01,"gap":67,"magType":"md","type":"earthquake","title":"M 1.0 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8191681,38.8333321,1.8]},"id":"nc73694101"},
- {"type":"Feature","properties":{"mag":2.23,"place":"4km NNE of McCloud, CA","time":1645108093840,"updated":1645124711272,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694096","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694096.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":77,"net":"nc","code":"73694096","ids":",nc73694096,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.01444,"rms":0.08,"gap":62,"magType":"md","type":"earthquake","title":"M 2.2 - 4km NNE of McCloud, CA"},"geometry":{"type":"Point","coordinates":[-122.1298333,41.2873333,9.69]},"id":"nc73694096"},
- {"type":"Feature","properties":{"mag":0.73,"place":"20km ESE of Anza, CA","time":1645107923550,"updated":1645116680572,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188016","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188016.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40188016","ids":",ci40188016,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.09493,"rms":0.18,"gap":63,"magType":"ml","type":"earthquake","title":"M 0.7 - 20km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4806667,33.4721667,9.17]},"id":"ci40188016"},
- {"type":"Feature","properties":{"mag":0.64,"place":"2km N of The Geysers, CA","time":1645107362530,"updated":1645111991074,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694091","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694091.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73694091","ids":",nc73694091,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.005646,"rms":0.01,"gap":155,"magType":"md","type":"earthquake","title":"M 0.6 - 2km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7541656,38.7970009,2.57]},"id":"nc73694091"},
- {"type":"Feature","properties":{"mag":1.91,"place":"4 km SW of Pāhala, Hawaii","time":1645106710420,"updated":1645107040880,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920352","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920352.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"hv","code":"72920352","ids":",hv72920352,","sources":",hv,","types":",origin,phase-data,","nst":48,"dmin":null,"rms":0.150000006,"gap":94,"magType":"ml","type":"earthquake","title":"M 1.9 - 4 km SW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.512329101562,19.1726665496826,33.6199989318848]},"id":"hv72920352"},
- {"type":"Feature","properties":{"mag":1.3,"place":"74 km N of Petersville, Alaska","time":1645105634373,"updated":1645105851268,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227ltebx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227ltebx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02227ltebx","ids":",ak02227ltebx,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.29,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 74 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5092,63.1504,107.2]},"id":"ak02227ltebx"},
- {"type":"Feature","properties":{"mag":1.43,"place":"2km N of McCloud, CA","time":1645105260450,"updated":1645123931188,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694081","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694081.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"nc","code":"73694081","ids":",nc73694081,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01351,"rms":0.08,"gap":114,"magType":"md","type":"earthquake","title":"M 1.4 - 2km N of McCloud, CA"},"geometry":{"type":"Point","coordinates":[-122.1398333,41.2753333,9.49]},"id":"nc73694081"},
- {"type":"Feature","properties":{"mag":1.5,"place":"19 km SW of Petersville, Alaska","time":1645105118032,"updated":1645119136074,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227lrhvc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227lrhvc.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"ak","code":"02227lrhvc","ids":",ak02227lrhvc,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 19 km SW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0568,62.3827,73.9]},"id":"ak02227lrhvc"},
- {"type":"Feature","properties":{"mag":2.05,"place":"15km SW of Corcoran, CA","time":1645104987760,"updated":1645107370537,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694076","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694076.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"nc","code":"73694076","ids":",nc73694076,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.4079,"rms":0.19,"gap":115,"magType":"md","type":"earthquake","title":"M 2.1 - 15km SW of Corcoran, CA"},"geometry":{"type":"Point","coordinates":[-119.6669998,35.9921684,15.98]},"id":"nc73694076"},
- {"type":"Feature","properties":{"mag":1.29,"place":"8km ESE of Bodfish, CA","time":1645104384690,"updated":1645117344635,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40188000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40188000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40188000","ids":",ci40188000,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.1538,"rms":0.15,"gap":67,"magType":"ml","type":"earthquake","title":"M 1.3 - 8km ESE of Bodfish, CA"},"geometry":{"type":"Point","coordinates":[-118.4118333,35.549,2.93]},"id":"ci40188000"},
- {"type":"Feature","properties":{"mag":5.3,"place":"south of Tonga","time":1645104365189,"updated":1645105900040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glmd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glmd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":432,"net":"us","code":"7000glmd","ids":",us7000glmd,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.517,"rms":1.35,"gap":98,"magType":"mb","type":"earthquake","title":"M 5.3 - south of Tonga"},"geometry":{"type":"Point","coordinates":[-175.4697,-24.1776,10]},"id":"us7000glmd"},
- {"type":"Feature","properties":{"mag":1.95000005,"place":"5 km E of Pāhala, Hawaii","time":1645103871520,"updated":1645104067010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920332","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920332.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":59,"net":"hv","code":"72920332","ids":",hv72920332,","sources":",hv,","types":",origin,phase-data,","nst":34,"dmin":null,"rms":0.119999997,"gap":156,"magType":"md","type":"earthquake","title":"M 2.0 - 5 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.425170898438,19.1959991455078,33.9199981689453]},"id":"hv72920332"},
- {"type":"Feature","properties":{"mag":4.9,"place":"162 km E of Hihifo, Tonga","time":1645103468084,"updated":1645104860040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glm5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glm5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000glm5","ids":",us7000glm5,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.206,"rms":0.97,"gap":85,"magType":"mb","type":"earthquake","title":"M 4.9 - 162 km E of Hihifo, Tonga"},"geometry":{"type":"Point","coordinates":[-172.2873,-16.0727,10]},"id":"us7000glm5"},
- {"type":"Feature","properties":{"mag":1.2,"place":"29 km WNW of Valdez, Alaska","time":1645103140247,"updated":1645103396719,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227lkg9n","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227lkg9n.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02227lkg9n","ids":",ak02227lkg9n,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 29 km WNW of Valdez, Alaska"},"geometry":{"type":"Point","coordinates":[-146.8286,61.2517,7.7]},"id":"ak02227lkg9n"},
- {"type":"Feature","properties":{"mag":1.15,"place":"10km SE of Bodfish, CA","time":1645102127630,"updated":1645117067605,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187992","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187992.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40187992","ids":",ci40187992,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.1827,"rms":0.14,"gap":69,"magType":"ml","type":"earthquake","title":"M 1.2 - 10km SE of Bodfish, CA"},"geometry":{"type":"Point","coordinates":[-118.4225,35.5213333,5.02]},"id":"ci40187992"},
- {"type":"Feature","properties":{"mag":1.23,"place":"16km ESE of Anza, CA","time":1645102077650,"updated":1645107868300,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187984","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187984.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40187984","ids":",ci40187984,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":39,"dmin":0.06733,"rms":0.16,"gap":54,"magType":"ml","type":"earthquake","title":"M 1.2 - 16km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5245,33.4791667,12.2]},"id":"ci40187984"},
- {"type":"Feature","properties":{"mag":1.91999996,"place":"12 km E of Pāhala, Hawaii","time":1645101714010,"updated":1645102045020,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920292","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920292.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":57,"net":"hv","code":"72920292","ids":",hv72920292,","sources":",hv,","types":",origin,phase-data,","nst":45,"dmin":null,"rms":0.200000003,"gap":170,"magType":"md","type":"earthquake","title":"M 1.9 - 12 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.360992431641,19.1866664886475,24.4699993133545]},"id":"hv72920292"},
- {"type":"Feature","properties":{"mag":1.15,"place":"8km NE of San Simeon, CA","time":1645100954110,"updated":1645106470445,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694071","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694071.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73694071","ids":",nc73694071,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.0197,"rms":0.08,"gap":124,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NE of San Simeon, CA"},"geometry":{"type":"Point","coordinates":[-121.1344986,35.6943321,6.88]},"id":"nc73694071"},
- {"type":"Feature","properties":{"mag":1.8,"place":"25 km SW of Mina, Nevada","time":1645098821666,"updated":1645119259170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834028","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834028.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"nn","code":"00834028","ids":",nn00834028,","sources":",nn,","types":",origin,phase-data,","nst":21,"dmin":0.12,"rms":0.1145,"gap":69.88,"magType":"ml","type":"earthquake","title":"M 1.8 - 25 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3521,38.2589,11.2]},"id":"nn00834028"},
- {"type":"Feature","properties":{"mag":1.52,"place":"4 km SW of Liborio Negron Torres, Puerto Rico","time":1645098386510,"updated":1645103181530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335283","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335283.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"pr","code":"71335283","ids":",pr71335283,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.2,"gap":204,"magType":"md","type":"earthquake","title":"M 1.5 - 4 km SW of Liborio Negron Torres, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.971,18.0125,15.51]},"id":"pr71335283"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of The Geysers, CA","time":1645098229760,"updated":1645099274791,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694061","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694061.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73694061","ids":",nc73694061,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.004054,"rms":0.01,"gap":108,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8314972,38.8125,1.05]},"id":"nc73694061"},
- {"type":"Feature","properties":{"mag":1.8,"place":"36 km SE of Mina, Nevada","time":1645097736085,"updated":1645118509251,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834024","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834024.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"nn","code":"00834024","ids":",nn00834024,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.127,"rms":0.1226,"gap":113.41,"magType":"ml","type":"earthquake","title":"M 1.8 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7731,38.1925,6.1]},"id":"nn00834024"},
- {"type":"Feature","properties":{"mag":1.01,"place":"2 km E of Bear Dance, Montana","time":1645097548560,"updated":1645117441740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538604","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538604.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"mb","code":"80538604","ids":",mb80538604,","sources":",mb,","types":",origin,phase-data,","nst":5,"dmin":0.056,"rms":0.02,"gap":277,"magType":"md","type":"earthquake","title":"M 1.0 - 2 km E of Bear Dance, Montana"},"geometry":{"type":"Point","coordinates":[-113.9955,47.918,5.65]},"id":"mb80538604"},
- {"type":"Feature","properties":{"mag":0.8,"place":"29 km SSE of Mina, Nevada","time":1645097452237,"updated":1645097773082,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834023","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834023.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":10,"net":"nn","code":"00834023","ids":",nn00834023,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.031,"rms":0.0674,"gap":160.26,"magType":"ml","type":"earthquake","title":"M 0.8 - 29 km SSE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.936,38.1635,10.7]},"id":"nn00834023"},
- {"type":"Feature","properties":{"mag":1.86000001,"place":"10 km ESE of Pāhala, Hawaii","time":1645096170830,"updated":1645096362840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920242","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920242.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":53,"net":"hv","code":"72920242","ids":",hv72920242,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.109999999,"gap":186,"magType":"md","type":"earthquake","title":"M 1.9 - 10 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.383163452148,19.1798324584961,34.7400016784668]},"id":"hv72920242"},
- {"type":"Feature","properties":{"mag":3,"place":"16 km N of Camuy, Puerto Rico","time":1645096152210,"updated":1645097885320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335278","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335278.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"pr","code":"71335278","ids":",pr71335278,","sources":",pr,","types":",origin,phase-data,","nst":14,"dmin":null,"rms":0.15,"gap":228,"magType":"md","type":"earthquake","title":"M 3.0 - 16 km N of Camuy, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8638333333333,18.6283333333333,73.21]},"id":"pr71335278"},
- {"type":"Feature","properties":{"mag":1.72,"place":"6km WNW of Walker, CA","time":1645095858710,"updated":1645104971302,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694051","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694051.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":46,"net":"nc","code":"73694051","ids":",nc73694051,nn00834020,","sources":",nc,nn,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.05547,"rms":0.02,"gap":181,"magType":"md","type":"earthquake","title":"M 1.7 - 6km WNW of Walker, CA"},"geometry":{"type":"Point","coordinates":[-119.5500031,38.5356674,-0.08]},"id":"nc73694051"},
- {"type":"Feature","properties":{"mag":0.96,"place":"3km W of Cobb, CA","time":1645095124780,"updated":1645096872548,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694046","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694046.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73694046","ids":",nc73694046,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.009241,"rms":0.04,"gap":219,"magType":"md","type":"earthquake","title":"M 1.0 - 3km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7593307,38.8263321,2.25]},"id":"nc73694046"},
- {"type":"Feature","properties":{"mag":2.58,"place":"11 km SSE of Guánica, Puerto Rico","time":1645095004020,"updated":1645096921210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335273","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335273.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":102,"net":"pr","code":"71335273","ids":",pr71335273,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.09,"gap":215,"magType":"md","type":"earthquake","title":"M 2.6 - 11 km SSE of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8798333333333,17.8736666666667,13.49]},"id":"pr71335273"},
- {"type":"Feature","properties":{"mag":1.23,"place":"5km SW of Idyllwild, CA","time":1645094592630,"updated":1645111493367,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187960","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187960.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40187960","ids":",ci40187960,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":36,"dmin":0.04153,"rms":0.13,"gap":63,"magType":"ml","type":"earthquake","title":"M 1.2 - 5km SW of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7638333,33.7145,15.89]},"id":"ci40187960"},
- {"type":"Feature","properties":{"mag":1.65,"place":"2km NNW of Fontana, CA","time":1645094587140,"updated":1645119871280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187952","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187952.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"ci","code":"40187952","ids":",ci40187952,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":55,"dmin":0.02743,"rms":0.17,"gap":31,"magType":"ml","type":"earthquake","title":"M 1.7 - 2km NNW of Fontana, CA"},"geometry":{"type":"Point","coordinates":[-117.4678333,34.1126667,6.68]},"id":"ci40187952"},
- {"type":"Feature","properties":{"mag":2.28,"place":"4 km NW of Mount Pleasant, Arkansas","time":1645094554970,"updated":1645121077192,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nm60146043","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nm60146043.geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":81,"net":"nm","code":"60146043","ids":",nm60146043,","sources":",nm,","types":",dyfi,origin,phase-data,","nst":14,"dmin":0.291,"rms":0.2,"gap":84,"magType":"md","type":"earthquake","title":"M 2.3 - 4 km NW of Mount Pleasant, Arkansas"},"geometry":{"type":"Point","coordinates":[-91.7871667,35.99,1.99]},"id":"nm60146043"},
- {"type":"Feature","properties":{"mag":0.65,"place":"5 km ESE of Unalaska, Alaska","time":1645094159610,"updated":1645125251500,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91492886","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91492886.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"av","code":"91492886","ids":",av91492886,","sources":",av,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.16,"gap":187,"magType":"ml","type":"earthquake","title":"M 0.7 - 5 km ESE of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.456833333333,53.8626666666667,9.92]},"id":"av91492886"},
- {"type":"Feature","properties":{"mag":1.7,"place":"44 km SSE of Nelchina, Alaska","time":1645094121414,"updated":1645094401417,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227jyjgx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227jyjgx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02227jyjgx","ids":",ak02227jyjgx,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.7,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 44 km SSE of Nelchina, Alaska"},"geometry":{"type":"Point","coordinates":[-146.5871,61.6,20]},"id":"ak02227jyjgx"},
- {"type":"Feature","properties":{"mag":4.6,"place":"142 km NNE of Tobelo, Indonesia","time":1645093901075,"updated":1645098924040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gllr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gllr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gllr","ids":",us7000gllr,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.427,"rms":0.71,"gap":47,"magType":"mb","type":"earthquake","title":"M 4.6 - 142 km NNE of Tobelo, Indonesia"},"geometry":{"type":"Point","coordinates":[128.692,2.8201,199.32]},"id":"us7000gllr"},
- {"type":"Feature","properties":{"mag":1.1,"place":"11 km SSW of Indian Springs, Nevada","time":1645093539099,"updated":1645093726782,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834018","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834018.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nn","code":"00834018","ids":",nn00834018,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.333,"rms":0.0775,"gap":198.69,"magType":"ml","type":"earthquake","title":"M 1.1 - 11 km SSW of Indian Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-115.7214,36.4723,8.4]},"id":"nn00834018"},
- {"type":"Feature","properties":{"mag":1.1,"place":"4 km WSW of Kasilof, Alaska","time":1645093251312,"updated":1645093449655,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227jve17","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227jve17.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"02227jve17","ids":",ak02227jve17,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.35,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 4 km WSW of Kasilof, Alaska"},"geometry":{"type":"Point","coordinates":[-151.352,60.3256,50.2]},"id":"ak02227jve17"},
- {"type":"Feature","properties":{"mag":0.7,"place":"15km ESE of Little Lake, CA","time":1645092057250,"updated":1645116606469,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187944","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187944.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40187944","ids":",ci40187944,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.07193,"rms":0.05,"gap":60,"magType":"ml","type":"earthquake","title":"M 0.7 - 15km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7461667,35.9068333,8.6]},"id":"ci40187944"},
- {"type":"Feature","properties":{"mag":1.22,"place":"6km ENE of Santa Rosa, CA","time":1645091815240,"updated":1645101731012,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694036","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694036.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":23,"net":"nc","code":"73694036","ids":",nc73694036,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.08312,"rms":0.06,"gap":105,"magType":"md","type":"earthquake","title":"M 1.2 - 6km ENE of Santa Rosa, CA"},"geometry":{"type":"Point","coordinates":[-122.6401672,38.4705009,4.13]},"id":"nc73694036"},
- {"type":"Feature","properties":{"mag":0.54,"place":"8km ESE of Valle Vista, CA","time":1645091379400,"updated":1645116409471,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40187936","ids":",ci40187936,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.08289,"rms":0.09,"gap":93,"magType":"ml","type":"earthquake","title":"M 0.5 - 8km ESE of Valle Vista, CA"},"geometry":{"type":"Point","coordinates":[-116.8223333,33.7103333,14.9]},"id":"ci40187936"},
- {"type":"Feature","properties":{"mag":4.3,"place":"108 km SSE of Sand Point, Alaska","time":1645091106415,"updated":1645118965679,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glln","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glln.geojson","felt":null,"cdi":null,"mmi":2.015,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000glln","ids":",ak02227jf7mm,us7000glln,","sources":",ak,us,","types":",origin,phase-data,shakemap,","nst":null,"dmin":0.361,"rms":0.71,"gap":158,"magType":"mb","type":"earthquake","title":"M 4.3 - 108 km SSE of Sand Point, Alaska"},"geometry":{"type":"Point","coordinates":[-159.6952,54.476,19.87]},"id":"us7000glln"},
- {"type":"Feature","properties":{"mag":2.09,"place":"1 km SSW of Guayanilla, Puerto Rico","time":1645090976130,"updated":1645095714510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335258","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335258.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"pr","code":"71335258","ids":",pr71335258,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.22,"gap":166,"magType":"md","type":"earthquake","title":"M 2.1 - 1 km SSW of Guayanilla, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.7975,18.011,12]},"id":"pr71335258"},
- {"type":"Feature","properties":{"mag":1.82,"place":"31 km NW of Stanley, Idaho","time":1645090059190,"updated":1645112200550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538594","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538594.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":51,"net":"mb","code":"80538594","ids":",mb80538594,","sources":",mb,","types":",origin,phase-data,","nst":9,"dmin":0.853,"rms":0.23,"gap":113,"magType":"ml","type":"earthquake","title":"M 1.8 - 31 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.2278333,44.4076667,9.66]},"id":"mb80538594"},
- {"type":"Feature","properties":{"mag":2.4,"place":"5 km WSW of Point MacKenzie, Alaska","time":1645089982949,"updated":1645109540040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227jb6lf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227jb6lf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":89,"net":"ak","code":"02227jb6lf","ids":",us7000glll,ak02227jb6lf,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.84,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.4 - 5 km WSW of Point MacKenzie, Alaska"},"geometry":{"type":"Point","coordinates":[-150.0723,61.347,20]},"id":"ak02227jb6lf"},
- {"type":"Feature","properties":{"mag":0.84,"place":"4km WNW of The Geysers, CA","time":1645089501760,"updated":1645091712045,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694031","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694031.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73694031","ids":",nc73694031,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.007464,"rms":0.02,"gap":153,"magType":"md","type":"earthquake","title":"M 0.8 - 4km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7969971,38.7955017,0.79]},"id":"nc73694031"},
- {"type":"Feature","properties":{"mag":5,"place":"34 km SE of Shizunai-furukawachō, Japan","time":1645089465855,"updated":1645091135412,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gllk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gllk.geojson","felt":1,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":385,"net":"us","code":"7000gllk","ids":",us7000gllk,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.41,"rms":0.83,"gap":82,"magType":"mb","type":"earthquake","title":"M 5.0 - 34 km SE of Shizunai-furukawachō, Japan"},"geometry":{"type":"Point","coordinates":[142.6135,42.0842,52.84]},"id":"us7000gllk"},
- {"type":"Feature","properties":{"mag":0.85,"place":"1km NNW of The Geysers, CA","time":1645089395610,"updated":1645090992979,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694026","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694026.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73694026","ids":",nc73694026,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.01111,"rms":0.01,"gap":113,"magType":"md","type":"earthquake","title":"M 0.9 - 1km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7600021,38.7895012,2.27]},"id":"nc73694026"},
- {"type":"Feature","properties":{"mag":1.95000005,"place":"4 km S of Pāhala, Hawaii","time":1645088874110,"updated":1645089072840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920167","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920167.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":59,"net":"hv","code":"72920167","ids":",hv72920167,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.150000006,"gap":153,"magType":"md","type":"earthquake","title":"M 2.0 - 4 km S of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.474670410156,19.1665000915527,33.4199981689453]},"id":"hv72920167"},
- {"type":"Feature","properties":{"mag":0.87,"place":"14km SW of Searles Valley, CA","time":1645088516270,"updated":1645115577142,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187928","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187928.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40187928","ids":",ci40187928,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.08067,"rms":0.1,"gap":103,"magType":"ml","type":"earthquake","title":"M 0.9 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.489,35.6643333,4.59]},"id":"ci40187928"},
- {"type":"Feature","properties":{"mag":1.07,"place":"15km W of Searles Valley, CA","time":1645088347620,"updated":1645115409152,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40187920","ids":",ci40187920,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.07366,"rms":0.12,"gap":149,"magType":"ml","type":"earthquake","title":"M 1.1 - 15km W of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5723333,35.7448333,5.36]},"id":"ci40187920"},
- {"type":"Feature","properties":{"mag":1.2,"place":"28 km W of Kalifornsky, Alaska","time":1645088254574,"updated":1645088851367,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227iwfl1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227iwfl1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02227iwfl1","ids":",ak02227iwfl1,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.33,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 28 km W of Kalifornsky, Alaska"},"geometry":{"type":"Point","coordinates":[-151.7928,60.4559,68.2]},"id":"ak02227iwfl1"},
- {"type":"Feature","properties":{"mag":0.63,"place":"13km WNW of Anza, CA","time":1645088044820,"updated":1645115046413,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187912","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187912.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40187912","ids":",ci40187912,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.03653,"rms":0.13,"gap":43,"magType":"ml","type":"earthquake","title":"M 0.6 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8078333,33.5923333,6.99]},"id":"ci40187912"},
- {"type":"Feature","properties":{"mag":1.54,"place":"12km ENE of Indio, CA","time":1645087564680,"updated":1645114593366,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187904","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187904.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40187904","ids":",ci40187904,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":52,"dmin":0.09977,"rms":0.14,"gap":43,"magType":"ml","type":"earthquake","title":"M 1.5 - 12km ENE of Indio, CA"},"geometry":{"type":"Point","coordinates":[-116.1041667,33.7766667,7.61]},"id":"ci40187904"},
- {"type":"Feature","properties":{"mag":0.57,"place":"4km SW of Idyllwild, CA","time":1645086508990,"updated":1645107993204,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187896","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187896.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40187896","ids":",ci40187896,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.02515,"rms":0.08,"gap":74,"magType":"ml","type":"earthquake","title":"M 0.6 - 4km SW of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7443333,33.7108333,15.53]},"id":"ci40187896"},
- {"type":"Feature","properties":{"mag":4.4,"place":"118 km WSW of Colchani, Bolivia","time":1645086252342,"updated":1645088142040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gllf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gllf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gllf","ids":",us7000gllf,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.268,"rms":0.42,"gap":117,"magType":"mb","type":"earthquake","title":"M 4.4 - 118 km WSW of Colchani, Bolivia"},"geometry":{"type":"Point","coordinates":[-67.965,-20.7505,185.93]},"id":"us7000gllf"},
- {"type":"Feature","properties":{"mag":2.35,"place":"2km WNW of San Juan Bautista, CA","time":1645085982630,"updated":1645101459979,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73694006","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73694006.geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":86,"net":"nc","code":"73694006","ids":",nc73694006,","sources":",nc,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":33,"dmin":0.04544,"rms":0.12,"gap":49,"magType":"md","type":"earthquake","title":"M 2.4 - 2km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5540009,36.850666,7.41]},"id":"nc73694006"},
- {"type":"Feature","properties":{"mag":1.7,"place":"51 km NW of Rampart, Alaska","time":1645085401250,"updated":1645088380332,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227im9sz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227im9sz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02227im9sz","ids":",ak02227im9sz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.87,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 51 km NW of Rampart, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9471,65.8338,4.6]},"id":"ak02227im9sz"},
- {"type":"Feature","properties":{"mag":1.18,"place":"7km WNW of Cobb, CA","time":1645085347660,"updated":1645098370691,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693996","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693996.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73693996","ids":",nc73693996,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.008546,"rms":0.01,"gap":84,"magType":"md","type":"earthquake","title":"M 1.2 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8011703,38.8371658,1.33]},"id":"nc73693996"},
- {"type":"Feature","properties":{"mag":0.5,"place":"11 km NE of Fox, Alaska","time":1645085278257,"updated":1645118463986,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227ilpbk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227ilpbk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ak","code":"02227ilpbk","ids":",ak02227ilpbk,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.5 - 11 km NE of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.4436,65.0241,9.2]},"id":"ak02227ilpbk"},
- {"type":"Feature","properties":{"mag":1.02,"place":"2km WNW of San Juan Bautista, CA","time":1645084667290,"updated":1645086012492,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693986","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693986.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":16,"net":"nc","code":"73693986","ids":",nc73693986,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.03994,"rms":0.18,"gap":132,"magType":"md","type":"earthquake","title":"M 1.0 - 2km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5643311,36.8511658,0.99]},"id":"nc73693986"},
- {"type":"Feature","properties":{"mag":2.27,"place":"2km WNW of San Juan Bautista, CA","time":1645084540290,"updated":1645096332494,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693981","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693981.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":79,"net":"nc","code":"73693981","ids":",nc73693981,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.04592,"rms":0.13,"gap":50,"magType":"md","type":"earthquake","title":"M 2.3 - 2km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5544968,36.8496666,6.34]},"id":"nc73693981"},
- {"type":"Feature","properties":{"mag":1.7,"place":"52 km NW of Rampart, Alaska","time":1645084529332,"updated":1645084743293,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227iajl1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227iajl1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02227iajl1","ids":",ak02227iajl1,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 52 km NW of Rampart, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9101,65.8625,3.7]},"id":"ak02227iajl1"},
- {"type":"Feature","properties":{"mag":2.27,"place":"1km WNW of San Juan Bautista, CA","time":1645084463460,"updated":1645095433406,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":79,"net":"nc","code":"73693976","ids":",nc73693976,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.04784,"rms":0.11,"gap":73,"magType":"md","type":"earthquake","title":"M 2.3 - 1km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5518341,36.848999,7.65]},"id":"nc73693976"},
- {"type":"Feature","properties":{"mag":2.19,"place":"16 km SSE of Sunnyside, Utah","time":1645084450320,"updated":1645118628360,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482327","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482327.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"uu","code":"60482327","ids":",uu60482327,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.0148,"rms":0.15,"gap":197,"magType":"md","type":"earthquake","title":"M 2.2 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3075,39.4183333,-1.88]},"id":"uu60482327"},
- {"type":"Feature","properties":{"mag":2.3,"place":"52 km NW of Rampart, Alaska","time":1645084380374,"updated":1645086421040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227ia1xn","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227ia1xn.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"02227ia1xn","ids":",us7000gll9,ak02227ia1xn,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 52 km NW of Rampart, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9473,65.856,2.1]},"id":"ak02227ia1xn"},
- {"type":"Feature","properties":{"mag":2.25,"place":"38 km NW of Stanley, Idaho","time":1645084037360,"updated":1645111799410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538584","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538584.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":78,"net":"mb","code":"80538584","ids":",mb80538584,","sources":",mb,","types":",origin,phase-data,","nst":12,"dmin":0.811,"rms":0.11,"gap":82,"magType":"ml","type":"earthquake","title":"M 2.3 - 38 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.219,44.497,4.19]},"id":"mb80538584"},
- {"type":"Feature","properties":{"mag":1.15,"place":"4 km NW of Wye, Montana","time":1645083937370,"updated":1645110794430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538574","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538574.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"mb","code":"80538574","ids":",mb80538574,","sources":",mb,","types":",origin,phase-data,","nst":17,"dmin":0.2,"rms":0.1,"gap":100,"magType":"ml","type":"earthquake","title":"M 1.2 - 4 km NW of Wye, Montana"},"geometry":{"type":"Point","coordinates":[-114.1621667,46.9761667,11.86]},"id":"mb80538574"},
- {"type":"Feature","properties":{"mag":2.5,"place":"38 km NNW of Stanley, Idaho","time":1645083927959,"updated":1645111260580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gll7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gll7.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"7000gll7","ids":",us7000gll7,mb80538579,","sources":",us,mb,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.808,"rms":0.78,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.5 - 38 km NNW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.2043,44.5114,10]},"id":"us7000gll7"},
- {"type":"Feature","properties":{"mag":1.4,"place":"30 km SE of Mina, Nevada","time":1645082898050,"updated":1645124258660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834015","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834015.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00834015","ids":",nn00834015,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.08,"rms":0.128,"gap":113.15,"magType":"ml","type":"earthquake","title":"M 1.4 - 30 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8742,38.1825,11.5]},"id":"nn00834015"},
- {"type":"Feature","properties":{"mag":1.5,"place":"7 km ESE of Walker, California","time":1645082413307,"updated":1645082624725,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834012","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834012.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"nn","code":"00834012","ids":",nn00834012,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.034,"rms":0.2505,"gap":83.91,"magType":"ml","type":"earthquake","title":"M 1.5 - 7 km ESE of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3952,38.4991,0]},"id":"nn00834012"},
- {"type":"Feature","properties":{"mag":1.48,"place":"3km SE of The Geysers, CA","time":1645081682910,"updated":1645088710744,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693971","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693971.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":34,"net":"nc","code":"73693971","ids":",nc73693971,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.007996,"rms":0.05,"gap":110,"magType":"md","type":"earthquake","title":"M 1.5 - 3km SE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7314987,38.7555008,1.95]},"id":"nc73693971"},
- {"type":"Feature","properties":{"mag":2.09,"place":"9 km E of Pāhala, Hawaii","time":1645080924270,"updated":1645081255960,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920082","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920082.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":67,"net":"hv","code":"72920082","ids":",hv72920082,","sources":",hv,","types":",origin,phase-data,","nst":50,"dmin":null,"rms":0.129999995,"gap":159,"magType":"ml","type":"earthquake","title":"M 2.1 - 9 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.392837524414,19.2003326416016,31.0699996948242]},"id":"hv72920082"},
- {"type":"Feature","properties":{"mag":1.5,"place":"17 km S of Point Possession, Alaska","time":1645080527675,"updated":1645080756266,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227hnndr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227hnndr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02227hnndr","ids":",ak02227hnndr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.17,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 17 km S of Point Possession, Alaska"},"geometry":{"type":"Point","coordinates":[-150.7466,60.7642,60]},"id":"ak02227hnndr"},
- {"type":"Feature","properties":{"mag":0.43,"place":"10km NE of Aguanga, CA","time":1645080222970,"updated":1645114090317,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187888","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187888.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40187888","ids":",ci40187888,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.01899,"rms":0.12,"gap":36,"magType":"ml","type":"earthquake","title":"M 0.4 - 10km NE of Aguanga, CA"},"geometry":{"type":"Point","coordinates":[-116.785,33.4983333,7.22]},"id":"ci40187888"},
- {"type":"Feature","properties":{"mag":3.25,"place":"17 km SSW of Guánica, Puerto Rico","time":1645080030740,"updated":1645093954145,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335248","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335248.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":163,"net":"pr","code":"71335248","ids":",pr71335248,us7000gll1,","sources":",pr,us,","types":",dyfi,origin,phase-data,","nst":20,"dmin":null,"rms":0.16,"gap":262,"magType":"md","type":"earthquake","title":"M 3.3 - 17 km SSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9425,17.8185,9.44]},"id":"pr71335248"},
- {"type":"Feature","properties":{"mag":0.93,"place":"15km NE of Coachella, CA","time":1645078430450,"updated":1645113743278,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187880","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187880.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"40187880","ids":",ci40187880,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.1096,"rms":0.12,"gap":91,"magType":"ml","type":"earthquake","title":"M 0.9 - 15km NE of Coachella, CA"},"geometry":{"type":"Point","coordinates":[-116.036,33.7581667,7.48]},"id":"ci40187880"},
- {"type":"Feature","properties":{"mag":0.87,"place":"10km WNW of The Geysers, CA","time":1645078275200,"updated":1645084630346,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693961","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693961.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73693961","ids":",nc73693961,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.004608,"rms":0.01,"gap":98,"magType":"md","type":"earthquake","title":"M 0.9 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.855835,38.8230019,2.13]},"id":"nc73693961"},
- {"type":"Feature","properties":{"mag":0.68,"place":"38 km NNE of Amboy, Washington","time":1645077050590,"updated":1645120255550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817416","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817416.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"uw","code":"61817416","ids":",uw61817416,","sources":",uw,","types":",origin,phase-data,","nst":19,"dmin":0.007384,"rms":0.17,"gap":50,"magType":"ml","type":"earthquake","title":"M 0.7 - 38 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19566666666667,46.208333333333336,4.47]},"id":"uw61817416"},
- {"type":"Feature","properties":{"mag":2.01,"place":"1 km NW of Ponce, Puerto Rico","time":1645076944950,"updated":1645082116550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335238","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335238.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"pr","code":"71335238","ids":",pr71335238,","sources":",pr,","types":",origin,phase-data,","nst":12,"dmin":null,"rms":0.15,"gap":163,"magType":"md","type":"earthquake","title":"M 2.0 - 1 km NW of Ponce, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.6371666666667,18.021,18.84]},"id":"pr71335238"},
- {"type":"Feature","properties":{"mag":1.67,"place":"16 km SSE of Sunnyside, Utah","time":1645076701180,"updated":1645117265070,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482317","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482317.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"uu","code":"60482317","ids":",uu60482317,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.01552,"rms":0.11,"gap":197,"magType":"md","type":"earthquake","title":"M 1.7 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3061667,39.419,-2.16]},"id":"uu60482317"},
- {"type":"Feature","properties":{"mag":1.74,"place":"15 km SSE of Sunnyside, Utah","time":1645076416900,"updated":1645118603920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482312","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482312.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":47,"net":"uu","code":"60482312","ids":",uu60482312,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.01068,"rms":0.09,"gap":194,"magType":"md","type":"earthquake","title":"M 1.7 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3118333,39.427,-2.05]},"id":"uu60482312"},
- {"type":"Feature","properties":{"mag":0.96,"place":"21km ESE of Anza, CA","time":1645075664790,"updated":1645108113860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187856","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187856.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40187856","ids":",ci40187856,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":37,"dmin":0.09966,"rms":0.2,"gap":65,"magType":"ml","type":"earthquake","title":"M 1.0 - 21km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.476,33.4688333,9.05]},"id":"ci40187856"},
- {"type":"Feature","properties":{"mag":2.35,"place":"15 km S of Fern Forest, Hawaii","time":1645073685000,"updated":1645079147320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72920022","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72920022.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":85,"net":"hv","code":"72920022","ids":",hv72920022,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.13,"gap":142,"magType":"ml","type":"earthquake","title":"M 2.4 - 15 km S of Fern Forest, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.116166666667,19.3288333333333,4.4]},"id":"hv72920022"},
- {"type":"Feature","properties":{"mag":2.1,"place":"15 km SSE of Sunnyside, Utah","time":1645073195980,"updated":1645118568160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482307","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482307.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"uu","code":"60482307","ids":",uu60482307,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.01091,"rms":0.11,"gap":196,"magType":"md","type":"earthquake","title":"M 2.1 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3111667,39.4225,-1.63]},"id":"uu60482307"},
- {"type":"Feature","properties":{"mag":1.6,"place":"47 km SSE of Denali National Park, Alaska","time":1645072790541,"updated":1645080756111,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227geuy9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227geuy9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02227geuy9","ids":",ak02227geuy9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.86,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 47 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4676,63.1312,8.8]},"id":"ak02227geuy9"},
- {"type":"Feature","properties":{"mag":4.2,"place":"Banda Sea","time":1645072755695,"updated":1645075807040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glki","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glki.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000glki","ids":",us7000glki,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.053,"rms":0.56,"gap":74,"magType":"mb","type":"earthquake","title":"M 4.2 - Banda Sea"},"geometry":{"type":"Point","coordinates":[127.6312,-6.1872,421.29]},"id":"us7000glki"},
- {"type":"Feature","properties":{"mag":1.49,"place":"27 km SW of Emery, Utah","time":1645072139250,"updated":1645118534730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482302","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482302.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"uu","code":"60482302","ids":",uu60482302,","sources":",uu,","types":",origin,phase-data,","nst":4,"dmin":0.04853,"rms":0.44,"gap":337,"magType":"md","type":"earthquake","title":"M 1.5 - 27 km SW of Emery, Utah"},"geometry":{"type":"Point","coordinates":[-111.4641667,38.7431667,4.81]},"id":"uu60482302"},
- {"type":"Feature","properties":{"mag":2.2,"place":"11 km ENE of Glacier View, Alaska","time":1645072100226,"updated":1645072902401,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227gcfrq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227gcfrq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"02227gcfrq","ids":",ak02227gcfrq,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.97,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 11 km ENE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.4514,61.8473,12.9]},"id":"ak02227gcfrq"},
- {"type":"Feature","properties":{"mag":1.4,"place":"2 km WNW of Walker, California","time":1645071502089,"updated":1645071762151,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834011","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834011.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"nn","code":"00834011","ids":",nn00834011,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.058,"rms":0.2313,"gap":186.05,"magType":"ml","type":"earthquake","title":"M 1.4 - 2 km WNW of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.5064,38.5276,7.6]},"id":"nn00834011"},
- {"type":"Feature","properties":{"mag":0.07,"place":"10km SE of Anza, CA","time":1645071170750,"updated":1645109895915,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187848.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40187848","ids":",ci40187848,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.006429,"rms":0.09,"gap":123,"magType":"ml","type":"earthquake","title":"M 0.1 - 10km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.599,33.4898333,3.22]},"id":"ci40187848"},
- {"type":"Feature","properties":{"mag":1.68,"place":"14km S of Hamilton City, CA","time":1645070822340,"updated":1645094532321,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693946","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693946.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"nc","code":"73693946","ids":",nc73693946,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.2988,"rms":0.09,"gap":83,"magType":"md","type":"earthquake","title":"M 1.7 - 14km S of Hamilton City, CA"},"geometry":{"type":"Point","coordinates":[-122.017,39.6141667,12.63]},"id":"nc73693946"},
- {"type":"Feature","properties":{"mag":1.13,"place":"13km SW of Searles Valley, CA","time":1645070775140,"updated":1645113365237,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187840","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187840.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40187840","ids":",ci40187840,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.1171,"rms":0.12,"gap":128,"magType":"ml","type":"earthquake","title":"M 1.1 - 13km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5175,35.6948333,8.87]},"id":"ci40187840"},
- {"type":"Feature","properties":{"mag":5.5,"place":"South Sandwich Islands region","time":1645070635519,"updated":1645078068504,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glk2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glk2.geojson","felt":null,"cdi":null,"mmi":2.697,"alert":"green","status":"reviewed","tsunami":0,"sig":465,"net":"us","code":"7000glk2","ids":",us7000glk2,","sources":",us,","types":",losspager,origin,phase-data,shakemap,","nst":null,"dmin":8.584,"rms":0.69,"gap":72,"magType":"mww","type":"earthquake","title":"M 5.5 - South Sandwich Islands region"},"geometry":{"type":"Point","coordinates":[-23.66,-59.1798,10]},"id":"us7000glk2"},
- {"type":"Feature","properties":{"mag":1.17,"place":"4km W of Cobb, CA","time":1645069949430,"updated":1645078390729,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73693936","ids":",nc73693936,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.0099,"rms":0.01,"gap":181,"magType":"md","type":"earthquake","title":"M 1.2 - 4km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7661667,38.8209991,2.35]},"id":"nc73693936"},
- {"type":"Feature","properties":{"mag":2.19,"place":"10 km ENE of Pāhala, Hawaii","time":1645069441730,"updated":1645069772910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919977","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919977.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72919977","ids":",hv72919977,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.140000001,"gap":144,"magType":"ml","type":"earthquake","title":"M 2.2 - 10 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.38850402832,19.2339992523193,31.4799995422363]},"id":"hv72919977"},
- {"type":"Feature","properties":{"mag":0.98,"place":"6km W of Cobb, CA","time":1645068724890,"updated":1645071193999,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693931","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693931.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73693931","ids":",nc73693931,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.01112,"rms":0.02,"gap":58,"magType":"md","type":"earthquake","title":"M 1.0 - 6km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7968369,38.8274994,2.47]},"id":"nc73693931"},
- {"type":"Feature","properties":{"mag":1.65,"place":"1 km WSW of Guánica, Puerto Rico","time":1645068548160,"updated":1645069709740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335233","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335233.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"pr","code":"71335233","ids":",pr71335233,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.03,"gap":196,"magType":"md","type":"earthquake","title":"M 1.7 - 1 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9205,17.9658333333333,15.5]},"id":"pr71335233"},
- {"type":"Feature","properties":{"mag":2.51,"place":"4 km SSE of Salinas, Puerto Rico","time":1645068038030,"updated":1645069882266,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335228","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335228.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"pr","code":"71335228","ids":",pr71335228,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":7,"dmin":null,"rms":0.15,"gap":194,"magType":"md","type":"earthquake","title":"M 2.5 - 4 km SSE of Salinas, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.2851666666667,17.9363333333333,6.12]},"id":"pr71335228"},
- {"type":"Feature","properties":{"mag":1.7,"place":"22 km W of Akutan, Alaska","time":1645067671605,"updated":1645121351950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227fo0qx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227fo0qx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"ak","code":"02227fo0qx","ids":",av91492601,ak02227fo0qx,","sources":",av,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.48,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 22 km W of Akutan, Alaska"},"geometry":{"type":"Point","coordinates":[-166.1232,54.1041,30.2]},"id":"ak02227fo0qx"},
- {"type":"Feature","properties":{"mag":0.86,"place":"3 km W of Silverdale, Washington","time":1645067525030,"updated":1645073676610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817406","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817406.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"uw","code":"61817406","ids":",uw61817406,","sources":",uw,","types":",origin,phase-data,","nst":5,"dmin":0.1017,"rms":0.06,"gap":230,"magType":"ml","type":"earthquake","title":"M 0.9 - 3 km W of Silverdale, Washington"},"geometry":{"type":"Point","coordinates":[-122.74616666666667,47.650666666666666,19.2]},"id":"uw61817406"},
- {"type":"Feature","properties":{"mag":2.13,"place":"2 km SSW of Pāhala, Hawaii","time":1645066772190,"updated":1645067102640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919952","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919952.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72919952","ids":",hv72919952,","sources":",hv,","types":",origin,phase-data,","nst":49,"dmin":null,"rms":0.129999995,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.1 - 2 km SSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.48583984375,19.1860008239746,34.2799987792969]},"id":"hv72919952"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km W of Cobb, CA","time":1645066681610,"updated":1645069156802,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693916","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693916.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693916","ids":",nc73693916,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.01043,"rms":0.01,"gap":74,"magType":"md","type":"earthquake","title":"M 0.9 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8014984,38.8326683,2.26]},"id":"nc73693916"},
- {"type":"Feature","properties":{"mag":0.8,"place":"2km NNW of The Geysers, CA","time":1645066653430,"updated":1645068495843,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693911","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693911.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":10,"net":"nc","code":"73693911","ids":",nc73693911,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.01015,"rms":0.03,"gap":64,"magType":"md","type":"earthquake","title":"M 0.8 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7623367,38.7906685,1.84]},"id":"nc73693911"},
- {"type":"Feature","properties":{"mag":2.07,"place":"16 km SSE of Sunnyside, Utah","time":1645066542510,"updated":1645115754530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482297","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482297.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":66,"net":"uu","code":"60482297","ids":",uu60482297,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.01651,"rms":0.12,"gap":197,"magType":"md","type":"earthquake","title":"M 2.1 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3041667,39.421,-2.19]},"id":"uu60482297"},
- {"type":"Feature","properties":{"mag":1.55,"place":"15 km SSE of Sunnyside, Utah","time":1645065524780,"updated":1645115536530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482292","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482292.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"uu","code":"60482292","ids":",uu60482292,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.006675,"rms":0.08,"gap":193,"magType":"md","type":"earthquake","title":"M 1.6 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3165,39.4236667,-1.47]},"id":"uu60482292"},
- {"type":"Feature","properties":{"mag":0.83,"place":"2km E of The Geysers, CA","time":1645064680950,"updated":1645066454510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693901","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693901.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693901","ids":",nc73693901,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.00716,"rms":0.04,"gap":136,"magType":"md","type":"earthquake","title":"M 0.8 - 2km E of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7278366,38.7815018,1.48]},"id":"nc73693901"},
- {"type":"Feature","properties":{"mag":1.47,"place":"3km E of The Geysers, CA","time":1645064097770,"updated":1645085670584,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693891","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693891.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":33,"net":"nc","code":"73693891","ids":",nc73693891,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.00905,"rms":0.04,"gap":76,"magType":"md","type":"earthquake","title":"M 1.5 - 3km E of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7258301,38.7801666,1.39]},"id":"nc73693891"},
- {"type":"Feature","properties":{"mag":1.7,"place":"12 km SE of Petersville, Alaska","time":1645063377240,"updated":1645063544336,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227f02rg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227f02rg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02227f02rg","ids":",ak02227f02rg,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 12 km SE of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6056,62.4107,66.6]},"id":"ak02227f02rg"},
- {"type":"Feature","properties":{"mag":-0.02,"place":"18 km NE of Milford, Utah","time":1645063192340,"updated":1645115195400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482287","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482287.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uu","code":"60482287","ids":",uu60482287,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.01288,"rms":0.21,"gap":118,"magType":"md","type":"earthquake","title":"M -0.0 - 18 km NE of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-112.8386667,38.4911667,-3.47]},"id":"uu60482287"},
- {"type":"Feature","properties":{"mag":1.61,"place":"12 km SW of Fayette, Utah","time":1645062993370,"updated":1645109590620,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482282","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482282.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"uu","code":"60482282","ids":",uu60482282,","sources":",uu,","types":",origin,phase-data,","nst":15,"dmin":0.1193,"rms":0.19,"gap":94,"magType":"md","type":"earthquake","title":"M 1.6 - 12 km SW of Fayette, Utah"},"geometry":{"type":"Point","coordinates":[-111.9805,39.16,12.16]},"id":"uu60482282"},
- {"type":"Feature","properties":{"mag":1,"place":"33 km SE of Mina, Nevada","time":1645062959003,"updated":1645063201049,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834009","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834009.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nn","code":"00834009","ids":",nn00834009,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.083,"rms":0.2952,"gap":138.95,"magType":"ml","type":"earthquake","title":"M 1.0 - 33 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8592,38.166,0]},"id":"nn00834009"},
- {"type":"Feature","properties":{"mag":4.3,"place":"22 km WNW of Lefkáda, Greece","time":1645062528303,"updated":1645063291040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gliz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gliz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gliz","ids":",us7000gliz,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.012,"rms":0.94,"gap":71,"magType":"mb","type":"earthquake","title":"M 4.3 - 22 km WNW of Lefkáda, Greece"},"geometry":{"type":"Point","coordinates":[20.4903,38.9399,10]},"id":"us7000gliz"},
- {"type":"Feature","properties":{"mag":2.8,"place":"35 km SSW of Skwentna, Alaska","time":1645062411913,"updated":1645063233686,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227eo27l","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227eo27l.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":121,"net":"ak","code":"02227eo27l","ids":",ak02227eo27l,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.52,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 35 km SSW of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-151.5512,61.6847,72.2]},"id":"ak02227eo27l"},
- {"type":"Feature","properties":{"mag":1.42,"place":"5km WNW of San Juan Bautista, CA","time":1645062110390,"updated":1645071676052,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693881","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693881.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":31,"net":"nc","code":"73693881","ids":",nc73693881,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.02077,"rms":0.05,"gap":95,"magType":"md","type":"earthquake","title":"M 1.4 - 5km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5910034,36.8636665,4.35]},"id":"nc73693881"},
- {"type":"Feature","properties":{"mag":1.31,"place":"10km NW of Santa Paula, CA","time":1645061972650,"updated":1645113071245,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40187832","ids":",ci40187832,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.0109,"rms":0.24,"gap":55,"magType":"ml","type":"earthquake","title":"M 1.3 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1261667,34.4313333,13.51]},"id":"ci40187832"},
- {"type":"Feature","properties":{"mag":0.9,"place":"40 km SE of Mina, Nevada","time":1645061075126,"updated":1645061320736,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834006","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834006.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nn","code":"00834006","ids":",nn00834006,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.094,"rms":0.5055,"gap":120.18,"magType":"ml","type":"earthquake","title":"M 0.9 - 40 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8229,38.1048,16]},"id":"nn00834006"},
- {"type":"Feature","properties":{"mag":1.95,"place":"1 km NW of Indios, Puerto Rico","time":1645060985040,"updated":1645062569320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335223","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335223.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"pr","code":"71335223","ids":",pr71335223,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.18,"gap":157,"magType":"md","type":"earthquake","title":"M 2.0 - 1 km NW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.831,18.0061666666667,10.3]},"id":"pr71335223"},
- {"type":"Feature","properties":{"mag":1.09,"place":"6km E of Palomar Observatory, CA","time":1645060583000,"updated":1645112703000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187824","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187824.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40187824","ids":",ci40187824,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":48,"dmin":0.05678,"rms":0.14,"gap":30,"magType":"ml","type":"earthquake","title":"M 1.1 - 6km E of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.7953333,33.3606667,15.63]},"id":"ci40187824"},
- {"type":"Feature","properties":{"mag":1.4,"place":"44 km NW of Beluga, Alaska","time":1645060312679,"updated":1645060724950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227egk8i","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227egk8i.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02227egk8i","ids":",ak02227egk8i,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 44 km NW of Beluga, Alaska"},"geometry":{"type":"Point","coordinates":[-151.599,61.4549,74.4]},"id":"ak02227egk8i"},
- {"type":"Feature","properties":{"mag":1.55,"place":"12km SSW of Tres Pinos, CA","time":1645060130180,"updated":1645070174892,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693876","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693876.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":37,"net":"nc","code":"73693876","ids":",nc73693876,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.03021,"rms":0.15,"gap":112,"magType":"md","type":"earthquake","title":"M 1.6 - 12km SSW of Tres Pinos, CA"},"geometry":{"type":"Point","coordinates":[-121.3826675,36.6991653,-0.38]},"id":"nc73693876"},
- {"type":"Feature","properties":{"mag":1.8,"place":"54 km NNE of Petersville, Alaska","time":1645059593381,"updated":1645059893328,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02227e5f1f","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02227e5f1f.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02227e5f1f","ids":",ak02227e5f1f,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 54 km NNE of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.3511,62.9474,88.7]},"id":"ak02227e5f1f"},
- {"type":"Feature","properties":{"mag":0.86,"place":"2km NNE of The Geysers, CA","time":1645058765210,"updated":1645060094860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693871","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693871.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693871","ids":",nc73693871,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007976,"rms":0.01,"gap":170,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NNE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.75,38.7981682,1.65]},"id":"nc73693871"},
- {"type":"Feature","properties":{"mag":2.3,"place":"5 km E of Pāhala, Hawaii","time":1645058568040,"updated":1645060159040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919882","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919882.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"hv","code":"72919882","ids":",us7000glht,hv72919882,","sources":",us,hv,","types":",origin,phase-data,","nst":45,"dmin":null,"rms":0.119999997,"gap":140,"magType":"ml","type":"earthquake","title":"M 2.3 - 5 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.424499511719,19.2098331451416,32.2700004577637]},"id":"hv72919882"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of The Geysers, CA","time":1645058341130,"updated":1645059435786,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693866","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693866.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693866","ids":",nc73693866,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":null,"rms":0.12,"gap":70,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8358307,38.8064995,9.33]},"id":"nc73693866"},
- {"type":"Feature","properties":{"mag":1.6,"place":"26 km SW of Mina, Nevada","time":1645057376443,"updated":1645117761921,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833998","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833998.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nn","code":"00833998","ids":",nn00833998,","sources":",nn,","types":",origin,phase-data,","nst":19,"dmin":0.115,"rms":0.1349,"gap":117.24,"magType":"ml","type":"earthquake","title":"M 1.6 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3587,38.2551,8.8]},"id":"nn00833998"},
- {"type":"Feature","properties":{"mag":0.38,"place":"7km WNW of The Geysers, CA","time":1645057148830,"updated":1645073965290,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693856","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693856.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nc","code":"73693856","ids":",nc73693856,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.005286,"rms":0.02,"gap":46,"magType":"md","type":"earthquake","title":"M 0.4 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8268333,38.8138333,2.13]},"id":"nc73693856"},
- {"type":"Feature","properties":{"mag":2.56,"place":"7km WNW of The Geysers, CA","time":1645056986970,"updated":1645064474312,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693851","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693851.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":101,"net":"nc","code":"73693851","ids":",nc73693851,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":42,"dmin":0.01224,"rms":0.06,"gap":39,"magType":"md","type":"earthquake","title":"M 2.6 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8251648,38.809166,1.69]},"id":"nc73693851"},
- {"type":"Feature","properties":{"mag":3.29,"place":"46 km NNW of San Antonio, Puerto Rico","time":1645056925800,"updated":1645058977410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335208","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335208.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":167,"net":"pr","code":"71335208","ids":",us7000glhq,pr71335208,","sources":",us,pr,","types":",origin,phase-data,","nst":24,"dmin":null,"rms":0.18,"gap":223,"magType":"md","type":"earthquake","title":"M 3.3 - 46 km NNW of San Antonio, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.2705,18.8805,6.35]},"id":"pr71335208"},
- {"type":"Feature","properties":{"mag":2.66,"place":"4 km SSW of Pāhala, Hawaii","time":1645056762810,"updated":1645077202150,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919847","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919847.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":109,"net":"hv","code":"72919847","ids":",hv72919847,","sources":",hv,","types":",origin,phase-data,","nst":53,"dmin":null,"rms":0.11,"gap":112,"magType":"md","type":"earthquake","title":"M 2.7 - 4 km SSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.487333333333,19.1628333333333,35.06]},"id":"hv72919847"},
- {"type":"Feature","properties":{"mag":1.68,"place":"15 km SSE of Sunnyside, Utah","time":1645056533220,"updated":1645114577470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482272","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482272.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"uu","code":"60482272","ids":",uu60482272,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.006812,"rms":0.05,"gap":194,"magType":"md","type":"earthquake","title":"M 1.7 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3166667,39.4221667,-1.32]},"id":"uu60482272"},
- {"type":"Feature","properties":{"mag":4.1,"place":"18 km NE of La Serena, Chile","time":1645055966137,"updated":1645102713174,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glhm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glhm.geojson","felt":3,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":260,"net":"us","code":"7000glhm","ids":",us7000glhm,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.164,"rms":0.52,"gap":132,"magType":"mb","type":"earthquake","title":"M 4.1 - 18 km NE of La Serena, Chile"},"geometry":{"type":"Point","coordinates":[-71.0952,-29.8109,83.64]},"id":"us7000glhm"},
- {"type":"Feature","properties":{"mag":2.36999989,"place":"3 km SSE of Pāhala, Hawaii","time":1645054744440,"updated":1645055074930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919822","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919822.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":86,"net":"hv","code":"72919822","ids":",hv72919822,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.140000001,"gap":90,"magType":"md","type":"earthquake","title":"M 2.4 - 3 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.469665527344,19.1763324737549,32.439998626709]},"id":"hv72919822"},
- {"type":"Feature","properties":{"mag":2.2,"place":"120 km E of McCarthy, Alaska","time":1645054445193,"updated":1645054704598,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222645kvf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222645kvf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"0222645kvf","ids":",ak0222645kvf,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 120 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6659,61.4688,0]},"id":"ak0222645kvf"},
- {"type":"Feature","properties":{"mag":2.38,"place":"3 km SE of Maria Antonia, Puerto Rico","time":1645054289400,"updated":1645055746700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335198","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335198.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":87,"net":"pr","code":"71335198","ids":",pr71335198,","sources":",pr,","types":",origin,phase-data,","nst":12,"dmin":null,"rms":0.07,"gap":206,"magType":"md","type":"earthquake","title":"M 2.4 - 3 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8715,17.954,15.29]},"id":"pr71335198"},
- {"type":"Feature","properties":{"mag":1.42,"place":"16 km SSE of Sunnyside, Utah","time":1645052975360,"updated":1645053739730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482262","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482262.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"uu","code":"60482262","ids":",uu60482262,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.01738,"rms":0.12,"gap":198,"magType":"ml","type":"earthquake","title":"M 1.4 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.304,39.4181667,-2.54]},"id":"uu60482262"},
- {"type":"Feature","properties":{"mag":1.8,"place":"70 km ESE of Denali National Park, Alaska","time":1645052814357,"updated":1645053576527,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022263zovk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022263zovk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"022263zovk","ids":",ak022263zovk,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.41,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 70 km ESE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-150.523,63.2033,116.6]},"id":"ak022263zovk"},
- {"type":"Feature","properties":{"mag":0.75,"place":"10km S of Idyllwild, CA","time":1645052756290,"updated":1645056306870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187776","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187776.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40187776","ids":",ci40187776,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.03168,"rms":0.08,"gap":71,"magType":"ml","type":"earthquake","title":"M 0.8 - 10km S of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7063333,33.6525,16.64]},"id":"ci40187776"},
- {"type":"Feature","properties":{"mag":-0.09,"place":"37 km NNE of Amboy, Washington","time":1645052603700,"updated":1645066512520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817396","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817396.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61817396","ids":",uw61817396,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.008513,"rms":0.04,"gap":104,"magType":"ml","type":"earthquake","title":"M -0.1 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.20216666666667,46.1965,2.17]},"id":"uw61817396"},
- {"type":"Feature","properties":{"mag":3.44,"place":"8km NE of San Simeon, CA","time":1645052567840,"updated":1645063573216,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693841","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693841.geojson","felt":9,"cdi":3.1,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":185,"net":"nc","code":"73693841","ids":",nc73693841,us7000glgn,","sources":",nc,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":46,"dmin":0.02548,"rms":0.07,"gap":108,"magType":"ml","type":"earthquake","title":"M 3.4 - 8km NE of San Simeon, CA"},"geometry":{"type":"Point","coordinates":[-121.1291656,35.6981659,6.73]},"id":"nc73693841"},
- {"type":"Feature","properties":{"mag":2.32,"place":"5 km E of La Parguera, Puerto Rico","time":1645052093860,"updated":1645054619400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335193","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335193.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":83,"net":"pr","code":"71335193","ids":",pr71335193,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.04,"gap":169,"magType":"md","type":"earthquake","title":"M 2.3 - 5 km E of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9955,17.9781666666667,13.47]},"id":"pr71335193"},
- {"type":"Feature","properties":{"mag":1.4,"place":"57 km W of Tanana, Alaska","time":1645050070130,"updated":1645050410702,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022263hd9q","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022263hd9q.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"022263hd9q","ids":",ak022263hd9q,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.87,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 57 km W of Tanana, Alaska"},"geometry":{"type":"Point","coordinates":[-153.3064,65.1648,12.9]},"id":"ak022263hd9q"},
- {"type":"Feature","properties":{"mag":1.01,"place":"8km SW of Corona, CA","time":1645049659440,"updated":1645055482883,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187728","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187728.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40187728","ids":",ci40187728,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.02676,"rms":0.11,"gap":104,"magType":"ml","type":"earthquake","title":"M 1.0 - 8km SW of Corona, CA"},"geometry":{"type":"Point","coordinates":[-117.6295,33.816,5.1]},"id":"ci40187728"},
- {"type":"Feature","properties":{"mag":1.75,"place":"10km NW of The Geysers, CA","time":1645048588890,"updated":1645059253764,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693831","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693831.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":47,"net":"nc","code":"73693831","ids":",nc73693831,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.003787,"rms":0.03,"gap":89,"magType":"md","type":"earthquake","title":"M 1.8 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8388367,38.8413315,1.96]},"id":"nc73693831"},
- {"type":"Feature","properties":{"mag":1.3,"place":"56 km WSW of Denali National Park, Alaska","time":1645048169425,"updated":1645053115312,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222631yb4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222631yb4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ak","code":"0222631yb4","ids":",ak0222631yb4,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 56 km WSW of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-152.7505,63.3218,8.2]},"id":"ak0222631yb4"},
- {"type":"Feature","properties":{"mag":5,"place":"central Mid-Atlantic Ridge","time":1645047752073,"updated":1645048858040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glga","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glga.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":385,"net":"us","code":"7000glga","ids":",us7000glga,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":13.478,"rms":0.68,"gap":83,"magType":"mb","type":"earthquake","title":"M 5.0 - central Mid-Atlantic Ridge"},"geometry":{"type":"Point","coordinates":[-37.7643,7.6107,10]},"id":"us7000glga"},
- {"type":"Feature","properties":{"mag":0.66,"place":"3km ENE of The Geysers, CA","time":1645047113650,"updated":1645049119889,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693826","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693826.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":7,"net":"nc","code":"73693826","ids":",nc73693826,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.00897,"rms":0.05,"gap":144,"magType":"md","type":"earthquake","title":"M 0.7 - 3km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7253342,38.7843323,1.28]},"id":"nc73693826"},
- {"type":"Feature","properties":{"mag":0.87,"place":"5km NNW of The Geysers, CA","time":1645046503390,"updated":1645048513655,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693821","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693821.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73693821","ids":",nc73693821,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01531,"rms":0.04,"gap":108,"magType":"md","type":"earthquake","title":"M 0.9 - 5km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7791672,38.8166656,1.39]},"id":"nc73693821"},
- {"type":"Feature","properties":{"mag":4.2,"place":"17 km W of Préveza, Greece","time":1645046474687,"updated":1645049344040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glg3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glg3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000glg3","ids":",us7000glg3,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.997,"rms":0.69,"gap":70,"magType":"mb","type":"earthquake","title":"M 4.2 - 17 km W of Préveza, Greece"},"geometry":{"type":"Point","coordinates":[20.5501,38.9772,27.13]},"id":"us7000glg3"},
- {"type":"Feature","properties":{"mag":1.65,"place":"16 km SSE of Sunnyside, Utah","time":1645046032990,"updated":1645047583740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482242","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482242.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"uu","code":"60482242","ids":",uu60482242,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.01679,"rms":0.12,"gap":197,"magType":"md","type":"earthquake","title":"M 1.7 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3035,39.4226667,-2.4]},"id":"uu60482242"},
- {"type":"Feature","properties":{"mag":1.97000003,"place":"2 km SW of Pāhala, Hawaii","time":1645046009630,"updated":1645046198140,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919702","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919702.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":60,"net":"hv","code":"72919702","ids":",hv72919702,","sources":",hv,","types":",origin,phase-data,","nst":40,"dmin":null,"rms":0.129999995,"gap":86,"magType":"md","type":"earthquake","title":"M 2.0 - 2 km SW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.495498657227,19.1851673126221,31.0699996948242]},"id":"hv72919702"},
- {"type":"Feature","properties":{"mag":0.9,"place":"33 km NW of Carlin, Nevada","time":1645044831851,"updated":1645065419346,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834001","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834001.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nn","code":"00834001","ids":",nn00834001,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.086,"rms":0.1297,"gap":139.12,"magType":"ml","type":"earthquake","title":"M 0.9 - 33 km NW of Carlin, Nevada"},"geometry":{"type":"Point","coordinates":[-116.4269,40.8869,13.9]},"id":"nn00834001"},
- {"type":"Feature","properties":{"mag":2.3,"place":"55 km N of Petersville, Alaska","time":1645044557898,"updated":1645045282305,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022262gir2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022262gir2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"022262gir2","ids":",ak022262gir2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.35,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 55 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9171,62.9914,121.3]},"id":"ak022262gir2"},
- {"type":"Feature","properties":{"mag":1.54,"place":"2km E of Home Gardens, CA","time":1645043855930,"updated":1645047105864,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187672","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187672.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40187672","ids":",ci40187672,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.05455,"rms":0.23,"gap":53,"magType":"ml","type":"quarry blast","title":"M 1.5 Quarry Blast - 2km E of Home Gardens, CA"},"geometry":{"type":"Point","coordinates":[-117.4955,33.8763333,-0.43]},"id":"ci40187672"},
- {"type":"Feature","properties":{"mag":0.4,"place":"48 km ESE of Beatty, Nevada","time":1645043738528,"updated":1645065415600,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833994","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833994.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833994","ids":",nn00833994,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.04,"rms":0.0885,"gap":122.86,"magType":"ml","type":"earthquake","title":"M 0.4 - 48 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2624,36.7241,7.4]},"id":"nn00833994"},
- {"type":"Feature","properties":{"mag":1.17,"place":"14 km SSE of Volcano, Hawaii","time":1645043324570,"updated":1645050082100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919647","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919647.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"hv","code":"72919647","ids":",hv72919647,","sources":",hv,","types":",origin,phase-data,","nst":21,"dmin":null,"rms":0.08,"gap":97,"magType":"md","type":"earthquake","title":"M 1.2 - 14 km SSE of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.170833333333,19.324,2.98]},"id":"hv72919647"},
- {"type":"Feature","properties":{"mag":1.03,"place":"14 km SSE of Volcano, Hawaii","time":1645043324460,"updated":1645079544980,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919642","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919642.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"hv","code":"72919642","ids":",hv72919642,","sources":",hv,","types":",origin,phase-data,","nst":25,"dmin":null,"rms":0.1,"gap":99,"magType":"md","type":"earthquake","title":"M 1.0 - 14 km SSE of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.171166666667,19.3226666666667,2.2]},"id":"hv72919642"},
- {"type":"Feature","properties":{"mag":1.57,"place":"16 km SSE of Sunnyside, Utah","time":1645042901100,"updated":1645045703930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482217","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482217.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"uu","code":"60482217","ids":",uu60482217,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.01732,"rms":0.11,"gap":198,"magType":"ml","type":"earthquake","title":"M 1.6 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3036667,39.4191667,-2.46]},"id":"uu60482217"},
- {"type":"Feature","properties":{"mag":6.8,"place":"south of the Fiji Islands","time":1645042866696,"updated":1645124691204,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glex","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glex.geojson","felt":1,"cdi":2.2,"mmi":3.057,"alert":"green","status":"reviewed","tsunami":1,"sig":712,"net":"us","code":"7000glex","ids":",at00r7ez73,us7000glex,pt22047002,","sources":",at,us,pt,","types":",dyfi,ground-failure,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":5.762,"rms":0.89,"gap":18,"magType":"mww","type":"earthquake","title":"M 6.8 - south of the Fiji Islands"},"geometry":{"type":"Point","coordinates":[179.9997,-23.7868,535]},"id":"us7000glex"},
- {"type":"Feature","properties":{"mag":0.61,"place":"3km NNW of Aguanga, CA","time":1645042078160,"updated":1645046096477,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187648","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187648.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40187648","ids":",ci40187648,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.02729,"rms":0.12,"gap":67,"magType":"ml","type":"earthquake","title":"M 0.6 - 3km NNW of Aguanga, CA"},"geometry":{"type":"Point","coordinates":[-116.8823333,33.4693333,12.65]},"id":"ci40187648"},
- {"type":"Feature","properties":{"mag":1.13,"place":"7km NW of Parkfield, CA","time":1645041996970,"updated":1645043955235,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693791","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693791.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73693791","ids":",nc73693791,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01501,"rms":0.06,"gap":110,"magType":"md","type":"earthquake","title":"M 1.1 - 7km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.4863358,35.9375,4.92]},"id":"nc73693791"},
- {"type":"Feature","properties":{"mag":2.02999997,"place":"8 km ESE of Pāhala, Hawaii","time":1645041667410,"updated":1645041857960,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919612","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919612.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":63,"net":"hv","code":"72919612","ids":",hv72919612,","sources":",hv,","types":",origin,phase-data,","nst":30,"dmin":null,"rms":0.140000001,"gap":181,"magType":"md","type":"earthquake","title":"M 2.0 - 8 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.403839111328,19.1863327026367,30.4300003051758]},"id":"hv72919612"},
- {"type":"Feature","properties":{"mag":0.79,"place":"21 km SSW of Unalaska, Alaska","time":1645041541120,"updated":1645044642850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91492236","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91492236.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"av","code":"91492236","ids":",av91492236,","sources":",av,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.1,"gap":260,"magType":"ml","type":"earthquake","title":"M 0.8 - 21 km SSW of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.691666666667,53.7078333333333,8.22]},"id":"av91492236"},
- {"type":"Feature","properties":{"mag":0.35,"place":"10km NE of Aguanga, CA","time":1645040450890,"updated":1645047354953,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187616","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187616.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40187616","ids":",ci40187616,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.07795,"rms":0.11,"gap":152,"magType":"ml","type":"earthquake","title":"M 0.4 - 10km NE of Aguanga, CA"},"geometry":{"type":"Point","coordinates":[-116.789,33.5003333,6.73]},"id":"ci40187616"},
- {"type":"Feature","properties":{"mag":2.36,"place":"9km SSW of Tres Pinos, CA","time":1645040133190,"updated":1645054223245,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693786","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693786.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":86,"net":"nc","code":"73693786","ids":",nc73693786,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.0138,"rms":0.12,"gap":113,"magType":"md","type":"earthquake","title":"M 2.4 - 9km SSW of Tres Pinos, CA"},"geometry":{"type":"Point","coordinates":[-121.3594971,36.7164993,2.41]},"id":"nc73693786"},
- {"type":"Feature","properties":{"mag":0.84,"place":"1km NNW of The Geysers, CA","time":1645040120500,"updated":1645040832061,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693781","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693781.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693781","ids":",nc73693781,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01165,"rms":0.04,"gap":96,"magType":"md","type":"earthquake","title":"M 0.8 - 1km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7624969,38.7891655,3.43]},"id":"nc73693781"},
- {"type":"Feature","properties":{"mag":1.53,"place":"6km E of Santa Venetia, CA","time":1645039975130,"updated":1645043235164,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693776","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693776.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":36,"net":"nc","code":"73693776","ids":",nc73693776,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.02055,"rms":0.06,"gap":114,"magType":"md","type":"earthquake","title":"M 1.5 - 6km E of Santa Venetia, CA"},"geometry":{"type":"Point","coordinates":[-122.4546661,37.9888344,1.62]},"id":"nc73693776"},
- {"type":"Feature","properties":{"mag":1.77,"place":"16 km SSE of Sunnyside, Utah","time":1645039591570,"updated":1645042931700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482212","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482212.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"uu","code":"60482212","ids":",uu60482212,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.02031,"rms":0.13,"gap":183,"magType":"ml","type":"earthquake","title":"M 1.8 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.2993333,39.4203333,-2.83]},"id":"uu60482212"},
- {"type":"Feature","properties":{"mag":1.21,"place":"4 km N of Days Creek, Oregon","time":1645039326890,"updated":1645072631100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817276","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817276.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"uw","code":"61817276","ids":",uw61817276,","sources":",uw,","types":",origin,phase-data,","nst":5,"dmin":0.1188,"rms":0.32,"gap":189,"magType":"ml","type":"explosion","title":"M 1.2 Explosion - 4 km N of Days Creek, Oregon"},"geometry":{"type":"Point","coordinates":[-123.18116666666667,43.00933333333333,-0.57]},"id":"uw61817276"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1645039186840,"updated":1645039750811,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693766","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693766.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693766","ids":",nc73693766,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.006461,"rms":0.01,"gap":89,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8031693,38.8198318,2.35]},"id":"nc73693766"},
- {"type":"Feature","properties":{"mag":1.7,"place":"6 km E of Point MacKenzie, Alaska","time":1645039095583,"updated":1645039372289,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022261ofsa","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022261ofsa.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"022261ofsa","ids":",ak022261ofsa,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 6 km E of Point MacKenzie, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8488,61.3641,31.4]},"id":"ak022261ofsa"},
- {"type":"Feature","properties":{"mag":1.16,"place":"4km W of San Clemente, CA","time":1645039045040,"updated":1645039905245,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187592","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187592.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40187592","ids":",ci40187592,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.05564,"rms":0.13,"gap":218,"magType":"ml","type":"earthquake","title":"M 1.2 - 4km W of San Clemente, CA"},"geometry":{"type":"Point","coordinates":[-117.6585,33.43,13.95]},"id":"ci40187592"},
- {"type":"Feature","properties":{"mag":4.7,"place":"Nicobar Islands, India region","time":1645038984357,"updated":1645048265040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gleq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gleq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gleq","ids":",us7000gleq,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.603,"rms":0.94,"gap":133,"magType":"mb","type":"earthquake","title":"M 4.7 - Nicobar Islands, India region"},"geometry":{"type":"Point","coordinates":[91.9404,8.1184,10]},"id":"us7000gleq"},
- {"type":"Feature","properties":{"mag":1.87,"place":"6 km N of Pāhala, Hawaii","time":1645038853830,"updated":1645039182080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919562","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919562.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":54,"net":"hv","code":"72919562","ids":",hv72919562,","sources":",hv,","types":",origin,phase-data,","nst":38,"dmin":null,"rms":0.280000001,"gap":85,"magType":"ml","type":"earthquake","title":"M 1.9 - 6 km N of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.479995727539,19.2643337249756,0.200000002980232]},"id":"hv72919562"},
- {"type":"Feature","properties":{"mag":0.35,"place":"5km W of Cobb, CA","time":1645037414350,"updated":1645038010803,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693756","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693756.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693756","ids":",nc73693756,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.01462,"rms":0.04,"gap":186,"magType":"md","type":"earthquake","title":"M 0.4 - 5km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7754974,38.8165016,6.91]},"id":"nc73693756"},
- {"type":"Feature","properties":{"mag":2.05,"place":"15 km SSE of Sunnyside, Utah","time":1645037317220,"updated":1645042652170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482207","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482207.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":65,"net":"uu","code":"60482207","ids":",uu60482207,","sources":",uu,","types":",origin,phase-data,","nst":14,"dmin":0.01131,"rms":0.16,"gap":180,"magType":"ml","type":"earthquake","title":"M 2.1 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3105,39.424,-1.68]},"id":"uu60482207"},
- {"type":"Feature","properties":{"mag":2.18,"place":"2 km SSE of Magas Arriba, Puerto Rico","time":1645037176990,"updated":1645053639080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335188","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335188.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":73,"net":"pr","code":"71335188","ids":",pr71335188,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.05,"gap":196,"magType":"md","type":"earthquake","title":"M 2.2 - 2 km SSE of Magas Arriba, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.7633333333333,17.994,14.17]},"id":"pr71335188"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1645036933380,"updated":1645039274770,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693741","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693741.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693741","ids":",nc73693741,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.00195,"rms":0.02,"gap":46,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8106689,38.8214989,2.78]},"id":"nc73693741"},
- {"type":"Feature","properties":{"mag":0.55,"place":"7km ESE of Valle Vista, CA","time":1645036004470,"updated":1645036929514,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187560","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187560.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40187560","ids":",ci40187560,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.08994,"rms":0.07,"gap":189,"magType":"ml","type":"earthquake","title":"M 0.6 - 7km ESE of Valle Vista, CA"},"geometry":{"type":"Point","coordinates":[-116.8213333,33.7216667,16.89]},"id":"ci40187560"},
- {"type":"Feature","properties":{"mag":1.2,"place":"8km ESE of Valle Vista, CA","time":1645035541510,"updated":1645039052158,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37392956","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37392956.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ci","code":"37392956","ids":",ci37392956,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.08818,"rms":0.1,"gap":162,"magType":"ml","type":"earthquake","title":"M 1.2 - 8km ESE of Valle Vista, CA"},"geometry":{"type":"Point","coordinates":[-116.8216667,33.7156667,16.88]},"id":"ci37392956"},
- {"type":"Feature","properties":{"mag":1.27,"place":"7km ESE of Valle Vista, CA","time":1645035533530,"updated":1645038661990,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187552","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187552.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ci","code":"40187552","ids":",ci40187552,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":42,"dmin":0.08928,"rms":0.12,"gap":70,"magType":"ml","type":"earthquake","title":"M 1.3 - 7km ESE of Valle Vista, CA"},"geometry":{"type":"Point","coordinates":[-116.824,33.7195,16.67]},"id":"ci40187552"},
- {"type":"Feature","properties":{"mag":4.1,"place":"140 km NW of Naha, Japan","time":1645034976183,"updated":1645049574040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gleb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gleb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":259,"net":"us","code":"7000gleb","ids":",us7000gleb,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.562,"rms":0.36,"gap":124,"magType":"mb","type":"earthquake","title":"M 4.1 - 140 km NW of Naha, Japan"},"geometry":{"type":"Point","coordinates":[126.527,26.9394,10]},"id":"us7000gleb"},
- {"type":"Feature","properties":{"mag":1.55,"place":"Island of Hawaii, Hawaii","time":1645034780350,"updated":1645046585820,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919487","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919487.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"hv","code":"72919487","ids":",hv72919487,","sources":",hv,","types":",origin,phase-data,","nst":23,"dmin":null,"rms":0.15,"gap":144,"magType":"md","type":"earthquake","title":"M 1.6 - Island of Hawaii, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.4185,19.217,37.76]},"id":"hv72919487"},
- {"type":"Feature","properties":{"mag":4.3,"place":"17 km W of Préveza, Greece","time":1645033107697,"updated":1645050553040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gld4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gld4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gld4","ids":",us7000gld4,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.008,"rms":1.12,"gap":91,"magType":"mb","type":"earthquake","title":"M 4.3 - 17 km W of Préveza, Greece"},"geometry":{"type":"Point","coordinates":[20.5491,38.964,10]},"id":"us7000gld4"},
- {"type":"Feature","properties":{"mag":-0.2,"place":"Washington","time":1645032686600,"updated":1645072405100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817191","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817191.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61817191","ids":",uw61817191,","sources":",uw,","types":",origin,phase-data,","nst":9,"dmin":0.01114,"rms":0.12,"gap":166,"magType":"md","type":"earthquake","title":"M -0.2 - Washington"},"geometry":{"type":"Point","coordinates":[-122.20233333333333,46.192,4.62]},"id":"uw61817191"},
- {"type":"Feature","properties":{"mag":3.01,"place":"17 km N of Pāhala, Hawaii","time":1645032487350,"updated":1645044638210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919467","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919467.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"hv","code":"72919467","ids":",hv72919467,","sources":",hv,","types":",origin,phase-data,","nst":50,"dmin":null,"rms":0.12,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.0 - 17 km N of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.4745,19.362,8.57]},"id":"hv72919467"},
- {"type":"Feature","properties":{"mag":1.85,"place":"16 km SSE of Sunnyside, Utah","time":1645032389170,"updated":1645032865320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482192","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482192.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"uu","code":"60482192","ids":",uu60482192,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.01505,"rms":0.13,"gap":197,"magType":"md","type":"earthquake","title":"M 1.9 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3066667,39.4193333,-1.94]},"id":"uu60482192"},
- {"type":"Feature","properties":{"mag":1.5,"place":"2 km SE of Knik, Alaska","time":1645032373487,"updated":1645032619815,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022260ja5g","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022260ja5g.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"022260ja5g","ids":",ak022260ja5g,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 2 km SE of Knik, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7009,61.4431,30]},"id":"ak022260ja5g"},
- {"type":"Feature","properties":{"mag":1.53,"place":"10km NW of Santa Paula, CA","time":1645031995110,"updated":1645037506900,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187496","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187496.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40187496","ids":",ci40187496,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01704,"rms":0.21,"gap":99,"magType":"ml","type":"earthquake","title":"M 1.5 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1318333,34.4205,14.4]},"id":"ci40187496"},
- {"type":"Feature","properties":{"mag":2.74,"place":"10km NW of Santa Paula, CA","time":1645031901670,"updated":1645037308010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187488","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187488.geojson","felt":5,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":117,"net":"ci","code":"40187488","ids":",ci40187488,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":60,"dmin":0.02519,"rms":0.29,"gap":41,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1371667,34.4116667,16.1]},"id":"ci40187488"},
- {"type":"Feature","properties":{"mag":0.61,"place":"20km NE of Thermal, CA","time":1645031090830,"updated":1645037874273,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187480","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187480.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40187480","ids":",ci40187480,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.1061,"rms":0.1,"gap":144,"magType":"ml","type":"earthquake","title":"M 0.6 - 20km NE of Thermal, CA"},"geometry":{"type":"Point","coordinates":[-115.98,33.7611667,4.47]},"id":"ci40187480"},
- {"type":"Feature","properties":{"mag":1.3,"place":"17 km NNE of Glacier View, Alaska","time":1645030927572,"updated":1645031347587,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022260e4ih","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022260e4ih.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"022260e4ih","ids":",ak022260e4ih,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.77,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 17 km NNE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.5765,61.9561,34.3]},"id":"ak022260e4ih"},
- {"type":"Feature","properties":{"mag":2.06,"place":"22km SE of Pinnacles, CA","time":1645030070510,"updated":1645044194396,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693721","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693721.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"nc","code":"73693721","ids":",nc73693721,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.05393,"rms":0.19,"gap":116,"magType":"md","type":"earthquake","title":"M 2.1 - 22km SE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-120.9636688,36.3945007,2.25]},"id":"nc73693721"},
- {"type":"Feature","properties":{"mag":1.89,"place":"8km NNE of San Simeon, CA","time":1645029784450,"updated":1645043471188,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693716","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693716.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":55,"net":"nc","code":"73693716","ids":",nc73693716,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.02012,"rms":0.07,"gap":148,"magType":"md","type":"earthquake","title":"M 1.9 - 8km NNE of San Simeon, CA"},"geometry":{"type":"Point","coordinates":[-121.1484985,35.7019997,5.91]},"id":"nc73693716"},
- {"type":"Feature","properties":{"mag":0.5,"place":"8km WNW of Cobb, CA","time":1645029680820,"updated":1645123393137,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693711","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693711.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nc","code":"73693711","ids":",nc73693711,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01396,"rms":0.03,"gap":52,"magType":"md","type":"earthquake","title":"M 0.5 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8081667,38.8373333,2.14]},"id":"nc73693711"},
- {"type":"Feature","properties":{"mag":2.3,"place":"23 km NNE of Skwentna, Alaska","time":1645028932232,"updated":1645029704690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225zycxk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225zycxk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"02225zycxk","ids":",ak02225zycxk,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 23 km NNE of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-151.2478,62.1864,59.7]},"id":"ak02225zycxk"},
- {"type":"Feature","properties":{"mag":0.34,"place":"5km NW of The Geysers, CA","time":1645028490480,"updated":1645032074077,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693706","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693706.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693706","ids":",nc73693706,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.007123,"rms":0.01,"gap":72,"magType":"md","type":"earthquake","title":"M 0.3 - 5km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7928314,38.8148346,2.78]},"id":"nc73693706"},
- {"type":"Feature","properties":{"mag":0.76,"place":"3km WNW of Round Valley, CA","time":1645028190760,"updated":1645030632399,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693701","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693701.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"nc","code":"73693701","ids":",nc73693701,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.09388,"rms":0.12,"gap":128,"magType":"md","type":"earthquake","title":"M 0.8 - 3km WNW of Round Valley, CA"},"geometry":{"type":"Point","coordinates":[-118.6303333,37.4305,3.27]},"id":"nc73693701"},
- {"type":"Feature","properties":{"mag":1.2,"place":"65 km WNW of Ninilchik, Alaska","time":1645027876517,"updated":1645044024880,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225zuimz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225zuimz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ak","code":"02225zuimz","ids":",av91492156,ak02225zuimz,","sources":",av,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 65 km WNW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.7258,60.3106,6.4]},"id":"ak02225zuimz"},
- {"type":"Feature","properties":{"mag":1.61,"place":"15km WSW of Johannesburg, CA","time":1645027363790,"updated":1645036163764,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187456","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187456.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"ci","code":"40187456","ids":",ci40187456,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.07332,"rms":0.16,"gap":49,"magType":"ml","type":"earthquake","title":"M 1.6 - 15km WSW of Johannesburg, CA"},"geometry":{"type":"Point","coordinates":[-117.7838333,35.3205,5.98]},"id":"ci40187456"},
- {"type":"Feature","properties":{"mag":1.86,"place":"3km ENE of San Leandro, CA","time":1645027065880,"updated":1645041733008,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693686","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693686.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":53,"net":"nc","code":"73693686","ids":",nc73693686,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.006828,"rms":0.07,"gap":46,"magType":"md","type":"earthquake","title":"M 1.9 - 3km ENE of San Leandro, CA"},"geometry":{"type":"Point","coordinates":[-122.1193314,37.730999,5.41]},"id":"nc73693686"},
- {"type":"Feature","properties":{"mag":1.43,"place":"10km NW of Santa Paula, CA","time":1645026912670,"updated":1645034199580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187440","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187440.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"ci","code":"40187440","ids":",ci40187440,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.0179,"rms":0.2,"gap":145,"magType":"ml","type":"earthquake","title":"M 1.4 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1251667,34.4221667,14.72]},"id":"ci40187440"},
- {"type":"Feature","properties":{"mag":1.57,"place":"2km WNW of San Juan Bautista, CA","time":1645026825090,"updated":1645041912025,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693681","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693681.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":38,"net":"nc","code":"73693681","ids":",nc73693681,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04534,"rms":0.05,"gap":72,"magType":"md","type":"earthquake","title":"M 1.6 - 2km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5534973,36.8511658,5.67]},"id":"nc73693681"},
- {"type":"Feature","properties":{"mag":2.2,"place":"28 km WNW of Kalifornsky, Alaska","time":1645026746518,"updated":1645026999634,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225zi0kd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225zi0kd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"02225zi0kd","ids":",ak02225zi0kd,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 28 km WNW of Kalifornsky, Alaska"},"geometry":{"type":"Point","coordinates":[-151.7996,60.4776,62.5]},"id":"ak02225zi0kd"},
- {"type":"Feature","properties":{"mag":-0.37,"place":"82 km W of Tyonek, Alaska","time":1645026657520,"updated":1645057606250,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049708","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049708.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049708","ids":",av91049708,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.07,"gap":296,"magType":"ml","type":"earthquake","title":"M -0.4 - 82 km W of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.636333333333,61.1951666666667,7.99]},"id":"av91049708"},
- {"type":"Feature","properties":{"mag":1.68,"place":"10km NW of Santa Paula, CA","time":1645026226960,"updated":1645033984412,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187424","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187424.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"ci","code":"40187424","ids":",ci40187424,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.01599,"rms":0.24,"gap":53,"magType":"ml","type":"earthquake","title":"M 1.7 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.133,34.4213333,15.74]},"id":"ci40187424"},
- {"type":"Feature","properties":{"mag":2.25,"place":"4 km WSW of Fuig, Puerto Rico","time":1645025988960,"updated":1645028294880,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335183","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335183.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":78,"net":"pr","code":"71335183","ids":",pr71335183,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.06,"gap":182,"magType":"md","type":"earthquake","title":"M 2.3 - 4 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9563333333333,17.9713333333333,9.78]},"id":"pr71335183"},
- {"type":"Feature","properties":{"mag":0.35,"place":"6km NW of The Geysers, CA","time":1645025408630,"updated":1645027995639,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693676","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693676.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693676","ids":",nc73693676,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.008261,"rms":0.01,"gap":103,"magType":"md","type":"earthquake","title":"M 0.4 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7994995,38.8235016,2.86]},"id":"nc73693676"},
- {"type":"Feature","properties":{"mag":0.93,"place":"7km NW of The Geysers, CA","time":1645025400730,"updated":1645027275564,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693671","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693671.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":13,"net":"nc","code":"73693671","ids":",nc73693671,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.01028,"rms":0.03,"gap":48,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8219986,38.8175011,2.15]},"id":"nc73693671"},
- {"type":"Feature","properties":{"mag":1.64,"place":"8km W of Cobb, CA","time":1645025394880,"updated":1645037350596,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693666","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693666.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":41,"net":"nc","code":"73693666","ids":",nc73693666,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.01663,"rms":0.02,"gap":92,"magType":"md","type":"earthquake","title":"M 1.6 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8101654,38.8323326,2.75]},"id":"nc73693666"},
- {"type":"Feature","properties":{"mag":1.6,"place":"56 km SSE of Denali National Park, Alaska","time":1645025071610,"updated":1645025386728,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225zc0wp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225zc0wp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02225zc0wp","ids":",ak02225zc0wp,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 56 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.1326,63.1099,1]},"id":"ak02225zc0wp"},
- {"type":"Feature","properties":{"mag":2.25,"place":"13 km E of Pāhala, Hawaii","time":1645024865940,"updated":1645062095040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919402","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919402.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":78,"net":"hv","code":"72919402","ids":",us7000glcg,hv72919402,","sources":",us,hv,","types":",origin,phase-data,","nst":48,"dmin":null,"rms":0.189999998,"gap":159,"magType":"ml","type":"earthquake","title":"M 2.3 - 13 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.356994628906,19.2250003814697,32.3499984741211]},"id":"hv72919402"},
- {"type":"Feature","properties":{"mag":0.57,"place":"12km WNW of Toms Place, CA","time":1645024559230,"updated":1645030031998,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693656","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693656.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"nc","code":"73693656","ids":",nc73693656,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.01963,"rms":0.04,"gap":235,"magType":"md","type":"earthquake","title":"M 0.6 - 12km WNW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8096667,37.6021667,5.03]},"id":"nc73693656"},
- {"type":"Feature","properties":{"mag":2.06999993,"place":"Island of Hawaii, Hawaii","time":1645023726310,"updated":1645023929700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919387","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919387.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":66,"net":"hv","code":"72919387","ids":",hv72919387,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.140000001,"gap":73,"magType":"md","type":"earthquake","title":"M 2.1 - Island of Hawaii, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.487335205078,19.1928329467773,30.9500007629395]},"id":"hv72919387"},
- {"type":"Feature","properties":{"mag":-0.52,"place":"36 km NNE of Amboy, Washington","time":1645023455180,"updated":1645072008450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817181","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817181.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61817181","ids":",uw61817181,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.01444,"rms":0.14,"gap":122,"magType":"md","type":"earthquake","title":"M -0.5 - 36 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.20866666666667,46.19233333333333,3.31]},"id":"uw61817181"},
- {"type":"Feature","properties":{"mag":2.23,"place":"5km SW of Progreso, B.C., MX","time":1645023448810,"updated":1645033333489,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187408","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187408.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":77,"net":"ci","code":"40187408","ids":",ci40187408,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.1348,"rms":0.27,"gap":138,"magType":"ml","type":"earthquake","title":"M 2.2 - 5km SW of Progreso, B.C., MX"},"geometry":{"type":"Point","coordinates":[-115.6233333,32.546,10.6]},"id":"ci40187408"},
- {"type":"Feature","properties":{"mag":2.12,"place":"11 km E of Pāhala, Hawaii","time":1645023323140,"updated":1645023652940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919377","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919377.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":69,"net":"hv","code":"72919377","ids":",hv72919377,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.200000003,"gap":162,"magType":"ml","type":"earthquake","title":"M 2.1 - 11 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.366668701172,19.207332611084,29.6100006103516]},"id":"hv72919377"},
- {"type":"Feature","properties":{"mag":2.84,"place":"4 km E of La Parguera, Puerto Rico","time":1645023043480,"updated":1645024192110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335178","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335178.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":124,"net":"pr","code":"71335178","ids":",pr71335178,","sources":",pr,","types":",origin,phase-data,","nst":15,"dmin":null,"rms":0.17,"gap":169,"magType":"md","type":"earthquake","title":"M 2.8 - 4 km E of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0048333333333,17.9756666666667,10.2]},"id":"pr71335178"},
- {"type":"Feature","properties":{"mag":1.86,"place":"2km WNW of San Juan Bautista, CA","time":1645022712470,"updated":1645035791461,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693646","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693646.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":53,"net":"nc","code":"73693646","ids":",nc73693646,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.04428,"rms":0.2,"gap":62,"magType":"md","type":"earthquake","title":"M 1.9 - 2km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5585022,36.8491669,4.29]},"id":"nc73693646"},
- {"type":"Feature","properties":{"mag":1.29,"place":"13km ENE of Cloverdale, CA","time":1645022124680,"updated":1645034290305,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693641","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693641.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"nc","code":"73693641","ids":",nc73693641,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.005964,"rms":0.02,"gap":97,"magType":"md","type":"earthquake","title":"M 1.3 - 13km ENE of Cloverdale, CA"},"geometry":{"type":"Point","coordinates":[-122.8795013,38.8433342,2.42]},"id":"nc73693641"},
- {"type":"Feature","properties":{"mag":-0.2,"place":"45 km ESE of Beatty, Nevada","time":1645021966664,"updated":1645065414712,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833993","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833993.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833993","ids":",nn00833993,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.068,"rms":0.0464,"gap":323.3,"magType":"ml","type":"earthquake","title":"M -0.2 - 45 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.295,36.7399,8.4]},"id":"nn00833993"},
- {"type":"Feature","properties":{"mag":2.11,"place":"2 km S of Pāhala, Hawaii","time":1645021835460,"updated":1645022166080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919347","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919347.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"hv","code":"72919347","ids":",hv72919347,","sources":",hv,","types":",origin,phase-data,","nst":49,"dmin":null,"rms":0.109999999,"gap":75,"magType":"ml","type":"earthquake","title":"M 2.1 - 2 km S of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.480499267578,19.1841659545898,32.3499984741211]},"id":"hv72919347"},
- {"type":"Feature","properties":{"mag":1.3,"place":"31 km SE of Mina, Nevada","time":1645021786622,"updated":1645034729977,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833957","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833957.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833957","ids":",nn00833957,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.095,"rms":0.1384,"gap":114.94,"magType":"ml","type":"earthquake","title":"M 1.3 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8554,38.1867,11.1]},"id":"nn00833957"},
- {"type":"Feature","properties":{"mag":1.63,"place":"9 km NW of Stanley, Idaho","time":1645021605910,"updated":1645112817490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538539","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538539.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":41,"net":"mb","code":"80538539","ids":",mb80538539,","sources":",mb,","types":",origin,phase-data,","nst":10,"dmin":0.842,"rms":0.16,"gap":88,"magType":"ml","type":"earthquake","title":"M 1.6 - 9 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.0045,44.288,5.35]},"id":"mb80538539"},
- {"type":"Feature","properties":{"mag":0.36,"place":"2km NNW of The Geysers, CA","time":1645021445320,"updated":1645022775100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693636","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693636.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693636","ids":",nc73693636,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01028,"rms":0.01,"gap":111,"magType":"md","type":"earthquake","title":"M 0.4 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7598343,38.7903328,2.6]},"id":"nc73693636"},
- {"type":"Feature","properties":{"mag":0.8,"place":"2 km SSE of Coleville, California","time":1645021410563,"updated":1645036037648,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833956","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833956.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"nn","code":"00833956","ids":",nn00833956,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.042,"rms":0.1559,"gap":110.26,"magType":"ml","type":"earthquake","title":"M 0.8 - 2 km SSE of Coleville, California"},"geometry":{"type":"Point","coordinates":[-119.4953,38.5485,9.2]},"id":"nn00833956"},
- {"type":"Feature","properties":{"mag":2.9,"place":"3km ENE of San Leandro, CA","time":1645021285130,"updated":1645101573453,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693631","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693631.geojson","felt":410,"cdi":3.8,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":285,"net":"nc","code":"73693631","ids":",nc73693631,","sources":",nc,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":74,"dmin":0.01088,"rms":0.1,"gap":37,"magType":"md","type":"earthquake","title":"M 2.9 - 3km ENE of San Leandro, CA"},"geometry":{"type":"Point","coordinates":[-122.1259995,37.7336655,6.15]},"id":"nc73693631"},
- {"type":"Feature","properties":{"mag":1.16,"place":"2km NW of San Juan Bautista, CA","time":1645020989090,"updated":1645031771050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693626","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693626.geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73693626","ids":",nc73693626,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.04063,"rms":0.08,"gap":143,"magType":"md","type":"earthquake","title":"M 1.2 - 2km NW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.555336,36.8563347,2.04]},"id":"nc73693626"},
- {"type":"Feature","properties":{"mag":1.69,"place":"7km SSW of Tres Pinos, CA","time":1645020395790,"updated":1645030032344,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693621","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693621.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"nc","code":"73693621","ids":",nc73693621,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01943,"rms":0.05,"gap":173,"magType":"md","type":"earthquake","title":"M 1.7 - 7km SSW of Tres Pinos, CA"},"geometry":{"type":"Point","coordinates":[-121.338501,36.7258339,7.78]},"id":"nc73693621"},
- {"type":"Feature","properties":{"mag":0.85,"place":"17km E of Little Lake, CA","time":1645020348470,"updated":1645032493405,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187376","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187376.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40187376","ids":",ci40187376,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.06523,"rms":0.11,"gap":96,"magType":"ml","type":"earthquake","title":"M 0.9 - 17km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7231667,35.9201667,5.17]},"id":"ci40187376"},
- {"type":"Feature","properties":{"mag":2.8,"place":"44 km ESE of Naalehu, Hawaii","time":1645020315640,"updated":1645053331303,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919312","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919312.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"hv","code":"72919312","ids":",hv72919312,","sources":",hv,","types":",dyfi,origin,phase-data,","nst":35,"dmin":null,"rms":0.13,"gap":261,"magType":"ml","type":"earthquake","title":"M 2.8 - 44 km ESE of Naalehu, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.2175,18.86,9.82]},"id":"hv72919312"},
- {"type":"Feature","properties":{"mag":2.16,"place":"2 km SE of Pāhala, Hawaii","time":1645020311670,"updated":1645077721550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919307","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919307.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"hv","code":"72919307","ids":",hv72919307,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.1,"gap":105,"magType":"ml","type":"earthquake","title":"M 2.2 - 2 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.4635,19.1853333333333,37.53]},"id":"hv72919307"},
- {"type":"Feature","properties":{"mag":1.16,"place":"3 km WSW of Three Lakes, Washington","time":1645019541230,"updated":1645071395980,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817176","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817176.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"uw","code":"61817176","ids":",uw61817176,","sources":",uw,","types":",origin,phase-data,","nst":20,"dmin":0.1001,"rms":0.19,"gap":72,"magType":"ml","type":"earthquake","title":"M 1.2 - 3 km WSW of Three Lakes, Washington"},"geometry":{"type":"Point","coordinates":[-122.05333333333333,47.93516666666667,23.64]},"id":"uw61817176"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km NW of The Geysers, CA","time":1645018230220,"updated":1645019175727,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693616","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693616.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693616","ids":",nc73693616,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01181,"rms":0.01,"gap":151,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.81633,38.8341675,1.88]},"id":"nc73693616"},
- {"type":"Feature","properties":{"mag":1.29,"place":"17km E of Little Lake, CA","time":1645017551260,"updated":1645032327385,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187368","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187368.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40187368","ids":",ci40187368,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.06285,"rms":0.09,"gap":54,"magType":"ml","type":"earthquake","title":"M 1.3 - 17km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7213333,35.9226667,5.01]},"id":"ci40187368"},
- {"type":"Feature","properties":{"mag":1.7,"place":"44 km NNW of Petersville, Alaska","time":1645016743745,"updated":1645017444156,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225y1410","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225y1410.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02225y1410","ids":",ak02225y1410,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 44 km NNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0034,62.8782,110.8]},"id":"ak02225y1410"},
- {"type":"Feature","properties":{"mag":1.48,"place":"5km N of Healdsburg, CA","time":1645016208210,"updated":1645091353007,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693611","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693611.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"nc","code":"73693611","ids":",nc73693611,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.1022,"rms":0.06,"gap":53,"magType":"md","type":"earthquake","title":"M 1.5 - 5km N of Healdsburg, CA"},"geometry":{"type":"Point","coordinates":[-122.8701667,38.6591667,7.23]},"id":"nc73693611"},
- {"type":"Feature","properties":{"mag":0.49,"place":"4 km ESE of Hebgen Lake Estates, Montana","time":1645016055690,"updated":1645020780050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482187","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482187.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uu","code":"60482187","ids":",uu60482187,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.04287,"rms":0.11,"gap":76,"magType":"md","type":"earthquake","title":"M 0.5 - 4 km ESE of Hebgen Lake Estates, Montana"},"geometry":{"type":"Point","coordinates":[-111.1315,44.7571667,11.21]},"id":"uu60482187"},
- {"type":"Feature","properties":{"mag":1.5,"place":"4 km WNW of Meadow Lakes, Alaska","time":1645015895810,"updated":1645016452116,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225xpir1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225xpir1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02225xpir1","ids":",ak02225xpir1,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 4 km WNW of Meadow Lakes, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6834,61.6445,34.2]},"id":"ak02225xpir1"},
- {"type":"Feature","properties":{"mag":0.82,"place":"4km W of Mammoth Lakes, CA","time":1645015708370,"updated":1645029490810,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693606","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693606.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"nc","code":"73693606","ids":",nc73693606,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.005397,"rms":0.06,"gap":79,"magType":"md","type":"earthquake","title":"M 0.8 - 4km W of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-119.0243333,37.635,0.25]},"id":"nc73693606"},
- {"type":"Feature","properties":{"mag":4,"place":"224 km SE of Chiniak, Alaska","time":1645015635269,"updated":1645016998480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glbq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glbq.geojson","felt":null,"cdi":null,"mmi":1,"alert":null,"status":"reviewed","tsunami":0,"sig":246,"net":"us","code":"7000glbq","ids":",ak02225xomdh,us7000glbq,","sources":",ak,us,","types":",origin,phase-data,shakemap,","nst":null,"dmin":2.213,"rms":0.58,"gap":191,"magType":"mb","type":"earthquake","title":"M 4.0 - 224 km SE of Chiniak, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8148,56.1177,10]},"id":"us7000glbq"},
- {"type":"Feature","properties":{"mag":2.94,"place":"8km NNE of San Simeon, CA","time":1645015567440,"updated":1645120872878,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693601","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693601.geojson","felt":8,"cdi":3.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":136,"net":"nc","code":"73693601","ids":",nc73693601,us7000glbp,","sources":",nc,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":56,"dmin":0.02077,"rms":0.05,"gap":145,"magType":"md","type":"earthquake","title":"M 2.9 - 8km NNE of San Simeon, CA"},"geometry":{"type":"Point","coordinates":[-121.1485,35.7026667,6.32]},"id":"nc73693601"},
- {"type":"Feature","properties":{"mag":2.89,"place":"4 km WSW of Fuig, Puerto Rico","time":1645014755030,"updated":1645023308837,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335168","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335168.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"pr","code":"71335168","ids":",pr71335168,us7000glbj,","sources":",pr,us,","types":",dyfi,origin,phase-data,","nst":23,"dmin":null,"rms":0.17,"gap":164,"magType":"md","type":"earthquake","title":"M 2.9 - 4 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9548333333333,17.9768333333333,8.57]},"id":"pr71335168"},
- {"type":"Feature","properties":{"mag":4.2,"place":"16 km SW of Carletonville, South Africa","time":1645014735460,"updated":1645016157040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glbl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glbl.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000glbl","ids":",us7000glbl,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.096,"rms":0.52,"gap":178,"magType":"mb","type":"earthquake","title":"M 4.2 - 16 km SW of Carletonville, South Africa"},"geometry":{"type":"Point","coordinates":[27.2843,-26.4635,5]},"id":"us7000glbl"},
- {"type":"Feature","properties":{"mag":1.44,"place":"2km W of San Juan Bautista, CA","time":1645014613420,"updated":1645027276563,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693596","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693596.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":32,"net":"nc","code":"73693596","ids":",nc73693596,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.04538,"rms":0.11,"gap":63,"magType":"md","type":"earthquake","title":"M 1.4 - 2km W of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5638351,36.8450012,5.88]},"id":"nc73693596"},
- {"type":"Feature","properties":{"mag":1.96000004,"place":"7 km NE of Pāhala, Hawaii","time":1645014444670,"updated":1645015303246,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919247","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919247.geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":59,"net":"hv","code":"72919247","ids":",hv72919247,","sources":",hv,","types":",dyfi,origin,phase-data,","nst":46,"dmin":null,"rms":0.129999995,"gap":116,"magType":"md","type":"earthquake","title":"M 2.0 - 7 km NE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.430328369141,19.2490005493164,31.6399993896484]},"id":"hv72919247"},
- {"type":"Feature","properties":{"mag":2.52,"place":"18 km SSE of Maria Antonia, Puerto Rico","time":1645014234240,"updated":1645015185730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335158","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335158.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":98,"net":"pr","code":"71335158","ids":",pr71335158,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.31,"gap":228,"magType":"md","type":"earthquake","title":"M 2.5 - 18 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8288333333333,17.8245,9.72]},"id":"pr71335158"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1645013783700,"updated":1645015875418,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693591","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693591.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693591","ids":",nc73693591,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.005781,"rms":0.01,"gap":116,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8033371,38.8209991,2.85]},"id":"nc73693591"},
- {"type":"Feature","properties":{"mag":1.72,"place":"19km NE of Brooktrails, CA","time":1645013699250,"updated":1645025775415,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693586","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693586.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":46,"net":"nc","code":"73693586","ids":",nc73693586,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.04561,"rms":0.08,"gap":100,"magType":"md","type":"earthquake","title":"M 1.7 - 19km NE of Brooktrails, CA"},"geometry":{"type":"Point","coordinates":[-123.2401657,39.5763321,5.73]},"id":"nc73693586"},
- {"type":"Feature","properties":{"mag":3.09,"place":"1km W of San Juan Bautista, CA","time":1645013459580,"updated":1645063294426,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693581","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693581.geojson","felt":46,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":163,"net":"nc","code":"73693581","ids":",nc73693581,us7000glbg,","sources":",nc,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":97,"dmin":0.03338,"rms":0.14,"gap":23,"magType":"ml","type":"earthquake","title":"M 3.1 - 1km W of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5535,36.8451667,7]},"id":"nc73693581"},
- {"type":"Feature","properties":{"mag":2.53,"place":"3 km E of Maria Antonia, Puerto Rico","time":1645012241180,"updated":1645013456630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335143","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335143.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":98,"net":"pr","code":"71335143","ids":",pr71335143,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.27,"gap":164,"magType":"md","type":"earthquake","title":"M 2.5 - 3 km E of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8538333333333,17.9731666666667,17.04]},"id":"pr71335143"},
- {"type":"Feature","properties":{"mag":3,"place":"179 km SE of Perryville, Alaska","time":1645012127499,"updated":1645034263456,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225x3omg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225x3omg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"ak","code":"02225x3omg","ids":",us7000glbh,ak02225x3omg,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":1.13,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 179 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.9071,54.9191,36.6]},"id":"ak02225x3omg"},
- {"type":"Feature","properties":{"mag":1.3,"place":"16km S of Salton City, CA","time":1645011774310,"updated":1645031768327,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187344","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187344.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40187344","ids":",ci40187344,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":43,"dmin":0.0427,"rms":0.22,"gap":70,"magType":"ml","type":"earthquake","title":"M 1.3 - 16km S of Salton City, CA"},"geometry":{"type":"Point","coordinates":[-115.9295,33.1598333,7.45]},"id":"ci40187344"},
- {"type":"Feature","properties":{"mag":1.3,"place":"49 km E of Paxson, Alaska","time":1645011731372,"updated":1645011984853,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225x23t9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225x23t9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02225x23t9","ids":",ak02225x23t9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 49 km E of Paxson, Alaska"},"geometry":{"type":"Point","coordinates":[-144.6598,63.1776,5.7]},"id":"ak02225x23t9"},
- {"type":"Feature","properties":{"mag":1.48,"place":"9 km E of Pāhala, Hawaii","time":1645011667360,"updated":1645048389650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919227","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919227.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"hv","code":"72919227","ids":",hv72919227,","sources":",hv,","types":",origin,phase-data,","nst":23,"dmin":null,"rms":0.11,"gap":170,"magType":"md","type":"earthquake","title":"M 1.5 - 9 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.384666666667,19.2088333333333,33.14]},"id":"hv72919227"},
- {"type":"Feature","properties":{"mag":1,"place":"31 km SE of Mina, Nevada","time":1645011633359,"updated":1645046600378,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833955","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833955.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833955","ids":",nn00833955,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.061,"rms":0.1068,"gap":132.42,"magType":"ml","type":"earthquake","title":"M 1.0 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8907,38.1662,8]},"id":"nn00833955"},
- {"type":"Feature","properties":{"mag":1.68,"place":"6 km NW of Medford, Oklahoma","time":1645011258140,"updated":1645109592776,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgyb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgyb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"ok","code":"2022dgyb","ids":",ok2022dgyb,","sources":",ok,","types":",origin,phase-data,","nst":50,"dmin":0.0638874631,"rms":0.44,"gap":78,"magType":"ml","type":"earthquake","title":"M 1.7 - 6 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.77966667,36.84983333,6.18]},"id":"ok2022dgyb"},
- {"type":"Feature","properties":{"mag":1.1,"place":"36 km SE of Mina, Nevada","time":1645010754956,"updated":1645035662513,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833954","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833954.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833954","ids":",nn00833954,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.117,"rms":0.0737,"gap":118.72,"magType":"ml","type":"earthquake","title":"M 1.1 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.784,38.1778,8.1]},"id":"nn00833954"},
- {"type":"Feature","properties":{"mag":1.5,"place":"50 km NW of Tatitlek, Alaska","time":1645010393576,"updated":1645033802454,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225wx9lo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225wx9lo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02225wx9lo","ids":",ak02225wx9lo,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.49,"gap":null,"magType":"ml","type":"ice quake","title":"M 1.5 Ice Quake - 50 km NW of Tatitlek, Alaska"},"geometry":{"type":"Point","coordinates":[-147.441,61.1291,25.7]},"id":"ak02225wx9lo"},
- {"type":"Feature","properties":{"mag":1.96,"place":"7 km NW of Medford, Oklahoma","time":1645010371079,"updated":1645107590467,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgxo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgxo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":59,"net":"ok","code":"2022dgxo","ids":",ok2022dgxo,","sources":",ok,","types":",origin,phase-data,","nst":54,"dmin":0.06118799283,"rms":0.34,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.0 - 7 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.784,36.85716667,7.19]},"id":"ok2022dgxo"},
- {"type":"Feature","properties":{"mag":1.5,"place":"7 km SSE of Houston, Alaska","time":1645010094232,"updated":1645010301858,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225ww72n","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225ww72n.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02225ww72n","ids":",ak02225ww72n,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.35,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 7 km SSE of Houston, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7492,61.5681,34]},"id":"ak02225ww72n"},
- {"type":"Feature","properties":{"mag":2.13,"place":"16 km SSE of Sunnyside, Utah","time":1645009438280,"updated":1645028460020,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482182","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482182.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"uu","code":"60482182","ids":",uu60482182,","sources":",uu,","types":",origin,phase-data,","nst":5,"dmin":0.01943,"rms":0.08,"gap":183,"magType":"md","type":"earthquake","title":"M 2.1 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3003333,39.421,-3.29]},"id":"uu60482182"},
- {"type":"Feature","properties":{"mag":0,"place":"46 km ESE of Beatty, Nevada","time":1645009074760,"updated":1645065414044,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833992","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833992.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833992","ids":",nn00833992,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.058,"rms":0.0894,"gap":195.27,"magType":"ml","type":"earthquake","title":"M 0.0 - 46 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2901,36.734,7.4]},"id":"nn00833992"},
- {"type":"Feature","properties":{"mag":2.34,"place":"3 km E of Ponce, Puerto Rico","time":1645008891170,"updated":1645012800670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335138","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335138.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"pr","code":"71335138","ids":",pr71335138,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.05,"gap":215,"magType":"md","type":"earthquake","title":"M 2.3 - 3 km E of Ponce, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.5955,18.009,15.65]},"id":"pr71335138"},
- {"type":"Feature","properties":{"mag":1.6,"place":"34 km W of Anchor Point, Alaska","time":1645008768871,"updated":1645009029908,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225wiw9o","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225wiw9o.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02225wiw9o","ids":",ak02225wiw9o,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 34 km W of Anchor Point, Alaska"},"geometry":{"type":"Point","coordinates":[-152.4368,59.8144,80.2]},"id":"ak02225wiw9o"},
- {"type":"Feature","properties":{"mag":1.1,"place":"2km NNW of Loma Linda, CA","time":1645008190910,"updated":1645031220279,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187336","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187336.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"ci","code":"40187336","ids":",ci40187336,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":49,"dmin":0.04199,"rms":0.17,"gap":43,"magType":"ml","type":"earthquake","title":"M 1.1 - 2km NNW of Loma Linda, CA"},"geometry":{"type":"Point","coordinates":[-117.2736667,34.064,11.64]},"id":"ci40187336"},
- {"type":"Feature","properties":{"mag":2.53,"place":"4km NW of Petrolia, CA","time":1645007808600,"updated":1645077809000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc71127199","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc71127199.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":99,"net":"nc","code":"71127199","ids":",nc71127199,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.04262,"rms":0.09,"gap":182,"magType":"md","type":"earthquake","title":"M 2.5 - 4km NW of Petrolia, CA"},"geometry":{"type":"Point","coordinates":[-124.3243333,40.3516667,28.29]},"id":"nc71127199"},
- {"type":"Feature","properties":{"mag":-0.75,"place":"8 km W of Akutan, Alaska","time":1645006613820,"updated":1645056868160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049698","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049698.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049698","ids":",av91049698,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.3,"gap":189,"magType":"ml","type":"earthquake","title":"M -0.8 - 8 km W of Akutan, Alaska"},"geometry":{"type":"Point","coordinates":[-165.909333333333,54.1218333333333,3.44]},"id":"av91049698"},
- {"type":"Feature","properties":{"mag":0.9,"place":"9 km NE of Wolf Creek, Utah","time":1645005922420,"updated":1645029385700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482177","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482177.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"uu","code":"60482177","ids":",uu60482177,","sources":",uu,","types":",origin,phase-data,","nst":15,"dmin":0.1933,"rms":0.14,"gap":65,"magType":"md","type":"earthquake","title":"M 0.9 - 9 km NE of Wolf Creek, Utah"},"geometry":{"type":"Point","coordinates":[-111.7533333,41.4028333,1.56]},"id":"uu60482177"},
- {"type":"Feature","properties":{"mag":2.2,"place":"6km WNW of Walker, CA","time":1645005811350,"updated":1645055893437,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693561","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693561.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"nc","code":"73693561","ids":",nc73693561,nn00833951,","sources":",nc,nn,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04528,"rms":0.06,"gap":95,"magType":"md","type":"earthquake","title":"M 2.2 - 6km WNW of Walker, CA"},"geometry":{"type":"Point","coordinates":[-119.5341667,38.542,3.9]},"id":"nc73693561"},
- {"type":"Feature","properties":{"mag":0.88,"place":"4km SSW of Clayton, CA","time":1645005570460,"updated":1645006390452,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693556","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693556.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73693556","ids":",nc73693556,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.1281,"rms":0.01,"gap":154,"magType":"md","type":"earthquake","title":"M 0.9 - 4km SSW of Clayton, CA"},"geometry":{"type":"Point","coordinates":[-121.9564972,37.9075012,10.28]},"id":"nc73693556"},
- {"type":"Feature","properties":{"mag":4.6,"place":"3 km NW of Telica, Nicaragua","time":1645005367145,"updated":1645025375235,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glaw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glaw.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000glaw","ids":",us7000glaw,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.08,"rms":0.87,"gap":129,"magType":"mb","type":"earthquake","title":"M 4.6 - 3 km NW of Telica, Nicaragua"},"geometry":{"type":"Point","coordinates":[-86.8818,12.5456,171.26]},"id":"us7000glaw"},
- {"type":"Feature","properties":{"mag":1.7,"place":"30 km WNW of Petersville, Alaska","time":1645005067214,"updated":1645005373826,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225vx5qs","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225vx5qs.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02225vx5qs","ids":",ak02225vx5qs,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 30 km WNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3347,62.5621,77.5]},"id":"ak02225vx5qs"},
- {"type":"Feature","properties":{"mag":0.8,"place":"29 km SE of Mina, Nevada","time":1645005052753,"updated":1645036969050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833950","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833950.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"nn","code":"00833950","ids":",nn00833950,","sources":",nn,","types":",origin,phase-data,","nst":12,"dmin":0.062,"rms":0.1519,"gap":162.75,"magType":"ml","type":"earthquake","title":"M 0.8 - 29 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.9009,38.1807,13.7]},"id":"nn00833950"},
- {"type":"Feature","properties":{"mag":0.94,"place":"4km W of Cobb, CA","time":1645004935490,"updated":1645008082607,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693551","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693551.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73693551","ids":",nc73693551,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.01138,"rms":0.13,"gap":106,"magType":"md","type":"earthquake","title":"M 0.9 - 4km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7668304,38.8193321,-0.84]},"id":"nc73693551"},
- {"type":"Feature","properties":{"mag":1.25,"place":"9km NNE of Taft, CA","time":1645004856300,"updated":1645030691241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187328","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187328.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40187328","ids":",ci40187328,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.0639,"rms":0.14,"gap":115,"magType":"ml","type":"earthquake","title":"M 1.3 - 9km NNE of Taft, CA"},"geometry":{"type":"Point","coordinates":[-119.4085,35.2093333,22.54]},"id":"ci40187328"},
- {"type":"Feature","properties":{"mag":0.9,"place":"0 km W of Plumas Eureka, California","time":1645004820591,"updated":1645065439346,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834010","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834010.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nn","code":"00834010","ids":",nn00834010,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.164,"rms":0.178,"gap":250.25,"magType":"ml","type":"earthquake","title":"M 0.9 - 0 km W of Plumas Eureka, California"},"geometry":{"type":"Point","coordinates":[-120.6612,39.7908,6.6]},"id":"nn00834010"},
- {"type":"Feature","properties":{"mag":0.36,"place":"10km SE of Anza, CA","time":1645004696480,"updated":1645030424925,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187320","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187320.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40187320","ids":",ci40187320,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.01128,"rms":0.09,"gap":73,"magType":"ml","type":"earthquake","title":"M 0.4 - 10km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5895,33.493,9.92]},"id":"ci40187320"},
- {"type":"Feature","properties":{"mag":3.05,"place":"6 km SE of Maria Antonia, Puerto Rico","time":1645003981600,"updated":1645008434590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335133","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335133.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":143,"net":"pr","code":"71335133","ids":",pr71335133,","sources":",pr,","types":",origin,phase-data,","nst":12,"dmin":null,"rms":0.24,"gap":194,"magType":"md","type":"earthquake","title":"M 3.1 - 6 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8471666666667,17.9363333333333,10.76]},"id":"pr71335133"},
- {"type":"Feature","properties":{"mag":5,"place":"47 km NNW of Nuku‘alofa, Tonga","time":1645003723934,"updated":1645043010040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glap","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glap.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":385,"net":"us","code":"7000glap","ids":",us7000glap,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":6.863,"rms":0.7,"gap":100,"magType":"mb","type":"earthquake","title":"M 5.0 - 47 km NNW of Nuku‘alofa, Tonga"},"geometry":{"type":"Point","coordinates":[-175.4129,-20.7628,10]},"id":"us7000glap"},
- {"type":"Feature","properties":{"mag":1.6,"place":"30 km SE of Mina, Nevada","time":1645002574784,"updated":1645032117712,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833947","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833947.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nn","code":"00833947","ids":",nn00833947,","sources":",nn,","types":",origin,phase-data,","nst":18,"dmin":0.077,"rms":0.146,"gap":107.39,"magType":"ml","type":"earthquake","title":"M 1.6 - 30 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8821,38.1866,9.5]},"id":"nn00833947"},
- {"type":"Feature","properties":{"mag":1.77,"place":"7km WNW of The Geysers, CA","time":1645002046000,"updated":1645015991426,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693541","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693541.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":48,"net":"nc","code":"73693541","ids":",nc73693541,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.003136,"rms":0.04,"gap":52,"magType":"md","type":"earthquake","title":"M 1.8 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8251648,38.8088341,2.06]},"id":"nc73693541"},
- {"type":"Feature","properties":{"mag":0.86,"place":"9km NW of The Geysers, CA","time":1645001987850,"updated":1645002910120,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693531","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693531.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693531","ids":",nc73693531,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.005594,"rms":0,"gap":128,"magType":"md","type":"earthquake","title":"M 0.9 - 9km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.828331,38.8388329,2.21]},"id":"nc73693531"},
- {"type":"Feature","properties":{"mag":1.1,"place":"13 km NNE of Houston, Alaska","time":1645001940440,"updated":1645002128529,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225vdfbw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225vdfbw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"02225vdfbw","ids":",ak02225vdfbw,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.4,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 13 km NNE of Houston, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7334,61.7464,43.2]},"id":"ak02225vdfbw"},
- {"type":"Feature","properties":{"mag":-0.07,"place":"62 km ENE of Pedro Bay, Alaska","time":1645001884760,"updated":1645042733070,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91492016","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91492016.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91492016","ids":",av91492016,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.11,"gap":170,"magType":"ml","type":"earthquake","title":"M -0.1 - 62 km ENE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.089333333333,60.027,2.45]},"id":"av91492016"},
- {"type":"Feature","properties":{"mag":1.3,"place":"27 km SSW of Mina, Nevada","time":1645001861796,"updated":1645033242141,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833945","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833945.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833945","ids":",nn00833945,","sources":",nn,","types":",origin,phase-data,","nst":17,"dmin":0.204,"rms":0.1106,"gap":175.22,"magType":"ml","type":"earthquake","title":"M 1.3 - 27 km SSW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.2389,38.1608,9]},"id":"nn00833945"},
- {"type":"Feature","properties":{"mag":1.3,"place":"31 km SE of Mina, Nevada","time":1645001800580,"updated":1645033801254,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833944","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833944.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833944","ids":",nn00833944,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.064,"rms":0.1485,"gap":110.69,"magType":"ml","type":"earthquake","title":"M 1.3 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8883,38.1697,10.2]},"id":"nn00833944"},
- {"type":"Feature","properties":{"mag":1.5,"place":"68 km N of Petersville, Alaska","time":1645001168317,"updated":1645001367218,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225vanmn","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225vanmn.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02225vanmn","ids":",ak02225vanmn,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.22,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 68 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5271,63.097,29.2]},"id":"ak02225vanmn"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"46 km ESE of Beatty, Nevada","time":1645000710577,"updated":1645065413334,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833991","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833991.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833991","ids":",nn00833991,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.064,"rms":0.0901,"gap":208.75,"magType":"ml","type":"earthquake","title":"M -0.1 - 46 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2926,36.7282,7.5]},"id":"nn00833991"},
- {"type":"Feature","properties":{"mag":1.7,"place":"39 km WSW of Denali Park, Alaska","time":1645000560756,"updated":1645000936437,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225v8epb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225v8epb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02225v8epb","ids":",ak02225v8epb,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 39 km WSW of Denali Park, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6354,63.5786,29.9]},"id":"ak02225v8epb"},
- {"type":"Feature","properties":{"mag":1.1,"place":"56 km SSW of Rachel, Nevada","time":1645000244887,"updated":1645065410899,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833990","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833990.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833990","ids":",nn00833990,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.016,"rms":0.1399,"gap":162.39,"magType":"ml","type":"earthquake","title":"M 1.1 - 56 km SSW of Rachel, Nevada"},"geometry":{"type":"Point","coordinates":[-116.003,37.1825,2.9]},"id":"nn00833990"},
- {"type":"Feature","properties":{"mag":1.7,"place":"Central Alaska","time":1644999883729,"updated":1645000064672,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225v60lw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225v60lw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02225v60lw","ids":",ak02225v60lw,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - Central Alaska"},"geometry":{"type":"Point","coordinates":[-150.7558,63.0383,105.2]},"id":"ak02225v60lw"},
- {"type":"Feature","properties":{"mag":1.28,"place":"15km E of Seven Trees, CA","time":1644999822720,"updated":1645004056232,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693521","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693521.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":25,"net":"nc","code":"73693521","ids":",nc73693521,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.03198,"rms":0.03,"gap":59,"magType":"md","type":"earthquake","title":"M 1.3 - 15km E of Seven Trees, CA"},"geometry":{"type":"Point","coordinates":[-121.6715012,37.2910004,1.39]},"id":"nc73693521"},
- {"type":"Feature","properties":{"mag":0.76,"place":"6km NW of The Geysers, CA","time":1644999720060,"updated":1645000330862,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693516","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693516.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":9,"net":"nc","code":"73693516","ids":",nc73693516,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.01216,"rms":0.02,"gap":58,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8136673,38.8078346,2.09]},"id":"nc73693516"},
- {"type":"Feature","properties":{"mag":0.31,"place":"36 km NNE of Amboy, Washington","time":1644999568600,"updated":1645065759370,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817166","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817166.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61817166","ids":",uw61817166,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.009919,"rms":0.18,"gap":132,"magType":"ml","type":"earthquake","title":"M 0.3 - 36 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1885,46.19,4.85]},"id":"uw61817166"},
- {"type":"Feature","properties":{"mag":1.4,"place":"11 km NE of Moose Pass, Alaska","time":1644999542035,"updated":1644999723944,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225v4ut7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225v4ut7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02225v4ut7","ids":",ak02225v4ut7,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.36,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 11 km NE of Moose Pass, Alaska"},"geometry":{"type":"Point","coordinates":[-149.2155,60.5603,21.9]},"id":"ak02225v4ut7"},
- {"type":"Feature","properties":{"mag":2.42,"place":"23 km SE of Pāhala, Hawaii","time":1644999110100,"updated":1645081116040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919082","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919082.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":90,"net":"hv","code":"72919082","ids":",us7000gla7,hv72919082,","sources":",us,hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.289999992,"gap":235,"magType":"ml","type":"earthquake","title":"M 2.4 - 23 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.315170288086,19.0575008392334,-0.349999994039536]},"id":"hv72919082"},
- {"type":"Feature","properties":{"mag":2.1,"place":"54 km S of Whites City, New Mexico","time":1644998768887,"updated":1645050346077,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dgre","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dgre.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"tx","code":"2022dgre","ids":",tx2022dgre,","sources":",tx,","types":",origin,phase-data,","nst":21,"dmin":0.02553133783,"rms":0.3,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.1 - 54 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.2865436,31.68921886,8.39387207]},"id":"tx2022dgre"},
- {"type":"Feature","properties":{"mag":-1.03,"place":"61 km ENE of Pedro Bay, Alaska","time":1644998414210,"updated":1645042645640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91491976","ids":",av91491976,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.1,"gap":177,"magType":"ml","type":"earthquake","title":"M -1.0 - 61 km ENE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.108,60.014,0.7]},"id":"av91491976"},
- {"type":"Feature","properties":{"mag":0.34,"place":"8km N of Anza, CA","time":1644998242910,"updated":1645029603783,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187312","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187312.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40187312","ids":",ci40187312,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.04178,"rms":0.1,"gap":69,"magType":"ml","type":"earthquake","title":"M 0.3 - 8km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.68,33.6273333,13.41]},"id":"ci40187312"},
- {"type":"Feature","properties":{"mag":4.1,"place":"17 km SSW of Nueva Concepción, Guatemala","time":1644998193369,"updated":1645001187040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gla3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gla3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":259,"net":"us","code":"7000gla3","ids":",us7000gla3,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.564,"rms":0.73,"gap":152,"magType":"mb","type":"earthquake","title":"M 4.1 - 17 km SSW of Nueva Concepción, Guatemala"},"geometry":{"type":"Point","coordinates":[-91.3829,14.0603,67.2]},"id":"us7000gla3"},
- {"type":"Feature","properties":{"mag":1.5,"place":"36 km SE of Mina, Nevada","time":1644998108600,"updated":1645032682435,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833942","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833942.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"nn","code":"00833942","ids":",nn00833942,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.122,"rms":0.1293,"gap":119.77,"magType":"ml","type":"earthquake","title":"M 1.5 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7814,38.1839,6.7]},"id":"nn00833942"},
- {"type":"Feature","properties":{"mag":1.19,"place":"8km NW of The Geysers, CA","time":1644997913810,"updated":1645010603873,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693506","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693506.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"nc","code":"73693506","ids":",nc73693506,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.01114,"rms":0.02,"gap":56,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.817337,38.8330002,1.61]},"id":"nc73693506"},
- {"type":"Feature","properties":{"mag":-0.2,"place":"59 km SSW of Rachel, Nevada","time":1644997898250,"updated":1645065409298,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833989","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833989.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833989","ids":",nn00833989,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.06,"rms":0.038,"gap":328.21,"magType":"ml","type":"earthquake","title":"M -0.2 - 59 km SSW of Rachel, Nevada"},"geometry":{"type":"Point","coordinates":[-115.8771,37.1161,8.2]},"id":"nn00833989"},
- {"type":"Feature","properties":{"mag":1.88999999,"place":"19 km WNW of Volcano, Hawaii","time":1644997885560,"updated":1644998084590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919072","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919072.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":55,"net":"hv","code":"72919072","ids":",hv72919072,","sources":",hv,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.25999999,"gap":133,"magType":"md","type":"earthquake","title":"M 1.9 - 19 km WNW of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.419662475586,19.4780006408691,-1.97000002861023]},"id":"hv72919072"},
- {"type":"Feature","properties":{"mag":4.5,"place":"4 km E of Nueva Concepción, Guatemala","time":1644997816194,"updated":1645031316956,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gla0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gla0.geojson","felt":6,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":314,"net":"us","code":"7000gla0","ids":",us7000gla0,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.468,"rms":0.77,"gap":149,"magType":"mb","type":"earthquake","title":"M 4.5 - 4 km E of Nueva Concepción, Guatemala"},"geometry":{"type":"Point","coordinates":[-91.2625,14.1983,86.25]},"id":"us7000gla0"},
- {"type":"Feature","properties":{"mag":0.92,"place":"11km W of Toms Place, CA","time":1644997363820,"updated":1645031355010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693501","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693501.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"nc","code":"73693501","ids":",nc73693501,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.04335,"rms":0.03,"gap":154,"magType":"md","type":"earthquake","title":"M 0.9 - 11km W of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8043333,37.5513333,5.59]},"id":"nc73693501"},
- {"type":"Feature","properties":{"mag":1.15,"place":"14km SW of Searles Valley, CA","time":1644996475870,"updated":1645029077086,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187304","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187304.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40187304","ids":",ci40187304,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.1161,"rms":0.13,"gap":88,"magType":"ml","type":"earthquake","title":"M 1.2 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.526,35.6905,7.44]},"id":"ci40187304"},
- {"type":"Feature","properties":{"mag":0.81,"place":"8km N of Anza, CA","time":1644996191020,"updated":1645027046274,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187288","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187288.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40187288","ids":",ci40187288,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.04295,"rms":0.12,"gap":47,"magType":"ml","type":"earthquake","title":"M 0.8 - 8km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6801667,33.6261667,13.49]},"id":"ci40187288"},
- {"type":"Feature","properties":{"mag":0.69,"place":"21km E of Little Lake, CA","time":1644996121610,"updated":1645025942399,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187296","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187296.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40187296","ids":",ci40187296,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.02531,"rms":0.1,"gap":141,"magType":"ml","type":"earthquake","title":"M 0.7 - 21km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6741667,35.9315,3.84]},"id":"ci40187296"},
- {"type":"Feature","properties":{"mag":1.14,"place":"8km N of Anza, CA","time":1644995639550,"updated":1645026731220,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187272","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187272.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40187272","ids":",ci40187272,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":49,"dmin":0.04497,"rms":0.15,"gap":48,"magType":"ml","type":"earthquake","title":"M 1.1 - 8km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6805,33.6241667,13.35]},"id":"ci40187272"},
- {"type":"Feature","properties":{"mag":6.2,"place":"0 km SSE of Nueva Concepción, Guatemala","time":1644995545850,"updated":1645108841358,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl8w","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl8w.geojson","felt":428,"cdi":7.5,"mmi":5.336,"alert":"green","status":"reviewed","tsunami":0,"sig":912,"net":"us","code":"7000gl8w","ids":",us7000gl8w,","sources":",us,","types":",dyfi,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":1.5,"rms":1.31,"gap":44,"magType":"mww","type":"earthquake","title":"M 6.2 - 0 km SSE of Nueva Concepción, Guatemala"},"geometry":{"type":"Point","coordinates":[-91.2969,14.1934,83.61]},"id":"us7000gl8w"},
- {"type":"Feature","properties":{"mag":4.9,"place":"south of the Fiji Islands","time":1644995416445,"updated":1644997772040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl8y","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl8y.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gl8y","ids":",us7000gl8y,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.244,"rms":0.83,"gap":119,"magType":"mb","type":"earthquake","title":"M 4.9 - south of the Fiji Islands"},"geometry":{"type":"Point","coordinates":[-176.4604,-25.2057,10]},"id":"us7000gl8y"},
- {"type":"Feature","properties":{"mag":1.24,"place":"10km ENE of Cabazon, CA","time":1644995402510,"updated":1645026246850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187264","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187264.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40187264","ids":",ci40187264,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":58,"dmin":0.09058,"rms":0.13,"gap":28,"magType":"ml","type":"earthquake","title":"M 1.2 - 10km ENE of Cabazon, CA"},"geometry":{"type":"Point","coordinates":[-116.6853333,33.9513333,9.17]},"id":"ci40187264"},
- {"type":"Feature","properties":{"mag":0.67,"place":"8km N of Anza, CA","time":1644995313110,"updated":1645022031374,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187256","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187256.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40187256","ids":",ci40187256,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.06835,"rms":0.12,"gap":50,"magType":"ml","type":"earthquake","title":"M 0.7 - 8km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.676,33.631,12.62]},"id":"ci40187256"},
- {"type":"Feature","properties":{"mag":0.9,"place":"8km N of Anza, CA","time":1644995280040,"updated":1645025639080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187248","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187248.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40187248","ids":",ci40187248,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.04417,"rms":0.14,"gap":48,"magType":"ml","type":"earthquake","title":"M 0.9 - 8km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6821667,33.6251667,13.84]},"id":"ci40187248"},
- {"type":"Feature","properties":{"mag":1.4,"place":"11 km ENE of Point Possession, Alaska","time":1644994950466,"updated":1644995116364,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225ufu86","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225ufu86.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02225ufu86","ids":",ak02225ufu86,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 11 km ENE of Point Possession, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5027,60.9657,15.9]},"id":"ak02225ufu86"},
- {"type":"Feature","properties":{"mag":1.67,"place":"24km ESE of Ridgecrest, CA","time":1644994110080,"updated":1645025024668,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187240","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187240.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"ci","code":"40187240","ids":",ci40187240,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.0598,"rms":0.15,"gap":72,"magType":"ml","type":"earthquake","title":"M 1.7 - 24km ESE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.4378333,35.524,6.63]},"id":"ci40187240"},
- {"type":"Feature","properties":{"mag":1.83,"place":"1 km E of Fuig, Puerto Rico","time":1644994040170,"updated":1644997200400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335103","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335103.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":52,"net":"pr","code":"71335103","ids":",pr71335103,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.04,"gap":200,"magType":"md","type":"earthquake","title":"M 1.8 - 1 km E of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9048333333333,17.9876666666667,13.73]},"id":"pr71335103"},
- {"type":"Feature","properties":{"mag":3.3,"place":"24 km ESE of Chignik, Alaska","time":1644993849266,"updated":1644994505233,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225u3d3c","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225u3d3c.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":168,"net":"ak","code":"02225u3d3c","ids":",ak02225u3d3c,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.3 - 24 km ESE of Chignik, Alaska"},"geometry":{"type":"Point","coordinates":[-158.0098,56.2465,65.4]},"id":"ak02225u3d3c"},
- {"type":"Feature","properties":{"mag":2.75,"place":"8 km E of Pāhala, Hawaii","time":1644993717240,"updated":1645080492040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72919032","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72919032.geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":117,"net":"hv","code":"72919032","ids":",hv72919032,us7000gl8r,","sources":",hv,us,","types":",dyfi,origin,phase-data,","nst":55,"dmin":null,"rms":0.13,"gap":157,"magType":"ml","type":"earthquake","title":"M 2.8 - 8 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.394833333333,19.2071666666667,31.98]},"id":"hv72919032"},
- {"type":"Feature","properties":{"mag":1.9,"place":"1 km E of Gorham, New Hampshire","time":1644993272989,"updated":1645080534040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gll0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gll0.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"us","code":"7000gll0","ids":",us7000gll0,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.185,"rms":0.45,"gap":84,"magType":"ml","type":"earthquake","title":"M 1.9 - 1 km E of Gorham, New Hampshire"},"geometry":{"type":"Point","coordinates":[-71.1597,44.3886,4.87]},"id":"us7000gll0"},
- {"type":"Feature","properties":{"mag":1,"place":"30 km SE of Mina, Nevada","time":1644993065156,"updated":1645036410894,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833930","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833930.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833930","ids":",nn00833930,","sources":",nn,","types":",origin,phase-data,","nst":13,"dmin":0.075,"rms":0.1228,"gap":142.14,"magType":"ml","type":"earthquake","title":"M 1.0 - 30 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8826,38.1834,10.1]},"id":"nn00833930"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km W of Cobb, CA","time":1644992287490,"updated":1644993071119,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693476","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693476.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693476","ids":",nc73693476,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01355,"rms":0.02,"gap":89,"magType":"md","type":"earthquake","title":"M 0.9 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8184967,38.8358345,2.14]},"id":"nc73693476"},
- {"type":"Feature","properties":{"mag":0.8,"place":"2 km SSE of Silver Springs, Nevada","time":1644992205222,"updated":1645065438151,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834008","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834008.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"nn","code":"00834008","ids":",nn00834008,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.343,"rms":0.1499,"gap":87.22,"magType":"ml","type":"earthquake","title":"M 0.8 - 2 km SSE of Silver Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-119.214,39.3946,12.7]},"id":"nn00834008"},
- {"type":"Feature","properties":{"mag":4.1,"place":"86 km SSE of Arica, Chile","time":1644991684986,"updated":1645026574405,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl8e","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl8e.geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":259,"net":"us","code":"7000gl8e","ids":",us7000gl8e,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.886,"rms":0.36,"gap":155,"magType":"mb","type":"earthquake","title":"M 4.1 - 86 km SSE of Arica, Chile"},"geometry":{"type":"Point","coordinates":[-70.1188,-19.2367,53.8]},"id":"us7000gl8e"},
- {"type":"Feature","properties":{"mag":0.52,"place":"8km N of Anza, CA","time":1644991297090,"updated":1645025825496,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187232","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187232.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40187232","ids":",ci40187232,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04273,"rms":0.05,"gap":72,"magType":"ml","type":"earthquake","title":"M 0.5 - 8km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6845,33.627,13.67]},"id":"ci40187232"},
- {"type":"Feature","properties":{"mag":1.74,"place":"2 km WNW of Loyal, Oklahoma","time":1644991128310,"updated":1645108230602,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgmz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgmz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":47,"net":"ok","code":"2022dgmz","ids":",ok2022dgmz,","sources":",ok,","types":",origin,phase-data,","nst":50,"dmin":0.1268751028,"rms":0.27,"gap":64,"magType":"ml","type":"earthquake","title":"M 1.7 - 2 km WNW of Loyal, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.14283333,35.975,6.18]},"id":"ok2022dgmz"},
- {"type":"Feature","properties":{"mag":1.5,"place":"Central Alaska","time":1644990943821,"updated":1644991159220,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225tkcv7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225tkcv7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02225tkcv7","ids":",ak02225tkcv7,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.75,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - Central Alaska"},"geometry":{"type":"Point","coordinates":[-150.3794,62.7002,66.7]},"id":"ak02225tkcv7"},
- {"type":"Feature","properties":{"mag":1.6,"place":"68 km ENE of Chase, Alaska","time":1644990315035,"updated":1644990508095,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225ti5m7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225ti5m7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02225ti5m7","ids":",ak02225ti5m7,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.97,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 68 km ENE of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-148.8735,62.6819,22.6]},"id":"ak02225ti5m7"},
- {"type":"Feature","properties":{"mag":1.3,"place":"63 km W of Tyonek, Alaska","time":1644990175198,"updated":1644990377753,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225thlkf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225thlkf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02225thlkf","ids":",ak02225thlkf,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.34,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 63 km W of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.3104,61.0385,97.8]},"id":"ak02225thlkf"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6 km NE of Magna, Utah","time":1644990129550,"updated":1645020967420,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482162","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482162.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"uu","code":"60482162","ids":",uu60482162,","sources":",uu,","types":",origin,phase-data,","nst":17,"dmin":0.01527,"rms":0.15,"gap":51,"magType":"md","type":"earthquake","title":"M 0.8 - 6 km NE of Magna, Utah"},"geometry":{"type":"Point","coordinates":[-112.0426667,40.7413333,5.44]},"id":"uu60482162"},
- {"type":"Feature","properties":{"mag":5.5,"place":"South Sandwich Islands region","time":1644989976688,"updated":1645076595730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl7s","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl7s.geojson","felt":null,"cdi":null,"mmi":3.64,"alert":"green","status":"reviewed","tsunami":0,"sig":465,"net":"us","code":"7000gl7s","ids":",us7000gl7s,","sources":",us,","types":",losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":7.296,"rms":1.01,"gap":23,"magType":"mww","type":"earthquake","title":"M 5.5 - South Sandwich Islands region"},"geometry":{"type":"Point","coordinates":[-25.63,-58.3795,35.33]},"id":"us7000gl7s"},
- {"type":"Feature","properties":{"mag":1.1,"place":"28 km N of Four Mile Road, Alaska","time":1644989663714,"updated":1644989976994,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225tfter","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225tfter.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"02225tfter","ids":",ak02225tfter,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 28 km N of Four Mile Road, Alaska"},"geometry":{"type":"Point","coordinates":[-149.1105,64.8605,17.8]},"id":"ak02225tfter"},
- {"type":"Feature","properties":{"mag":1.6,"place":"66 km NE of Whittier, Alaska","time":1644988845398,"updated":1645033702022,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225tcv1y","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225tcv1y.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02225tcv1y","ids":",ak02225tcv1y,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.07,"gap":null,"magType":"ml","type":"ice quake","title":"M 1.6 Ice Quake - 66 km NE of Whittier, Alaska"},"geometry":{"type":"Point","coordinates":[-147.7993,61.184,27.6]},"id":"ak02225tcv1y"},
- {"type":"Feature","properties":{"mag":0.99,"place":"7km WNW of The Geysers, CA","time":1644988445810,"updated":1644989227717,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693466","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693466.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73693466","ids":",nc73693466,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.002568,"rms":0.02,"gap":68,"magType":"md","type":"earthquake","title":"M 1.0 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8271637,38.8068352,2.34]},"id":"nc73693466"},
- {"type":"Feature","properties":{"mag":0.1,"place":"4 km SSW of Coleville, California","time":1644988147224,"updated":1645065435736,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834007","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834007.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00834007","ids":",nn00834007,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.054,"rms":0.1234,"gap":236.54,"magType":"ml","type":"earthquake","title":"M 0.1 - 4 km SSW of Coleville, California"},"geometry":{"type":"Point","coordinates":[-119.5231,38.5324,6.9]},"id":"nn00834007"},
- {"type":"Feature","properties":{"mag":1.56,"place":"10 km ESE of Canadian, Oklahoma","time":1644987938460,"updated":1645110748008,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dglf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dglf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"ok","code":"2022dglf","ids":",ok2022dglf,","sources":",ok,","types":",origin,phase-data,","nst":34,"dmin":0.09538128294,"rms":0.4,"gap":93,"magType":"ml","type":"earthquake","title":"M 1.6 - 10 km ESE of Canadian, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.5545,35.13733333,7]},"id":"ok2022dglf"},
- {"type":"Feature","properties":{"mag":0.09,"place":"37 km NNE of Amboy, Washington","time":1644987583910,"updated":1645066321660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61817136","ids":",uw61817136,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.004377,"rms":0.14,"gap":91,"magType":"mh","type":"earthquake","title":"M 0.1 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19216666666667,46.1955,2.34]},"id":"uw61817136"},
- {"type":"Feature","properties":{"mag":1.4,"place":"16 km SW of Hope, Alaska","time":1644987397659,"updated":1644987692833,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225sz4mt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225sz4mt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02225sz4mt","ids":",ak02225sz4mt,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 16 km SW of Hope, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8915,60.8272,34.4]},"id":"ak02225sz4mt"},
- {"type":"Feature","properties":{"mag":3.7,"place":"16 km NNE of Otra Banda, Dominican Republic","time":1644986365200,"updated":1645065266040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022047000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022047000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":211,"net":"pr","code":"2022047000","ids":",us7000gl7u,pr2022047000,","sources":",us,pr,","types":",origin,phase-data,","nst":14,"dmin":0.3755,"rms":0.33,"gap":175,"magType":"md","type":"earthquake","title":"M 3.7 - 16 km NNE of Otra Banda, Dominican Republic"},"geometry":{"type":"Point","coordinates":[-68.631,18.7945,100]},"id":"pr2022047000"},
- {"type":"Feature","properties":{"mag":1.9,"place":"38 km WNW of Nanwalek, Alaska","time":1644986363349,"updated":1644987251891,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225svgde","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225svgde.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02225svgde","ids":",ak02225svgde,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.66,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 38 km WNW of Nanwalek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.582,59.4464,82.5]},"id":"ak02225svgde"},
- {"type":"Feature","properties":{"mag":0.45,"place":"84 km W of Adak, Alaska","time":1644986123910,"updated":1645038638620,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491886","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491886.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"av","code":"91491886","ids":",av91491886,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.04,"gap":214,"magType":"ml","type":"earthquake","title":"M 0.5 - 84 km W of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-177.860666666667,51.8631666666667,7.79]},"id":"av91491886"},
- {"type":"Feature","properties":{"mag":2.15,"place":"southeastern Missouri","time":1644986020460,"updated":1645021250129,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nm60381751","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nm60381751.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":71,"net":"nm","code":"60381751","ids":",nm60381751,","sources":",nm,","types":",dyfi,origin,phase-data,","nst":36,"dmin":0.05149,"rms":0.17,"gap":77,"magType":"md","type":"earthquake","title":"M 2.2 - southeastern Missouri"},"geometry":{"type":"Point","coordinates":[-89.3523333,36.801,7.75]},"id":"nm60381751"},
- {"type":"Feature","properties":{"mag":4.9,"place":"34 km S of São Martinho, Portugal","time":1644985958295,"updated":1645066713160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl7h","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl7h.geojson","felt":92,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":409,"net":"us","code":"7000gl7h","ids":",us7000gl7h,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.543,"rms":0.45,"gap":67,"magType":"mb","type":"earthquake","title":"M 4.9 - 34 km S of São Martinho, Portugal"},"geometry":{"type":"Point","coordinates":[-16.9084,32.3365,10.63]},"id":"us7000gl7h"},
- {"type":"Feature","properties":{"mag":2.6,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644985397383,"updated":1645063873040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glej","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glej.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"7000glej","ids":",av91491866,us7000glej,","sources":",av,us,","types":",origin,phase-data,","nst":null,"dmin":0.187,"rms":0.21,"gap":314,"magType":"ml","type":"earthquake","title":"M 2.6 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.2138,51.9866,10]},"id":"us7000glej"},
- {"type":"Feature","properties":{"mag":1.36,"place":"22km N of California City, CA","time":1644984698940,"updated":1645024676176,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187216","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187216.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":28,"net":"ci","code":"40187216","ids":",ci40187216,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.1029,"rms":0.17,"gap":54,"magType":"ml","type":"earthquake","title":"M 1.4 - 22km N of California City, CA"},"geometry":{"type":"Point","coordinates":[-117.9543333,35.3195,8.78]},"id":"ci40187216"},
- {"type":"Feature","properties":{"mag":2.07,"place":"16 km SSE of Sunnyside, Utah","time":1644983708790,"updated":1645027562470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482157","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482157.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":66,"net":"uu","code":"60482157","ids":",uu60482157,","sources":",uu,","types":",origin,phase-data,","nst":11,"dmin":0.01788,"rms":0.15,"gap":199,"magType":"md","type":"earthquake","title":"M 2.1 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3023333,39.4211667,-2.89]},"id":"uu60482157"},
- {"type":"Feature","properties":{"mag":0.6,"place":"10 km ESE of Lazy Mountain, Alaska","time":1644983132331,"updated":1644983355082,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225sbbqp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225sbbqp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"ak","code":"02225sbbqp","ids":",ak02225sbbqp,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.6 - 10 km ESE of Lazy Mountain, Alaska"},"geometry":{"type":"Point","coordinates":[-148.759,61.5938,30.9]},"id":"ak02225sbbqp"},
- {"type":"Feature","properties":{"mag":0.99,"place":"7km NW of The Geysers, CA","time":1644983100980,"updated":1644984734284,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693461","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693461.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73693461","ids":",nc73693461,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.001284,"rms":0.02,"gap":65,"magType":"md","type":"earthquake","title":"M 1.0 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8103333,38.8246651,2.29]},"id":"nc73693461"},
- {"type":"Feature","properties":{"mag":1.6,"place":"41 km SSE of Glacier View, Alaska","time":1644982652740,"updated":1644982864207,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225s9m0u","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225s9m0u.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02225s9m0u","ids":",ak02225s9m0u,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.2,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 41 km SSE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.3278,61.4726,34.2]},"id":"ak02225s9m0u"},
- {"type":"Feature","properties":{"mag":1.2,"place":"36 km E of Minto, Alaska","time":1644981974148,"updated":1644982463453,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225s77qp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225s77qp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02225s77qp","ids":",ak02225s77qp,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.34,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 36 km E of Minto, Alaska"},"geometry":{"type":"Point","coordinates":[-148.5659,65.1466,3.1]},"id":"ak02225s77qp"},
- {"type":"Feature","properties":{"mag":2.01999998,"place":"3 km E of Pāhala, Hawaii","time":1644981361240,"updated":1644981558310,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918892","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918892.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":63,"net":"hv","code":"72918892","ids":",hv72918892,","sources":",hv,","types":",origin,phase-data,","nst":37,"dmin":null,"rms":0.109999999,"gap":125,"magType":"md","type":"earthquake","title":"M 2.0 - 3 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.445663452148,19.201000213623,35.4300003051758]},"id":"hv72918892"},
- {"type":"Feature","properties":{"mag":1.1,"place":"8km ENE of Alum Rock, CA","time":1644981248640,"updated":1644995111339,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693456","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693456.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nc","code":"73693456","ids":",nc73693456,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.03572,"rms":0.05,"gap":140,"magType":"md","type":"earthquake","title":"M 1.1 - 8km ENE of Alum Rock, CA"},"geometry":{"type":"Point","coordinates":[-121.7486649,37.4048347,0.92]},"id":"nc73693456"},
- {"type":"Feature","properties":{"mag":4.6,"place":"114 km WNW of Naha, Japan","time":1644981173222,"updated":1645063372040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl76","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl76.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gl76","ids":",us7000gl76,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.454,"rms":0.49,"gap":88,"magType":"mb","type":"earthquake","title":"M 4.6 - 114 km WNW of Naha, Japan"},"geometry":{"type":"Point","coordinates":[126.6553,26.6753,58.58]},"id":"us7000gl76"},
- {"type":"Feature","properties":{"mag":1.22,"place":"4 km ENE of La Parguera, Puerto Rico","time":1644980579580,"updated":1644998310930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335123","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335123.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"pr","code":"71335123","ids":",pr71335123,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.05,"gap":207,"magType":"md","type":"earthquake","title":"M 1.2 - 4 km ENE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0071666666667,17.9856666666667,13.85]},"id":"pr71335123"},
- {"type":"Feature","properties":{"mag":1.9,"place":"73 km NW of Yakutat, Alaska","time":1644980415937,"updated":1644980860348,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225s1n95","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225s1n95.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02225s1n95","ids":",ak02225s1n95,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 73 km NW of Yakutat, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6981,59.9834,0]},"id":"ak02225s1n95"},
- {"type":"Feature","properties":{"mag":2.14,"place":"2 km WSW of Fuig, Puerto Rico","time":1644980365310,"updated":1644981434240,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335088","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335088.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"pr","code":"71335088","ids":",pr71335088,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.06,"gap":173,"magType":"md","type":"earthquake","title":"M 2.1 - 2 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9371666666667,17.9748333333333,11.83]},"id":"pr71335088"},
- {"type":"Feature","properties":{"mag":1.46,"place":"4km N of San Leandro, CA","time":1644980172680,"updated":1645075850904,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693446","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693446.geojson","felt":6,"cdi":2.7,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":34,"net":"nc","code":"73693446","ids":",nc73693446,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.02312,"rms":0.03,"gap":153,"magType":"md","type":"earthquake","title":"M 1.5 - 4km N of San Leandro, CA"},"geometry":{"type":"Point","coordinates":[-122.1643295,37.7601662,1.79]},"id":"nc73693446"},
- {"type":"Feature","properties":{"mag":4.7,"place":"121 km ESE of Gorontalo, Indonesia","time":1644979609595,"updated":1644981012040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl71","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl71.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gl71","ids":",us7000gl71,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.575,"rms":1.08,"gap":58,"magType":"mb","type":"earthquake","title":"M 4.7 - 121 km ESE of Gorontalo, Indonesia"},"geometry":{"type":"Point","coordinates":[123.9941,-0.0406,96.47]},"id":"us7000gl71"},
- {"type":"Feature","properties":{"mag":4,"place":"36 km NNW of Labuan Bajo, Indonesia","time":1644978856315,"updated":1644981703040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl73","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl73.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":246,"net":"us","code":"7000gl73","ids":",us7000gl73,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.105,"rms":0.75,"gap":69,"magType":"mb","type":"earthquake","title":"M 4.0 - 36 km NNW of Labuan Bajo, Indonesia"},"geometry":{"type":"Point","coordinates":[119.8024,-8.1767,178.36]},"id":"us7000gl73"},
- {"type":"Feature","properties":{"mag":1.8,"place":"73 km NW of Yakutat, Alaska","time":1644978527189,"updated":1644978686483,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225rma3y","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225rma3y.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02225rma3y","ids":",ak02225rma3y,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.87,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 73 km NW of Yakutat, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6482,60.012,4.6]},"id":"ak02225rma3y"},
- {"type":"Feature","properties":{"mag":1.44,"place":"13km SSW of Searles Valley, CA","time":1644978096550,"updated":1645024076561,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187208","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187208.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"ci","code":"40187208","ids":",ci40187208,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.07046,"rms":0.14,"gap":67,"magType":"ml","type":"earthquake","title":"M 1.4 - 13km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4545,35.6568333,9.15]},"id":"ci40187208"},
- {"type":"Feature","properties":{"mag":2.71,"place":"6km ENE of Shasta, CA","time":1644977403750,"updated":1645087150606,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693441","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693441.geojson","felt":17,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":119,"net":"nc","code":"73693441","ids":",nc73693441,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.0544,"rms":0.09,"gap":49,"magType":"md","type":"earthquake","title":"M 2.7 - 6km ENE of Shasta, CA"},"geometry":{"type":"Point","coordinates":[-122.4296667,40.6161667,21.87]},"id":"nc73693441"},
- {"type":"Feature","properties":{"mag":4.2,"place":"45 km NNW of Bandar Abbas, Iran","time":1644977343454,"updated":1644978381040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl6t","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl6t.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gl6t","ids":",us7000gl6t,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.622,"rms":0.51,"gap":130,"magType":"mb","type":"earthquake","title":"M 4.2 - 45 km NNW of Bandar Abbas, Iran"},"geometry":{"type":"Point","coordinates":[56.1467,27.578,10]},"id":"us7000gl6t"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644977309600,"updated":1644978560663,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693436","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693436.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693436","ids":",nc73693436,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.005272,"rms":0.04,"gap":121,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.810997,38.8181648,2.59]},"id":"nc73693436"},
- {"type":"Feature","properties":{"mag":-0.47,"place":"80 km W of Salamatof, Alaska","time":1644976901980,"updated":1645037196690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491826","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491826.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91491826","ids":",av91491826,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.03,"gap":94,"magType":"ml","type":"earthquake","title":"M -0.5 - 80 km W of Salamatof, Alaska"},"geometry":{"type":"Point","coordinates":[-152.784833333333,60.5536666666667,7.07]},"id":"av91491826"},
- {"type":"Feature","properties":{"mag":0.86,"place":"42 km NE of Spencer, Idaho","time":1644976791660,"updated":1645118376440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538614","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538614.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"mb","code":"80538614","ids":",mb80538614,","sources":",mb,","types":",origin,phase-data,","nst":10,"dmin":0.16,"rms":0.14,"gap":114,"magType":"ml","type":"earthquake","title":"M 0.9 - 42 km NE of Spencer, Idaho"},"geometry":{"type":"Point","coordinates":[-111.8728333,44.6671667,11.24]},"id":"mb80538614"},
- {"type":"Feature","properties":{"mag":1.4,"place":"52 km W of Anchor Point, Alaska","time":1644976771528,"updated":1644977203984,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225r7gho","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225r7gho.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02225r7gho","ids":",ak02225r7gho,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.28,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 52 km W of Anchor Point, Alaska"},"geometry":{"type":"Point","coordinates":[-152.7581,59.6925,79.4]},"id":"ak02225r7gho"},
- {"type":"Feature","properties":{"mag":1.71,"place":"16 km SSE of Sunnyside, Utah","time":1644976607950,"updated":1645027282900,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482147","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482147.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":45,"net":"uu","code":"60482147","ids":",uu60482147,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.01745,"rms":0.11,"gap":198,"magType":"md","type":"earthquake","title":"M 1.7 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3038333,39.4183333,-2.2]},"id":"uu60482147"},
- {"type":"Feature","properties":{"mag":1.5,"place":"6 km NW of Medford, Oklahoma","time":1644976411640,"updated":1645107863183,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgex","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgex.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"ok","code":"2022dgex","ids":",ok2022dgex,","sources":",ok,","types":",origin,phase-data,","nst":51,"dmin":0.06208781625,"rms":0.39,"gap":96,"magType":"ml","type":"earthquake","title":"M 1.5 - 6 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7825,36.85433333,7.39]},"id":"ok2022dgex"},
- {"type":"Feature","properties":{"mag":2.29999995,"place":"3 km SE of Pāhala, Hawaii","time":1644976305920,"updated":1644984987966,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918847","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918847.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":82,"net":"hv","code":"72918847","ids":",hv72918847,","sources":",hv,","types":",dyfi,origin,phase-data,","nst":41,"dmin":null,"rms":0.129999995,"gap":130,"magType":"md","type":"earthquake","title":"M 2.3 - 3 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.452499389648,19.1805000305176,37.0200004577637]},"id":"hv72918847"},
- {"type":"Feature","properties":{"mag":2,"place":"8 km W of Salcha, Alaska","time":1644976257038,"updated":1644976853072,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225r5kwz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225r5kwz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"02225r5kwz","ids":",ak02225r5kwz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.67,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 8 km W of Salcha, Alaska"},"geometry":{"type":"Point","coordinates":[-147.086,64.5251,5.4]},"id":"ak02225r5kwz"},
- {"type":"Feature","properties":{"mag":2.42,"place":"24 km NW of Stanley, Idaho","time":1644975632440,"updated":1645113447050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538519","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538519.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":90,"net":"mb","code":"80538519","ids":",mb80538519,","sources":",mb,","types":",origin,phase-data,","nst":19,"dmin":0.942,"rms":0.27,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.4 - 24 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.1795,44.3498333,8.93]},"id":"mb80538519"},
- {"type":"Feature","properties":{"mag":1.55,"place":"13 km SE of Pāhala, Hawaii","time":1644975559440,"updated":1645048119610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"hv","code":"72918832","ids":",hv72918832,","sources":",hv,","types":",origin,phase-data,","nst":31,"dmin":null,"rms":0.13,"gap":199,"magType":"md","type":"earthquake","title":"M 1.6 - 13 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.393333333333,19.1083333333333,29.93]},"id":"hv72918832"},
- {"type":"Feature","properties":{"mag":4.6,"place":"Vanuatu","time":1644975329138,"updated":1644976565040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl6h","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl6h.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gl6h","ids":",us7000gl6h,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.644,"rms":0.58,"gap":114,"magType":"mb","type":"earthquake","title":"M 4.6 - Vanuatu"},"geometry":{"type":"Point","coordinates":[168.931,-18.7134,155.47]},"id":"us7000gl6h"},
- {"type":"Feature","properties":{"mag":1.3,"place":"38 km NNE of Chase, Alaska","time":1644975098036,"updated":1644975249859,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225r1gy3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225r1gy3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02225r1gy3","ids":",ak02225r1gy3,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 38 km NNE of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.819,62.7669,65.9]},"id":"ak02225r1gy3"},
- {"type":"Feature","properties":{"mag":0.85,"place":"6km W of Cobb, CA","time":1644975065080,"updated":1644977234534,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693426","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693426.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693426","ids":",nc73693426,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.007981,"rms":0.01,"gap":91,"magType":"md","type":"earthquake","title":"M 0.9 - 6km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.791832,38.8305016,1.59]},"id":"nc73693426"},
- {"type":"Feature","properties":{"mag":0,"place":"30 km NW of Indian Springs, Nevada","time":1644974756906,"updated":1645065408419,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833988","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833988.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833988","ids":",nn00833988,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.042,"rms":0.1654,"gap":258.03,"magType":"ml","type":"earthquake","title":"M 0.0 - 30 km NW of Indian Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-115.9354,36.7418,3]},"id":"nn00833988"},
- {"type":"Feature","properties":{"mag":1.53,"place":"7 km ESE of Canadian, Oklahoma","time":1644974676250,"updated":1645107296281,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgdy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgdy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ok","code":"2022dgdy","ids":",ok2022dgdy,","sources":",ok,","types":",origin,phase-data,","nst":18,"dmin":0.1070789874,"rms":0.22,"gap":107,"magType":"ml","type":"earthquake","title":"M 1.5 - 7 km ESE of Canadian, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.57966667,35.14466667,1.44]},"id":"ok2022dgdy"},
- {"type":"Feature","properties":{"mag":1.45,"place":"11 km ESE of Crowder, Oklahoma","time":1644974652880,"updated":1645106499637,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgdx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgdx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"ok","code":"2022dgdx","ids":",ok2022dgdx,","sources":",ok,","types":",origin,phase-data,","nst":20,"dmin":0.1160772217,"rms":0.34,"gap":112,"magType":"ml","type":"earthquake","title":"M 1.5 - 11 km ESE of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.54116667,35.10183333,7.39]},"id":"ok2022dgdx"},
- {"type":"Feature","properties":{"mag":-0.03,"place":"58 km WNW of Beluga, Alaska","time":1644974423560,"updated":1645036275870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491781","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491781.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91491781","ids":",av91491781,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.06,"gap":176,"magType":"ml","type":"earthquake","title":"M -0.0 - 58 km WNW of Beluga, Alaska"},"geometry":{"type":"Point","coordinates":[-152.0335,61.4033333333333,11.02]},"id":"av91491781"},
- {"type":"Feature","properties":{"mag":2.54,"place":"4km NW of Aromas, CA","time":1644974192520,"updated":1645028022895,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693421","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693421.geojson","felt":10,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":103,"net":"nc","code":"73693421","ids":",nc73693421,us7000gl6d,","sources":",nc,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":88,"dmin":0.01619,"rms":0.14,"gap":52,"magType":"md","type":"earthquake","title":"M 2.5 - 4km NW of Aromas, CA"},"geometry":{"type":"Point","coordinates":[-121.6668333,36.9151667,10.6]},"id":"nc73693421"},
- {"type":"Feature","properties":{"mag":1.62,"place":"3km NNE of Pinnacles, CA","time":1644974114700,"updated":1644985751385,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693416","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693416.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":40,"net":"nc","code":"73693416","ids":",nc73693416,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.04407,"rms":0.03,"gap":122,"magType":"md","type":"earthquake","title":"M 1.6 - 3km NNE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.1334991,36.5576668,8.43]},"id":"nc73693416"},
- {"type":"Feature","properties":{"mag":1.8,"place":"45 km ESE of Whittier, Alaska","time":1644973050228,"updated":1644973226352,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225qlld8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225qlld8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02225qlld8","ids":",ak02225qlld8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 45 km ESE of Whittier, Alaska"},"geometry":{"type":"Point","coordinates":[-147.9041,60.6278,14.1]},"id":"ak02225qlld8"},
- {"type":"Feature","properties":{"mag":1.68,"place":"Puerto Rico region","time":1644972857420,"updated":1644995766130,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335098","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335098.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"pr","code":"71335098","ids":",pr71335098,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.13,"gap":213,"magType":"md","type":"earthquake","title":"M 1.7 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-66.8086666666667,17.957,13.9]},"id":"pr71335098"},
- {"type":"Feature","properties":{"mag":4.3,"place":"75 km W of Bandar Abbas, Iran","time":1644972568764,"updated":1644975317040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl6b","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl6b.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gl6b","ids":",us7000gl6b,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.439,"rms":0.66,"gap":117,"magType":"mb","type":"earthquake","title":"M 4.3 - 75 km W of Bandar Abbas, Iran"},"geometry":{"type":"Point","coordinates":[55.5322,27.3187,10]},"id":"us7000gl6b"},
- {"type":"Feature","properties":{"mag":1.93,"place":"1 km SW of Indios, Puerto Rico","time":1644971594160,"updated":1644975598650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335083","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335083.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":57,"net":"pr","code":"71335083","ids":",pr71335083,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.05,"gap":195,"magType":"md","type":"earthquake","title":"M 1.9 - 1 km SW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8286666666667,17.9813333333333,10.88]},"id":"pr71335083"},
- {"type":"Feature","properties":{"mag":1.21,"place":"8km NW of The Geysers, CA","time":1644971559410,"updated":1644984250225,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693411","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693411.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":23,"net":"nc","code":"73693411","ids":",nc73693411,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.006085,"rms":0.05,"gap":43,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8143311,38.8284988,1.76]},"id":"nc73693411"},
- {"type":"Feature","properties":{"mag":1.2,"place":"39 km W of Cantwell, Alaska","time":1644971060571,"updated":1644971791945,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02225qehzd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02225qehzd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02225qehzd","ids":",ak02225qehzd,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.66,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 39 km W of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7384,63.3512,97.9]},"id":"ak02225qehzd"},
- {"type":"Feature","properties":{"mag":0.8,"place":"4 km SE of Floriston, California","time":1644970898974,"updated":1645065435119,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834005","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834005.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"nn","code":"00834005","ids":",nn00834005,","sources":",nn,","types":",origin,phase-data,","nst":13,"dmin":0.09,"rms":0.1899,"gap":63,"magType":"ml","type":"earthquake","title":"M 0.8 - 4 km SE of Floriston, California"},"geometry":{"type":"Point","coordinates":[-119.9749,39.3694,7.8]},"id":"nn00834005"},
- {"type":"Feature","properties":{"mag":1.3,"place":"1 km SW of Walker, California","time":1644970858983,"updated":1645065423783,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00834004","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00834004.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00834004","ids":",nn00834004,","sources":",nn,","types":",origin,phase-data,","nst":13,"dmin":0.039,"rms":0.0912,"gap":70.6,"magType":"ml","type":"earthquake","title":"M 1.3 - 1 km SW of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.4876,38.504,10.7]},"id":"nn00834004"},
- {"type":"Feature","properties":{"mag":2.05,"place":"4 km S of Indios, Puerto Rico","time":1644970191020,"updated":1644972288430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335068","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335068.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":65,"net":"pr","code":"71335068","ids":",pr71335068,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.12,"gap":211,"magType":"md","type":"earthquake","title":"M 2.1 - 4 km S of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8181666666667,17.9503333333333,11.88]},"id":"pr71335068"},
- {"type":"Feature","properties":{"mag":1.44,"place":"12 km E of Crowder, Oklahoma","time":1644970083640,"updated":1645105851526,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dgbk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dgbk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"ok","code":"2022dgbk","ids":",ok2022dgbk,","sources":",ok,","types":",origin,phase-data,","nst":27,"dmin":0.1133777514,"rms":0.23,"gap":98,"magType":"ml","type":"earthquake","title":"M 1.4 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53433333,35.102,7.24]},"id":"ok2022dgbk"},
- {"type":"Feature","properties":{"mag":1.7,"place":"46km NE of Holtville, CA","time":1644969832290,"updated":1645034149209,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187184","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187184.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"ci","code":"40187184","ids":",ci40187184,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.08557,"rms":0.25,"gap":131,"magType":"ml","type":"quarry blast","title":"M 1.7 Quarry Blast - 46km NE of Holtville, CA"},"geometry":{"type":"Point","coordinates":[-114.991,33.0573333,-0.2]},"id":"ci40187184"},
- {"type":"Feature","properties":{"mag":1.2,"place":"36 km SE of Mina, Nevada","time":1644969291344,"updated":1644979034643,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833925","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833925.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833925","ids":",nn00833925,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.122,"rms":0.1002,"gap":152.02,"magType":"ml","type":"earthquake","title":"M 1.2 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7881,38.1812,4.8]},"id":"nn00833925"},
- {"type":"Feature","properties":{"mag":2.04,"place":"3 km WSW of Fuig, Puerto Rico","time":1644968850360,"updated":1644969518470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335058","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335058.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":64,"net":"pr","code":"71335058","ids":",pr71335058,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.05,"gap":164,"magType":"md","type":"earthquake","title":"M 2.0 - 3 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.951,17.9795,6.86]},"id":"pr71335058"},
- {"type":"Feature","properties":{"mag":4.5,"place":"30 km E of Kimbe, Papua New Guinea","time":1644968749601,"updated":1644969893040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl61","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl61.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gl61","ids":",us7000gl61,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.2,"rms":1.18,"gap":69,"magType":"mb","type":"earthquake","title":"M 4.5 - 30 km E of Kimbe, Papua New Guinea"},"geometry":{"type":"Point","coordinates":[150.4086,-5.5364,133.83]},"id":"us7000gl61"},
- {"type":"Feature","properties":{"mag":2.06,"place":"9km WNW of The Geysers, CA","time":1644968659300,"updated":1644981253914,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693401","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693401.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"nc","code":"73693401","ids":",nc73693401,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.00612,"rms":0.04,"gap":75,"magType":"md","type":"earthquake","title":"M 2.1 - 9km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8408356,38.8190002,2.17]},"id":"nc73693401"},
- {"type":"Feature","properties":{"mag":2.2,"place":"8 km SSW of Portage, Utah","time":1644968503730,"updated":1645021400910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482132","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482132.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"uu","code":"60482132","ids":",uu60482132,","sources":",uu,","types":",origin,phase-data,","nst":26,"dmin":0.04126,"rms":0.17,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.2 - 8 km SSW of Portage, Utah"},"geometry":{"type":"Point","coordinates":[-112.2806667,41.9043333,3.13]},"id":"uu60482132"},
- {"type":"Feature","properties":{"mag":0.5,"place":"48 km SSW of Rachel, Nevada","time":1644968102174,"updated":1644979036493,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833929","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833929.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nn","code":"00833929","ids":",nn00833929,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.071,"rms":0.1404,"gap":280.65,"magType":"ml","type":"earthquake","title":"M 0.5 - 48 km SSW of Rachel, Nevada"},"geometry":{"type":"Point","coordinates":[-115.9264,37.2344,6.5]},"id":"nn00833929"},
- {"type":"Feature","properties":{"mag":1.24,"place":"14km NNE of Apple Valley, CA","time":1644967858370,"updated":1645036201867,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187168","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187168.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40187168","ids":",ci40187168,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.2083,"rms":0.22,"gap":144,"magType":"ml","type":"quarry blast","title":"M 1.2 Quarry Blast - 14km NNE of Apple Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.1246667,34.6175,-1.27]},"id":"ci40187168"},
- {"type":"Feature","properties":{"mag":0.38,"place":"12km SW of Searles Valley, CA","time":1644967481130,"updated":1645033812551,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187160","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187160.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40187160","ids":",ci40187160,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.1019,"rms":0.05,"gap":164,"magType":"ml","type":"earthquake","title":"M 0.4 - 12km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4938333,35.6853333,3.9]},"id":"ci40187160"},
- {"type":"Feature","properties":{"mag":1.18,"place":"6 km WSW of Hebgen Lake Estates, Montana","time":1644967324690,"updated":1645026572620,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482122","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482122.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"uu","code":"60482122","ids":",uu60482122,","sources":",uu,","types":",origin,phase-data,","nst":16,"dmin":0.04252,"rms":0.16,"gap":122,"magType":"md","type":"earthquake","title":"M 1.2 - 6 km WSW of Hebgen Lake Estates, Montana"},"geometry":{"type":"Point","coordinates":[-111.2655,44.7478333,12.62]},"id":"uu60482122"},
- {"type":"Feature","properties":{"mag":1.84,"place":"14km NE of Ridgecrest, CA","time":1644967083210,"updated":1644975263200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187152","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187152.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":52,"net":"ci","code":"40187152","ids":",ci40187152,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.09839,"rms":0.18,"gap":64,"magType":"ml","type":"earthquake","title":"M 1.8 - 14km NE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.553,35.6918333,2.49]},"id":"ci40187152"},
- {"type":"Feature","properties":{"mag":1.86,"place":"6 km SE of Maria Antonia, Puerto Rico","time":1644966795020,"updated":1644968162960,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335038","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335038.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"pr","code":"71335038","ids":",pr71335038,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.13,"gap":217,"magType":"md","type":"earthquake","title":"M 1.9 - 6 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8553333333333,17.9326666666667,17.61]},"id":"pr71335038"},
- {"type":"Feature","properties":{"mag":1.17,"place":"16km ESE of Little Lake, CA","time":1644965091230,"updated":1644974864491,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187104","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187104.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40187104","ids":",ci40187104,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.07972,"rms":0.06,"gap":61,"magType":"ml","type":"earthquake","title":"M 1.2 - 16km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7403333,35.9001667,8.77]},"id":"ci40187104"},
- {"type":"Feature","properties":{"mag":0.12,"place":"14km S of Trona, CA","time":1644964337180,"updated":1645033688583,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187088","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187088.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40187088","ids":",ci40187088,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":4,"dmin":0.07689,"rms":0.09,"gap":188,"magType":"ml","type":"earthquake","title":"M 0.1 - 14km S of Trona, CA"},"geometry":{"type":"Point","coordinates":[-117.3935,35.6393333,3.55]},"id":"ci40187088"},
- {"type":"Feature","properties":{"mag":2.03,"place":"15 km SSE of Sunnyside, Utah","time":1644963957830,"updated":1644965544590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482117","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482117.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":63,"net":"uu","code":"60482117","ids":",uu60482117,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.008222,"rms":0.08,"gap":194,"magType":"md","type":"earthquake","title":"M 2.0 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3145,39.4236667,-1.54]},"id":"uu60482117"},
- {"type":"Feature","properties":{"mag":1.3,"place":"36 km SE of Mina, Nevada","time":1644963798856,"updated":1644969640925,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833915","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833915.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833915","ids":",nn00833915,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.121,"rms":0.1273,"gap":154,"magType":"ml","type":"earthquake","title":"M 1.3 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7772,38.185,6.3]},"id":"nn00833915"},
- {"type":"Feature","properties":{"mag":1.17,"place":"8km NE of San Jacinto, CA","time":1644963572480,"updated":1644974609963,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187056","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187056.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40187056","ids":",ci40187056,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.1537,"rms":0.12,"gap":87,"magType":"ml","type":"earthquake","title":"M 1.2 - 8km NE of San Jacinto, CA"},"geometry":{"type":"Point","coordinates":[-116.9065,33.8405,13.23]},"id":"ci40187056"},
- {"type":"Feature","properties":{"mag":1.73,"place":"22km N of Ridgecrest, CA","time":1644963510390,"updated":1644974114280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187048","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187048.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"ci","code":"40187048","ids":",ci40187048,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.04369,"rms":0.18,"gap":54,"magType":"ml","type":"earthquake","title":"M 1.7 - 22km N of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.6511667,35.8131667,6.84]},"id":"ci40187048"},
- {"type":"Feature","properties":{"mag":1.95,"place":"6 km SE of Maria Antonia, Puerto Rico","time":1644962631880,"updated":1644971088660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335078","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335078.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"pr","code":"71335078","ids":",pr71335078,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.12,"gap":222,"magType":"md","type":"earthquake","title":"M 2.0 - 6 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8488333333333,17.9311666666667,12.78]},"id":"pr71335078"},
- {"type":"Feature","properties":{"mag":1.92,"place":"7 km SE of Maria Antonia, Puerto Rico","time":1644962631720,"updated":1644966045850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335033","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335033.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":57,"net":"pr","code":"71335033","ids":",pr71335033,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.11,"gap":221,"magType":"md","type":"earthquake","title":"M 1.9 - 7 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8486666666667,17.9256666666667,13.46]},"id":"pr71335033"},
- {"type":"Feature","properties":{"mag":2.1400001,"place":"5 km SW of Pāhala, Hawaii","time":1644962310290,"updated":1644962513800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918677","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918677.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72918677","ids":",hv72918677,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.180000007,"gap":104,"magType":"md","type":"earthquake","title":"M 2.1 - 5 km SW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.513168334961,19.1653327941895,33.939998626709]},"id":"hv72918677"},
- {"type":"Feature","properties":{"mag":1.6,"place":"3 km WSW of Guánica, Puerto Rico","time":1644961994350,"updated":1644971096460,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335073","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335073.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"pr","code":"71335073","ids":",pr71335073,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.05,"gap":209,"magType":"md","type":"earthquake","title":"M 1.6 - 3 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9378333333333,17.9545,8.74]},"id":"pr71335073"},
- {"type":"Feature","properties":{"mag":1.77,"place":"13 km ESE of Lincoln, Montana","time":1644961812490,"updated":1645026191040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538504","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538504.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"mb","code":"80538504","ids":",mb80538504,","sources":",mb,","types":",origin,phase-data,","nst":17,"dmin":0.059,"rms":0.23,"gap":69,"magType":"ml","type":"earthquake","title":"M 1.8 - 13 km ESE of Lincoln, Montana"},"geometry":{"type":"Point","coordinates":[-112.5185,46.9001667,12.96]},"id":"mb80538504"},
- {"type":"Feature","properties":{"mag":1.55,"place":"2 km SE of Yauco, Puerto Rico","time":1644961781580,"updated":1644970422880,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335063","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335063.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"pr","code":"71335063","ids":",pr71335063,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.06,"gap":312,"magType":"md","type":"earthquake","title":"M 1.6 - 2 km SE of Yauco, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8341666666667,18.016,13.49]},"id":"pr71335063"},
- {"type":"Feature","properties":{"mag":1.63,"place":"14km NW of Pinnacles, CA","time":1644961768320,"updated":1644974531260,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693386","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693386.geojson","felt":1,"cdi":2.5,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":41,"net":"nc","code":"73693386","ids":",nc73693386,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.06177,"rms":0.05,"gap":130,"magType":"md","type":"earthquake","title":"M 1.6 - 14km NW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.2408371,36.6278343,6.77]},"id":"nc73693386"},
- {"type":"Feature","properties":{"mag":2.2,"place":"14km W of Delta, B.C., MX","time":1644961325480,"updated":1644973046007,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40187016","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40187016.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"ci","code":"40187016","ids":",ci40187016,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.05053,"rms":0.24,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.2 - 14km W of Delta, B.C., MX"},"geometry":{"type":"Point","coordinates":[-115.339,32.3778333,3.08]},"id":"ci40187016"},
- {"type":"Feature","properties":{"mag":2.6,"place":"37 km SE of Mina, Nevada","time":1644960958537,"updated":1644962015541,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833909","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833909.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"nn","code":"00833909","ids":",us7000gl5b,nn00833909,","sources":",us,nn,","types":",origin,phase-data,","nst":17,"dmin":0.12,"rms":0.0978,"gap":83.57,"magType":"ml","type":"earthquake","title":"M 2.6 - 37 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7763,38.1841,7.2]},"id":"nn00833909"},
- {"type":"Feature","properties":{"mag":1.65,"place":"3 km SW of Indios, Puerto Rico","time":1644960827590,"updated":1644968203040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335048","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335048.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"pr","code":"71335048","ids":",pr71335048,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.11,"gap":203,"magType":"md","type":"earthquake","title":"M 1.7 - 3 km SW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.84,17.9703333333333,15.54]},"id":"pr71335048"},
- {"type":"Feature","properties":{"mag":1.4,"place":"36 km NNW of Sutton-Alpine, Alaska","time":1644960805697,"updated":1644961034479,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224ff713","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224ff713.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02224ff713","ids":",ak02224ff713,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 36 km NNW of Sutton-Alpine, Alaska"},"geometry":{"type":"Point","coordinates":[-148.961,62.0934,33.8]},"id":"ak02224ff713"},
- {"type":"Feature","properties":{"mag":0.5,"place":"7 km N of Pioche, Nevada","time":1644960743030,"updated":1644979029361,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833924","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833924.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nn","code":"00833924","ids":",nn00833924,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.056,"rms":0.1971,"gap":158.05,"magType":"ml","type":"earthquake","title":"M 0.5 - 7 km N of Pioche, Nevada"},"geometry":{"type":"Point","coordinates":[-114.4588,37.9964,14.2]},"id":"nn00833924"},
- {"type":"Feature","properties":{"mag":1.71,"place":"2 km SSE of Maria Antonia, Puerto Rico","time":1644960198640,"updated":1644961627060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335028","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335028.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":45,"net":"pr","code":"71335028","ids":",pr71335028,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.09,"gap":278,"magType":"md","type":"earthquake","title":"M 1.7 - 2 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8781666666667,17.9573333333333,9.23]},"id":"pr71335028"},
- {"type":"Feature","properties":{"mag":1.41,"place":"21km NW of Parkfield, CA","time":1644959996820,"updated":1644971651071,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693371","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693371.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":31,"net":"nc","code":"73693371","ids":",nc73693371,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04212,"rms":0.07,"gap":103,"magType":"md","type":"earthquake","title":"M 1.4 - 21km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.605835,36.0273323,-0.41]},"id":"nc73693371"},
- {"type":"Feature","properties":{"mag":1.08,"place":"2km ENE of The Geysers, CA","time":1644959869700,"updated":1644961051935,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693361","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693361.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":18,"net":"nc","code":"73693361","ids":",nc73693361,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.003239,"rms":0.03,"gap":84,"magType":"md","type":"earthquake","title":"M 1.1 - 2km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7354965,38.786335,1.99]},"id":"nc73693361"},
- {"type":"Feature","properties":{"mag":4.7,"place":"36 km SE of Mina, Nevada","time":1644959784065,"updated":1645124861096,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833903","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833903.geojson","felt":15,"cdi":4.3,"mmi":4.403,"alert":"green","status":"reviewed","tsunami":0,"sig":346,"net":"nn","code":"00833903","ids":",nn00833903,us7000gl54,","sources":",nn,us,","types":",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,","nst":23,"dmin":0.12,"rms":0.132,"gap":33.3,"magType":"ml","type":"earthquake","title":"M 4.7 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7833,38.1814,4.1]},"id":"nn00833903"},
- {"type":"Feature","properties":{"mag":1.4,"place":"66 km E of Cantwell, Alaska","time":1644958847176,"updated":1644959091158,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224f8626","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224f8626.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02224f8626","ids":",ak02224f8626,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.88,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 66 km E of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-147.6345,63.4555,4]},"id":"ak02224f8626"},
- {"type":"Feature","properties":{"mag":0.35,"place":"23km NE of Johannesburg, CA","time":1644958611010,"updated":1645033340566,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40186936","ids":",ci40186936,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":4,"dmin":0.0809,"rms":0.01,"gap":216,"magType":"ml","type":"earthquake","title":"M 0.4 - 23km NE of Johannesburg, CA"},"geometry":{"type":"Point","coordinates":[-117.4473333,35.5063333,5.05]},"id":"ci40186936"},
- {"type":"Feature","properties":{"mag":1.21,"place":"22km N of California City, CA","time":1644958408800,"updated":1645032458481,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40186920","ids":",ci40186920,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.1044,"rms":0.14,"gap":66,"magType":"ml","type":"earthquake","title":"M 1.2 - 22km N of California City, CA"},"geometry":{"type":"Point","coordinates":[-117.9563333,35.3196667,8.36]},"id":"ci40186920"},
- {"type":"Feature","properties":{"mag":0.94,"place":"9km ENE of Moreno Valley, CA","time":1644957335220,"updated":1644961622988,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186888","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186888.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40186888","ids":",ci40186888,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.08335,"rms":0.16,"gap":72,"magType":"ml","type":"earthquake","title":"M 0.9 - 9km ENE of Moreno Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.1415,33.9555,14.63]},"id":"ci40186888"},
- {"type":"Feature","properties":{"mag":1.46,"place":"18km E of Little Lake, CA","time":1644957169210,"updated":1644961214119,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186880","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186880.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"ci","code":"40186880","ids":",ci40186880,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.04974,"rms":0.1,"gap":59,"magType":"ml","type":"earthquake","title":"M 1.5 - 18km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7045,35.9245,3.67]},"id":"ci40186880"},
- {"type":"Feature","properties":{"mag":0.69,"place":"14km SSE of Anza, CA","time":1644956906320,"updated":1644960924538,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186864","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186864.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40186864","ids":",ci40186864,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.06008,"rms":0.14,"gap":59,"magType":"ml","type":"earthquake","title":"M 0.7 - 14km SSE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6165,33.4356667,5.63]},"id":"ci40186864"},
- {"type":"Feature","properties":{"mag":1.27,"place":"10 km WNW of Adak, Alaska","time":1644956817000,"updated":1644968146930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491566","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491566.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"av","code":"91491566","ids":",av91491566,","sources":",av,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.13,"gap":154,"magType":"ml","type":"earthquake","title":"M 1.3 - 10 km WNW of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-176.778666666667,51.912,1.6]},"id":"av91491566"},
- {"type":"Feature","properties":{"mag":1.54,"place":"4km SE of Home Gardens, CA","time":1644956689420,"updated":1644962079013,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40186848","ids":",ci40186848,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":47,"dmin":0.05145,"rms":0.21,"gap":38,"magType":"ml","type":"quarry blast","title":"M 1.5 Quarry Blast - 4km SE of Home Gardens, CA"},"geometry":{"type":"Point","coordinates":[-117.4945,33.8483333,-0.48]},"id":"ci40186848"},
- {"type":"Feature","properties":{"mag":1.5,"place":"5 km NE of Willow, Alaska","time":1644956514185,"updated":1644956767539,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224er90v","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224er90v.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02224er90v","ids":",ak02224er90v,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.54,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 5 km NE of Willow, Alaska"},"geometry":{"type":"Point","coordinates":[-149.9642,61.7832,33.4]},"id":"ak02224er90v"},
- {"type":"Feature","properties":{"mag":1.75,"place":"8km ENE of Talmage, CA","time":1644956224430,"updated":1644969191966,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693351","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693351.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":47,"net":"nc","code":"73693351","ids":",nc73693351,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.1792,"rms":0.04,"gap":108,"magType":"md","type":"earthquake","title":"M 1.8 - 8km ENE of Talmage, CA"},"geometry":{"type":"Point","coordinates":[-123.0790024,39.1575012,6.23]},"id":"nc73693351"},
- {"type":"Feature","properties":{"mag":-0.01,"place":"19km E of Little Lake, CA","time":1644955863920,"updated":1645038573083,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40186832","ids":",ci40186832,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.05917,"rms":0.07,"gap":156,"magType":"ml","type":"earthquake","title":"M -0.0 - 19km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7031667,35.907,7.33]},"id":"ci40186832"},
- {"type":"Feature","properties":{"mag":1.31,"place":"6km ESE of Bostonia, CA","time":1644955675770,"updated":1644962503614,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186808","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186808.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40186808","ids":",ci40186808,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.06502,"rms":0.24,"gap":107,"magType":"ml","type":"quarry blast","title":"M 1.3 Quarry Blast - 6km ESE of Bostonia, CA"},"geometry":{"type":"Point","coordinates":[-116.8851667,32.7793333,-0.58]},"id":"ci40186808"},
- {"type":"Feature","properties":{"mag":0.87,"place":"3km ENE of The Geysers, CA","time":1644955601300,"updated":1644957895649,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693346","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693346.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73693346","ids":",nc73693346,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.009858,"rms":0.01,"gap":115,"magType":"md","type":"earthquake","title":"M 0.9 - 3km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7263336,38.7888336,2.21]},"id":"nc73693346"},
- {"type":"Feature","properties":{"mag":1.35,"place":"5 km E of Butte, Montana","time":1644955398640,"updated":1645026773610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538479","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538479.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":28,"net":"mb","code":"80538479","ids":",mb80538479,","sources":",mb,","types":",origin,phase-data,","nst":14,"dmin":0.062,"rms":0.08,"gap":167,"magType":"ml","type":"quarry blast","title":"M 1.4 Quarry Blast - 5 km E of Butte, Montana"},"geometry":{"type":"Point","coordinates":[-112.4668333,45.9993333,-2]},"id":"mb80538479"},
- {"type":"Feature","properties":{"mag":1.89,"place":"21 km ENE of Hala‘ula, Hawaii","time":1644955338900,"updated":1644978302060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918542","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918542.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":55,"net":"hv","code":"72918542","ids":",hv72918542,","sources":",hv,","types":",origin,phase-data,","nst":49,"dmin":null,"rms":0.21,"gap":193,"magType":"md","type":"earthquake","title":"M 1.9 - 21 km ENE of Hala‘ula, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.600333333333,20.3303333333333,9.32]},"id":"hv72918542"},
- {"type":"Feature","properties":{"mag":1.66,"place":"6km E of Willits, CA","time":1644954933010,"updated":1644982691053,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693341","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693341.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"nc","code":"73693341","ids":",nc73693341,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.0703,"rms":0.04,"gap":87,"magType":"md","type":"earthquake","title":"M 1.7 - 6km E of Willits, CA"},"geometry":{"type":"Point","coordinates":[-123.28,39.4145,5.65]},"id":"nc73693341"},
- {"type":"Feature","properties":{"mag":1.2,"place":"7 km E of Walker, California","time":1644954870753,"updated":1644979027711,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833923","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833923.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833923","ids":",nn00833923,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.045,"rms":0.164,"gap":253.07,"magType":"ml","type":"earthquake","title":"M 1.2 - 7 km E of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3883,38.5272,0]},"id":"nn00833923"},
- {"type":"Feature","properties":{"mag":3.2,"place":"86 km SE of Akhiok, Alaska","time":1644954184711,"updated":1644958174197,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl4l","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl4l.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"7000gl4l","ids":",us7000gl4l,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.917,"rms":1.11,"gap":199,"magType":"ml","type":"earthquake","title":"M 3.2 - 86 km SE of Akhiok, Alaska"},"geometry":{"type":"Point","coordinates":[-153.3528,56.3081,10]},"id":"us7000gl4l"},
- {"type":"Feature","properties":{"mag":1.74,"place":"2km E of Aromas, CA","time":1644953323560,"updated":1644965837408,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693331","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693331.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":47,"net":"nc","code":"73693331","ids":",nc73693331,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.02211,"rms":0.05,"gap":88,"magType":"md","type":"earthquake","title":"M 1.7 - 2km E of Aromas, CA"},"geometry":{"type":"Point","coordinates":[-121.6184998,36.8904991,0.7]},"id":"nc73693331"},
- {"type":"Feature","properties":{"mag":1.61,"place":"1km WNW of San Juan Bautista, CA","time":1644952872720,"updated":1644962830106,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693321","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693321.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":40,"net":"nc","code":"73693321","ids":",nc73693321,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.04613,"rms":0.06,"gap":141,"magType":"md","type":"earthquake","title":"M 1.6 - 1km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5524979,36.8508339,4.76]},"id":"nc73693321"},
- {"type":"Feature","properties":{"mag":4.4,"place":"47 km SW of La Libertad, El Salvador","time":1644952753128,"updated":1645028247280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl4j","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl4j.geojson","felt":9,"cdi":5.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":303,"net":"us","code":"7000gl4j","ids":",us7000gl4j,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.512,"rms":0.8,"gap":156,"magType":"mb","type":"earthquake","title":"M 4.4 - 47 km SW of La Libertad, El Salvador"},"geometry":{"type":"Point","coordinates":[-89.6053,13.1622,69.18]},"id":"us7000gl4j"},
- {"type":"Feature","properties":{"mag":1.83,"place":"15 km SSE of Sunnyside, Utah","time":1644952343740,"updated":1644954677520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482082","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482082.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":52,"net":"uu","code":"60482082","ids":",uu60482082,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.01022,"rms":0.12,"gap":194,"magType":"md","type":"earthquake","title":"M 1.8 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3123333,39.4215,-1.56]},"id":"uu60482082"},
- {"type":"Feature","properties":{"mag":0.41,"place":"6km NNW of The Geysers, CA","time":1644951867070,"updated":1645089852854,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693316","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693316.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"nc","code":"73693316","ids":",nc73693316,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.01021,"rms":0.03,"gap":44,"magType":"md","type":"earthquake","title":"M 0.4 - 6km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7971667,38.825,2.68]},"id":"nc73693316"},
- {"type":"Feature","properties":{"mag":1.4,"place":"8 km ENE of Walker, California","time":1644951638627,"updated":1644979027010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00833920","ids":",nn00833920,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.055,"rms":0.1995,"gap":179.74,"magType":"ml","type":"earthquake","title":"M 1.4 - 8 km ENE of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3821,38.5375,0]},"id":"nn00833920"},
- {"type":"Feature","properties":{"mag":1.1,"place":"11 km NE of Glacier View, Alaska","time":1644950932041,"updated":1644951668942,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224dq5zo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224dq5zo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"02224dq5zo","ids":",ak02224dq5zo,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.13,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 11 km NE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.5053,61.8849,36.1]},"id":"ak02224dq5zo"},
- {"type":"Feature","properties":{"mag":0.94,"place":"23km SSW of La Quinta, CA","time":1644950525460,"updated":1644960244469,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186768","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186768.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40186768","ids":",ci40186768,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.1091,"rms":0.16,"gap":54,"magType":"ml","type":"earthquake","title":"M 0.9 - 23km SSW of La Quinta, CA"},"geometry":{"type":"Point","coordinates":[-116.4348333,33.4835,12.63]},"id":"ci40186768"},
- {"type":"Feature","properties":{"mag":0.02,"place":"21km ESE of Ridgecrest, CA","time":1644950005090,"updated":1645038067951,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186752","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186752.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40186752","ids":",ci40186752,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.04101,"rms":0.07,"gap":174,"magType":"ml","type":"earthquake","title":"M 0.0 - 21km ESE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.4656667,35.5455,7.85]},"id":"ci40186752"},
- {"type":"Feature","properties":{"mag":1.53,"place":"15 km SSE of Sunnyside, Utah","time":1644950000020,"updated":1644953874660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482072","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482072.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"uu","code":"60482072","ids":",uu60482072,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.009503,"rms":0.08,"gap":194,"magType":"md","type":"earthquake","title":"M 1.5 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3135,39.421,-1.51]},"id":"uu60482072"},
- {"type":"Feature","properties":{"mag":2.27,"place":"1km WNW of San Juan Bautista, CA","time":1644949216670,"updated":1644960431364,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693311","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693311.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":79,"net":"nc","code":"73693311","ids":",nc73693311,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":37,"dmin":0.04687,"rms":0.15,"gap":111,"magType":"md","type":"earthquake","title":"M 2.3 - 1km WNW of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5491638,36.8478317,6.01]},"id":"nc73693311"},
- {"type":"Feature","properties":{"mag":0.37,"place":"10km NW of The Geysers, CA","time":1644949016820,"updated":1644952282124,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693301","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693301.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693301","ids":",nc73693301,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.005374,"rms":0.01,"gap":94,"magType":"md","type":"earthquake","title":"M 0.4 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8499985,38.8273315,2.43]},"id":"nc73693301"},
- {"type":"Feature","properties":{"mag":1.18,"place":"10km WNW of The Geysers, CA","time":1644948970910,"updated":1644959530804,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693296","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693296.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73693296","ids":",nc73693296,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.003747,"rms":0.03,"gap":60,"magType":"md","type":"earthquake","title":"M 1.2 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8523331,38.8263321,2.14]},"id":"nc73693296"},
- {"type":"Feature","properties":{"mag":5.1,"place":"South Sandwich Islands region","time":1644948916459,"updated":1644950018040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl46","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl46.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":400,"net":"us","code":"7000gl46","ids":",us7000gl46,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":7.401,"rms":0.93,"gap":47,"magType":"mb","type":"earthquake","title":"M 5.1 - South Sandwich Islands region"},"geometry":{"type":"Point","coordinates":[-25.4338,-58.4094,65.5]},"id":"us7000gl46"},
- {"type":"Feature","properties":{"mag":1.48,"place":"5 km W of Fuig, Puerto Rico","time":1644948764480,"updated":1644954018400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334998","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334998.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"pr","code":"71334998","ids":",pr71334998,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.12,"gap":171,"magType":"md","type":"earthquake","title":"M 1.5 - 5 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9648333333333,17.9955,7.73]},"id":"pr71334998"},
- {"type":"Feature","properties":{"mag":1.66,"place":"38 km NW of Stanley, Idaho","time":1644948611750,"updated":1645114774920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538474","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538474.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"mb","code":"80538474","ids":",mb80538474,","sources":",mb,","types":",origin,phase-data,","nst":8,"dmin":0.806,"rms":0.13,"gap":121,"magType":"ml","type":"earthquake","title":"M 1.7 - 38 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.2188333,44.5048333,3.82]},"id":"mb80538474"},
- {"type":"Feature","properties":{"mag":1.19,"place":"10km NW of The Geysers, CA","time":1644948482560,"updated":1644958016662,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693291","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693291.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"nc","code":"73693291","ids":",nc73693291,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.0009863,"rms":0.02,"gap":111,"magType":"md","type":"earthquake","title":"M 1.2 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8365021,38.8380013,1.94]},"id":"nc73693291"},
- {"type":"Feature","properties":{"mag":0.37,"place":"14 km N of Atka, Alaska","time":1644948475480,"updated":1644970231830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491531","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491531.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"av","code":"91491531","ids":",av91491531,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.22,"gap":128,"magType":"ml","type":"earthquake","title":"M 0.4 - 14 km N of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-174.181166666667,52.3281666666667,5.47]},"id":"av91491531"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644948396120,"updated":1644950124052,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693286","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693286.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693286","ids":",nc73693286,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01121,"rms":0.01,"gap":67,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8174973,38.8330002,1.63]},"id":"nc73693286"},
- {"type":"Feature","properties":{"mag":2.05999994,"place":"3 km SE of Pāhala, Hawaii","time":1644947997670,"updated":1644948227510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918457","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918457.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"hv","code":"72918457","ids":",hv72918457,","sources":",hv,","types":",origin,phase-data,","nst":31,"dmin":null,"rms":0.140000001,"gap":161,"magType":"md","type":"earthquake","title":"M 2.1 - 3 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.456497192383,19.1766662597656,33.689998626709]},"id":"hv72918457"},
- {"type":"Feature","properties":{"mag":1.92,"place":"5 km SSE of Pāhala, Hawaii","time":1644947986130,"updated":1644948316620,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918452","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918452.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":57,"net":"hv","code":"72918452","ids":",hv72918452,","sources":",hv,","types":",origin,phase-data,","nst":34,"dmin":null,"rms":0.100000001,"gap":161,"magType":"ml","type":"earthquake","title":"M 1.9 - 5 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.453826904297,19.1620006561279,31.7900009155273]},"id":"hv72918452"},
- {"type":"Feature","properties":{"mag":4.3,"place":"104 km SE of Ishinomaki, Japan","time":1644947888284,"updated":1644951403040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl42","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl42.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gl42","ids":",us7000gl42,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.143,"rms":0.74,"gap":125,"magType":"mb","type":"earthquake","title":"M 4.3 - 104 km SE of Ishinomaki, Japan"},"geometry":{"type":"Point","coordinates":[142.1435,37.7559,8.11]},"id":"us7000gl42"},
- {"type":"Feature","properties":{"mag":1.9,"place":"38 km SSW of Ester, Alaska","time":1644947716093,"updated":1644950027599,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224d65mh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224d65mh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02224d65mh","ids":",ak02224d65mh,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.27,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 38 km SSW of Ester, Alaska"},"geometry":{"type":"Point","coordinates":[-148.2796,64.5221,0.1]},"id":"ak02224d65mh"},
- {"type":"Feature","properties":{"mag":1.2,"place":"65 km WNW of Ninilchik, Alaska","time":1644947601919,"updated":1644950027474,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224d5qn3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224d5qn3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02224d5qn3","ids":",ak02224d5qn3,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 65 km WNW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.7216,60.3205,14.9]},"id":"ak02224d5qn3"},
- {"type":"Feature","properties":{"mag":2.25,"place":"1 km NNE of Palomas, Puerto Rico","time":1644947049980,"updated":1644949546680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334988","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334988.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":78,"net":"pr","code":"71334988","ids":",pr71334988,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.06,"gap":107,"magType":"md","type":"earthquake","title":"M 2.3 - 1 km NNE of Palomas, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8678333333333,18.0255,15.26]},"id":"pr71334988"},
- {"type":"Feature","properties":{"mag":2.05,"place":"9 km S of Indios, Puerto Rico","time":1644946931860,"updated":1644947757410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334993","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334993.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":65,"net":"pr","code":"71334993","ids":",pr71334993,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.17,"gap":231,"magType":"md","type":"earthquake","title":"M 2.1 - 9 km S of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8235,17.9078333333333,11.51]},"id":"pr71334993"},
- {"type":"Feature","properties":{"mag":1.2,"place":"65 km WSW of Cantwell, Alaska","time":1644946550493,"updated":1644951238011,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224d1ydu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224d1ydu.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ak","code":"02224d1ydu","ids":",ak02224d1ydu,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 65 km WSW of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-150.1516,63.1584,95.3]},"id":"ak02224d1ydu"},
- {"type":"Feature","properties":{"mag":0.72,"place":"20 km ESE of Three Rivers, Oregon","time":1644946521620,"updated":1644951387800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817081","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817081.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"uw","code":"61817081","ids":",uw61817081,","sources":",uw,","types":",origin,phase-data,","nst":6,"dmin":0.01519,"rms":0.05,"gap":199,"magType":"ml","type":"earthquake","title":"M 0.7 - 20 km ESE of Three Rivers, Oregon"},"geometry":{"type":"Point","coordinates":[-121.247,43.724333333333334,0.42]},"id":"uw61817081"},
- {"type":"Feature","properties":{"mag":0.07,"place":"Southern Alaska","time":1644946002260,"updated":1644974540950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049668","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049668.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049668","ids":",av91049668,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.11,"gap":184,"magType":"ml","type":"earthquake","title":"M 0.1 - Southern Alaska"},"geometry":{"type":"Point","coordinates":[-152.398333333333,61.0208333333333,3.88]},"id":"av91049668"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644945849690,"updated":1644949276857,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693281","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693281.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693281","ids":",nc73693281,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.008286,"rms":0.03,"gap":173,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8131638,38.8313332,0.21]},"id":"nc73693281"},
- {"type":"Feature","properties":{"mag":0.86,"place":"2km N of The Geysers, CA","time":1644945362790,"updated":1644948615796,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693276","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693276.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693276","ids":",nc73693276,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.005839,"rms":0.02,"gap":163,"magType":"md","type":"earthquake","title":"M 0.9 - 2km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7526703,38.7986679,1.61]},"id":"nc73693276"},
- {"type":"Feature","properties":{"mag":2.9,"place":"24 km W of Garden City, Texas","time":1644945258209,"updated":1645032337862,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dfnt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dfnt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"tx","code":"2022dfnt","ids":",us7000gl2g,tx2022dfnt,","sources":",us,tx,","types":",origin,phase-data,","nst":19,"dmin":0.1146391198,"rms":0.2,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.9 - 24 km W of Garden City, Texas"},"geometry":{"type":"Point","coordinates":[-101.7366139,31.87683105,8.559163411]},"id":"tx2022dfnt"},
- {"type":"Feature","properties":{"mag":-0.15,"place":"37 km NNE of Amboy, Washington","time":1644945145110,"updated":1644950985140,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817076","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817076.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61817076","ids":",uw61817076,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.005986,"rms":0.1,"gap":106,"magType":"ml","type":"earthquake","title":"M -0.2 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19533333333334,46.19466666666667,3.59]},"id":"uw61817076"},
- {"type":"Feature","properties":{"mag":1.57,"place":"3km N of Inverness, CA","time":1644944975570,"updated":1644953410230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693266","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693266.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":38,"net":"nc","code":"73693266","ids":",nc73693266,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.02545,"rms":0.02,"gap":122,"magType":"md","type":"earthquake","title":"M 1.6 - 3km N of Inverness, CA"},"geometry":{"type":"Point","coordinates":[-122.8525009,38.1316681,13.04]},"id":"nc73693266"},
- {"type":"Feature","properties":{"mag":-0.63,"place":"86 km W of Salamatof, Alaska","time":1644944827240,"updated":1644974683160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049673","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049673.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049673","ids":",av91049673,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.05,"gap":245,"magType":"ml","type":"earthquake","title":"M -0.6 - 86 km W of Salamatof, Alaska"},"geometry":{"type":"Point","coordinates":[-152.901333333333,60.5918333333333,8.61]},"id":"av91049673"},
- {"type":"Feature","properties":{"mag":1.44,"place":"4 km W of Fuig, Puerto Rico","time":1644944822090,"updated":1644954850280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335013","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335013.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"pr","code":"71335013","ids":",pr71335013,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.03,"gap":164,"magType":"md","type":"earthquake","title":"M 1.4 - 4 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9613333333333,17.9838333333333,9.56]},"id":"pr71335013"},
- {"type":"Feature","properties":{"mag":0.7,"place":"9 km SSE of Carter Springs, Nevada","time":1644944683883,"updated":1644979025606,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833919","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833919.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nn","code":"00833919","ids":",nn00833919,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.117,"rms":0.1558,"gap":151.43,"magType":"ml","type":"earthquake","title":"M 0.7 - 9 km SSE of Carter Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6042,38.7771,6.3]},"id":"nn00833919"},
- {"type":"Feature","properties":{"mag":0.31,"place":"14 km NNE of Atka, Alaska","time":1644944428840,"updated":1644968614980,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491486","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491486.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"av","code":"91491486","ids":",av91491486,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.33,"gap":126,"magType":"ml","type":"earthquake","title":"M 0.3 - 14 km NNE of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-174.134,52.3161666666667,2.97]},"id":"av91491486"},
- {"type":"Feature","properties":{"mag":1.1,"place":"35 km E of Chase, Alaska","time":1644944314768,"updated":1644950927293,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224cldox","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224cldox.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"ak","code":"02224cldox","ids":",ak02224cldox,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 35 km E of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.4263,62.4164,58.7]},"id":"ak02224cldox"},
- {"type":"Feature","properties":{"mag":1.72,"place":"5 km SSE of Maria Antonia, Puerto Rico","time":1644944243500,"updated":1644954740070,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335018","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335018.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"pr","code":"71335018","ids":",pr71335018,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.04,"gap":288,"magType":"md","type":"earthquake","title":"M 1.7 - 5 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8751666666667,17.9306666666667,17.11]},"id":"pr71335018"},
- {"type":"Feature","properties":{"mag":1.05,"place":"14km ENE of Ridgecrest, CA","time":1644944138840,"updated":1644946906805,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186648","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186648.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40186648","ids":",ci40186648,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.1131,"rms":0.11,"gap":151,"magType":"ml","type":"earthquake","title":"M 1.1 - 14km ENE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5388333,35.681,10.25]},"id":"ci40186648"},
- {"type":"Feature","properties":{"mag":2.99,"place":"Puerto Rico region","time":1644944104830,"updated":1644960668770,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335023","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335023.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"pr","code":"71335023","ids":",pr71335023,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.4,"gap":320,"magType":"md","type":"earthquake","title":"M 3.0 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-65.0311666666667,18.9321666666667,10.72]},"id":"pr71335023"},
- {"type":"Feature","properties":{"mag":1.5,"place":"17 km E of Nabesna, Alaska","time":1644943461455,"updated":1644943687943,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224cidj6","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224cidj6.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02224cidj6","ids":",ak02224cidj6,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.79,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 17 km E of Nabesna, Alaska"},"geometry":{"type":"Point","coordinates":[-142.6735,62.3929,4.6]},"id":"ak02224cidj6"},
- {"type":"Feature","properties":{"mag":0.2,"place":"7 km NNE of Johnson Lane, Nevada","time":1644943426038,"updated":1644979022766,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833917","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833917.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833917","ids":",nn00833917,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.068,"rms":0.0728,"gap":123.48,"magType":"ml","type":"earthquake","title":"M 0.2 - 7 km NNE of Johnson Lane, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6842,39.1074,11.9]},"id":"nn00833917"},
- {"type":"Feature","properties":{"mag":0.68,"place":"37 km NNE of Amboy, Washington","time":1644943347320,"updated":1644950356560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817071","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817071.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"uw","code":"61817071","ids":",uw61817071,","sources":",uw,","types":",origin,phase-data,","nst":19,"dmin":0.005545,"rms":0.09,"gap":87,"magType":"ml","type":"earthquake","title":"M 0.7 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1835,46.194833333333335,2.97]},"id":"uw61817071"},
- {"type":"Feature","properties":{"mag":0.57,"place":"15km NNE of Borrego Springs, CA","time":1644943104650,"updated":1644946769863,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186640","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186640.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40186640","ids":",ci40186640,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.136,"rms":0.17,"gap":152,"magType":"ml","type":"earthquake","title":"M 0.6 - 15km NNE of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.332,33.3843333,1.47]},"id":"ci40186640"},
- {"type":"Feature","properties":{"mag":1.71,"place":"2 km SSW of Indios, Puerto Rico","time":1644942797810,"updated":1644954218360,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335008","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335008.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":45,"net":"pr","code":"71335008","ids":",pr71335008,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.1,"gap":344,"magType":"md","type":"earthquake","title":"M 1.7 - 2 km SSW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.829,17.9743333333333,13.01]},"id":"pr71335008"},
- {"type":"Feature","properties":{"mag":1.2,"place":"7km NW of The Geysers, CA","time":1644941429750,"updated":1644950170941,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693251","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693251.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"nc","code":"73693251","ids":",nc73693251,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.003455,"rms":0.03,"gap":43,"magType":"md","type":"earthquake","title":"M 1.2 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8056641,38.8236656,2.27]},"id":"nc73693251"},
- {"type":"Feature","properties":{"mag":1.52,"place":"21km ESE of Little Lake, CA","time":1644941270320,"updated":1644945298011,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186608","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186608.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40186608","ids":",ci40186608,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.07394,"rms":0.08,"gap":57,"magType":"ml","type":"earthquake","title":"M 1.5 - 21km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6868333,35.88,9.89]},"id":"ci40186608"},
- {"type":"Feature","properties":{"mag":0.22,"place":"23km ESE of Anza, CA","time":1644941105910,"updated":1644946553644,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186616","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186616.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40186616","ids":",ci40186616,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.1046,"rms":0.08,"gap":177,"magType":"ml","type":"earthquake","title":"M 0.2 - 23km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4446667,33.4815,11.48]},"id":"ci40186616"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km NW of The Geysers, CA","time":1644941052840,"updated":1644947231672,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693241","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693241.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693241","ids":",nc73693241,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01008,"rms":0.01,"gap":63,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8213348,38.8283348,1.59]},"id":"nc73693241"},
- {"type":"Feature","properties":{"mag":4.3,"place":"59 km S of Attu Station, Alaska","time":1644940674413,"updated":1644944727040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl1y","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl1y.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gl1y","ids":",us7000gl1y,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.722,"rms":0.74,"gap":188,"magType":"mb","type":"earthquake","title":"M 4.3 - 59 km S of Attu Station, Alaska"},"geometry":{"type":"Point","coordinates":[173.1344,52.3124,44.58]},"id":"us7000gl1y"},
- {"type":"Feature","properties":{"mag":1.99,"place":"16 km SSE of Sunnyside, Utah","time":1644939825280,"updated":1644940361940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482057","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482057.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":61,"net":"uu","code":"60482057","ids":",uu60482057,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.01673,"rms":0.12,"gap":198,"magType":"md","type":"earthquake","title":"M 2.0 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3046667,39.4186667,-2.28]},"id":"uu60482057"},
- {"type":"Feature","properties":{"mag":1.14,"place":"Puerto Rico region","time":1644939705720,"updated":1644953635070,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71335003","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71335003.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"pr","code":"71335003","ids":",pr71335003,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.05,"gap":277,"magType":"md","type":"earthquake","title":"M 1.1 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-67.0066666666667,17.9413333333333,8.49]},"id":"pr71335003"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644938833390,"updated":1644945610658,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693236","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693236.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693236","ids":",nc73693236,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.00912,"rms":0.01,"gap":57,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8146667,38.8149986,2.94]},"id":"nc73693236"},
- {"type":"Feature","properties":{"mag":1.8,"place":"25 km WNW of Anchor Point, Alaska","time":1644936809535,"updated":1644937607145,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224bdgeq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224bdgeq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02224bdgeq","ids":",ak02224bdgeq,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.7,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 25 km WNW of Anchor Point, Alaska"},"geometry":{"type":"Point","coordinates":[-152.2478,59.8576,75.6]},"id":"ak02224bdgeq"},
- {"type":"Feature","properties":{"mag":3.53,"place":"98 km NNE of Cruz Bay, U.S. Virgin Islands","time":1644936729810,"updated":1644941491040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022046001","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022046001.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":192,"net":"pr","code":"2022046001","ids":",us7000gl1n,pr2022046001,","sources":",us,pr,","types":",origin,phase-data,","nst":7,"dmin":1.4872,"rms":0.32,"gap":332,"magType":"md","type":"earthquake","title":"M 3.5 - 98 km NNE of Cruz Bay, U.S. Virgin Islands"},"geometry":{"type":"Point","coordinates":[-64.5376,19.1843,51]},"id":"pr2022046001"},
- {"type":"Feature","properties":{"mag":2.8,"place":"226 km SW of Yakutat, Alaska","time":1644936483349,"updated":1644936705186,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224bc848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224bc848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":121,"net":"ak","code":"02224bc848","ids":",ak02224bc848,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 226 km SW of Yakutat, Alaska"},"geometry":{"type":"Point","coordinates":[-142.6403,58.1831,30.3]},"id":"ak02224bc848"},
- {"type":"Feature","properties":{"mag":0.25,"place":"7km WNW of The Geysers, CA","time":1644936083490,"updated":1644937455650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693231","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693231.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":1,"net":"nc","code":"73693231","ids":",nc73693231,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.006059,"rms":0.01,"gap":64,"magType":"md","type":"earthquake","title":"M 0.3 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8215027,38.8079987,2.39]},"id":"nc73693231"},
- {"type":"Feature","properties":{"mag":-0.2,"place":"40 km NNW of Pahrump, Nevada","time":1644935525999,"updated":1644965729608,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833916","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833916.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833916","ids":",nn00833916,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.075,"rms":0.0422,"gap":188.05,"magType":"ml","type":"earthquake","title":"M -0.2 - 40 km NNW of Pahrump, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2337,36.5171,8.2]},"id":"nn00833916"},
- {"type":"Feature","properties":{"mag":1.46,"place":"21 km E of Castle Rock, Washington","time":1644934645050,"updated":1644942141050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817051","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817051.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"uw","code":"61817051","ids":",uw61817051,","sources":",uw,","types":",origin,phase-data,","nst":31,"dmin":0.1971,"rms":0.16,"gap":65,"magType":"ml","type":"earthquake","title":"M 1.5 - 21 km E of Castle Rock, Washington"},"geometry":{"type":"Point","coordinates":[-122.6285,46.23916666666667,15.97]},"id":"uw61817051"},
- {"type":"Feature","properties":{"mag":0.9,"place":"15 km SSW of North Pole, Alaska","time":1644933598341,"updated":1644933869952,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224atd4b","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224atd4b.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"ak","code":"02224atd4b","ids":",ak02224atd4b,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.9 - 15 km SSW of North Pole, Alaska"},"geometry":{"type":"Point","coordinates":[-147.5286,64.6312,17.8]},"id":"ak02224atd4b"},
- {"type":"Feature","properties":{"mag":2.39,"place":"10 km E of Pāhala, Hawaii","time":1644932910000,"updated":1644935121040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918247","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918247.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":88,"net":"hv","code":"72918247","ids":",us7000gl1h,hv72918247,","sources":",us,hv,","types":",origin,phase-data,","nst":50,"dmin":null,"rms":0.150000006,"gap":159,"magType":"ml","type":"earthquake","title":"M 2.4 - 10 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.374496459961,19.2116661071777,32.25]},"id":"hv72918247"},
- {"type":"Feature","properties":{"mag":1.41,"place":"6km NW of The Geysers, CA","time":1644932599940,"updated":1644942137112,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693211","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693211.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":31,"net":"nc","code":"73693211","ids":",nc73693211,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.06004,"rms":0.09,"gap":122,"magType":"md","type":"earthquake","title":"M 1.4 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7973328,38.8175011,-0.8]},"id":"nc73693211"},
- {"type":"Feature","properties":{"mag":1.56,"place":"6km NW of The Geysers, CA","time":1644932596780,"updated":1644942372131,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693206","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693206.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":37,"net":"nc","code":"73693206","ids":",nc73693206,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.006673,"rms":0.01,"gap":40,"magType":"md","type":"earthquake","title":"M 1.6 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8044968,38.8183327,2.69]},"id":"nc73693206"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"5 km SSE of Floriston, California","time":1644931651790,"updated":1644963875556,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833914","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833914.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833914","ids":",nn00833914,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.062,"rms":0.0954,"gap":160.57,"magType":"ml","type":"earthquake","title":"M -0.1 - 5 km SSE of Floriston, California"},"geometry":{"type":"Point","coordinates":[-120.0012,39.3482,5.3]},"id":"nn00833914"},
- {"type":"Feature","properties":{"mag":1.7,"place":"34 km W of Clear, Alaska, Alaska","time":1644930552421,"updated":1644930844321,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02224aijzi","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02224aijzi.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02224aijzi","ids":",ak02224aijzi,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.84,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 34 km W of Clear, Alaska, Alaska"},"geometry":{"type":"Point","coordinates":[-149.9047,64.2461,0]},"id":"ak02224aijzi"},
- {"type":"Feature","properties":{"mag":2.34,"place":"11km NNE of Cayucos, CA","time":1644930380730,"updated":1645099330797,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693196","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693196.geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":85,"net":"nc","code":"73693196","ids":",nc73693196,","sources":",nc,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":50,"dmin":0.09532,"rms":0.07,"gap":65,"magType":"md","type":"earthquake","title":"M 2.3 - 11km NNE of Cayucos, CA"},"geometry":{"type":"Point","coordinates":[-120.8411667,35.5353333,6.98]},"id":"nc73693196"},
- {"type":"Feature","properties":{"mag":4.4,"place":"119 km SW of Singkil, Indonesia","time":1644930342126,"updated":1644934282040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl1d","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl1d.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gl1d","ids":",us7000gl1d,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.459,"rms":0.57,"gap":81,"magType":"mb","type":"earthquake","title":"M 4.4 - 119 km SW of Singkil, Indonesia"},"geometry":{"type":"Point","coordinates":[97.1328,1.4277,31.86]},"id":"us7000gl1d"},
- {"type":"Feature","properties":{"mag":1.57,"place":"6 km ENE of Adak, Alaska","time":1644929625670,"updated":1644968454190,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91491321","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91491321.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"av","code":"91491321","ids":",av91491321,","sources":",av,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.19,"gap":148,"magType":"ml","type":"earthquake","title":"M 1.6 - 6 km ENE of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-176.546666666667,51.9023333333333,2.89]},"id":"av91491321"},
- {"type":"Feature","properties":{"mag":0.9,"place":"2 km ESE of Alamo, Nevada","time":1644929355372,"updated":1644963314731,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833902","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833902.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nn","code":"00833902","ids":",nn00833902,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.088,"rms":0.1151,"gap":191.55,"magType":"ml","type":"earthquake","title":"M 0.9 - 2 km ESE of Alamo, Nevada"},"geometry":{"type":"Point","coordinates":[-115.1431,37.3568,1.1]},"id":"nn00833902"},
- {"type":"Feature","properties":{"mag":0.68,"place":"6km NW of The Geysers, CA","time":1644928755990,"updated":1644931336975,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693191","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693191.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":7,"net":"nc","code":"73693191","ids":",nc73693191,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.008043,"rms":0.02,"gap":41,"magType":"md","type":"earthquake","title":"M 0.7 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7983322,38.8156662,3.15]},"id":"nc73693191"},
- {"type":"Feature","properties":{"mag":0.8,"place":"5 km SW of Walker, California","time":1644928726612,"updated":1644959351621,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833901","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833901.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"nn","code":"00833901","ids":",nn00833901,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.072,"rms":0.0694,"gap":197.82,"magType":"ml","type":"earthquake","title":"M 0.8 - 5 km SW of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.5256,38.4819,6.4]},"id":"nn00833901"},
- {"type":"Feature","properties":{"mag":0.94,"place":"4 km WSW of Meridian, Oklahoma","time":1644928641300,"updated":1645024035959,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dfeq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dfeq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ok","code":"2022dfeq","ids":",ok2022dfeq,","sources":",ok,","types":",origin,phase-data,","nst":39,"dmin":0.08368357843,"rms":0.29,"gap":83,"magType":"ml","type":"earthquake","title":"M 0.9 - 4 km WSW of Meridian, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.28783333,35.8255,6.27]},"id":"ok2022dfeq"},
- {"type":"Feature","properties":{"mag":2.4,"place":"120 km E of McCarthy, Alaska","time":1644927732760,"updated":1644928179367,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022249zwpm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022249zwpm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":89,"net":"ak","code":"022249zwpm","ids":",ak022249zwpm,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.4 - 120 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6599,61.4709,0]},"id":"ak022249zwpm"},
- {"type":"Feature","properties":{"mag":1,"place":"40 km SSE of Goldfield, Nevada","time":1644927283996,"updated":1644955648664,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833898","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833898.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833898","ids":",nn00833898,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.152,"rms":0.1759,"gap":204.18,"magType":"ml","type":"earthquake","title":"M 1.0 - 40 km SSE of Goldfield, Nevada"},"geometry":{"type":"Point","coordinates":[-117.089,37.3656,6.9]},"id":"nn00833898"},
- {"type":"Feature","properties":{"mag":1,"place":"7km W of Cobb, CA","time":1644927029510,"updated":1644930614900,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693181","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693181.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73693181","ids":",nc73693181,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.009257,"rms":0.05,"gap":43,"magType":"md","type":"earthquake","title":"M 1.0 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8030014,38.8308334,1.71]},"id":"nc73693181"},
- {"type":"Feature","properties":{"mag":2.18,"place":"7 km SSE of Maria Antonia, Puerto Rico","time":1644926861280,"updated":1644929141590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334948","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334948.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":73,"net":"pr","code":"71334948","ids":",pr71334948,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.16,"gap":227,"magType":"md","type":"earthquake","title":"M 2.2 - 7 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8598333333333,17.9128333333333,16.95]},"id":"pr71334948"},
- {"type":"Feature","properties":{"mag":1.12,"place":"6km NW of The Geysers, CA","time":1644926784420,"updated":1644938410750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693176","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693176.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nc","code":"73693176","ids":",nc73693176,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.00699,"rms":0.01,"gap":35,"magType":"md","type":"earthquake","title":"M 1.1 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.800499,38.8136673,3.24]},"id":"nc73693176"},
- {"type":"Feature","properties":{"mag":2.33,"place":"6 km WSW of La Parguera, Puerto Rico","time":1644926701280,"updated":1644929232420,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334943","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334943.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"pr","code":"71334943","ids":",pr71334943,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.06,"gap":284,"magType":"md","type":"earthquake","title":"M 2.3 - 6 km WSW of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.1041666666667,17.9498333333333,10.01]},"id":"pr71334943"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1644926590490,"updated":1644929174746,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693171","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693171.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693171","ids":",nc73693171,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.006234,"rms":0.02,"gap":85,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7990036,38.8134995,3.48]},"id":"nc73693171"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1644926305570,"updated":1644928522675,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693166","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693166.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693166","ids":",nc73693166,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.008479,"rms":0.01,"gap":203,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7971649,38.8163338,3.45]},"id":"nc73693166"},
- {"type":"Feature","properties":{"mag":2.25,"place":"9 km ENE of Pāhala, Hawaii","time":1644925744200,"updated":1644925934660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918147","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918147.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":78,"net":"hv","code":"72918147","ids":",hv72918147,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.129999995,"gap":143,"magType":"md","type":"earthquake","title":"M 2.3 - 9 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.399673461914,19.2358341217041,31.6700000762939]},"id":"hv72918147"},
- {"type":"Feature","properties":{"mag":0.53,"place":"14km SE of Mammoth Lakes, CA","time":1644925715960,"updated":1644944655407,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693161","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693161.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nc","code":"73693161","ids":",nc73693161,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.07069,"rms":0.07,"gap":199,"magType":"md","type":"earthquake","title":"M 0.5 - 14km SE of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.8848333,37.5348333,5.53]},"id":"nc73693161"},
- {"type":"Feature","properties":{"mag":0.93,"place":"1km WNW of Anderson Springs, CA","time":1644925519350,"updated":1644927802612,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693156","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693156.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":13,"net":"nc","code":"73693156","ids":",nc73693156,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01172,"rms":0.02,"gap":79,"magType":"md","type":"earthquake","title":"M 0.9 - 1km WNW of Anderson Springs, CA"},"geometry":{"type":"Point","coordinates":[-122.7060013,38.7786674,1.16]},"id":"nc73693156"},
- {"type":"Feature","properties":{"mag":2.48,"place":"6km NW of The Geysers, CA","time":1644925251890,"updated":1644936731579,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693151","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693151.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":95,"net":"nc","code":"73693151","ids":",nc73693151,","sources":",nc,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":44,"dmin":0.007795,"rms":0.06,"gap":39,"magType":"md","type":"earthquake","title":"M 2.5 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7991638,38.8151665,3.34]},"id":"nc73693151"},
- {"type":"Feature","properties":{"mag":0.92,"place":"9km WNW of The Geysers, CA","time":1644925165680,"updated":1644927081545,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693146","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693146.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":13,"net":"nc","code":"73693146","ids":",nc73693146,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.008774,"rms":0.03,"gap":57,"magType":"md","type":"earthquake","title":"M 0.9 - 9km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8483353,38.8218346,1.58]},"id":"nc73693146"},
- {"type":"Feature","properties":{"mag":1.68,"place":"6km NW of The Geysers, CA","time":1644925079500,"updated":1644935891485,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693141","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693141.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":43,"net":"nc","code":"73693141","ids":",nc73693141,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.00875,"rms":0.02,"gap":30,"magType":"md","type":"earthquake","title":"M 1.7 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.796669,38.8166656,3.23]},"id":"nc73693141"},
- {"type":"Feature","properties":{"mag":4.2,"place":"58 km ENE of Xinyuan, China","time":1644924759016,"updated":1644940090040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl0w","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl0w.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gl0w","ids":",us7000gl0w,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.237,"rms":0.51,"gap":75,"magType":"mb","type":"earthquake","title":"M 4.2 - 58 km ENE of Xinyuan, China"},"geometry":{"type":"Point","coordinates":[83.9135,43.6354,10]},"id":"us7000gl0w"},
- {"type":"Feature","properties":{"mag":2.55,"place":"3 km WSW of Guánica, Puerto Rico","time":1644924632860,"updated":1644927699210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334938","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334938.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":100,"net":"pr","code":"71334938","ids":",pr71334938,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.1,"gap":201,"magType":"md","type":"earthquake","title":"M 2.6 - 3 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9413333333333,17.9596666666667,7.41]},"id":"pr71334938"},
- {"type":"Feature","properties":{"mag":1.1,"place":"25 km SSW of Hawthorne, Nevada","time":1644924490094,"updated":1644950266056,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833886","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833886.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833886","ids":",nn00833886,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.196,"rms":0.1378,"gap":160.05,"magType":"ml","type":"earthquake","title":"M 1.1 - 25 km SSW of Hawthorne, Nevada"},"geometry":{"type":"Point","coordinates":[-118.742,38.313,6.5]},"id":"nn00833886"},
- {"type":"Feature","properties":{"mag":1.01,"place":"7km WNW of Cobb, CA","time":1644923413700,"updated":1644925643407,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693131","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693131.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":16,"net":"nc","code":"73693131","ids":",nc73693131,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.005145,"rms":0.03,"gap":94,"magType":"md","type":"earthquake","title":"M 1.0 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7993317,38.8499985,1.73]},"id":"nc73693131"},
- {"type":"Feature","properties":{"mag":2.11,"place":"5 km W of Fuig, Puerto Rico","time":1644923376420,"updated":1644925810680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334933","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334933.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"pr","code":"71334933","ids":",pr71334933,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.03,"gap":176,"magType":"md","type":"earthquake","title":"M 2.1 - 5 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9688333333333,17.9843333333333,11.12]},"id":"pr71334933"},
- {"type":"Feature","properties":{"mag":0.6,"place":"15 km SE of Lincoln, Montana","time":1644922913550,"updated":1644940185100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538469","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538469.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"mb","code":"80538469","ids":",mb80538469,","sources":",mb,","types":",origin,phase-data,","nst":6,"dmin":0.045,"rms":0.07,"gap":142,"magType":"ml","type":"earthquake","title":"M 0.6 - 15 km SE of Lincoln, Montana"},"geometry":{"type":"Point","coordinates":[-112.5191667,46.8735,12.45]},"id":"mb80538469"},
- {"type":"Feature","properties":{"mag":0.36,"place":"10km WNW of The Geysers, CA","time":1644922373790,"updated":1644924923341,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693121","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693121.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693121","ids":",nc73693121,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.004547,"rms":0.01,"gap":63,"magType":"md","type":"earthquake","title":"M 0.4 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8535004,38.8238335,2.66]},"id":"nc73693121"},
- {"type":"Feature","properties":{"mag":2.25,"place":"8 km ENE of Pāhala, Hawaii","time":1644921462470,"updated":1644921793510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918047","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918047.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":78,"net":"hv","code":"72918047","ids":",hv72918047,","sources":",hv,","types":",origin,phase-data,","nst":49,"dmin":null,"rms":0.140000001,"gap":159,"magType":"ml","type":"earthquake","title":"M 2.3 - 8 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.401336669922,19.2256660461426,32.0499992370605]},"id":"hv72918047"},
- {"type":"Feature","properties":{"mag":1.6,"place":"39 km E of Skwentna, Alaska","time":1644921375563,"updated":1644921537379,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022248w1qs","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022248w1qs.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"022248w1qs","ids":",ak022248w1qs,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.4,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 39 km E of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6396,62.0065,52]},"id":"ak022248w1qs"},
- {"type":"Feature","properties":{"mag":2.34,"place":"2 km NW of Indios, Puerto Rico","time":1644921169770,"updated":1644922399810,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334928","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334928.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"pr","code":"71334928","ids":",pr71334928,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.11,"gap":153,"magType":"md","type":"earthquake","title":"M 2.3 - 2 km NW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8348333333333,18.0078333333333,12.56]},"id":"pr71334928"},
- {"type":"Feature","properties":{"mag":1.76999998,"place":"5 km E of Pāhala, Hawaii","time":1644920897810,"updated":1644921091950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72918042","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72918042.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":48,"net":"hv","code":"72918042","ids":",hv72918042,","sources":",hv,","types":",origin,phase-data,","nst":41,"dmin":null,"rms":0.109999999,"gap":148,"magType":"md","type":"earthquake","title":"M 1.8 - 5 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.428329467773,19.2023334503174,33.9000015258789]},"id":"hv72918042"},
- {"type":"Feature","properties":{"mag":2.5,"place":"2 km NE of Yauco, Puerto Rico","time":1644919652810,"updated":1644926310522,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334918","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334918.geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"pr","code":"71334918","ids":",pr71334918,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":8,"dmin":null,"rms":0.07,"gap":118,"magType":"md","type":"earthquake","title":"M 2.5 - 2 km NE of Yauco, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8326666666667,18.0528333333333,18.91]},"id":"pr71334918"},
- {"type":"Feature","properties":{"mag":0.86,"place":"2km WNW of Cobb, CA","time":1644919197540,"updated":1644922814137,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693101","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693101.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693101","ids":",nc73693101,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01792,"rms":0.05,"gap":157,"magType":"md","type":"earthquake","title":"M 0.9 - 2km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7474976,38.8266678,0.32]},"id":"nc73693101"},
- {"type":"Feature","properties":{"mag":1.9000000000000001,"place":"14 km S of Gold Bar, Washington","time":1644919044030,"updated":1644940936480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817041","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817041.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"uw","code":"61817041","ids":",uw61817041,","sources":",uw,","types":",origin,phase-data,","nst":33,"dmin":0.04017,"rms":0.15,"gap":89,"magType":"ml","type":"earthquake","title":"M 1.9 - 14 km S of Gold Bar, Washington"},"geometry":{"type":"Point","coordinates":[-121.70916666666666,47.730666666666664,27.44]},"id":"uw61817041"},
- {"type":"Feature","properties":{"mag":0.74,"place":"17km ESE of Little Lake, CA","time":1644918521790,"updated":1644944395932,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186504","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186504.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40186504","ids":",ci40186504,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.08456,"rms":0.07,"gap":58,"magType":"ml","type":"earthquake","title":"M 0.7 - 17km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7286667,35.892,6.24]},"id":"ci40186504"},
- {"type":"Feature","properties":{"mag":1.7,"place":"71 km WNW of Nikiski, Alaska","time":1644918341077,"updated":1644918552061,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022248cljv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022248cljv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"022248cljv","ids":",ak022248cljv,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.73,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 71 km WNW of Nikiski, Alaska"},"geometry":{"type":"Point","coordinates":[-152.4981,60.9489,93.4]},"id":"ak022248cljv"},
- {"type":"Feature","properties":{"mag":0.47,"place":"24km SSW of La Quinta, CA","time":1644918130870,"updated":1644944223048,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186496","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186496.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40186496","ids":",ci40186496,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.1224,"rms":0.15,"gap":79,"magType":"ml","type":"earthquake","title":"M 0.5 - 24km SSW of La Quinta, CA"},"geometry":{"type":"Point","coordinates":[-116.4266667,33.4713333,13.16]},"id":"ci40186496"},
- {"type":"Feature","properties":{"mag":0.46,"place":"8km S of Idyllwild, CA","time":1644917475510,"updated":1644936768154,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186488","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186488.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40186488","ids":",ci40186488,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.03926,"rms":0.12,"gap":96,"magType":"ml","type":"earthquake","title":"M 0.5 - 8km S of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7205,33.6721667,15.49]},"id":"ci40186488"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of Cobb, CA","time":1644916097800,"updated":1644918915749,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693091","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693091.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693091","ids":",nc73693091,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01325,"rms":0.02,"gap":72,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8071671,38.8366661,2.21]},"id":"nc73693091"},
- {"type":"Feature","properties":{"mag":2.37,"place":"3 km NNW of Fuig, Puerto Rico","time":1644916030970,"updated":1644923481600,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334908","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334908.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":86,"net":"pr","code":"71334908","ids":",pr71334908,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.03,"gap":171,"magType":"md","type":"earthquake","title":"M 2.4 - 3 km NNW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9241666666667,18.014,12.25]},"id":"pr71334908"},
- {"type":"Feature","properties":{"mag":1.03,"place":"12 km E of Crowder, Oklahoma","time":1644915360460,"updated":1645023636581,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dexi","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dexi.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ok","code":"2022dexi","ids":",ok2022dexi,","sources":",ok,","types":",origin,phase-data,","nst":28,"dmin":0.106179164,"rms":0.25,"gap":182,"magType":"ml","type":"earthquake","title":"M 1.0 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53883333,35.112,7.75]},"id":"ok2022dexi"},
- {"type":"Feature","properties":{"mag":0.48,"place":"8km N of San Jacinto, CA","time":1644914643920,"updated":1644943586527,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186480","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186480.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40186480","ids":",ci40186480,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.1414,"rms":0.13,"gap":91,"magType":"ml","type":"earthquake","title":"M 0.5 - 8km N of San Jacinto, CA"},"geometry":{"type":"Point","coordinates":[-116.966,33.8508333,13.18]},"id":"ci40186480"},
- {"type":"Feature","properties":{"mag":3.2,"place":"57 km N of Petersville, Alaska","time":1644914637162,"updated":1644918188040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022247qrqk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022247qrqk.geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":158,"net":"ak","code":"022247qrqk","ids":",ak022247qrqk,us7000gl0i,","sources":",ak,us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":null,"rms":0.54,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 57 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6416,63.0112,105.1]},"id":"ak022247qrqk"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km NW of The Geysers, CA","time":1644914592810,"updated":1644915610422,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693086","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693086.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693086","ids":",nc73693086,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007016,"rms":0.02,"gap":123,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8280029,38.815834,2.36]},"id":"nc73693086"},
- {"type":"Feature","properties":{"mag":1.12,"place":"11 km E of Crowder, Oklahoma","time":1644914210020,"updated":1645023065420,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dewr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dewr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"ok","code":"2022dewr","ids":",ok2022dewr,","sources":",ok,","types":",origin,phase-data,","nst":35,"dmin":0.1025798703,"rms":0.25,"gap":106,"magType":"ml","type":"earthquake","title":"M 1.1 - 11 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.54066667,35.11716667,7.55]},"id":"ok2022dewr"},
- {"type":"Feature","properties":{"mag":2.14,"place":"6 km W of Fuig, Puerto Rico","time":1644914011110,"updated":1644922561760,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334903","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334903.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"pr","code":"71334903","ids":",pr71334903,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.04,"gap":171,"magType":"md","type":"earthquake","title":"M 2.1 - 6 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9785,17.9816666666667,9.65]},"id":"pr71334903"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1644913750050,"updated":1644914951508,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693076","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693076.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693076","ids":",nc73693076,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007492,"rms":0.01,"gap":121,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.800499,38.8238335,3.48]},"id":"nc73693076"},
- {"type":"Feature","properties":{"mag":0.4,"place":"20 km NNW of Indian Springs, Nevada","time":1644913422337,"updated":1644955087523,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833897","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833897.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833897","ids":",nn00833897,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.204,"rms":0.1444,"gap":294.9,"magType":"ml","type":"earthquake","title":"M 0.4 - 20 km NNW of Indian Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-115.7322,36.7487,7.1]},"id":"nn00833897"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km W of Cobb, CA","time":1644913411490,"updated":1644914711320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693071","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693071.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693071","ids":",nc73693071,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.008947,"rms":0.01,"gap":80,"magType":"md","type":"earthquake","title":"M 0.9 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8014984,38.8293343,1.74]},"id":"nc73693071"},
- {"type":"Feature","properties":{"mag":1.4,"place":"16 km NW of Ferry, Alaska","time":1644913129676,"updated":1644950576241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022247le6h","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022247le6h.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"ak","code":"022247le6h","ids":",ak022247le6h,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.43,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 16 km NW of Ferry, Alaska"},"geometry":{"type":"Point","coordinates":[-149.3351,64.1239,134.4]},"id":"ak022247le6h"},
- {"type":"Feature","properties":{"mag":1.88,"place":"10km NW of Santa Paula, CA","time":1644913090990,"updated":1644997920853,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186472","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186472.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":55,"net":"ci","code":"40186472","ids":",ci40186472,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":56,"dmin":0.01723,"rms":0.28,"gap":39,"magType":"ml","type":"earthquake","title":"M 1.9 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1365,34.4196667,15.46]},"id":"ci40186472"},
- {"type":"Feature","properties":{"mag":0.97,"place":"6km NW of The Geysers, CA","time":1644912984320,"updated":1644914471295,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693066","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693066.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73693066","ids":",nc73693066,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.008789,"rms":0.02,"gap":53,"magType":"md","type":"earthquake","title":"M 1.0 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7988358,38.8238335,2.96]},"id":"nc73693066"},
- {"type":"Feature","properties":{"mag":0.85,"place":"10km WNW of The Geysers, CA","time":1644912736600,"updated":1644912833456,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693061","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693061.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693061","ids":",nc73693061,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":16,"dmin":0.0009657,"rms":0.01,"gap":80,"magType":"md","type":"earthquake","title":"M 0.9 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8556671,38.8273315,2.67]},"id":"nc73693061"},
- {"type":"Feature","properties":{"mag":0.54,"place":"16 km SSW of Mammoth, Wyoming","time":1644912714640,"updated":1644940237050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482037","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482037.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uu","code":"60482037","ids":",uu60482037,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.07327,"rms":0.02,"gap":282,"magType":"md","type":"earthquake","title":"M 0.5 - 16 km SSW of Mammoth, Wyoming"},"geometry":{"type":"Point","coordinates":[-110.7675,44.8316667,8.04]},"id":"uu60482037"},
- {"type":"Feature","properties":{"mag":2.8,"place":"9 km NW of Nordheim, Texas","time":1644912463612,"updated":1644936392480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl0e","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl0e.geojson","felt":2,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"7000gl0e","ids":",us7000gl0e,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.158,"rms":1.15,"gap":190,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 9 km NW of Nordheim, Texas"},"geometry":{"type":"Point","coordinates":[-97.6837,28.97,5]},"id":"us7000gl0e"},
- {"type":"Feature","properties":{"mag":5,"place":"39 km NNE of Anse-Bertrand, Guadeloupe","time":1644912180150,"updated":1645124942042,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gl0d","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gl0d.geojson","felt":53,"cdi":4.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":406,"net":"us","code":"7000gl0d","ids":",us7000gl0d,","sources":",us,","types":",dyfi,moment-tensor,origin,phase-data,","nst":null,"dmin":0.345,"rms":1.05,"gap":41,"magType":"mww","type":"earthquake","title":"M 5.0 - 39 km NNE of Anse-Bertrand, Guadeloupe"},"geometry":{"type":"Point","coordinates":[-61.3424,16.7921,43.67]},"id":"us7000gl0d"},
- {"type":"Feature","properties":{"mag":0.86,"place":"2km SW of Cobb, CA","time":1644912060320,"updated":1644912157288,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693056","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693056.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693056","ids":",nc73693056,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":8,"dmin":0.02777,"rms":0.03,"gap":197,"magType":"md","type":"earthquake","title":"M 0.9 - 2km SW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.745163,38.8105011,3.78]},"id":"nc73693056"},
- {"type":"Feature","properties":{"mag":1.6,"place":"62 km SE of Denali National Park, Alaska","time":1644911633609,"updated":1644911839695,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222477h1o","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222477h1o.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0222477h1o","ids":",ak0222477h1o,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.29,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 62 km SE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9245,63.1056,129.9]},"id":"ak0222477h1o"},
- {"type":"Feature","properties":{"mag":0.5,"place":"4 km NNE of Carter Springs, Nevada","time":1644911563170,"updated":1644954900493,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833896","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833896.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nn","code":"00833896","ids":",nn00833896,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.015,"rms":0.1219,"gap":190.58,"magType":"ml","type":"earthquake","title":"M 0.5 - 4 km NNE of Carter Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6272,38.8975,2.7]},"id":"nn00833896"},
- {"type":"Feature","properties":{"mag":2.19,"place":"11 km ENE of Pāhala, Hawaii","time":1644911544930,"updated":1644911876780,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917932","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917932.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72917932","ids":",hv72917932,","sources":",hv,","types":",origin,phase-data,","nst":51,"dmin":null,"rms":0.140000001,"gap":154,"magType":"ml","type":"earthquake","title":"M 2.2 - 11 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.376327514648,19.2255001068115,33.1399993896484]},"id":"hv72917932"},
- {"type":"Feature","properties":{"mag":0.95,"place":"2km NNW of The Geysers, CA","time":1644911142720,"updated":1644912431098,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693051","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693051.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73693051","ids":",nc73693051,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.0098,"rms":0.03,"gap":100,"magType":"md","type":"earthquake","title":"M 1.0 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7621689,38.7910004,2.02]},"id":"nc73693051"},
- {"type":"Feature","properties":{"mag":0.86,"place":"10km NW of The Geysers, CA","time":1644910835630,"updated":1644912010056,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693046","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693046.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73693046","ids":",nc73693046,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.002032,"rms":0.01,"gap":120,"magType":"md","type":"earthquake","title":"M 0.9 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8368301,38.840332,1.23]},"id":"nc73693046"},
- {"type":"Feature","properties":{"mag":0.37,"place":"9km WNW of Cobb, CA","time":1644910720020,"updated":1644911771035,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693041","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693041.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693041","ids":",nc73693041,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.009114,"rms":0.01,"gap":95,"magType":"md","type":"earthquake","title":"M 0.4 - 9km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.824501,38.8416672,1.56]},"id":"nc73693041"},
- {"type":"Feature","properties":{"mag":1.3,"place":"58 km SW of Lund, Nevada","time":1644910659977,"updated":1644954527634,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833894","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833894.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833894","ids":",nn00833894,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.922,"rms":0.1495,"gap":270.44,"magType":"ml","type":"earthquake","title":"M 1.3 - 58 km SW of Lund, Nevada"},"geometry":{"type":"Point","coordinates":[-115.46,38.4672,7.6]},"id":"nn00833894"},
- {"type":"Feature","properties":{"mag":2.1400001,"place":"10 km E of Pāhala, Hawaii","time":1644910631420,"updated":1644910834040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917912","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917912.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72917912","ids":",hv72917912,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.119999997,"gap":155,"magType":"md","type":"earthquake","title":"M 2.1 - 10 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.382659912109,19.2196674346924,32.1199989318848]},"id":"hv72917912"},
- {"type":"Feature","properties":{"mag":0.32,"place":"10km WNW of Cobb, CA","time":1644910291470,"updated":1644911290993,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693036","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693036.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693036","ids":",nc73693036,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.00467,"rms":0.02,"gap":109,"magType":"md","type":"earthquake","title":"M 0.3 - 10km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8304977,38.8411674,2.02]},"id":"nc73693036"},
- {"type":"Feature","properties":{"mag":0.7,"place":"8km S of Idyllwild, CA","time":1644909342850,"updated":1644936819986,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186456","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186456.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40186456","ids":",ci40186456,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.04404,"rms":0.13,"gap":92,"magType":"ml","type":"earthquake","title":"M 0.7 - 8km S of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.722,33.6675,14.53]},"id":"ci40186456"},
- {"type":"Feature","properties":{"mag":0.34,"place":"8km S of Idyllwild, CA","time":1644909093730,"updated":1644937715246,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186448","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186448.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40186448","ids":",ci40186448,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.03899,"rms":0.08,"gap":79,"magType":"ml","type":"earthquake","title":"M 0.3 - 8km S of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7205,33.667,14.42]},"id":"ci40186448"},
- {"type":"Feature","properties":{"mag":2.38,"place":"6 km ENE of Pāhala, Hawaii","time":1644908964900,"updated":1644909295440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917882","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917882.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":87,"net":"hv","code":"72917882","ids":",hv72917882,","sources":",hv,","types":",origin,phase-data,","nst":49,"dmin":null,"rms":0.119999997,"gap":128,"magType":"ml","type":"earthquake","title":"M 2.4 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.424667358398,19.2299995422363,35.9199981689453]},"id":"hv72917882"},
- {"type":"Feature","properties":{"mag":1.8,"place":"16 km SSE of Sunnyside, Utah","time":1644908786730,"updated":1644940395790,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482032","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482032.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"uu","code":"60482032","ids":",uu60482032,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.01706,"rms":0.09,"gap":197,"magType":"md","type":"earthquake","title":"M 1.8 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3033333,39.4215,-2.11]},"id":"uu60482032"},
- {"type":"Feature","properties":{"mag":0.53,"place":"23 km SSW of Mammoth, Wyoming","time":1644908743370,"updated":1644935987560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482027","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482027.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uu","code":"60482027","ids":",uu60482027,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.01382,"rms":0.21,"gap":103,"magType":"md","type":"earthquake","title":"M 0.5 - 23 km SSW of Mammoth, Wyoming"},"geometry":{"type":"Point","coordinates":[-110.8315,44.7855,5.52]},"id":"uu60482027"},
- {"type":"Feature","properties":{"mag":1.4,"place":"2 km NE of Sunrise, Alaska","time":1644908596645,"updated":1644908794325,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022246wods","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022246wods.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"022246wods","ids":",ak022246wods,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 2 km NE of Sunrise, Alaska"},"geometry":{"type":"Point","coordinates":[-149.3926,60.9032,28.2]},"id":"ak022246wods"},
- {"type":"Feature","properties":{"mag":1.6,"place":"67 km N of Petersville, Alaska","time":1644908107158,"updated":1644908303385,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022246mda3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022246mda3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"022246mda3","ids":",ak022246mda3,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.5,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 67 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5727,63.0995,106.7]},"id":"ak022246mda3"},
- {"type":"Feature","properties":{"mag":1.27,"place":"12 km E of Crowder, Oklahoma","time":1644907730039,"updated":1645022453468,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022detd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022detd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ok","code":"2022detd","ids":",ok2022detd,","sources":",ok,","types":",origin,phase-data,","nst":37,"dmin":0.1115781046,"rms":0.27,"gap":84,"magType":"ml","type":"earthquake","title":"M 1.3 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53266667,35.10266667,7.66]},"id":"ok2022detd"},
- {"type":"Feature","properties":{"mag":2.1400001,"place":"Island of Hawaii, Hawaii","time":1644907407430,"updated":1644907593720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917857","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917857.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72917857","ids":",hv72917857,","sources":",hv,","types":",origin,phase-data,","nst":37,"dmin":null,"rms":0.0900000036,"gap":181,"magType":"md","type":"earthquake","title":"M 2.1 - Island of Hawaii, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.378326416016,19.2395000457764,32.9099998474121]},"id":"hv72917857"},
- {"type":"Feature","properties":{"mag":2.24,"place":"2 km NNW of Fuig, Puerto Rico","time":1644906667410,"updated":1644909558910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334883","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334883.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":77,"net":"pr","code":"71334883","ids":",pr71334883,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.06,"gap":224,"magType":"md","type":"earthquake","title":"M 2.2 - 2 km NNW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9216666666667,18.0128333333333,7.86]},"id":"pr71334883"},
- {"type":"Feature","properties":{"mag":1.2,"place":"24 km NNE of Chickaloon, Alaska","time":1644906645393,"updated":1644906910851,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022246h3bv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022246h3bv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"022246h3bv","ids":",ak022246h3bv,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.1,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 24 km NNE of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.2805,61.9986,36.9]},"id":"ak022246h3bv"},
- {"type":"Feature","properties":{"mag":1.34,"place":"12 km E of Crowder, Oklahoma","time":1644906590820,"updated":1645022099665,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022desm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022desm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":28,"net":"ok","code":"2022desm","ids":",ok2022desm,","sources":",ok,","types":",origin,phase-data,","nst":45,"dmin":0.1070789874,"rms":0.26,"gap":96,"magType":"ml","type":"earthquake","title":"M 1.3 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53466667,35.10883333,7.57]},"id":"ok2022desm"},
- {"type":"Feature","properties":{"mag":2.9,"place":"50 km N of Petersville, Alaska","time":1644906063629,"updated":1644906690303,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022246f2lg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022246f2lg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":129,"net":"ak","code":"022246f2lg","ids":",us7000gkzw,ak022246f2lg,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 50 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9148,62.9401,96.2]},"id":"ak022246f2lg"},
- {"type":"Feature","properties":{"mag":1.4,"place":"31 km SE of Mina, Nevada","time":1644905991159,"updated":1644948198608,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833885","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833885.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00833885","ids":",nn00833885,","sources":",nn,","types":",origin,phase-data,","nst":17,"dmin":0.07,"rms":0.1226,"gap":110.97,"magType":"ml","type":"earthquake","title":"M 1.4 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8786,38.1668,9.8]},"id":"nn00833885"},
- {"type":"Feature","properties":{"mag":2.04,"place":"Island of Hawaii, Hawaii","time":1644905961740,"updated":1644957234520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":64,"net":"hv","code":"72917832","ids":",hv72917832,","sources":",hv,","types":",origin,phase-data,","nst":42,"dmin":null,"rms":0.18,"gap":80,"magType":"md","type":"earthquake","title":"M 2.0 - Island of Hawaii, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.673333333333,19.41,2.86]},"id":"hv72917832"},
- {"type":"Feature","properties":{"mag":0.9,"place":"63 km E of Port Alsworth, Alaska","time":1644905811748,"updated":1644906058213,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022246e3sm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022246e3sm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"ak","code":"022246e3sm","ids":",ak022246e3sm,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.9 - 63 km E of Port Alsworth, Alaska"},"geometry":{"type":"Point","coordinates":[-153.1816,60.2861,35]},"id":"ak022246e3sm"},
- {"type":"Feature","properties":{"mag":3.85,"place":"76 km NNE of Cruz Bay, U.S. Virgin Islands","time":1644905423750,"updated":1644930536204,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022046000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022046000.geojson","felt":3,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":229,"net":"pr","code":"2022046000","ids":",pr2022046000,us7000gkzu,","sources":",pr,us,","types":",dyfi,origin,phase-data,","nst":21,"dmin":1.3922,"rms":0.3,"gap":332,"magType":"md","type":"earthquake","title":"M 3.9 - 76 km NNE of Cruz Bay, U.S. Virgin Islands"},"geometry":{"type":"Point","coordinates":[-64.4388,18.9326,58]},"id":"pr2022046000"},
- {"type":"Feature","properties":{"mag":0.9,"place":"9 km ENE of Avon, Montana","time":1644905415420,"updated":1644939558230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538464","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538464.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"mb","code":"80538464","ids":",mb80538464,","sources":",mb,","types":",origin,phase-data,","nst":10,"dmin":0.121,"rms":0.12,"gap":132,"magType":"ml","type":"earthquake","title":"M 0.9 - 9 km ENE of Avon, Montana"},"geometry":{"type":"Point","coordinates":[-112.497,46.6435,8.94]},"id":"mb80538464"},
- {"type":"Feature","properties":{"mag":1.5,"place":"62 km S of Cantwell, Alaska","time":1644905306441,"updated":1644906158629,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022246cc4a","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022246cc4a.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"022246cc4a","ids":",ak022246cc4a,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.76,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 62 km S of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-148.8584,62.8286,11.3]},"id":"ak022246cc4a"},
- {"type":"Feature","properties":{"mag":0.7,"place":"10km NNE of Anza, CA","time":1644905280780,"updated":1644942102238,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186424","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186424.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40186424","ids":",ci40186424,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.0285,"rms":0.14,"gap":39,"magType":"ml","type":"earthquake","title":"M 0.7 - 10km NNE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6276667,33.6343333,12.06]},"id":"ci40186424"},
- {"type":"Feature","properties":{"mag":2.1,"place":"9 km NE of Avon, Montana","time":1644905035520,"updated":1644937706750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538449","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538449.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"mb","code":"80538449","ids":",mb80538449,","sources":",mb,","types":",origin,phase-data,","nst":33,"dmin":0.132,"rms":0.17,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.1 - 9 km NE of Avon, Montana"},"geometry":{"type":"Point","coordinates":[-112.5175,46.6536667,8.39]},"id":"mb80538449"},
- {"type":"Feature","properties":{"mag":1.8,"place":"41 km SSE of Glacier View, Alaska","time":1644904706667,"updated":1644905341779,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222461mbs","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222461mbs.geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0222461mbs","ids":",ak0222461mbs,","sources":",ak,","types":",dyfi,origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 41 km SSE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.392,61.4576,20]},"id":"ak0222461mbs"},
- {"type":"Feature","properties":{"mag":1.02,"place":"3km ENE of The Geysers, CA","time":1644904428990,"updated":1644905890457,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693026","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693026.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":16,"net":"nc","code":"73693026","ids":",nc73693026,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01004,"rms":0.01,"gap":93,"magType":"md","type":"earthquake","title":"M 1.0 - 3km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7266693,38.7895012,1.95]},"id":"nc73693026"},
- {"type":"Feature","properties":{"mag":2.7,"place":"8 km WNW of L'Épiphanie, Canada","time":1644904424678,"updated":1644992118040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkzp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkzp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"7000gkzp","ids":",us7000gkzp,","sources":",us,","types":",impact-text,origin,phase-data,","nst":null,"dmin":0.386,"rms":0.68,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.7 - 8 km WNW of L'Épiphanie, Canada"},"geometry":{"type":"Point","coordinates":[-73.5844,45.8859,9.12]},"id":"us7000gkzp"},
- {"type":"Feature","properties":{"mag":2.12,"place":"3 km SW of Sabana Grande, Puerto Rico","time":1644904387760,"updated":1644905133280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334868","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334868.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":69,"net":"pr","code":"71334868","ids":",pr71334868,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.1,"gap":239,"magType":"md","type":"earthquake","title":"M 2.1 - 3 km SW of Sabana Grande, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.987,18.0558333333333,5.8]},"id":"pr71334868"},
- {"type":"Feature","properties":{"mag":1.54,"place":"12 km E of Crowder, Oklahoma","time":1644904298659,"updated":1645019071142,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022derg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022derg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ok","code":"2022derg","ids":",ok2022derg,","sources":",ok,","types":",origin,phase-data,","nst":60,"dmin":0.1070789874,"rms":0.27,"gap":53,"magType":"ml","type":"earthquake","title":"M 1.5 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53416667,35.10866667,7.92]},"id":"ok2022derg"},
- {"type":"Feature","properties":{"mag":1.11,"place":"10 km ESE of Perry, Oklahoma","time":1644904116600,"updated":1645020567347,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022derd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022derd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"ok","code":"2022derd","ids":",ok2022derd,","sources":",ok,","types":",origin,phase-data,","nst":68,"dmin":0.04679081805,"rms":0.26,"gap":40,"magType":"ml","type":"earthquake","title":"M 1.1 - 10 km ESE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1775,36.266,5.4]},"id":"ok2022derd"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644903852590,"updated":1644903948520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693021","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693021.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73693021","ids":",nc73693021,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":8,"dmin":0.01217,"rms":0.01,"gap":111,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8164978,38.8344994,1.65]},"id":"nc73693021"},
- {"type":"Feature","properties":{"mag":1.13,"place":"7km WNW of Cobb, CA","time":1644903413410,"updated":1644908236667,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73693011","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73693011.geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73693011","ids":",nc73693011,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.008088,"rms":0.02,"gap":63,"magType":"md","type":"earthquake","title":"M 1.1 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8001633,38.8358345,1.97]},"id":"nc73693011"},
- {"type":"Feature","properties":{"mag":3.4,"place":"31 km SE of Mina, Nevada","time":1644903294330,"updated":1644946539955,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833880","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833880.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"nn","code":"00833880","ids":",nn00833880,us7000gkzl,","sources":",nn,us,","types":",dyfi,origin,phase-data,","nst":18,"dmin":0.06,"rms":0.178,"gap":55.98,"magType":"ml","type":"earthquake","title":"M 3.4 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8893,38.1622,10.2]},"id":"nn00833880"},
- {"type":"Feature","properties":{"mag":1.51,"place":"4km ENE of San Leandro, CA","time":1644903214660,"updated":1644906735535,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692996","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692996.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"nc","code":"73692996","ids":",nc73692996,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.01764,"rms":0.07,"gap":73,"magType":"md","type":"earthquake","title":"M 1.5 - 4km ENE of San Leandro, CA"},"geometry":{"type":"Point","coordinates":[-122.1191635,37.7418327,9.16]},"id":"nc73692996"},
- {"type":"Feature","properties":{"mag":0.51,"place":"9 km WNW of Seeley Lake, Montana","time":1644903006530,"updated":1644939178680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538459","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538459.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"mb","code":"80538459","ids":",mb80538459,","sources":",mb,","types":",origin,phase-data,","nst":7,"dmin":0.087,"rms":0.1,"gap":102,"magType":"ml","type":"earthquake","title":"M 0.5 - 9 km WNW of Seeley Lake, Montana"},"geometry":{"type":"Point","coordinates":[-113.6066667,47.2015,11.05]},"id":"mb80538459"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km WNW of Cobb, CA","time":1644902868910,"updated":1644903731263,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692991","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692991.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692991","ids":",nc73692991,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.007544,"rms":0.05,"gap":104,"magType":"md","type":"earthquake","title":"M 0.9 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8000031,38.8383331,8.93]},"id":"nc73692991"},
- {"type":"Feature","properties":{"mag":2.88,"place":"5 km E of Lajas, Puerto Rico","time":1644901641150,"updated":1644902875750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334863","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334863.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":128,"net":"pr","code":"71334863","ids":",pr71334863,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.18,"gap":149,"magType":"md","type":"earthquake","title":"M 2.9 - 5 km E of Lajas, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0095,18.045,22.75]},"id":"pr71334863"},
- {"type":"Feature","properties":{"mag":0.59,"place":"20km WNW of Searles Valley, CA","time":1644901420430,"updated":1644945800055,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186400","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186400.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40186400","ids":",ci40186400,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.01918,"rms":0.11,"gap":72,"magType":"ml","type":"earthquake","title":"M 0.6 - 20km WNW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.6198333,35.8095,6.42]},"id":"ci40186400"},
- {"type":"Feature","properties":{"mag":0.06,"place":"36 km NNE of Amboy, Washington","time":1644901382120,"updated":1644952195430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817021","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817021.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61817021","ids":",uw61817021,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.01283,"rms":0.07,"gap":169,"magType":"md","type":"earthquake","title":"M 0.1 - 36 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.20516666666667,46.19166666666667,2.88]},"id":"uw61817021"},
- {"type":"Feature","properties":{"mag":4.6,"place":"71 km WSW of Puerto Madero, Mexico","time":1644901315535,"updated":1644929376852,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkzc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkzc.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gkzc","ids":",us7000gkzc,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":3.182,"rms":0.66,"gap":135,"magType":"mb","type":"earthquake","title":"M 4.6 - 71 km WSW of Puerto Madero, Mexico"},"geometry":{"type":"Point","coordinates":[-93.0159,14.4323,31.23]},"id":"us7000gkzc"},
- {"type":"Feature","properties":{"mag":4.9,"place":"24 km SSE of Shagonar, Russia","time":1644901310226,"updated":1644904736040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkzj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkzj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkzj","ids":",us7000gkzj,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.667,"rms":0.3,"gap":37,"magType":"mb","type":"earthquake","title":"M 4.9 - 24 km SSE of Shagonar, Russia"},"geometry":{"type":"Point","coordinates":[93.0769,51.3359,29.09]},"id":"us7000gkzj"},
- {"type":"Feature","properties":{"mag":2.21,"place":"10 km E of Pāhala, Hawaii","time":1644901260950,"updated":1644901591160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917772","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917772.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":75,"net":"hv","code":"72917772","ids":",hv72917772,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.129999995,"gap":158,"magType":"ml","type":"earthquake","title":"M 2.2 - 10 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.378173828125,19.2123336791992,29.8099994659424]},"id":"hv72917772"},
- {"type":"Feature","properties":{"mag":1.65,"place":"11km SE of Pinnacles, CA","time":1644901098950,"updated":1644913510327,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692981","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692981.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":42,"net":"nc","code":"73692981","ids":",nc73692981,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.01347,"rms":0.16,"gap":95,"magType":"md","type":"earthquake","title":"M 1.7 - 11km SE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.0530014,36.4681664,5.94]},"id":"nc73692981"},
- {"type":"Feature","properties":{"mag":1.6,"place":"46 km SW of Skwentna, Alaska","time":1644901053235,"updated":1644901299553,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022245fzij","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022245fzij.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"022245fzij","ids":",ak022245fzij,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.61,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 46 km SW of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-152.0902,61.7349,103]},"id":"ak022245fzij"},
- {"type":"Feature","properties":{"mag":4.3,"place":"38 km S of Coihueco, Chile","time":1644900929091,"updated":1644974135000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkz9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkz9.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":285,"net":"us","code":"7000gkz9","ids":",us7000gkz9,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.576,"rms":0.63,"gap":94,"magType":"mb","type":"earthquake","title":"M 4.3 - 38 km S of Coihueco, Chile"},"geometry":{"type":"Point","coordinates":[-71.8826,-36.9685,100.39]},"id":"us7000gkz9"},
- {"type":"Feature","properties":{"mag":0.85,"place":"6km WNW of Cobb, CA","time":1644900840920,"updated":1644902772163,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692976","ids":",nc73692976,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.001758,"rms":0.01,"gap":78,"magType":"md","type":"earthquake","title":"M 0.9 - 6km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7906647,38.8366661,1.85]},"id":"nc73692976"},
- {"type":"Feature","properties":{"mag":0.2,"place":"9km NE of Aguanga, CA","time":1644900830870,"updated":1644941681682,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186392","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186392.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40186392","ids":",ci40186392,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.02232,"rms":0.13,"gap":47,"magType":"ml","type":"earthquake","title":"M 0.2 - 9km NE of Aguanga, CA"},"geometry":{"type":"Point","coordinates":[-116.7873333,33.4928333,6.95]},"id":"ci40186392"},
- {"type":"Feature","properties":{"mag":1.28,"place":"23km SSW of Ocotillo Wells, CA","time":1644900375420,"updated":1644941387480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186384","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186384.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ci","code":"40186384","ids":",ci40186384,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":52,"dmin":0.08983,"rms":0.22,"gap":54,"magType":"ml","type":"earthquake","title":"M 1.3 - 23km SSW of Ocotillo Wells, CA"},"geometry":{"type":"Point","coordinates":[-116.1971667,32.9448333,12.4]},"id":"ci40186384"},
- {"type":"Feature","properties":{"mag":1.87,"place":"5 km E of La Parguera, Puerto Rico","time":1644900056120,"updated":1644900849430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334858","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334858.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":54,"net":"pr","code":"71334858","ids":",pr71334858,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.02,"gap":190,"magType":"md","type":"earthquake","title":"M 1.9 - 5 km E of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9996666666667,17.9663333333333,12.21]},"id":"pr71334858"},
- {"type":"Feature","properties":{"mag":1.8,"place":"47 km E of Stevens Village, Alaska","time":1644899922510,"updated":1644900658338,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022245bxli","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022245bxli.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"022245bxli","ids":",ak022245bxli,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.79,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 47 km E of Stevens Village, Alaska"},"geometry":{"type":"Point","coordinates":[-148.0689,65.9332,7]},"id":"ak022245bxli"},
- {"type":"Feature","properties":{"mag":1.9,"place":"27 km SSE of Mina, Nevada","time":1644898908113,"updated":1644947084413,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833877","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833877.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"nn","code":"00833877","ids":",nn00833877,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.03,"rms":0.1226,"gap":114.33,"magType":"ml","type":"earthquake","title":"M 1.9 - 27 km SSE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.9679,38.1678,0.2]},"id":"nn00833877"},
- {"type":"Feature","properties":{"mag":1.35,"place":"8km WNW of Cobb, CA","time":1644898413110,"updated":1644905411412,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692966","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692966.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":28,"net":"nc","code":"73692966","ids":",nc73692966,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.01338,"rms":0.02,"gap":53,"magType":"md","type":"earthquake","title":"M 1.4 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8073349,38.8366661,2.24]},"id":"nc73692966"},
- {"type":"Feature","properties":{"mag":1.1,"place":"31 km SE of Mina, Nevada","time":1644898360265,"updated":1644949888599,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833876","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833876.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833876","ids":",nn00833876,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.062,"rms":0.1146,"gap":137.55,"magType":"ml","type":"earthquake","title":"M 1.1 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8878,38.1649,8.1]},"id":"nn00833876"},
- {"type":"Feature","properties":{"mag":2.17,"place":"10 km NNE of Stanley, Idaho","time":1644898217600,"updated":1644938270730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538439","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538439.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"mb","code":"80538439","ids":",mb80538439,","sources":",mb,","types":",origin,phase-data,","nst":15,"dmin":0.822,"rms":0.19,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.2 - 10 km NNE of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-114.8948333,44.3081667,6.33]},"id":"mb80538439"},
- {"type":"Feature","properties":{"mag":1.3,"place":"51 km NNE of Petersville, Alaska","time":1644897670932,"updated":1644897882889,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222453xp1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222453xp1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"0222453xp1","ids":",ak0222453xp1,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 51 km NNE of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5534,62.9443,109.9]},"id":"ak0222453xp1"},
- {"type":"Feature","properties":{"mag":1.14,"place":"6km NE of Running Springs, CA","time":1644897426450,"updated":1644939757800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186376","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186376.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40186376","ids":",ci40186376,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":52,"dmin":0.1189,"rms":0.13,"gap":38,"magType":"ml","type":"earthquake","title":"M 1.1 - 6km NE of Running Springs, CA"},"geometry":{"type":"Point","coordinates":[-117.062,34.2411667,3.77]},"id":"ci40186376"},
- {"type":"Feature","properties":{"mag":4.5,"place":"Pagan region, Northern Mariana Islands","time":1644897348982,"updated":1644966096040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkz7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkz7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkz7","ids":",us7000gkz7,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.746,"rms":0.62,"gap":88,"magType":"mb","type":"earthquake","title":"M 4.5 - Pagan region, Northern Mariana Islands"},"geometry":{"type":"Point","coordinates":[145.6893,18.2961,188.26]},"id":"us7000gkz7"},
- {"type":"Feature","properties":{"mag":1.14,"place":"7 km NW of Medford, Oklahoma","time":1644897184400,"updated":1645019584206,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022deni","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022deni.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ok","code":"2022deni","ids":",ok2022deni,","sources":",ok,","types":",origin,phase-data,","nst":46,"dmin":0.05308958201,"rms":0.29,"gap":74,"magType":"ml","type":"earthquake","title":"M 1.1 - 7 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.79383333,36.85566667,7.55]},"id":"ok2022deni"},
- {"type":"Feature","properties":{"mag":1.6,"place":"24 km SSW of Susitna, Alaska","time":1644896775411,"updated":1644897331877,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022244s5nr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022244s5nr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"022244s5nr","ids":",ak022244s5nr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.49,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 24 km SSW of Susitna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.7057,61.3483,46.4]},"id":"ak022244s5nr"},
- {"type":"Feature","properties":{"mag":1.97,"place":"3 km WSW of Guánica, Puerto Rico","time":1644896581940,"updated":1644897132780,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334853","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334853.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":60,"net":"pr","code":"71334853","ids":",pr71334853,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.03,"gap":195,"magType":"md","type":"earthquake","title":"M 2.0 - 3 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.941,17.9641666666667,14.27]},"id":"pr71334853"},
- {"type":"Feature","properties":{"mag":2.19,"place":"Island of Hawaii, Hawaii","time":1644895564360,"updated":1644899109330,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917707","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917707.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"hv","code":"72917707","ids":",hv72917707,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.12,"gap":96,"magType":"ml","type":"earthquake","title":"M 2.2 - Island of Hawaii, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.1485,19.3265,2.73]},"id":"hv72917707"},
- {"type":"Feature","properties":{"mag":1.82,"place":"2 km W of Fuig, Puerto Rico","time":1644894757250,"updated":1644895396150,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":51,"net":"pr","code":"71334848","ids":",pr71334848,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0,"gap":185,"magType":"md","type":"earthquake","title":"M 1.8 - 2 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9433333333333,17.9886666666667,10.08]},"id":"pr71334848"},
- {"type":"Feature","properties":{"mag":0.3,"place":"36 km NNE of Amboy, Washington","time":1644894223410,"updated":1644950692930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61817011","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61817011.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61817011","ids":",uw61817011,","sources":",uw,","types":",origin,phase-data,","nst":13,"dmin":0.01408,"rms":0.18,"gap":102,"magType":"ml","type":"earthquake","title":"M 0.3 - 36 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19483333333334,46.184333333333335,5.8]},"id":"uw61817011"},
- {"type":"Feature","properties":{"mag":2.1,"place":"8 km E of Pāhala, Hawaii","time":1644894208090,"updated":1644894539570,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917667","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917667.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"hv","code":"72917667","ids":",hv72917667,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.140000001,"gap":160,"magType":"ml","type":"earthquake","title":"M 2.1 - 8 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.399993896484,19.1958332061768,31.7299995422363]},"id":"hv72917667"},
- {"type":"Feature","properties":{"mag":2.1,"place":"7 km N of Fritz Creek, Alaska","time":1644893746412,"updated":1644894476616,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222448pvl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222448pvl.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"0222448pvl","ids":",ak0222448pvl,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 7 km N of Fritz Creek, Alaska"},"geometry":{"type":"Point","coordinates":[-151.2712,59.8007,45]},"id":"ak0222448pvl"},
- {"type":"Feature","properties":{"mag":1.04,"place":"11 km E of Crowder, Oklahoma","time":1644893531240,"updated":1645019859144,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022deli","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022deli.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ok","code":"2022deli","ids":",ok2022deli,","sources":",ok,","types":",origin,phase-data,","nst":25,"dmin":0.1088786343,"rms":0.23,"gap":130,"magType":"ml","type":"earthquake","title":"M 1.0 - 11 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.54116667,35.11016667,7.46]},"id":"ok2022deli"},
- {"type":"Feature","properties":{"mag":0.77,"place":"22km WNW of Searles Valley, CA","time":1644893276360,"updated":1644939126401,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186360","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186360.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40186360","ids":",ci40186360,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.03178,"rms":0.12,"gap":87,"magType":"ml","type":"earthquake","title":"M 0.8 - 22km WNW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.636,35.8213333,7.82]},"id":"ci40186360"},
- {"type":"Feature","properties":{"mag":2.3,"place":"42 km SSE of Glacier View, Alaska","time":1644893111354,"updated":1644893775337,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222446i0r","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222446i0r.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"0222446i0r","ids":",ak0222446i0r,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.75,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 42 km SSE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.4096,61.445,11.1]},"id":"ak0222446i0r"},
- {"type":"Feature","properties":{"mag":1.14,"place":"1 km ESE of Mullan, Idaho","time":1644892706790,"updated":1644938902450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538454","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538454.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"mb","code":"80538454","ids":",mb80538454,","sources":",mb,","types":",origin,phase-data,","nst":13,"dmin":0.522,"rms":0.37,"gap":181,"magType":"ml","type":"earthquake","title":"M 1.1 - 1 km ESE of Mullan, Idaho"},"geometry":{"type":"Point","coordinates":[-115.7878333,47.4671667,0.96]},"id":"mb80538454"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"10 km ENE of Pāhala, Hawaii","time":1644892185380,"updated":1644892387290,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917642","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917642.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72917642","ids":",hv72917642,","sources":",hv,","types":",origin,phase-data,","nst":35,"dmin":null,"rms":0.119999997,"gap":145,"magType":"md","type":"earthquake","title":"M 1.8 - 10 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.384994506836,19.2355003356934,32.6699981689453]},"id":"hv72917642"},
- {"type":"Feature","properties":{"mag":0.3,"place":"25 km SSW of Mina, Nevada","time":1644892180681,"updated":1644952488202,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833890","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833890.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833890","ids":",nn00833890,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.257,"rms":0.0919,"gap":185.62,"magType":"ml","type":"earthquake","title":"M 0.3 - 25 km SSW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.1913,38.1674,11.9]},"id":"nn00833890"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km NW of The Geysers, CA","time":1644892058680,"updated":1644894252329,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692951","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692951.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692951","ids":",nc73692951,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.003875,"rms":0.01,"gap":111,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8068314,38.8263321,2.27]},"id":"nc73692951"},
- {"type":"Feature","properties":{"mag":1.29,"place":"15km N of Dixon Lane-Meadow Creek, CA","time":1644891390350,"updated":1644921374995,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692946","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692946.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nc","code":"73692946","ids":",nc73692946,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.06097,"rms":0.04,"gap":67,"magType":"md","type":"earthquake","title":"M 1.3 - 15km N of Dixon Lane-Meadow Creek, CA"},"geometry":{"type":"Point","coordinates":[-118.4436667,37.5211667,6.27]},"id":"nc73692946"},
- {"type":"Feature","properties":{"mag":2.74,"place":"Puerto Rico region","time":1644890919550,"updated":1644894814010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334843","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334843.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":116,"net":"pr","code":"71334843","ids":",pr71334843,","sources":",pr,","types":",origin,phase-data,","nst":12,"dmin":null,"rms":0.1,"gap":103,"magType":"md","type":"earthquake","title":"M 2.7 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-66.868,18.017,15.61]},"id":"pr71334843"},
- {"type":"Feature","properties":{"mag":-0.05,"place":"5 km ESE of Unalaska, Alaska","time":1644890898450,"updated":1644965238790,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049653","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049653.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049653","ids":",av91049653,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.07,"gap":328,"magType":"ml","type":"earthquake","title":"M -0.1 - 5 km ESE of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.469333333333,53.8496666666667,9.51]},"id":"av91049653"},
- {"type":"Feature","properties":{"mag":2.08,"place":"7 km E of Pāhala, Hawaii","time":1644890802730,"updated":1644891132300,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917627","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917627.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":67,"net":"hv","code":"72917627","ids":",hv72917627,","sources":",hv,","types":",origin,phase-data,","nst":32,"dmin":null,"rms":0.109999999,"gap":148,"magType":"ml","type":"earthquake","title":"M 2.1 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.410339355469,19.2099990844727,33.5900001525879]},"id":"hv72917627"},
- {"type":"Feature","properties":{"mag":2.08,"place":"6 km ENE of Pāhala, Hawaii","time":1644890767420,"updated":1644891097810,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917622","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917622.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":67,"net":"hv","code":"72917622","ids":",hv72917622,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.119999997,"gap":141,"magType":"ml","type":"earthquake","title":"M 2.1 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.415832519531,19.2176666259766,32.25]},"id":"hv72917622"},
- {"type":"Feature","properties":{"mag":2.5,"place":"6 km S of Roosevelt, Arizona","time":1644890548550,"updated":1644965229144,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gky2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gky2.geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"7000gky2","ids":",us7000gky2,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.11,"rms":0.79,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.5 - 6 km S of Roosevelt, Arizona"},"geometry":{"type":"Point","coordinates":[-111.1315,33.6092,10]},"id":"us7000gky2"},
- {"type":"Feature","properties":{"mag":2.16,"place":"20km NE of Covelo, CA","time":1644889998860,"updated":1645056794527,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692936.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"nc","code":"73692936","ids":",nc73692936,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.1038,"rms":0.18,"gap":88,"magType":"md","type":"earthquake","title":"M 2.2 - 20km NE of Covelo, CA"},"geometry":{"type":"Point","coordinates":[-123.0601667,39.8935,-1.08]},"id":"nc73692936"},
- {"type":"Feature","properties":{"mag":0.35,"place":"9 km NE of West Yellowstone, Montana","time":1644889236560,"updated":1644935400550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60482017","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60482017.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"uu","code":"60482017","ids":",uu60482017,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.04752,"rms":0.07,"gap":156,"magType":"md","type":"earthquake","title":"M 0.4 - 9 km NE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-111.0143333,44.7121667,11.46]},"id":"uu60482017"},
- {"type":"Feature","properties":{"mag":0.87,"place":"10km NE of Coso Junction, CA","time":1644889199620,"updated":1644946235185,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186352","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186352.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40186352","ids":",ci40186352,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01317,"rms":0.07,"gap":69,"magType":"ml","type":"earthquake","title":"M 0.9 - 10km NE of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.857,36.1045,2.25]},"id":"ci40186352"},
- {"type":"Feature","properties":{"mag":1.3,"place":"20 km NNE of Paxson, Alaska","time":1644889056356,"updated":1644889364581,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022243jel9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022243jel9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"022243jel9","ids":",ak022243jel9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.02,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 20 km NNE of Paxson, Alaska"},"geometry":{"type":"Point","coordinates":[-145.5075,63.2698,0]},"id":"ak022243jel9"},
- {"type":"Feature","properties":{"mag":2.8,"place":"23 km NNE of Paxson, Alaska","time":1644888828781,"updated":1644963494040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022243ikpd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022243ikpd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":121,"net":"ak","code":"022243ikpd","ids":",us7000gkxq,ak022243ikpd,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.84,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 23 km NNE of Paxson, Alaska"},"geometry":{"type":"Point","coordinates":[-145.4568,63.2923,0.1]},"id":"ak022243ikpd"},
- {"type":"Feature","properties":{"mag":1.2,"place":"9 km NW of Point MacKenzie, Alaska","time":1644888652985,"updated":1644888843134,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022243hxw2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022243hxw2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"022243hxw2","ids":",ak022243hxw2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.5,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 9 km NW of Point MacKenzie, Alaska"},"geometry":{"type":"Point","coordinates":[-150.0924,61.4208,40.6]},"id":"ak022243hxw2"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km NW of The Geysers, CA","time":1644888615240,"updated":1644891613035,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692931","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692931.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692931","ids":",nc73692931,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.006456,"rms":0.01,"gap":128,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8093338,38.829834,2.23]},"id":"nc73692931"},
- {"type":"Feature","properties":{"mag":1.9,"place":"49 km N of Petersville, Alaska","time":1644888419208,"updated":1644888712745,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022243h3i5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022243h3i5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"022243h3i5","ids":",ak022243h3i5,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 49 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9353,62.9361,105.6]},"id":"ak022243h3i5"},
- {"type":"Feature","properties":{"mag":1.04,"place":"1 km W of Dibble, Oklahoma","time":1644888134000,"updated":1645021267076,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022deij","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022deij.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ok","code":"2022deij","ids":",ok2022deij,","sources":",ok,","types":",origin,phase-data,","nst":32,"dmin":0.106179164,"rms":0.26,"gap":50,"magType":"ml","type":"earthquake","title":"M 1.0 - 1 km W of Dibble, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6415,35.03316667,9.5]},"id":"ok2022deij"},
- {"type":"Feature","properties":{"mag":1.97000003,"place":"5 km ENE of Pāhala, Hawaii","time":1644887954590,"updated":1644888155490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917577","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917577.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":60,"net":"hv","code":"72917577","ids":",hv72917577,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.119999997,"gap":122,"magType":"md","type":"earthquake","title":"M 2.0 - 5 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.431838989258,19.2323341369629,31.8999996185303]},"id":"hv72917577"},
- {"type":"Feature","properties":{"mag":1.18,"place":"7km NNW of Cabazon, CA","time":1644887587680,"updated":1644938789890,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186344","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186344.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40186344","ids":",ci40186344,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":57,"dmin":0.05651,"rms":0.14,"gap":49,"magType":"ml","type":"earthquake","title":"M 1.2 - 7km NNW of Cabazon, CA"},"geometry":{"type":"Point","coordinates":[-116.8076667,33.9785,13.1]},"id":"ci40186344"},
- {"type":"Feature","properties":{"mag":1.5,"place":"47 km E of Chase, Alaska","time":1644887421714,"updated":1644887640585,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022243dl19","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022243dl19.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"022243dl19","ids":",ak022243dl19,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.52,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 47 km E of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.1925,62.5147,22.8]},"id":"ak022243dl19"},
- {"type":"Feature","properties":{"mag":2.2,"place":"37 km E of Pedro Bay, Alaska","time":1644886915341,"updated":1644887209678,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022243bqb2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022243bqb2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"022243bqb2","ids":",ak022243bqb2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.13,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 37 km E of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.4439,59.8273,138.5]},"id":"ak022243bqb2"},
- {"type":"Feature","properties":{"mag":2.1400001,"place":"5 km SSE of Pāhala, Hawaii","time":1644886068380,"updated":1644886265050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917557","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917557.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72917557","ids":",hv72917557,","sources":",hv,","types":",origin,phase-data,","nst":36,"dmin":null,"rms":0.119999997,"gap":162,"magType":"md","type":"earthquake","title":"M 2.1 - 5 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.453506469727,19.1599998474121,33.0099983215332]},"id":"hv72917557"},
- {"type":"Feature","properties":{"mag":1.86,"place":"22km N of Shasta Lake, CA","time":1644885234540,"updated":1644951850084,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692891","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692891.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"nc","code":"73692891","ids":",nc73692891,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.2378,"rms":0.1,"gap":103,"magType":"md","type":"earthquake","title":"M 1.9 - 22km N of Shasta Lake, CA"},"geometry":{"type":"Point","coordinates":[-122.404,40.8781667,2.75]},"id":"nc73692891"},
- {"type":"Feature","properties":{"mag":0.4,"place":"42 km ENE of Furnace Creek, California","time":1644885042882,"updated":1644949317425,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833875","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833875.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833875","ids":",nn00833875,","sources":",nn,","types":",origin,phase-data,","nst":18,"dmin":0.078,"rms":0.1913,"gap":109.77,"magType":"ml","type":"earthquake","title":"M 0.4 - 42 km ENE of Furnace Creek, California"},"geometry":{"type":"Point","coordinates":[-116.431,36.6214,9.2]},"id":"nn00833875"},
- {"type":"Feature","properties":{"mag":1.75,"place":"4km NW of Boron, CA","time":1644884798290,"updated":1644948590415,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186328","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186328.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":47,"net":"ci","code":"40186328","ids":",ci40186328,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.09614,"rms":0.13,"gap":53,"magType":"ml","type":"quarry blast","title":"M 1.8 Quarry Blast - 4km NW of Boron, CA"},"geometry":{"type":"Point","coordinates":[-117.6816667,35.03,-0.78]},"id":"ci40186328"},
- {"type":"Feature","properties":{"mag":1.77,"place":"2km NE of Pinnacles, CA","time":1644883644650,"updated":1644894131313,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692881","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692881.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":48,"net":"nc","code":"73692881","ids":",nc73692881,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.05584,"rms":0.04,"gap":109,"magType":"md","type":"earthquake","title":"M 1.8 - 2km NE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.1259995,36.5428352,9.48]},"id":"nc73692881"},
- {"type":"Feature","properties":{"mag":1.1,"place":"17 km ENE of Fox, Alaska","time":1644883544794,"updated":1644950027340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022242r4qt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022242r4qt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"022242r4qt","ids":",ak022242r4qt,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.89,"gap":null,"magType":"ml","type":"explosion","title":"M 1.1 Explosion - 17 km ENE of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.2642,65.0061,0]},"id":"ak022242r4qt"},
- {"type":"Feature","properties":{"mag":1.4000000000000001,"place":"4 km NNE of Lewisville, Washington","time":1644883433290,"updated":1644886403610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816986","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816986.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"uw","code":"61816986","ids":",uw61816986,","sources":",uw,","types":",origin,phase-data,","nst":14,"dmin":0.1006,"rms":0.3,"gap":234,"magType":"ml","type":"explosion","title":"M 1.4 Explosion - 4 km NNE of Lewisville, Washington"},"geometry":{"type":"Point","coordinates":[-122.49366666666667,45.846333333333334,-0.84]},"id":"uw61816986"},
- {"type":"Feature","properties":{"mag":2.08,"place":"5 km ENE of Pāhala, Hawaii","time":1644883359210,"updated":1644883689350,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917532","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917532.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":67,"net":"hv","code":"72917532","ids":",hv72917532,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.119999997,"gap":126,"magType":"ml","type":"earthquake","title":"M 2.1 - 5 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.429000854492,19.2266674041748,34.4300003051758]},"id":"hv72917532"},
- {"type":"Feature","properties":{"mag":1.49,"place":"3 km WNW of Langford, Canada","time":1644883340870,"updated":1644888185470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816981","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816981.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"uw","code":"61816981","ids":",uw61816981,","sources":",uw,","types":",origin,phase-data,","nst":4,"dmin":0.1546,"rms":0.06,"gap":125,"magType":"ml","type":"explosion","title":"M 1.5 Explosion - 3 km WNW of Langford, Canada"},"geometry":{"type":"Point","coordinates":[-123.54583333333333,48.461,-0.25]},"id":"uw61816981"},
- {"type":"Feature","properties":{"mag":1.8,"place":"51 km NNW of Petersville, Alaska","time":1644883324522,"updated":1644883617477,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022242qeh2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022242qeh2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"022242qeh2","ids":",ak022242qeh2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.28,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 51 km NNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3042,62.8907,107.7]},"id":"ak022242qeh2"},
- {"type":"Feature","properties":{"mag":1.82,"place":"28km SW of Dana Point, CA","time":1644883303240,"updated":1644886043911,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186304","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186304.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":51,"net":"ci","code":"40186304","ids":",ci40186304,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.2857,"rms":0.18,"gap":165,"magType":"ml","type":"earthquake","title":"M 1.8 - 28km SW of Dana Point, CA"},"geometry":{"type":"Point","coordinates":[-117.8911667,33.2676667,17.29]},"id":"ci40186304"},
- {"type":"Feature","properties":{"mag":4.9,"place":"Arafura Sea","time":1644882987626,"updated":1644883947040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkx7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkx7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkx7","ids":",us7000gkx7,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.508,"rms":0.94,"gap":83,"magType":"mb","type":"earthquake","title":"M 4.9 - Arafura Sea"},"geometry":{"type":"Point","coordinates":[134.8071,-8.4899,10]},"id":"us7000gkx7"},
- {"type":"Feature","properties":{"mag":0.24,"place":"13km WNW of Anza, CA","time":1644882758300,"updated":1644885801305,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186296","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186296.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40186296","ids":",ci40186296,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.03649,"rms":0.07,"gap":161,"magType":"ml","type":"earthquake","title":"M 0.2 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8075,33.5893333,7.41]},"id":"ci40186296"},
- {"type":"Feature","properties":{"mag":1.75,"place":"2 km W of Indios, Puerto Rico","time":1644882444580,"updated":1644885224070,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334838","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334838.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":47,"net":"pr","code":"71334838","ids":",pr71334838,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.08,"gap":326,"magType":"md","type":"earthquake","title":"M 1.8 - 2 km W of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8415,17.9901666666667,12.88]},"id":"pr71334838"},
- {"type":"Feature","properties":{"mag":0.81,"place":"3km NNW of Palomar Observatory, CA","time":1644882263150,"updated":1644885605863,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186288","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186288.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40186288","ids":",ci40186288,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.03156,"rms":0.17,"gap":69,"magType":"ml","type":"earthquake","title":"M 0.8 - 3km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8831667,33.3801667,7.25]},"id":"ci40186288"},
- {"type":"Feature","properties":{"mag":1.69,"place":"43km ENE of Trona, CA","time":1644882145660,"updated":1644885177822,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186280","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186280.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"ci","code":"40186280","ids":",ci40186280,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.2876,"rms":0.18,"gap":91,"magType":"ml","type":"earthquake","title":"M 1.7 - 43km ENE of Trona, CA"},"geometry":{"type":"Point","coordinates":[-116.9295,35.9041667,5.21]},"id":"ci40186280"},
- {"type":"Feature","properties":{"mag":1.88,"place":"2 km ENE of Maria Antonia, Puerto Rico","time":1644881485810,"updated":1644884981790,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334828","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334828.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":54,"net":"pr","code":"71334828","ids":",pr71334828,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.07,"gap":153,"magType":"md","type":"earthquake","title":"M 1.9 - 2 km ENE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8651666666667,17.9865,12.7]},"id":"pr71334828"},
- {"type":"Feature","properties":{"mag":3.2,"place":"14 km ENE of Gardendale, Texas","time":1644881368209,"updated":1645008772585,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022deeq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022deeq.geojson","felt":58,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":180,"net":"tx","code":"2022deeq","ids":",us7000gkx4,tx2022deeq,","sources":",us,tx,","types":",dyfi,origin,phase-data,","nst":19,"dmin":0.06351303581,"rms":0.1,"gap":53,"magType":"ml","type":"earthquake","title":"M 3.2 - 14 km ENE of Gardendale, Texas"},"geometry":{"type":"Point","coordinates":[-102.2371618,32.06268311,8.436889647999998]},"id":"tx2022deeq"},
- {"type":"Feature","properties":{"mag":3.59,"place":"66 km NNW of San Antonio, Puerto Rico","time":1644881187110,"updated":1644884607558,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022045000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022045000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":198,"net":"pr","code":"2022045000","ids":",us7000gkx3,pr2022045000,","sources":",us,pr,","types":",origin,phase-data,","nst":15,"dmin":0.6201,"rms":0.32,"gap":307,"magType":"md","type":"earthquake","title":"M 3.6 - 66 km NNW of San Antonio, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.2446,19.0731,10]},"id":"pr2022045000"},
- {"type":"Feature","properties":{"mag":2.8,"place":"56 km S of Whites City, New Mexico","time":1644880670310,"updated":1644881857040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkx1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkx1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"7000gkx1","ids":",us7000gkx1,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.067,"rms":0.76,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.8 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.4214,31.6668,8.76]},"id":"us7000gkx1"},
- {"type":"Feature","properties":{"mag":1.13,"place":"7km NW of The Geysers, CA","time":1644880386270,"updated":1644892572137,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692866","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692866.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73692866","ids":",nc73692866,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.007685,"rms":0.03,"gap":36,"magType":"md","type":"earthquake","title":"M 1.1 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.800499,38.8251648,1.55]},"id":"nc73692866"},
- {"type":"Feature","properties":{"mag":4.4,"place":"south of the Fiji Islands","time":1644879080087,"updated":1644880766040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkwx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkwx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gkwx","ids":",us7000gkwx,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.878,"rms":0.62,"gap":110,"magType":"mb","type":"earthquake","title":"M 4.4 - south of the Fiji Islands"},"geometry":{"type":"Point","coordinates":[178.5618,-25.5034,595.46]},"id":"us7000gkwx"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of Cobb, CA","time":1644878675570,"updated":1644879551757,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692861","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692861.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692861","ids":",nc73692861,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.0137,"rms":0.01,"gap":63,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8078308,38.8373337,2.28]},"id":"nc73692861"},
- {"type":"Feature","properties":{"mag":1.7,"place":"8 km N of Sutcliffe, Nevada","time":1644878423947,"updated":1644892702585,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833862","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833862.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"nn","code":"00833862","ids":",nn00833862,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.165,"rms":0.2245,"gap":108.57,"magType":"ml","type":"earthquake","title":"M 1.7 - 8 km N of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6188,40.03,8]},"id":"nn00833862"},
- {"type":"Feature","properties":{"mag":1.86,"place":"13km SSW of Searles Valley, CA","time":1644878333240,"updated":1644884112580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186224","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186224.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"ci","code":"40186224","ids":",ci40186224,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.07589,"rms":0.13,"gap":97,"magType":"ml","type":"earthquake","title":"M 1.9 - 13km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4586667,35.6625,9.82]},"id":"ci40186224"},
- {"type":"Feature","properties":{"mag":1.52,"place":"3 km S of La Parguera, Puerto Rico","time":1644877860330,"updated":1644878591170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334808","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334808.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"pr","code":"71334808","ids":",pr71334808,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.02,"gap":309,"magType":"md","type":"earthquake","title":"M 1.5 - 3 km S of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0475,17.945,6.47]},"id":"pr71334808"},
- {"type":"Feature","properties":{"mag":1.18,"place":"2km ESE of Home Gardens, CA","time":1644877776880,"updated":1644883379838,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186216","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186216.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40186216","ids":",ci40186216,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.07144,"rms":0.22,"gap":101,"magType":"ml","type":"quarry blast","title":"M 1.2 Quarry Blast - 2km ESE of Home Gardens, CA"},"geometry":{"type":"Point","coordinates":[-117.4976667,33.874,-0.66]},"id":"ci40186216"},
- {"type":"Feature","properties":{"mag":1.86,"place":"5 km S of Princeton, Canada","time":1644877315450,"updated":1644888427730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816951","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816951.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"uw","code":"61816951","ids":",uw61816951,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.5898,"rms":0.22,"gap":189,"magType":"ml","type":"explosion","title":"M 1.9 Explosion - 5 km S of Princeton, Canada"},"geometry":{"type":"Point","coordinates":[-120.518,49.40833333333333,-0.37]},"id":"uw61816951"},
- {"type":"Feature","properties":{"mag":0.81,"place":"30 km SW of Heart Butte, Montana","time":1644877271620,"updated":1644882438740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538434","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538434.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"mb","code":"80538434","ids":",mb80538434,","sources":",mb,","types":",origin,phase-data,","nst":9,"dmin":0.444,"rms":0.17,"gap":240,"magType":"ml","type":"earthquake","title":"M 0.8 - 30 km SW of Heart Butte, Montana"},"geometry":{"type":"Point","coordinates":[-113.0961667,48.0738333,5.86]},"id":"mb80538434"},
- {"type":"Feature","properties":{"mag":1.76,"place":"44km NE of Holtville, CA","time":1644877144520,"updated":1644882825609,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186208","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186208.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"ci","code":"40186208","ids":",ci40186208,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.08244,"rms":0.24,"gap":61,"magType":"ml","type":"quarry blast","title":"M 1.8 Quarry Blast - 44km NE of Holtville, CA"},"geometry":{"type":"Point","coordinates":[-115.0006667,33.0526667,-0.2]},"id":"ci40186208"},
- {"type":"Feature","properties":{"mag":1.8,"place":"44 km SE of Denali National Park, Alaska","time":1644876547591,"updated":1644877110287,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222sc3k6","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222sc3k6.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02222sc3k6","ids":",ak02222sc3k6,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 44 km SE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0778,63.261,0]},"id":"ak02222sc3k6"},
- {"type":"Feature","properties":{"mag":0.38,"place":"3km E of The Geysers, CA","time":1644876475450,"updated":1644879072700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692836","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692836.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692836","ids":",nc73692836,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01198,"rms":0.02,"gap":172,"magType":"md","type":"earthquake","title":"M 0.4 - 3km E of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7246704,38.7758331,1.26]},"id":"nc73692836"},
- {"type":"Feature","properties":{"mag":1.06,"place":"6 km ESE of La Parguera, Puerto Rico","time":1644876404900,"updated":1644879594410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334813","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334813.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"pr","code":"71334813","ids":",pr71334813,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.02,"gap":332,"magType":"md","type":"earthquake","title":"M 1.1 - 6 km ESE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9951666666667,17.9501666666667,11.17]},"id":"pr71334813"},
- {"type":"Feature","properties":{"mag":1.21,"place":"6 km WSW of Liborio Negron Torres, Puerto Rico","time":1644876053950,"updated":1644878495720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334803","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334803.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"pr","code":"71334803","ids":",pr71334803,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.05,"gap":188,"magType":"md","type":"earthquake","title":"M 1.2 - 6 km WSW of Liborio Negron Torres, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9966666666667,18.0193333333333,16.58]},"id":"pr71334803"},
- {"type":"Feature","properties":{"mag":4.7,"place":"199 km W of Olonkinbyen, Svalbard and Jan Mayen","time":1644875584056,"updated":1644877089040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkwb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkwb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gkwb","ids":",us7000gkwb,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.617,"rms":0.76,"gap":38,"magType":"mb","type":"earthquake","title":"M 4.7 - 199 km W of Olonkinbyen, Svalbard and Jan Mayen"},"geometry":{"type":"Point","coordinates":[-14.1573,70.8194,10]},"id":"us7000gkwb"},
- {"type":"Feature","properties":{"mag":0.84,"place":"9km NW of Pinnacles, CA","time":1644874833280,"updated":1645115958363,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692831","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692831.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"nc","code":"73692831","ids":",nc73692831,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.02463,"rms":0.07,"gap":158,"magType":"md","type":"earthquake","title":"M 0.8 - 9km NW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.2025,36.5921667,5.87]},"id":"nc73692831"},
- {"type":"Feature","properties":{"mag":1.21,"place":"1km E of The Geysers, CA","time":1644874778140,"updated":1644885430381,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692826","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692826.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":23,"net":"nc","code":"73692826","ids":",nc73692826,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.008312,"rms":0.03,"gap":95,"magType":"md","type":"earthquake","title":"M 1.2 - 1km E of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7440033,38.7771683,0.78]},"id":"nc73692826"},
- {"type":"Feature","properties":{"mag":3.2,"place":"170 km SSE of Akhiok, Alaska","time":1644874763935,"updated":1644876494040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkw5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkw5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"7000gkw5","ids":",us7000gkw5,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.71,"rms":0.43,"gap":304,"magType":"ml","type":"earthquake","title":"M 3.2 - 170 km SSE of Akhiok, Alaska"},"geometry":{"type":"Point","coordinates":[-153.1969,55.5175,10]},"id":"us7000gkw5"},
- {"type":"Feature","properties":{"mag":0.97,"place":"10km NE of Aguanga, CA","time":1644874453930,"updated":1644882773270,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186184","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186184.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40186184","ids":",ci40186184,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.01879,"rms":0.11,"gap":33,"magType":"ml","type":"earthquake","title":"M 1.0 - 10km NE of Aguanga, CA"},"geometry":{"type":"Point","coordinates":[-116.7845,33.499,7.19]},"id":"ci40186184"},
- {"type":"Feature","properties":{"mag":4.3,"place":"194 km W of Olonkinbyen, Svalbard and Jan Mayen","time":1644874324204,"updated":1644875991040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkw4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkw4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gkw4","ids":",us7000gkw4,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.662,"rms":0.79,"gap":50,"magType":"mb","type":"earthquake","title":"M 4.3 - 194 km W of Olonkinbyen, Svalbard and Jan Mayen"},"geometry":{"type":"Point","coordinates":[-14.0112,70.7581,10]},"id":"us7000gkw4"},
- {"type":"Feature","properties":{"mag":0.76,"place":"14km SW of Searles Valley, CA","time":1644874296560,"updated":1644882252920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186168","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186168.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40186168","ids":",ci40186168,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.1014,"rms":0.13,"gap":155,"magType":"ml","type":"earthquake","title":"M 0.8 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5115,35.6798333,10.77]},"id":"ci40186168"},
- {"type":"Feature","properties":{"mag":0.26,"place":"2 km SSE of Duncan, Canada","time":1644874294100,"updated":1644890364060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816921","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816921.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61816921","ids":",uw61816921,","sources":",uw,","types":",origin,phase-data,","nst":2,"dmin":0.1955,"rms":0.18,"gap":283,"magType":"md","type":"explosion","title":"M 0.3 Explosion - 2 km SSE of Duncan, Canada"},"geometry":{"type":"Point","coordinates":[-123.69266666666667,48.759,-0.46]},"id":"uw61816921"},
- {"type":"Feature","properties":{"mag":1.21,"place":"28km NNW of Searles Valley, CA","time":1644873490510,"updated":1644874282930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186144","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186144.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40186144","ids":",ci40186144,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.05084,"rms":0.17,"gap":163,"magType":"ml","type":"earthquake","title":"M 1.2 - 28km NNW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5661667,35.9776667,6.76]},"id":"ci40186144"},
- {"type":"Feature","properties":{"mag":4.3,"place":"230 km E of Amahai, Indonesia","time":1644873054244,"updated":1644875438040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkvw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkvw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gkvw","ids":",us7000gkvw,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.333,"rms":0.57,"gap":103,"magType":"mb","type":"earthquake","title":"M 4.3 - 230 km E of Amahai, Indonesia"},"geometry":{"type":"Point","coordinates":[130.9893,-3.3638,10]},"id":"us7000gkvw"},
- {"type":"Feature","properties":{"mag":0.49,"place":"5km WNW of The Geysers, CA","time":1644872659250,"updated":1644879250721,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692811","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692811.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":4,"net":"nc","code":"73692811","ids":",nc73692811,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.002983,"rms":0.02,"gap":139,"magType":"md","type":"earthquake","title":"M 0.5 - 5km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8068314,38.7888336,3.49]},"id":"nc73692811"},
- {"type":"Feature","properties":{"mag":2.3,"place":"Central Alaska","time":1644871705062,"updated":1644872131401,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222rdmnj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222rdmnj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"02222rdmnj","ids":",ak02222rdmnj,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - Central Alaska"},"geometry":{"type":"Point","coordinates":[-150.7377,64.8643,10.5]},"id":"ak02222rdmnj"},
- {"type":"Feature","properties":{"mag":1.49,"place":"13 km E of Crowder, Oklahoma","time":1644871624089,"updated":1644935299180,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022ddzh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022ddzh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"ok","code":"2022ddzh","ids":",ok2022ddzh,","sources":",ok,","types":",origin,phase-data,","nst":52,"dmin":0.1115781046,"rms":0.24,"gap":87,"magType":"ml","type":"earthquake","title":"M 1.5 - 13 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.52883333,35.10116667,7.38]},"id":"ok2022ddzh"},
- {"type":"Feature","properties":{"mag":3.8,"place":"191 km SE of Perryville, Alaska","time":1644871153091,"updated":1645029898040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222rbo0n","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222rbo0n.geojson","felt":null,"cdi":null,"mmi":1,"alert":null,"status":"reviewed","tsunami":0,"sig":222,"net":"ak","code":"02222rbo0n","ids":",us7000gkvd,ak02222rbo0n,","sources":",us,ak,","types":",origin,phase-data,shakemap,","nst":null,"dmin":null,"rms":0.9,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.8 - 191 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.8231,54.8055,32.3]},"id":"ak02222rbo0n"},
- {"type":"Feature","properties":{"mag":1.61,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644871071020,"updated":1644892301340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049648","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049648.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"av","code":"91049648","ids":",av91049648,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.25,"gap":350,"magType":"ml","type":"earthquake","title":"M 1.6 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.339833333333,52.0186666666667,8.96]},"id":"av91049648"},
- {"type":"Feature","properties":{"mag":0.38,"place":"11km NW of Parkfield, CA","time":1644870883150,"updated":1645067176595,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692801","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692801.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nc","code":"73692801","ids":",nc73692801,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.01207,"rms":0.04,"gap":61,"magType":"md","type":"earthquake","title":"M 0.4 - 11km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.5218333,35.9696667,4.77]},"id":"nc73692801"},
- {"type":"Feature","properties":{"mag":2.2,"place":"6 km ENE of Pāhala, Hawaii","time":1644870719450,"updated":1645026315040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917392","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917392.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72917392","ids":",us7000gkva,hv72917392,","sources":",us,hv,","types":",origin,phase-data,","nst":51,"dmin":null,"rms":0.140000001,"gap":129,"magType":"ml","type":"earthquake","title":"M 2.2 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.424163818359,19.2278327941895,34.7900009155273]},"id":"hv72917392"},
- {"type":"Feature","properties":{"mag":5.7,"place":"208 km W of Olonkinbyen, Svalbard and Jan Mayen","time":1644870501259,"updated":1644957156121,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkvb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkvb.geojson","felt":null,"cdi":null,"mmi":3.263,"alert":"green","status":"reviewed","tsunami":0,"sig":500,"net":"us","code":"7000gkvb","ids":",us7000gkvb,","sources":",us,","types":",losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":2.543,"rms":0.63,"gap":27,"magType":"mww","type":"earthquake","title":"M 5.7 - 208 km W of Olonkinbyen, Svalbard and Jan Mayen"},"geometry":{"type":"Point","coordinates":[-14.3676,70.7302,10]},"id":"us7000gkvb"},
- {"type":"Feature","properties":{"mag":1.62,"place":"4km NW of Palomar Observatory, CA","time":1644870341790,"updated":1644882159740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186072","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186072.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"ci","code":"40186072","ids":",ci40186072,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":59,"dmin":0.03429,"rms":0.2,"gap":25,"magType":"ml","type":"earthquake","title":"M 1.6 - 4km NW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8851667,33.3823333,5.86]},"id":"ci40186072"},
- {"type":"Feature","properties":{"mag":1.15,"place":"3 km NW of Renfrow, Oklahoma","time":1644870215740,"updated":1644936009593,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022ddym","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022ddym.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ok","code":"2022ddym","ids":",ok2022ddym,","sources":",ok,","types":",origin,phase-data,","nst":38,"dmin":0.1727660974,"rms":0.31,"gap":81,"magType":"ml","type":"earthquake","title":"M 1.2 - 3 km NW of Renfrow, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.67983333,36.9465,5]},"id":"ok2022ddym"},
- {"type":"Feature","properties":{"mag":4.4,"place":"40 km SE of Lospalos, Timor Leste","time":1644870153607,"updated":1645025261040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkv9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkv9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gkv9","ids":",us7000gkv9,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.052,"rms":1.09,"gap":84,"magType":"mb","type":"earthquake","title":"M 4.4 - 40 km SE of Lospalos, Timor Leste"},"geometry":{"type":"Point","coordinates":[127.2134,-8.8222,10]},"id":"us7000gkv9"},
- {"type":"Feature","properties":{"mag":1.9,"place":"35 km WNW of Nanwalek, Alaska","time":1644869794892,"updated":1644870087390,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222r6sgt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222r6sgt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02222r6sgt","ids":",ak02222r6sgt,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 35 km WNW of Nanwalek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.4749,59.4943,72.3]},"id":"ak02222r6sgt"},
- {"type":"Feature","properties":{"mag":0.23,"place":"4km NNW of Vincent, CA","time":1644869566400,"updated":1644875954279,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186032","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186032.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40186032","ids":",ci40186032,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.00979,"rms":0.06,"gap":261,"magType":"ml","type":"earthquake","title":"M 0.2 - 4km NNW of Vincent, CA"},"geometry":{"type":"Point","coordinates":[-118.1331667,34.5326667,10.17]},"id":"ci40186032"},
- {"type":"Feature","properties":{"mag":0.45,"place":"23km ESE of Little Lake, CA","time":1644869205450,"updated":1644875647334,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40186008","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40186008.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40186008","ids":",ci40186008,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.07386,"rms":0.13,"gap":67,"magType":"ml","type":"earthquake","title":"M 0.5 - 23km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6761667,35.8528333,7.7]},"id":"ci40186008"},
- {"type":"Feature","properties":{"mag":3.9,"place":"91 km SE of King Cove, Alaska","time":1644869154436,"updated":1645024180040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkv2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkv2.geojson","felt":null,"cdi":null,"mmi":1,"alert":null,"status":"reviewed","tsunami":0,"sig":234,"net":"us","code":"7000gkv2","ids":",ak02222r4h1d,us7000gkv2,","sources":",ak,us,","types":",origin,phase-data,shakemap,","nst":null,"dmin":0.697,"rms":0.55,"gap":152,"magType":"mb","type":"earthquake","title":"M 3.9 - 91 km SE of King Cove, Alaska"},"geometry":{"type":"Point","coordinates":[-161.1524,54.5874,35]},"id":"us7000gkv2"},
- {"type":"Feature","properties":{"mag":0.42,"place":"13km WNW of Anza, CA","time":1644869074260,"updated":1644878185127,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185984","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185984.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40185984","ids":",ci40185984,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.03529,"rms":0.11,"gap":86,"magType":"ml","type":"earthquake","title":"M 0.4 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8055,33.5865,7.53]},"id":"ci40185984"},
- {"type":"Feature","properties":{"mag":1.57,"place":"5 km ENE of Butte, Montana","time":1644868993290,"updated":1644870492430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538369","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538369.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"mb","code":"80538369","ids":",mb80538369,","sources":",mb,","types":",origin,phase-data,","nst":15,"dmin":0.065,"rms":0.12,"gap":106,"magType":"ml","type":"quarry blast","title":"M 1.6 Quarry Blast - 5 km ENE of Butte, Montana"},"geometry":{"type":"Point","coordinates":[-112.461,46.0171667,-2]},"id":"mb80538369"},
- {"type":"Feature","properties":{"mag":0.02,"place":"13km SE of Anza, CA","time":1644868897640,"updated":1644875446869,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185992","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185992.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40185992","ids":",ci40185992,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.03812,"rms":0.12,"gap":133,"magType":"ml","type":"earthquake","title":"M 0.0 - 13km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5881667,33.4583333,9.49]},"id":"ci40185992"},
- {"type":"Feature","properties":{"mag":0.09,"place":"13km WNW of Anza, CA","time":1644868803380,"updated":1644875725228,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40185976","ids":",ci40185976,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.0342,"rms":0.06,"gap":162,"magType":"ml","type":"earthquake","title":"M 0.1 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8041667,33.5865,7.68]},"id":"ci40185976"},
- {"type":"Feature","properties":{"mag":0.7,"place":"17km ESE of Anza, CA","time":1644868733800,"updated":1644875553613,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185968","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185968.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40185968","ids":",ci40185968,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.0565,"rms":0.11,"gap":115,"magType":"ml","type":"earthquake","title":"M 0.7 - 17km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4938333,33.5101667,13.89]},"id":"ci40185968"},
- {"type":"Feature","properties":{"mag":0.59,"place":"4km NW of Palomar Observatory, CA","time":1644868123150,"updated":1644875135837,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185952","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185952.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40185952","ids":",ci40185952,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.03568,"rms":0.16,"gap":101,"magType":"ml","type":"earthquake","title":"M 0.6 - 4km NW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8866667,33.3831667,6.58]},"id":"ci40185952"},
- {"type":"Feature","properties":{"mag":2.5,"place":"34 km W of Salamatof, Alaska","time":1644868112320,"updated":1645021159040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222qs7l1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222qs7l1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":96,"net":"ak","code":"02222qs7l1","ids":",us7000gkuz,ak02222qs7l1,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 34 km W of Salamatof, Alaska"},"geometry":{"type":"Point","coordinates":[-151.9548,60.6407,75.5]},"id":"ak02222qs7l1"},
- {"type":"Feature","properties":{"mag":0.71,"place":"3km NNW of Palomar Observatory, CA","time":1644868088890,"updated":1644948114378,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391988","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391988.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"37391988","ids":",ci37391988,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.03081,"rms":0.2,"gap":85,"magType":"ml","type":"earthquake","title":"M 0.7 - 3km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8796667,33.381,7.21]},"id":"ci37391988"},
- {"type":"Feature","properties":{"mag":1.1300000000000001,"place":"3 km SW of North Bend, Washington","time":1644867969150,"updated":1644876029500,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816876","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816876.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"uw","code":"61816876","ids":",uw61816876,","sources":",uw,","types":",origin,phase-data,","nst":6,"dmin":0.03287,"rms":0.39,"gap":94,"magType":"ml","type":"explosion","title":"M 1.1 Explosion - 3 km SW of North Bend, Washington"},"geometry":{"type":"Point","coordinates":[-121.82016666666667,47.47866666666667,-0.23]},"id":"uw61816876"},
- {"type":"Feature","properties":{"mag":3,"place":"43 km SSE of False Pass, Alaska","time":1644867935962,"updated":1645020243040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkxf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkxf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"7000gkxf","ids":",av91490506,us7000gkxf,","sources":",av,us,","types":",origin,phase-data,","nst":null,"dmin":0.367,"rms":0.34,"gap":193,"magType":"ml","type":"earthquake","title":"M 3.0 - 43 km SSE of False Pass, Alaska"},"geometry":{"type":"Point","coordinates":[-163.2439,54.4786,11.91]},"id":"us7000gkxf"},
- {"type":"Feature","properties":{"mag":0.64,"place":"3km NNW of Palomar Observatory, CA","time":1644867627450,"updated":1644874878818,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185944","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185944.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40185944","ids":",ci40185944,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02901,"rms":0.18,"gap":66,"magType":"ml","type":"earthquake","title":"M 0.6 - 3km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8788333,33.3793333,5.94]},"id":"ci40185944"},
- {"type":"Feature","properties":{"mag":1.25,"place":"4km NNW of Palomar Observatory, CA","time":1644867364230,"updated":1644869455939,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40185936","ids":",ci40185936,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.03456,"rms":0.21,"gap":59,"magType":"ml","type":"earthquake","title":"M 1.3 - 4km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8783333,33.3856667,5]},"id":"ci40185936"},
- {"type":"Feature","properties":{"mag":1.4,"place":"15 km ESE of Kasilof, Alaska","time":1644866814173,"updated":1644867201239,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222qnjia","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222qnjia.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222qnjia","ids":",ak02222qnjia,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 15 km ESE of Kasilof, Alaska"},"geometry":{"type":"Point","coordinates":[-151.018,60.2771,34.6]},"id":"ak02222qnjia"},
- {"type":"Feature","properties":{"mag":1.26,"place":"8km ENE of San Simeon, CA","time":1644866380150,"updated":1645074794376,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692791","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692791.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"nc","code":"73692791","ids":",nc73692791,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.04374,"rms":0.05,"gap":120,"magType":"md","type":"earthquake","title":"M 1.3 - 8km ENE of San Simeon, CA"},"geometry":{"type":"Point","coordinates":[-121.1021667,35.6698333,4.42]},"id":"nc73692791"},
- {"type":"Feature","properties":{"mag":4.7,"place":"84 km NE of Naze, Japan","time":1644866260969,"updated":1644867695040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkuv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkuv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gkuv","ids":",us7000gkuv,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.604,"rms":0.97,"gap":115,"magType":"mb","type":"earthquake","title":"M 4.7 - 84 km NE of Naze, Japan"},"geometry":{"type":"Point","coordinates":[130.1683,28.8351,40.48]},"id":"us7000gkuv"},
- {"type":"Feature","properties":{"mag":1.27,"place":"3km NNW of Palomar Observatory, CA","time":1644865879880,"updated":1644874700480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ci","code":"40185920","ids":",ci40185920,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":44,"dmin":0.03245,"rms":0.2,"gap":37,"magType":"ml","type":"earthquake","title":"M 1.3 - 3km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8805,33.3825,6.44]},"id":"ci40185920"},
- {"type":"Feature","properties":{"mag":1.5,"place":"74 km WSW of Cantwell, Alaska","time":1644865803448,"updated":1644866597133,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222qk05m","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222qk05m.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222qk05m","ids":",ak02222qk05m,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.75,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 74 km WSW of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-150.3792,63.2133,84.2]},"id":"ak02222qk05m"},
- {"type":"Feature","properties":{"mag":0.02,"place":"5km N of Little Lake, CA","time":1644865758730,"updated":1644874166737,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391980","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391980.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"37391980","ids":",ci37391980,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.03023,"rms":0.01,"gap":191,"magType":"ml","type":"earthquake","title":"M 0.0 - 5km N of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.8993333,35.9783333,3.52]},"id":"ci37391980"},
- {"type":"Feature","properties":{"mag":1.14,"place":"18km W of Searles Valley, CA","time":1644865722700,"updated":1644874001886,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185912","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185912.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40185912","ids":",ci40185912,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.03666,"rms":0.08,"gap":77,"magType":"ml","type":"earthquake","title":"M 1.1 - 18km W of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5973333,35.779,6.73]},"id":"ci40185912"},
- {"type":"Feature","properties":{"mag":1.65,"place":"11 km SSE of Wapanucka, Oklahoma","time":1644865185609,"updated":1644866486446,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022ddvt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022ddvt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"ok","code":"2022ddvt","ids":",ok2022ddvt,","sources":",ok,","types":",origin,phase-data,","nst":59,"dmin":0.4094196579,"rms":0.53,"gap":116,"magType":"ml","type":"quarry blast","title":"M 1.7 Quarry Blast - 11 km SSE of Wapanucka, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.365,34.27783333,0]},"id":"ok2022ddvt"},
- {"type":"Feature","properties":{"mag":0.92,"place":"3km NNW of Palomar Observatory, CA","time":1644864953630,"updated":1644873744698,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185896","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185896.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"40185896","ids":",ci40185896,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.03092,"rms":0.22,"gap":40,"magType":"ml","type":"earthquake","title":"M 0.9 - 3km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8803333,33.3808333,6.93]},"id":"ci40185896"},
- {"type":"Feature","properties":{"mag":0.74,"place":"4km NNW of Palomar Observatory, CA","time":1644864947440,"updated":1644873347554,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185888","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185888.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40185888","ids":",ci40185888,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.03465,"rms":0.16,"gap":58,"magType":"ml","type":"earthquake","title":"M 0.7 - 4km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.876,33.3865,6.09]},"id":"ci40185888"},
- {"type":"Feature","properties":{"mag":0.37,"place":"10km WNW of The Geysers, CA","time":1644864646350,"updated":1644867438532,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692786","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692786.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692786","ids":",nc73692786,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.02074,"rms":0.04,"gap":94,"magType":"md","type":"earthquake","title":"M 0.4 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8535004,38.8233337,1.06]},"id":"nc73692786"},
- {"type":"Feature","properties":{"mag":1.68,"place":"6km E of Atascadero, CA","time":1644864500450,"updated":1645063983085,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692776","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692776.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"nc","code":"73692776","ids":",nc73692776,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.09106,"rms":0.06,"gap":68,"magType":"md","type":"quarry blast","title":"M 1.7 Quarry Blast - 6km E of Atascadero, CA"},"geometry":{"type":"Point","coordinates":[-120.6083333,35.4831667,-0.37]},"id":"nc73692776"},
- {"type":"Feature","properties":{"mag":0.33,"place":"37 km NNE of Amboy, Washington","time":1644864272020,"updated":1644865056100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816826","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816826.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"uw","code":"61816826","ids":",uw61816826,","sources":",uw,","types":",origin,phase-data,","nst":13,"dmin":0.008077,"rms":0.19,"gap":91,"magType":"ml","type":"earthquake","title":"M 0.3 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18166666666667,46.194833333333335,4.9]},"id":"uw61816826"},
- {"type":"Feature","properties":{"mag":1.82000005,"place":"16 km ENE of Pāhala, Hawaii","time":1644864257680,"updated":1644864464450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917292","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917292.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":51,"net":"hv","code":"72917292","ids":",hv72917292,","sources":",hv,","types":",origin,phase-data,","nst":34,"dmin":null,"rms":0.200000003,"gap":153,"magType":"md","type":"earthquake","title":"M 1.8 - 16 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.33366394043,19.2514991760254,-0.550000011920929]},"id":"hv72917292"},
- {"type":"Feature","properties":{"mag":0.5,"place":"4km NNW of Palomar Observatory, CA","time":1644863996890,"updated":1644872985625,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185856","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185856.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40185856","ids":",ci40185856,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.03754,"rms":0.13,"gap":104,"magType":"ml","type":"earthquake","title":"M 0.5 - 4km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8733333,33.3901667,5.55]},"id":"ci40185856"},
- {"type":"Feature","properties":{"mag":0.56,"place":"4km NNW of Palomar Observatory, CA","time":1644863920040,"updated":1644872587589,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185840","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185840.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40185840","ids":",ci40185840,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.03337,"rms":0.16,"gap":57,"magType":"ml","type":"earthquake","title":"M 0.6 - 4km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8718333,33.3861667,5.79]},"id":"ci40185840"},
- {"type":"Feature","properties":{"mag":0.49,"place":"14km NNE of Ridgecrest, CA","time":1644863778630,"updated":1644872382765,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40185848","ids":",ci40185848,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.08559,"rms":0.06,"gap":140,"magType":"ml","type":"earthquake","title":"M 0.5 - 14km NNE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5946667,35.73,11.73]},"id":"ci40185848"},
- {"type":"Feature","properties":{"mag":1.41,"place":"17km SE of Boonville, CA","time":1644862939280,"updated":1645021209941,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692766","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692766.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"nc","code":"73692766","ids":",nc73692766,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.02135,"rms":0.06,"gap":56,"magType":"md","type":"earthquake","title":"M 1.4 - 17km SE of Boonville, CA"},"geometry":{"type":"Point","coordinates":[-123.2035,38.9208333,0.82]},"id":"nc73692766"},
- {"type":"Feature","properties":{"mag":1.9,"place":"Central Alaska","time":1644862779403,"updated":1644863431470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222q0ksf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222q0ksf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02222q0ksf","ids":",ak02222q0ksf,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.82,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - Central Alaska"},"geometry":{"type":"Point","coordinates":[-149.4147,62.1289,20.8]},"id":"ak02222q0ksf"},
- {"type":"Feature","properties":{"mag":3,"place":"55 km NNE of Chenega, Alaska","time":1644862339103,"updated":1644863394040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222pz17q","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222pz17q.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":138,"net":"ak","code":"02222pz17q","ids":",us7000gkuk,ak02222pz17q,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 55 km NNE of Chenega, Alaska"},"geometry":{"type":"Point","coordinates":[-147.6937,60.5417,13.7]},"id":"ak02222pz17q"},
- {"type":"Feature","properties":{"mag":1.99,"place":"12 km WNW of Ucluelet, Canada","time":1644862021640,"updated":1644865418560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816801","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816801.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":61,"net":"uw","code":"61816801","ids":",uw61816801,","sources":",uw,","types":",origin,phase-data,","nst":8,"dmin":0.1217,"rms":0.76,"gap":134,"magType":"ml","type":"earthquake","title":"M 2.0 - 12 km WNW of Ucluelet, Canada"},"geometry":{"type":"Point","coordinates":[-125.69266666666667,48.99483333333333,4.96]},"id":"uw61816801"},
- {"type":"Feature","properties":{"mag":1.7,"place":"44 km NW of Ninilchik, Alaska","time":1644861963001,"updated":1644862278440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222pxpmz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222pxpmz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02222pxpmz","ids":",ak02222pxpmz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 44 km NW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.1621,60.3678,76.4]},"id":"ak02222pxpmz"},
- {"type":"Feature","properties":{"mag":2.24,"place":"20km E of Little Lake, CA","time":1644861336450,"updated":1644872260860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185768","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185768.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":77,"net":"ci","code":"40185768","ids":",ci40185768,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":37,"dmin":0.0393,"rms":0.12,"gap":33,"magType":"ml","type":"earthquake","title":"M 2.2 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6811667,35.9175,2.99]},"id":"ci40185768"},
- {"type":"Feature","properties":{"mag":2.02,"place":"20km E of Little Lake, CA","time":1644861300910,"updated":1644871895210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185760","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185760.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":63,"net":"ci","code":"40185760","ids":",ci40185760,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.03917,"rms":0.11,"gap":44,"magType":"ml","type":"earthquake","title":"M 2.0 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6811667,35.9176667,3.51]},"id":"ci40185760"},
- {"type":"Feature","properties":{"mag":2.8,"place":"45 km NW of Toyah, Texas","time":1644861180619,"updated":1644945986063,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022ddtn","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022ddtn.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"tx","code":"2022ddtn","ids":",us7000gkt5,tx2022ddtn,","sources":",us,tx,","types":",origin,phase-data,","nst":17,"dmin":0.08483253384,"rms":0.3,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.8 - 45 km NW of Toyah, Texas"},"geometry":{"type":"Point","coordinates":[-104.1132912,31.6179215,6.131567383]},"id":"tx2022ddtn"},
- {"type":"Feature","properties":{"mag":0.86,"place":"10km NW of The Geysers, CA","time":1644861120760,"updated":1644862157989,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692751","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692751.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692751","ids":",nc73692751,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.00598,"rms":0.02,"gap":126,"magType":"md","type":"earthquake","title":"M 0.9 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8406677,38.8429985,2.23]},"id":"nc73692751"},
- {"type":"Feature","properties":{"mag":1.5,"place":"29 km NW of Willow, Alaska","time":1644860512307,"updated":1644861056100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222pjvwb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222pjvwb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222pjvwb","ids":",ak02222pjvwb,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.4,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 29 km NW of Willow, Alaska"},"geometry":{"type":"Point","coordinates":[-150.3801,61.9516,35.3]},"id":"ak02222pjvwb"},
- {"type":"Feature","properties":{"mag":1.54,"place":"11 km NE of Lima, Montana","time":1644859998590,"updated":1644865375670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538354","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538354.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"mb","code":"80538354","ids":",mb80538354,","sources":",mb,","types":",origin,phase-data,","nst":18,"dmin":0.131,"rms":0.19,"gap":103,"magType":"ml","type":"earthquake","title":"M 1.5 - 11 km NE of Lima, Montana"},"geometry":{"type":"Point","coordinates":[-112.4803333,44.7095,5.75]},"id":"mb80538354"},
- {"type":"Feature","properties":{"mag":4.6,"place":"off the coast of Central America","time":1644859931724,"updated":1644862381040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gksz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gksz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gksz","ids":",us7000gksz,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.371,"rms":1.01,"gap":170,"magType":"mb","type":"earthquake","title":"M 4.6 - off the coast of Central America"},"geometry":{"type":"Point","coordinates":[-83.001,3.3965,10]},"id":"us7000gksz"},
- {"type":"Feature","properties":{"mag":1.77,"place":"8 km WSW of Townsend, Montana","time":1644859772930,"updated":1644865971520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538349","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538349.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"mb","code":"80538349","ids":",mb80538349,","sources":",mb,","types":",origin,phase-data,","nst":11,"dmin":0.33,"rms":0.16,"gap":149,"magType":"ml","type":"quarry blast","title":"M 1.8 Quarry Blast - 8 km WSW of Townsend, Montana"},"geometry":{"type":"Point","coordinates":[-111.6331667,46.297,-2]},"id":"mb80538349"},
- {"type":"Feature","properties":{"mag":1.4,"place":"38 km N of Petersville, Alaska","time":1644858954321,"updated":1644859232951,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222pebdt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222pebdt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222pebdt","ids":",ak02222pebdt,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 38 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6623,62.8357,79]},"id":"ak02222pebdt"},
- {"type":"Feature","properties":{"mag":1.4,"place":"25 km SSW of Hawthorne, Nevada","time":1644858457614,"updated":1644892696770,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833844","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833844.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00833844","ids":",nn00833844,","sources":",nn,","types":",origin,phase-data,","nst":19,"dmin":0.205,"rms":0.148,"gap":144.15,"magType":"ml","type":"earthquake","title":"M 1.4 - 25 km SSW of Hawthorne, Nevada"},"geometry":{"type":"Point","coordinates":[-118.7521,38.3169,4.5]},"id":"nn00833844"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644858395730,"updated":1644860295789,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692746","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692746.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692746","ids":",nc73692746,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.01068,"rms":0.01,"gap":102,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8164978,38.8328323,1.66]},"id":"nc73692746"},
- {"type":"Feature","properties":{"mag":1.64,"place":"7 km SSW of Mill Creek, Oklahoma","time":1644857753259,"updated":1644936719154,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022ddrq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022ddrq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":41,"net":"ok","code":"2022ddrq","ids":",ok2022ddrq,","sources":",ok,","types":",origin,phase-data,","nst":21,"dmin":0.1898627425,"rms":0.3,"gap":93,"magType":"ml","type":"quarry blast","title":"M 1.6 Quarry Blast - 7 km SSW of Mill Creek, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8465,34.33666667,0]},"id":"ok2022ddrq"},
- {"type":"Feature","properties":{"mag":1.21,"place":"8km NW of The Geysers, CA","time":1644857334500,"updated":1644868031581,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692741","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692741.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":23,"net":"nc","code":"73692741","ids":",nc73692741,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.01098,"rms":0.03,"gap":55,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8188324,38.8320007,1.46]},"id":"nc73692741"},
- {"type":"Feature","properties":{"mag":-0.03,"place":"37 km NNE of Amboy, Washington","time":1644857081920,"updated":1644862335290,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816756","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816756.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816756","ids":",uw61816756,","sources":",uw,","types":",origin,phase-data,","nst":9,"dmin":0.007877,"rms":0.19,"gap":139,"magType":"md","type":"earthquake","title":"M -0.0 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18166666666667,46.195166666666665,4.71]},"id":"uw61816756"},
- {"type":"Feature","properties":{"mag":4.5,"place":"117 km SE of Kegen, Kazakhstan","time":1644857073940,"updated":1644858292040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkss","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkss.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkss","ids":",us7000gkss,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.153,"rms":0.71,"gap":73,"magType":"mb","type":"earthquake","title":"M 4.5 - 117 km SE of Kegen, Kazakhstan"},"geometry":{"type":"Point","coordinates":[80.3231,42.3519,10]},"id":"us7000gkss"},
- {"type":"Feature","properties":{"mag":3.17,"place":"10km SW of Valencia, CA","time":1644856895260,"updated":1645105478574,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185640","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185640.geojson","felt":367,"cdi":4.1,"mmi":3.65,"alert":null,"status":"reviewed","tsunami":0,"sig":305,"net":"ci","code":"40185640","ids":",ci40185640,us7000gksr,","sources":",ci,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,shakemap,","nst":93,"dmin":0.03877,"rms":0.25,"gap":17,"magType":"ml","type":"earthquake","title":"M 3.2 - 10km SW of Valencia, CA"},"geometry":{"type":"Point","coordinates":[-118.6415,34.3891667,3.23]},"id":"ci40185640"},
- {"type":"Feature","properties":{"mag":1.5,"place":"56 km WNW of Anchor Point, Alaska","time":1644856056337,"updated":1644856244752,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ovf17","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ovf17.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222ovf17","ids":",ak02222ovf17,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.5,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 56 km WNW of Anchor Point, Alaska"},"geometry":{"type":"Point","coordinates":[-152.7506,59.9798,111.8]},"id":"ak02222ovf17"},
- {"type":"Feature","properties":{"mag":1.12,"place":"8km NW of The Geysers, CA","time":1644855779810,"updated":1644860710830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692726","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692726.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nc","code":"73692726","ids":",nc73692726,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.01114,"rms":0.06,"gap":56,"magType":"md","type":"earthquake","title":"M 1.1 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8180008,38.8326683,1.17]},"id":"nc73692726"},
- {"type":"Feature","properties":{"mag":1.4,"place":"16 km WNW of Fishhook, Alaska","time":1644855414611,"updated":1644855783867,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ot3kp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ot3kp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222ot3kp","ids":",ak02222ot3kp,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 16 km WNW of Fishhook, Alaska"},"geometry":{"type":"Point","coordinates":[-149.5242,61.7933,13]},"id":"ak02222ot3kp"},
- {"type":"Feature","properties":{"mag":1.2,"place":"7 km SW of Virginia City, Nevada","time":1644855106034,"updated":1644892695651,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833840","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833840.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833840","ids":",nn00833840,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.06,"rms":0.1362,"gap":53.05,"magType":"ml","type":"earthquake","title":"M 1.2 - 7 km SW of Virginia City, Nevada"},"geometry":{"type":"Point","coordinates":[-119.7022,39.251,5.2]},"id":"nn00833840"},
- {"type":"Feature","properties":{"mag":4.4,"place":"77 km NNW of Bima, Indonesia","time":1644855092026,"updated":1644857019040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gksm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gksm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gksm","ids":",us7000gksm,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.992,"rms":0.4,"gap":79,"magType":"mb","type":"earthquake","title":"M 4.4 - 77 km NNW of Bima, Indonesia"},"geometry":{"type":"Point","coordinates":[118.559,-7.7799,10]},"id":"us7000gksm"},
- {"type":"Feature","properties":{"mag":1.91999996,"place":"2 km SE of Pāhala, Hawaii","time":1644854798840,"updated":1644854979220,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917202","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917202.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":57,"net":"hv","code":"72917202","ids":",hv72917202,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.109999999,"gap":110,"magType":"md","type":"earthquake","title":"M 1.9 - 2 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.461502075195,19.1861667633057,37.0299987792969]},"id":"hv72917202"},
- {"type":"Feature","properties":{"mag":1.3,"place":"Central Alaska","time":1644854698483,"updated":1644854941862,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222oqmva","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222oqmva.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222oqmva","ids":",ak02222oqmva,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.21,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - Central Alaska"},"geometry":{"type":"Point","coordinates":[-151.2046,62.0801,137.8]},"id":"ak02222oqmva"},
- {"type":"Feature","properties":{"mag":0.44,"place":"37 km NNE of Amboy, Washington","time":1644854522170,"updated":1644862089220,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816721","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816721.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"uw","code":"61816721","ids":",uw61816721,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.004006,"rms":0.07,"gap":102,"magType":"ml","type":"earthquake","title":"M 0.4 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19416666666666,46.1965,2.6]},"id":"uw61816721"},
- {"type":"Feature","properties":{"mag":0.6,"place":"29 km S of Mina, Nevada","time":1644853432397,"updated":1644853680784,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833839","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833839.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nn","code":"00833839","ids":",nn00833839,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.215,"rms":0.22,"gap":135.6,"magType":"ml","type":"earthquake","title":"M 0.6 - 29 km S of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.1139,38.1226,13.4]},"id":"nn00833839"},
- {"type":"Feature","properties":{"mag":1.02,"place":"14km ENE of Ridgecrest, CA","time":1644853408050,"updated":1644871547834,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185576","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185576.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40185576","ids":",ci40185576,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.09061,"rms":0.13,"gap":94,"magType":"ml","type":"earthquake","title":"M 1.0 - 14km ENE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5305,35.6581667,10.82]},"id":"ci40185576"},
- {"type":"Feature","properties":{"mag":1.6,"place":"22 km ENE of Talkeetna, Alaska","time":1644852814824,"updated":1644853038425,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ob9m2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ob9m2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02222ob9m2","ids":",ak02222ob9m2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 22 km ENE of Talkeetna, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6878,62.3637,9.4]},"id":"ak02222ob9m2"},
- {"type":"Feature","properties":{"mag":1.2,"place":"9km E of Ojai, CA","time":1644852516470,"updated":1644871289720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185568","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185568.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ci","code":"40185568","ids":",ci40185568,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.0142,"rms":0.29,"gap":58,"magType":"ml","type":"earthquake","title":"M 1.2 - 9km E of Ojai, CA"},"geometry":{"type":"Point","coordinates":[-119.1426667,34.4505,2.4]},"id":"ci40185568"},
- {"type":"Feature","properties":{"mag":2.3,"place":"30 km S of Mina, Nevada","time":1644852497078,"updated":1644892686937,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833835","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833835.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":81,"net":"nn","code":"00833835","ids":",nn00833835,","sources":",nn,","types":",origin,phase-data,","nst":23,"dmin":0.126,"rms":0.1546,"gap":72.71,"magType":"ml","type":"earthquake","title":"M 2.3 - 30 km S of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.1162,38.1158,11.7]},"id":"nn00833835"},
- {"type":"Feature","properties":{"mag":0.7,"place":"11km WSW of Searles Valley, CA","time":1644852257280,"updated":1644870863724,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185560","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185560.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40185560","ids":",ci40185560,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.1164,"rms":0.07,"gap":161,"magType":"ml","type":"earthquake","title":"M 0.7 - 11km WSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5123333,35.722,10.98]},"id":"ci40185560"},
- {"type":"Feature","properties":{"mag":1.71,"place":"14km ENE of Ridgecrest, CA","time":1644852121130,"updated":1644870798740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185552","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185552.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":45,"net":"ci","code":"40185552","ids":",ci40185552,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.09414,"rms":0.14,"gap":61,"magType":"ml","type":"earthquake","title":"M 1.7 - 14km ENE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5306667,35.6625,10.26]},"id":"ci40185552"},
- {"type":"Feature","properties":{"mag":2.18,"place":"3 km NW of Renfrow, Oklahoma","time":1644852047149,"updated":1644852620545,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022ddon","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022ddon.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":73,"net":"ok","code":"2022ddon","ids":",ok2022ddon,","sources":",ok,","types":",origin,phase-data,","nst":88,"dmin":0.1709664506,"rms":0.29,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.2 - 3 km NW of Renfrow, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.67533333,36.9485,6.72]},"id":"ok2022ddon"},
- {"type":"Feature","properties":{"mag":0.57,"place":"17km ESE of Anza, CA","time":1644851892680,"updated":1644869361681,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185544","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185544.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40185544","ids":",ci40185544,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.0594,"rms":0.13,"gap":60,"magType":"ml","type":"earthquake","title":"M 0.6 - 17km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5001667,33.5038333,13.71]},"id":"ci40185544"},
- {"type":"Feature","properties":{"mag":0.01,"place":"17km ESE of Anza, CA","time":1644851887650,"updated":1644869365917,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391972","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391972.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"37391972","ids":",ci37391972,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.06078,"rms":0.12,"gap":114,"magType":"ml","type":"earthquake","title":"M 0.0 - 17km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4988333,33.5028333,13.34]},"id":"ci37391972"},
- {"type":"Feature","properties":{"mag":1.66,"place":"10 km NNE of Stanley, Idaho","time":1644851806440,"updated":1644856601400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538344","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538344.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"mb","code":"80538344","ids":",mb80538344,","sources":",mb,","types":",origin,phase-data,","nst":5,"dmin":0.62,"rms":0.22,"gap":113,"magType":"ml","type":"earthquake","title":"M 1.7 - 10 km NNE of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-114.8965,44.3056667,8.83]},"id":"mb80538344"},
- {"type":"Feature","properties":{"mag":2.11,"place":"2 km ENE of La Parguera, Puerto Rico","time":1644851780920,"updated":1644854925810,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334763","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334763.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"pr","code":"71334763","ids":",pr71334763,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.11,"gap":149,"magType":"md","type":"earthquake","title":"M 2.1 - 2 km ENE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0206666666667,17.9821666666667,6.41]},"id":"pr71334763"},
- {"type":"Feature","properties":{"mag":1.4,"place":"66 km WNW of Paxson, Alaska","time":1644851583071,"updated":1644851856227,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222o6ww0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222o6ww0.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222o6ww0","ids":",ak02222o6ww0,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.84,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 66 km WNW of Paxson, Alaska"},"geometry":{"type":"Point","coordinates":[-146.7472,63.4,59.9]},"id":"ak02222o6ww0"},
- {"type":"Feature","properties":{"mag":1.39,"place":"3 km SW of Fuig, Puerto Rico","time":1644851050280,"updated":1644946213560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334773","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334773.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"pr","code":"71334773","ids":",pr71334773,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.08,"gap":187,"magType":"md","type":"earthquake","title":"M 1.4 - 3 km SW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9428333333333,17.969,9.61]},"id":"pr71334773"},
- {"type":"Feature","properties":{"mag":1.9,"place":"17 km SE of Chenega, Alaska","time":1644850090471,"updated":1644850363296,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222nszva","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222nszva.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02222nszva","ids":",ak02222nszva,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.77,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 17 km SE of Chenega, Alaska"},"geometry":{"type":"Point","coordinates":[-147.8079,59.9485,29.9]},"id":"ak02222nszva"},
- {"type":"Feature","properties":{"mag":1.3,"place":"51 km W of Tyonek, Alaska","time":1644849869917,"updated":1644850162644,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ns6lx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ns6lx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222ns6lx","ids":",ak02222ns6lx,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.32,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 51 km W of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.0876,61.0834,80.4]},"id":"ak02222ns6lx"},
- {"type":"Feature","properties":{"mag":1.84,"place":"18km E of Ridgecrest, CA","time":1644849809410,"updated":1644857947360,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185512","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185512.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":52,"net":"ci","code":"40185512","ids":",ci40185512,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02247,"rms":0.15,"gap":99,"magType":"ml","type":"earthquake","title":"M 1.8 - 18km E of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.4726667,35.6073333,9.82]},"id":"ci40185512"},
- {"type":"Feature","properties":{"mag":2.67,"place":"4 km SW of Fuig, Puerto Rico","time":1644849408040,"updated":1644852964390,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334753","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334753.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":110,"net":"pr","code":"71334753","ids":",pr71334753,","sources":",pr,","types":",origin,phase-data,","nst":21,"dmin":null,"rms":0.1,"gap":192,"magType":"md","type":"earthquake","title":"M 2.7 - 4 km SW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9463333333333,17.9655,7.66]},"id":"pr71334753"},
- {"type":"Feature","properties":{"mag":1.3,"place":"61 km NNE of Petersville, Alaska","time":1644849266897,"updated":1644850062330,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222nq15c","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222nq15c.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222nq15c","ids":",ak02222nq15c,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 61 km NNE of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.4201,63.0254,9.5]},"id":"ak02222nq15c"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644849157440,"updated":1644856031366,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692706","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692706.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692706","ids":",nc73692706,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.00135,"rms":0.02,"gap":75,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8088303,38.8243332,1]},"id":"nc73692706"},
- {"type":"Feature","properties":{"mag":1.78,"place":"25 km W of Augusta, Montana","time":1644849026880,"updated":1644852471910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538339","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538339.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"mb","code":"80538339","ids":",mb80538339,","sources":",mb,","types":",origin,phase-data,","nst":21,"dmin":0.324,"rms":0.12,"gap":134,"magType":"ml","type":"earthquake","title":"M 1.8 - 25 km W of Augusta, Montana"},"geometry":{"type":"Point","coordinates":[-112.726,47.4613333,21.18]},"id":"mb80538339"},
- {"type":"Feature","properties":{"mag":1.62,"place":"5km N of Tres Pinos, CA","time":1644848809240,"updated":1644854471192,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692701","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692701.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":40,"net":"nc","code":"73692701","ids":",nc73692701,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.1293,"rms":0.14,"gap":163,"magType":"md","type":"earthquake","title":"M 1.6 - 5km N of Tres Pinos, CA"},"geometry":{"type":"Point","coordinates":[-121.3136673,36.8364983,10.61]},"id":"nc73692701"},
- {"type":"Feature","properties":{"mag":0.54,"place":"6km NW of Parkfield, CA","time":1644848232620,"updated":1645054454269,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692696","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692696.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nc","code":"73692696","ids":",nc73692696,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.01769,"rms":0.08,"gap":106,"magType":"md","type":"earthquake","title":"M 0.5 - 6km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.479,35.93,3.1]},"id":"nc73692696"},
- {"type":"Feature","properties":{"mag":1.2,"place":"28 km SSE of Mina, Nevada","time":1644847730098,"updated":1644892684986,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833833","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833833.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833833","ids":",nn00833833,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.017,"rms":0.1554,"gap":113.43,"magType":"ml","type":"earthquake","title":"M 1.2 - 28 km SSE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.9634,38.1557,9.6]},"id":"nn00833833"},
- {"type":"Feature","properties":{"mag":1.73,"place":"4km NW of Delta, B.C., MX","time":1644847368550,"updated":1644868623106,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185456","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185456.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"ci","code":"40185456","ids":",ci40185456,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.08358,"rms":0.21,"gap":119,"magType":"ml","type":"earthquake","title":"M 1.7 - 4km NW of Delta, B.C., MX"},"geometry":{"type":"Point","coordinates":[-115.2188333,32.3785,11.78]},"id":"ci40185456"},
- {"type":"Feature","properties":{"mag":2.05999994,"place":"13 km ENE of Pāhala, Hawaii","time":1644847177520,"updated":1644847367700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917122","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917122.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"hv","code":"72917122","ids":",hv72917122,","sources":",hv,","types":",origin,phase-data,","nst":42,"dmin":null,"rms":0.129999995,"gap":191,"magType":"md","type":"earthquake","title":"M 2.1 - 13 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.362167358398,19.2548332214355,32.060001373291]},"id":"hv72917122"},
- {"type":"Feature","properties":{"mag":1.4,"place":"57 km WNW of Tatitlek, Alaska","time":1644846877586,"updated":1644847056845,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222n8wni","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222n8wni.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222n8wni","ids":",ak02222n8wni,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 57 km WNW of Tatitlek, Alaska"},"geometry":{"type":"Point","coordinates":[-147.7054,61.0105,19.7]},"id":"ak02222n8wni"},
- {"type":"Feature","properties":{"mag":0.86,"place":"10km NW of The Geysers, CA","time":1644846631590,"updated":1644851351862,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692686","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692686.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692686","ids":",nc73692686,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.004926,"rms":0.01,"gap":105,"magType":"md","type":"earthquake","title":"M 0.9 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8393326,38.8424988,1.84]},"id":"nc73692686"},
- {"type":"Feature","properties":{"mag":0.32,"place":"10km NW of The Geysers, CA","time":1644846535260,"updated":1644849790692,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692681","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692681.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692681","ids":",nc73692681,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.005204,"rms":0.03,"gap":91,"magType":"md","type":"earthquake","title":"M 0.3 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.840332,38.8421669,2.15]},"id":"nc73692681"},
- {"type":"Feature","properties":{"mag":3.8,"place":"117 km WSW of Hawaiian Ocean View, Hawaii","time":1644846403346,"updated":1644932974157,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkrw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkrw.geojson","felt":3,"cdi":2.7,"mmi":1.838,"alert":null,"status":"reviewed","tsunami":0,"sig":223,"net":"us","code":"7000gkrw","ids":",hv72917112,us7000gkrw,","sources":",hv,us,","types":",dyfi,origin,phase-data,shakemap,","nst":null,"dmin":1.034,"rms":0.29,"gap":257,"magType":"ml","type":"earthquake","title":"M 3.8 - 117 km WSW of Hawaiian Ocean View, Hawaii"},"geometry":{"type":"Point","coordinates":[-156.8431,18.7918,35]},"id":"us7000gkrw"},
- {"type":"Feature","properties":{"mag":2.12,"place":"7 km E of Pāhala, Hawaii","time":1644846283830,"updated":1644846613890,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917107","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917107.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":69,"net":"hv","code":"72917107","ids":",hv72917107,","sources":",hv,","types":",origin,phase-data,","nst":48,"dmin":null,"rms":0.129999995,"gap":158,"magType":"ml","type":"earthquake","title":"M 2.1 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.411331176758,19.1946659088135,34.1100006103516]},"id":"hv72917107"},
- {"type":"Feature","properties":{"mag":1.4,"place":"30 km SE of Mina, Nevada","time":1644846174088,"updated":1644892683639,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833831","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833831.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00833831","ids":",nn00833831,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.08,"rms":0.115,"gap":113.3,"magType":"ml","type":"earthquake","title":"M 1.4 - 30 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8771,38.1854,8.2]},"id":"nn00833831"},
- {"type":"Feature","properties":{"mag":4.5,"place":"4 km S of Itako, Japan","time":1644845870187,"updated":1644947854423,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkrt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkrt.geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkrt","ids":",us7000gkrt,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.998,"rms":0.49,"gap":123,"magType":"mb","type":"earthquake","title":"M 4.5 - 4 km S of Itako, Japan"},"geometry":{"type":"Point","coordinates":[140.5484,35.8949,48.35]},"id":"us7000gkrt"},
- {"type":"Feature","properties":{"mag":1.2,"place":"5 km NW of Knik, Alaska","time":1644844991066,"updated":1644845173150,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222n27eq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222n27eq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02222n27eq","ids":",ak02222n27eq,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.1,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 5 km NW of Knik, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8041,61.4878,32.9]},"id":"ak02222n27eq"},
- {"type":"Feature","properties":{"mag":1.3,"place":"38 km E of Skwentna, Alaska","time":1644844741685,"updated":1644845543986,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222n1bti","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222n1bti.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222n1bti","ids":",ak02222n1bti,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 38 km E of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6712,61.935,12]},"id":"ak02222n1bti"},
- {"type":"Feature","properties":{"mag":1.5,"place":"120 km E of McCarthy, Alaska","time":1644844642611,"updated":1644845012542,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222n0y06","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222n0y06.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222n0y06","ids":",ak02222n0y06,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 120 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6678,61.4972,13]},"id":"ak02222n0y06"},
- {"type":"Feature","properties":{"mag":1.8,"place":"15 km N of Meadow Lakes, Alaska","time":1644844138096,"updated":1644844381035,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222mz39x","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222mz39x.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02222mz39x","ids":",ak02222mz39x,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 15 km N of Meadow Lakes, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6475,61.7652,18.5]},"id":"ak02222mz39x"},
- {"type":"Feature","properties":{"mag":1.96,"place":"0 km NE of Pāhala, Hawaii","time":1644844126700,"updated":1644844456180,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917077","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917077.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":59,"net":"hv","code":"72917077","ids":",hv72917077,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.109999999,"gap":144,"magType":"ml","type":"earthquake","title":"M 2.0 - 0 km NE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.473327636719,19.2076663970947,31.9400005340576]},"id":"hv72917077"},
- {"type":"Feature","properties":{"mag":0.52,"place":"3 km S of Volcano, Hawaii","time":1644844089420,"updated":1644879045340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72917072","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72917072.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"hv","code":"72917072","ids":",hv72917072,","sources":",hv,","types":",origin,phase-data,","nst":12,"dmin":null,"rms":0.09,"gap":95,"magType":"md","type":"earthquake","title":"M 0.5 - 3 km S of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.2405,19.4091666666667,5.63]},"id":"hv72917072"},
- {"type":"Feature","properties":{"mag":3.8,"place":"119 km SSE of Nikolski, Alaska","time":1644843938854,"updated":1644867662131,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkrj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkrj.geojson","felt":null,"cdi":null,"mmi":1.919,"alert":null,"status":"reviewed","tsunami":0,"sig":222,"net":"us","code":"7000gkrj","ids":",ak02222myg8p,us7000gkrj,","sources":",ak,us,","types":",origin,phase-data,shakemap,","nst":null,"dmin":1.341,"rms":1.18,"gap":231,"magType":"mb","type":"earthquake","title":"M 3.8 - 119 km SSE of Nikolski, Alaska"},"geometry":{"type":"Point","coordinates":[-168.2745,51.9234,10]},"id":"us7000gkrj"},
- {"type":"Feature","properties":{"mag":1.4,"place":"21km NE of San Ardo, CA","time":1644843750140,"updated":1645062674125,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692676","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692676.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nc","code":"73692676","ids":",nc73692676,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":33,"dmin":0.03862,"rms":0.1,"gap":128,"magType":"md","type":"earthquake","title":"M 1.4 - 21km NE of San Ardo, CA"},"geometry":{"type":"Point","coordinates":[-120.7338333,36.1435,5.18]},"id":"nc73692676"},
- {"type":"Feature","properties":{"mag":0.45,"place":"16km NNW of Borrego Springs, CA","time":1644843665690,"updated":1644852264183,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185392","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185392.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40185392","ids":",ci40185392,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.07597,"rms":0.17,"gap":67,"magType":"ml","type":"earthquake","title":"M 0.5 - 16km NNW of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.4161667,33.3908333,12.23]},"id":"ci40185392"},
- {"type":"Feature","properties":{"mag":2.1,"place":"120 km E of McCarthy, Alaska","time":1644843390493,"updated":1644843879759,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222mnvxm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222mnvxm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"02222mnvxm","ids":",ak02222mnvxm,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 120 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6682,61.4902,0]},"id":"ak02222mnvxm"},
- {"type":"Feature","properties":{"mag":1.9,"place":"43 km N of Petersville, Alaska","time":1644843148688,"updated":1644843879615,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222mn0x5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222mn0x5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02222mn0x5","ids":",ak02222mn0x5,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 43 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6406,62.8862,1.9]},"id":"ak02222mn0x5"},
- {"type":"Feature","properties":{"mag":0.65,"place":"18km NNE of Borrego Springs, CA","time":1644842222220,"updated":1644944965072,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37392284","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37392284.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"37392284","ids":",ci37392284,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.05761,"rms":0.18,"gap":128,"magType":"ml","type":"earthquake","title":"M 0.7 - 18km NNE of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.3356667,33.4158333,12.82]},"id":"ci37392284"},
- {"type":"Feature","properties":{"mag":1.18,"place":"17km N of Borrego Springs, CA","time":1644842200760,"updated":1644944670490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185384","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185384.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40185384","ids":",ci40185384,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":58,"dmin":0.05533,"rms":0.2,"gap":72,"magType":"ml","type":"earthquake","title":"M 1.2 - 17km N of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.3441667,33.4096667,11.95]},"id":"ci40185384"},
- {"type":"Feature","properties":{"mag":2.2,"place":"120 km E of McCarthy, Alaska","time":1644841271525,"updated":1644841594320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222mgcem","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222mgcem.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"02222mgcem","ids":",ak02222mgcem,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 120 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6695,61.4907,0]},"id":"ak02222mgcem"},
- {"type":"Feature","properties":{"mag":1.89,"place":"7 km SSE of La Parguera, Puerto Rico","time":1644841097810,"updated":1644843448690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334748","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334748.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":55,"net":"pr","code":"71334748","ids":",pr71334748,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.13,"gap":295,"magType":"md","type":"earthquake","title":"M 1.9 - 7 km SSE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0248333333333,17.9058333333333,16.43]},"id":"pr71334748"},
- {"type":"Feature","properties":{"mag":1.3,"place":"118 km E of McCarthy, Alaska","time":1644841019058,"updated":1644841273118,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222mfdht","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222mfdht.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222mfdht","ids":",ak02222mfdht,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.16,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 118 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6992,61.4992,16.4]},"id":"ak02222mfdht"},
- {"type":"Feature","properties":{"mag":2.4,"place":"49 km NNW of Aleneva, Alaska","time":1644840834910,"updated":1644841594170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222meq0k","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222meq0k.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":89,"net":"ak","code":"02222meq0k","ids":",us7000gkr7,ak02222meq0k,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.82,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.4 - 49 km NNW of Aleneva, Alaska"},"geometry":{"type":"Point","coordinates":[-153.1127,58.4881,44.1]},"id":"ak02222meq0k"},
- {"type":"Feature","properties":{"mag":3.12,"place":"61 km NW of Rincón, Puerto Rico","time":1644840698570,"updated":1644843796240,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334743","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334743.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":150,"net":"pr","code":"71334743","ids":",pr71334743,","sources":",pr,","types":",origin,phase-data,","nst":18,"dmin":null,"rms":0.31,"gap":210,"magType":"md","type":"earthquake","title":"M 3.1 - 61 km NW of Rincón, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.6571666666667,18.7373333333333,60.16]},"id":"pr71334743"},
- {"type":"Feature","properties":{"mag":1.5,"place":"33 km SE of Nelchina, Alaska","time":1644839533207,"updated":1644839739713,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222m1k4o","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222m1k4o.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222m1k4o","ids":",ak02222m1k4o,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.85,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 33 km SE of Nelchina, Alaska"},"geometry":{"type":"Point","coordinates":[-146.3794,61.759,23.9]},"id":"ak02222m1k4o"},
- {"type":"Feature","properties":{"mag":1.17,"place":"4km NNW of Hollister, CA","time":1644839434720,"updated":1645051930996,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc71127189","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc71127189.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"nc","code":"71127189","ids":",nc71127189,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.03325,"rms":0.1,"gap":57,"magType":"md","type":"earthquake","title":"M 1.2 - 4km NNW of Hollister, CA"},"geometry":{"type":"Point","coordinates":[-121.4111667,36.8838333,8.61]},"id":"nc71127189"},
- {"type":"Feature","properties":{"mag":2.3,"place":"29km ESE of Bodie, CA","time":1644839395530,"updated":1645061113962,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692666","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692666.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":81,"net":"nc","code":"73692666","ids":",nc73692666,nn00833828,","sources":",nc,nn,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":36,"dmin":0.2459,"rms":0.06,"gap":83,"magType":"md","type":"earthquake","title":"M 2.3 - 29km ESE of Bodie, CA"},"geometry":{"type":"Point","coordinates":[-118.7343333,38.073,6.36]},"id":"nc73692666"},
- {"type":"Feature","properties":{"mag":4.3,"place":"76 km SW of Acajutla, El Salvador","time":1644838835548,"updated":1644840965040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkr1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkr1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gkr1","ids":",us7000gkr1,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.941,"rms":0.51,"gap":60,"magType":"mb","type":"earthquake","title":"M 4.3 - 76 km SW of Acajutla, El Salvador"},"geometry":{"type":"Point","coordinates":[-90.3796,13.159,54.42]},"id":"us7000gkr1"},
- {"type":"Feature","properties":{"mag":1,"place":"112 km ESE of McCarthy, Alaska","time":1644838397644,"updated":1644838707800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222lxhut","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222lxhut.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"ak","code":"02222lxhut","ids":",ak02222lxhut,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.4,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 112 km ESE of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.969,61.073,16.2]},"id":"ak02222lxhut"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644837715310,"updated":1644839115648,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692661","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692661.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692661","ids":",nc73692661,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007631,"rms":0.01,"gap":84,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8136673,38.8305016,1.71]},"id":"nc73692661"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km WNW of The Geysers, CA","time":1644837357990,"updated":1644844151164,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692656","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692656.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692656","ids":",nc73692656,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.005442,"rms":0.01,"gap":91,"magType":"md","type":"earthquake","title":"M 0.9 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8233337,38.8118324,2.38]},"id":"nc73692656"},
- {"type":"Feature","properties":{"mag":2.63,"place":"14km ENE of Ridgecrest, CA","time":1644836999050,"updated":1644943641927,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185360","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185360.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":107,"net":"ci","code":"40185360","ids":",ci40185360,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":45,"dmin":0.09317,"rms":0.16,"gap":44,"magType":"ml","type":"earthquake","title":"M 2.6 - 14km ENE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5335,35.6595,9.5]},"id":"ci40185360"},
- {"type":"Feature","properties":{"mag":1.52,"place":"9 km E of Pāhala, Hawaii","time":1644836845820,"updated":1644870934480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916987","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916987.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"hv","code":"72916987","ids":",hv72916987,","sources":",hv,","types":",origin,phase-data,","nst":26,"dmin":null,"rms":0.11,"gap":161,"magType":"md","type":"earthquake","title":"M 1.5 - 9 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.391666666667,19.2071666666667,33.62]},"id":"hv72916987"},
- {"type":"Feature","properties":{"mag":1,"place":"30 km NNW of Valdez, Alaska","time":1644836745472,"updated":1644881000960,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222lrj31","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222lrj31.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"ak","code":"02222lrj31","ids":",ak02222lrj31,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.29,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 30 km NNW of Valdez, Alaska"},"geometry":{"type":"Point","coordinates":[-146.5922,61.3828,40.3]},"id":"ak02222lrj31"},
- {"type":"Feature","properties":{"mag":1.9,"place":"35 km NW of Stanley, Idaho","time":1644836131490,"updated":1644854920110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538334","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538334.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"mb","code":"80538334","ids":",mb80538334,","sources":",mb,","types":",origin,phase-data,","nst":7,"dmin":0.833,"rms":0.26,"gap":83,"magType":"ml","type":"earthquake","title":"M 1.9 - 35 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.226,44.4638333,13.29]},"id":"mb80538334"},
- {"type":"Feature","properties":{"mag":1.3,"place":"13 km SSW of Trapper Creek, Alaska","time":1644835905465,"updated":1644836463531,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222lfza9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222lfza9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222lfza9","ids":",ak02222lfza9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.34,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 13 km SSW of Trapper Creek, Alaska"},"geometry":{"type":"Point","coordinates":[-150.3016,62.1957,17]},"id":"ak02222lfza9"},
- {"type":"Feature","properties":{"mag":0.55,"place":"21km SW of La Quinta, CA","time":1644835687570,"updated":1644947578660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185352","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185352.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40185352","ids":",ci40185352,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.02214,"rms":0.13,"gap":72,"magType":"ml","type":"earthquake","title":"M 0.6 - 21km SW of La Quinta, CA"},"geometry":{"type":"Point","coordinates":[-116.4468333,33.51,7.77]},"id":"ci40185352"},
- {"type":"Feature","properties":{"mag":2.09,"place":"5 km WSW of Guánica, Puerto Rico","time":1644835423710,"updated":1644840042340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334733","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334733.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"pr","code":"71334733","ids":",pr71334733,","sources":",pr,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.06,"gap":277,"magType":"md","type":"earthquake","title":"M 2.1 - 5 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9561666666667,17.9476666666667,9.89]},"id":"pr71334733"},
- {"type":"Feature","properties":{"mag":2.94,"place":"18 km WSW of Stella, Puerto Rico","time":1644835303290,"updated":1644841226500,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334728","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334728.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":133,"net":"pr","code":"71334728","ids":",pr71334728,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.07,"gap":281,"magType":"md","type":"earthquake","title":"M 2.9 - 18 km WSW of Stella, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.4006666666667,18.2378333333333,83.74]},"id":"pr71334728"},
- {"type":"Feature","properties":{"mag":1.3,"place":"53 km SSE of Denali National Park, Alaska","time":1644835281334,"updated":1644835571676,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222lds9z","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222lds9z.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02222lds9z","ids":",ak02222lds9z,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 53 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4708,63.0782,4.8]},"id":"ak02222lds9z"},
- {"type":"Feature","properties":{"mag":1,"place":"10 km NNE of Four Mile Road, Alaska","time":1644835174926,"updated":1644835441290,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222lddw4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222lddw4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"ak","code":"02222lddw4","ids":",ak02222lddw4,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 10 km NNE of Four Mile Road, Alaska"},"geometry":{"type":"Point","coordinates":[-149.0495,64.6938,14.8]},"id":"ak02222lddw4"},
- {"type":"Feature","properties":{"mag":1.94,"place":"4km SSW of Brawley, CA","time":1644835088390,"updated":1644886834640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185344","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185344.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"ci","code":"40185344","ids":",ci40185344,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.04703,"rms":0.28,"gap":43,"magType":"ml","type":"earthquake","title":"M 1.9 - 4km SSW of Brawley, CA"},"geometry":{"type":"Point","coordinates":[-115.5505,32.9478333,11.58]},"id":"ci40185344"},
- {"type":"Feature","properties":{"mag":1.5,"place":"119 km E of McCarthy, Alaska","time":1644833820705,"updated":1644834128601,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222l8lhz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222l8lhz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222l8lhz","ids":",ak02222l8lhz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 119 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6794,61.4973,13.9]},"id":"ak02222l8lhz"},
- {"type":"Feature","properties":{"mag":1.64,"place":"32km SW of South Dos Palos, CA","time":1644833717670,"updated":1645020310850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692646","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692646.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":41,"net":"nc","code":"73692646","ids":",nc73692646,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":33,"dmin":0.1371,"rms":0.15,"gap":159,"magType":"md","type":"earthquake","title":"M 1.6 - 32km SW of South Dos Palos, CA"},"geometry":{"type":"Point","coordinates":[-120.9073333,36.765,1.11]},"id":"nc73692646"},
- {"type":"Feature","properties":{"mag":1.9,"place":"56 km E of Pedro Bay, Alaska","time":1644833454423,"updated":1644833867879,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222l77lk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222l77lk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02222l77lk","ids":",ak02222l77lk,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.49,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 56 km E of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.0982,59.7763,99.7]},"id":"ak02222l77lk"},
- {"type":"Feature","properties":{"mag":1.81,"place":"southern Idaho","time":1644833032500,"updated":1644855447190,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538324","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538324.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"mb","code":"80538324","ids":",mb80538324,","sources":",mb,","types":",origin,phase-data,","nst":7,"dmin":0.831,"rms":0.2,"gap":83,"magType":"ml","type":"earthquake","title":"M 1.8 - southern Idaho"},"geometry":{"type":"Point","coordinates":[-115.1968333,44.3513333,9.08]},"id":"mb80538324"},
- {"type":"Feature","properties":{"mag":0.87,"place":"17km NW of Parkfield, CA","time":1644832859570,"updated":1645051213921,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692636","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692636.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nc","code":"73692636","ids":",nc73692636,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.02436,"rms":0.08,"gap":91,"magType":"md","type":"earthquake","title":"M 0.9 - 17km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.5651667,36.0018333,2.17]},"id":"nc73692636"},
- {"type":"Feature","properties":{"mag":0.53,"place":"2km NE of The Geysers, CA","time":1644832535890,"updated":1644840070746,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692631","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692631.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":4,"net":"nc","code":"73692631","ids":",nc73692631,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01216,"rms":0.02,"gap":121,"magType":"md","type":"earthquake","title":"M 0.5 - 2km NE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7385025,38.7953339,1.31]},"id":"nc73692631"},
- {"type":"Feature","properties":{"mag":1.07,"place":"23km N of California City, CA","time":1644832244320,"updated":1644847940374,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185328","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185328.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40185328","ids":",ci40185328,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.141,"rms":0.18,"gap":102,"magType":"ml","type":"earthquake","title":"M 1.1 - 23km N of California City, CA"},"geometry":{"type":"Point","coordinates":[-117.9976667,35.3343333,3.57]},"id":"ci40185328"},
- {"type":"Feature","properties":{"mag":1.1,"place":"36 km WNW of Tatitlek, Alaska","time":1644830781682,"updated":1644831192558,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222kp4y8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222kp4y8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"02222kp4y8","ids":",ak02222kp4y8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 36 km WNW of Tatitlek, Alaska"},"geometry":{"type":"Point","coordinates":[-147.3096,60.9649,21.5]},"id":"ak02222kp4y8"},
- {"type":"Feature","properties":{"mag":2.09,"place":"5 km WSW of Fuig, Puerto Rico","time":1644830682890,"updated":1644832661780,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334723","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334723.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"pr","code":"71334723","ids":",pr71334723,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.04,"gap":188,"magType":"md","type":"earthquake","title":"M 2.1 - 5 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9595,17.968,8.38]},"id":"pr71334723"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km W of Cobb, CA","time":1644830541390,"updated":1644838511591,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692626","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692626.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692626","ids":",nc73692626,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.013,"rms":0.01,"gap":73,"magType":"md","type":"earthquake","title":"M 0.9 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8191681,38.8359985,1.61]},"id":"nc73692626"},
- {"type":"Feature","properties":{"mag":2.33,"place":"6 km ENE of Pāhala, Hawaii","time":1644830404990,"updated":1644830735600,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916922","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916922.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":84,"net":"hv","code":"72916922","ids":",hv72916922,","sources":",hv,","types":",origin,phase-data,","nst":49,"dmin":null,"rms":0.129999995,"gap":137,"magType":"ml","type":"earthquake","title":"M 2.3 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.419662475586,19.2180004119873,34.1699981689453]},"id":"hv72916922"},
- {"type":"Feature","properties":{"mag":3.36,"place":"40km ENE of Maneadero, B.C., MX","time":1644830002190,"updated":1644942672240,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185312","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185312.geojson","felt":3,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":175,"net":"ci","code":"40185312","ids":",ci40185312,us7000gkqm,","sources":",ci,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.2453,"rms":0.26,"gap":128,"magType":"ml","type":"earthquake","title":"M 3.4 - 40km ENE of Maneadero, B.C., MX"},"geometry":{"type":"Point","coordinates":[-116.1843333,31.8636667,15.44]},"id":"ci40185312"},
- {"type":"Feature","properties":{"mag":0.74,"place":"16km SW of Searles Valley, CA","time":1644829493030,"updated":1644847958802,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185304","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185304.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40185304","ids":",ci40185304,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.07538,"rms":0.12,"gap":168,"magType":"ml","type":"earthquake","title":"M 0.7 - 16km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5033333,35.6541667,13.44]},"id":"ci40185304"},
- {"type":"Feature","properties":{"mag":1.27,"place":"8km S of Brawley, CA","time":1644829407200,"updated":1644941698800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185296","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185296.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ci","code":"40185296","ids":",ci40185296,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.02547,"rms":0.26,"gap":86,"magType":"ml","type":"earthquake","title":"M 1.3 - 8km S of Brawley, CA"},"geometry":{"type":"Point","coordinates":[-115.5321667,32.91,6.01]},"id":"ci40185296"},
- {"type":"Feature","properties":{"mag":2.06,"place":"6 km ENE of Pāhala, Hawaii","time":1644829076910,"updated":1644829407850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916897","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916897.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"hv","code":"72916897","ids":",hv72916897,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.129999995,"gap":131,"magType":"ml","type":"earthquake","title":"M 2.1 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.42317199707,19.2259998321533,35.0499992370605]},"id":"hv72916897"},
- {"type":"Feature","properties":{"mag":1.1,"place":"28 km SE of Fallon Station, Nevada","time":1644829036554,"updated":1644892677643,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833822","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833822.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833822","ids":",nn00833822,","sources":",nn,","types":",origin,phase-data,","nst":13,"dmin":0.358,"rms":0.1419,"gap":112.13,"magType":"ml","type":"earthquake","title":"M 1.1 - 28 km SE of Fallon Station, Nevada"},"geometry":{"type":"Point","coordinates":[-118.5072,39.2192,10.9]},"id":"nn00833822"},
- {"type":"Feature","properties":{"mag":3.03,"place":"40km ENE of Maneadero, B.C., MX","time":1644828788470,"updated":1644850081570,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185288","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185288.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":141,"net":"ci","code":"40185288","ids":",ci40185288,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.2449,"rms":0.23,"gap":129,"magType":"ml","type":"earthquake","title":"M 3.0 - 40km ENE of Maneadero, B.C., MX"},"geometry":{"type":"Point","coordinates":[-116.1773333,31.8561667,15.3]},"id":"ci40185288"},
- {"type":"Feature","properties":{"mag":2.93,"place":"40km ENE of Maneadero, B.C., MX","time":1644828781010,"updated":1644850356783,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185280","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185280.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":132,"net":"ci","code":"40185280","ids":",ci40185280,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.2468,"rms":0.23,"gap":130,"magType":"ml","type":"earthquake","title":"M 2.9 - 40km ENE of Maneadero, B.C., MX"},"geometry":{"type":"Point","coordinates":[-116.177,31.8526667,16.42]},"id":"ci40185280"},
- {"type":"Feature","properties":{"mag":2.73,"place":"41km ENE of Maneadero, B.C., MX","time":1644828264980,"updated":1644941265596,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185272","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185272.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":115,"net":"ci","code":"40185272","ids":",ci40185272,us7000gkqh,","sources":",ci,us,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.24,"rms":0.25,"gap":128,"magType":"ml","type":"earthquake","title":"M 2.7 - 41km ENE of Maneadero, B.C., MX"},"geometry":{"type":"Point","coordinates":[-116.1685,31.8545,15.46]},"id":"ci40185272"},
- {"type":"Feature","properties":{"mag":1.17,"place":"12km SE of Point Arena, CA","time":1644828067960,"updated":1645020795895,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692611","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692611.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"nc","code":"73692611","ids":",nc73692611,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.05108,"rms":0.07,"gap":240,"magType":"md","type":"earthquake","title":"M 1.2 - 12km SE of Point Arena, CA"},"geometry":{"type":"Point","coordinates":[-123.5961667,38.835,6.8]},"id":"nc73692611"},
- {"type":"Feature","properties":{"mag":-0.38,"place":"9km ENE of Mammoth Lakes, CA","time":1644827878000,"updated":1644856454809,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692606","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692606.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73692606","ids":",nc73692606,","sources":",nc,","types":",nearby-cities,origin,phase-data,","nst":7,"dmin":0.02363,"rms":0.03,"gap":179,"magType":"md","type":"earthquake","title":"M -0.4 - 9km ENE of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.8775,37.6623333,2.99]},"id":"nc73692606"},
- {"type":"Feature","properties":{"mag":1.01,"place":"3km SW of Anderson Springs, CA","time":1644827399670,"updated":1644835331307,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692601","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692601.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":16,"net":"nc","code":"73692601","ids":",nc73692601,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.003708,"rms":0.05,"gap":114,"magType":"md","type":"earthquake","title":"M 1.0 - 3km SW of Anderson Springs, CA"},"geometry":{"type":"Point","coordinates":[-122.7236633,38.7579994,1.59]},"id":"nc73692601"},
- {"type":"Feature","properties":{"mag":1.68,"place":"2 km NNW of Renfrow, Oklahoma","time":1644827390000,"updated":1644845004612,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dday","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dday.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"ok","code":"2022dday","ids":",ok2022dday,","sources":",ok,","types":",origin,phase-data,","nst":80,"dmin":0.1700666271,"rms":0.27,"gap":80,"magType":"ml","type":"earthquake","title":"M 1.7 - 2 km NNW of Renfrow, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.673,36.94716667,6.28]},"id":"ok2022dday"},
- {"type":"Feature","properties":{"mag":2.18,"place":"1 km ESE of Magas Arriba, Puerto Rico","time":1644827313970,"updated":1644837327100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334718","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334718.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":73,"net":"pr","code":"71334718","ids":",pr71334718,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.16,"gap":176,"magType":"md","type":"earthquake","title":"M 2.2 - 1 km ESE of Magas Arriba, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.754,18.012,9.84]},"id":"pr71334718"},
- {"type":"Feature","properties":{"mag":1.4,"place":"137 km SSE of McCarthy, Alaska","time":1644827180530,"updated":1644830941941,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222k3p9h","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222k3p9h.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222k3p9h","ids":",ak02222k3p9h,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 137 km SSE of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-141.8673,60.3105,0]},"id":"ak02222k3p9h"},
- {"type":"Feature","properties":{"mag":1.37,"place":"2 km NW of Renfrow, Oklahoma","time":1644826991400,"updated":1644935950809,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022ddat","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022ddat.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":29,"net":"ok","code":"2022ddat","ids":",ok2022ddat,","sources":",ok,","types":",origin,phase-data,","nst":70,"dmin":0.1727660974,"rms":0.32,"gap":84,"magType":"ml","type":"earthquake","title":"M 1.4 - 2 km NW of Renfrow, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.67583333,36.94466667,5.31]},"id":"ok2022ddat"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km W of Cobb, CA","time":1644826890090,"updated":1644828135525,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692591","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692591.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692591","ids":",nc73692591,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.01142,"rms":0.02,"gap":103,"magType":"md","type":"earthquake","title":"M 0.9 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8051682,38.8341675,1.87]},"id":"nc73692591"},
- {"type":"Feature","properties":{"mag":0.22,"place":"12km SE of Anza, CA","time":1644826646420,"updated":1644847989935,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185264","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185264.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40185264","ids":",ci40185264,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.02776,"rms":0.1,"gap":75,"magType":"ml","type":"earthquake","title":"M 0.2 - 12km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5836667,33.4726667,10.53]},"id":"ci40185264"},
- {"type":"Feature","properties":{"mag":1.12,"place":"2km N of The Geysers, CA","time":1644826360700,"updated":1644833771176,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692586","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692586.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nc","code":"73692586","ids":",nc73692586,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.005537,"rms":0.03,"gap":90,"magType":"md","type":"earthquake","title":"M 1.1 - 2km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7555008,38.7961655,1.78]},"id":"nc73692586"},
- {"type":"Feature","properties":{"mag":3,"place":"116 km E of Chignik, Alaska","time":1644825383195,"updated":1644907551040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkq7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkq7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"7000gkq7","ids":",us7000gkq7,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.058,"rms":0.46,"gap":172,"magType":"ml","type":"earthquake","title":"M 3.0 - 116 km E of Chignik, Alaska"},"geometry":{"type":"Point","coordinates":[-156.5193,56.2523,54.78]},"id":"us7000gkq7"},
- {"type":"Feature","properties":{"mag":1.6,"place":"5 km SSW of Knik, Alaska","time":1644825377259,"updated":1644825872929,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222joovx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222joovx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02222joovx","ids":",ak02222joovx,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.77,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 5 km SSW of Knik, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7816,61.4117,33.1]},"id":"ak02222joovx"},
- {"type":"Feature","properties":{"mag":2.21,"place":"5 km WSW of Liborio Negron Torres, Puerto Rico","time":1644825343790,"updated":1645069032390,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334713","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334713.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":75,"net":"pr","code":"71334713","ids":",pr71334713,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.05,"gap":120,"magType":"md","type":"earthquake","title":"M 2.2 - 5 km WSW of Liborio Negron Torres, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.99,18.0163333333333,14.79]},"id":"pr71334713"},
- {"type":"Feature","properties":{"mag":1.83000004,"place":"4 km SSW of Pāhala, Hawaii","time":1644824384890,"updated":1644824576230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72916832","ids":",hv72916832,","sources":",hv,","types":",origin,phase-data,","nst":40,"dmin":null,"rms":0.129999995,"gap":120,"magType":"md","type":"earthquake","title":"M 1.8 - 4 km SSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.490829467773,19.1595001220703,32.560001373291]},"id":"hv72916832"},
- {"type":"Feature","properties":{"mag":1.5,"place":"42 km NE of Whittier, Alaska","time":1644823479732,"updated":1644823798853,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222jhvpe","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222jhvpe.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222jhvpe","ids":",ak02222jhvpe,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.95,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 42 km NE of Whittier, Alaska"},"geometry":{"type":"Point","coordinates":[-148.049,60.9955,18]},"id":"ak02222jhvpe"},
- {"type":"Feature","properties":{"mag":4.2,"place":"180 km NNE of Opotiki, New Zealand","time":1644823415733,"updated":1644857054040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkq0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkq0.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gkq0","ids":",us7000gkq0,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.999,"rms":0.74,"gap":168,"magType":"mb","type":"earthquake","title":"M 4.2 - 180 km NNE of Opotiki, New Zealand"},"geometry":{"type":"Point","coordinates":[178.2285,-36.5631,131.73]},"id":"us7000gkq0"},
- {"type":"Feature","properties":{"mag":1.92,"place":"10km WSW of Toms Place, CA","time":1644822984840,"updated":1644862331002,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692571","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692571.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":57,"net":"nc","code":"73692571","ids":",nc73692571,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.05619,"rms":0.03,"gap":111,"magType":"md","type":"earthquake","title":"M 1.9 - 10km WSW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.7745,37.516,5.83]},"id":"nc73692571"},
- {"type":"Feature","properties":{"mag":0.9,"place":"22 km SE of Chickaloon, Alaska","time":1644822668623,"updated":1644823177336,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222jf0z5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222jf0z5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"ak","code":"02222jf0z5","ids":",ak02222jf0z5,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.9 - 22 km SE of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.1373,61.6664,19.4]},"id":"ak02222jf0z5"},
- {"type":"Feature","properties":{"mag":0.84,"place":"4 km ESE of Toston, Montana","time":1644822645100,"updated":1644877697380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538424","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538424.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"mb","code":"80538424","ids":",mb80538424,","sources":",mb,","types":",origin,phase-data,","nst":6,"dmin":0.128,"rms":0.06,"gap":197,"magType":"ml","type":"earthquake","title":"M 0.8 - 4 km ESE of Toston, Montana"},"geometry":{"type":"Point","coordinates":[-111.3935,46.1535,5.97]},"id":"mb80538424"},
- {"type":"Feature","properties":{"mag":1.58,"place":"9km E of Ridgecrest, CA","time":1644822211340,"updated":1644854931155,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185248","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185248.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"ci","code":"40185248","ids":",ci40185248,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.101,"rms":0.13,"gap":114,"magType":"ml","type":"earthquake","title":"M 1.6 - 9km E of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5756667,35.6271667,7.06]},"id":"ci40185248"},
- {"type":"Feature","properties":{"mag":3.3,"place":"9 km SSW of Soldotna, Alaska","time":1644821363294,"updated":1644870478703,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222j1rpt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222j1rpt.geojson","felt":8,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"ak","code":"02222j1rpt","ids":",ak02222j1rpt,us7000gkpt,","sources":",ak,us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.3 - 9 km SSW of Soldotna, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0939,60.4017,50.8]},"id":"ak02222j1rpt"},
- {"type":"Feature","properties":{"mag":3.6,"place":"201 km SE of Perryville, Alaska","time":1644821316268,"updated":1644880763185,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222j1lpj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222j1lpj.geojson","felt":null,"cdi":null,"mmi":1,"alert":null,"status":"reviewed","tsunami":0,"sig":199,"net":"ak","code":"02222j1lpj","ids":",ak02222j1lpj,","sources":",ak,","types":",origin,phase-data,shakemap,","nst":null,"dmin":null,"rms":1.23,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.6 - 201 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.7996,54.69,27.1]},"id":"ak02222j1lpj"},
- {"type":"Feature","properties":{"mag":0.37,"place":"10km NW of The Geysers, CA","time":1644820966340,"updated":1644829090631,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692556","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692556.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692556","ids":",nc73692556,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.001976,"rms":0.03,"gap":114,"magType":"md","type":"earthquake","title":"M 0.4 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.836998,38.8370018,0.85]},"id":"nc73692556"},
- {"type":"Feature","properties":{"mag":3.4,"place":"220 km SE of Perryville, Alaska","time":1644820882271,"updated":1644852682040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkpq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkpq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"7000gkpq","ids":",us7000gkpq,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.684,"rms":0.43,"gap":228,"magType":"ml","type":"earthquake","title":"M 3.4 - 220 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.7547,54.4787,10]},"id":"us7000gkpq"},
- {"type":"Feature","properties":{"mag":0.78,"place":"13km WNW of Anza, CA","time":1644820754930,"updated":1644848089350,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185240","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185240.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40185240","ids":",ci40185240,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.03707,"rms":0.14,"gap":40,"magType":"ml","type":"earthquake","title":"M 0.8 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8085,33.5928333,4.07]},"id":"ci40185240"},
- {"type":"Feature","properties":{"mag":1.4,"place":"33 km ESE of Cordova, Alaska","time":1644820692318,"updated":1644820972602,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ize0g","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ize0g.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222ize0g","ids":",ak02222ize0g,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.31,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 33 km ESE of Cordova, Alaska"},"geometry":{"type":"Point","coordinates":[-145.2182,60.4112,24.9]},"id":"ak02222ize0g"},
- {"type":"Feature","properties":{"mag":1.08,"place":"10km NW of The Geysers, CA","time":1644820618730,"updated":1644827470459,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692551","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692551.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":18,"net":"nc","code":"73692551","ids":",nc73692551,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.001157,"rms":0.02,"gap":71,"magType":"md","type":"earthquake","title":"M 1.1 - 10km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8359985,38.8375015,1.39]},"id":"nc73692551"},
- {"type":"Feature","properties":{"mag":3.2,"place":"200 km SE of Perryville, Alaska","time":1644820391397,"updated":1644825075040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkpp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkpp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"7000gkpp","ids":",us7000gkpp,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.625,"rms":0.66,"gap":229,"magType":"ml","type":"earthquake","title":"M 3.2 - 200 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.793,54.7031,10]},"id":"us7000gkpp"},
- {"type":"Feature","properties":{"mag":1.9,"place":"38 km SE of Mina, Nevada","time":1644820161062,"updated":1644892675336,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833816","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833816.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"nn","code":"00833816","ids":",nn00833816,","sources":",nn,","types":",origin,phase-data,","nst":20,"dmin":0.105,"rms":0.1445,"gap":118.14,"magType":"ml","type":"earthquake","title":"M 1.9 - 38 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7728,38.1683,4]},"id":"nn00833816"},
- {"type":"Feature","properties":{"mag":0.48,"place":"89 km W of Adak, Alaska","time":1644819914760,"updated":1644881905400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91490056","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91490056.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"av","code":"91490056","ids":",av91490056,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.06,"gap":168,"magType":"ml","type":"earthquake","title":"M 0.5 - 89 km W of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-177.929,51.8631666666667,7.53]},"id":"av91490056"},
- {"type":"Feature","properties":{"mag":1.86,"place":"4 km WSW of Fuig, Puerto Rico","time":1644819005170,"updated":1644820006940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334688","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334688.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"pr","code":"71334688","ids":",pr71334688,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.06,"gap":180,"magType":"md","type":"earthquake","title":"M 1.9 - 4 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9525,17.9721666666667,3.82]},"id":"pr71334688"},
- {"type":"Feature","properties":{"mag":1.89,"place":"6 km ENE of Pāhala, Hawaii","time":1644818301740,"updated":1644818631940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916782","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916782.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":55,"net":"hv","code":"72916782","ids":",hv72916782,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.140000001,"gap":126,"magType":"ml","type":"earthquake","title":"M 1.9 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.427825927734,19.2303333282471,32.7000007629395]},"id":"hv72916782"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644818127040,"updated":1644820814748,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692546","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692546.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692546","ids":",nc73692546,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01791,"rms":0.01,"gap":98,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8141632,38.8320007,1.78]},"id":"nc73692546"},
- {"type":"Feature","properties":{"mag":1.05,"place":"2km NNW of The Geysers, CA","time":1644817772940,"updated":1644825911292,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692536","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692536.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":17,"net":"nc","code":"73692536","ids":",nc73692536,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.008854,"rms":0.02,"gap":108,"magType":"md","type":"earthquake","title":"M 1.1 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7611694,38.791832,1.38]},"id":"nc73692536"},
- {"type":"Feature","properties":{"mag":0.19,"place":"37 km NNE of Amboy, Washington","time":1644817549200,"updated":1644819536230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816656","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816656.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61816656","ids":",uw61816656,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.001047,"rms":0.1,"gap":94,"magType":"ml","type":"earthquake","title":"M 0.2 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1915,46.19883333333333,5.56]},"id":"uw61816656"},
- {"type":"Feature","properties":{"mag":1,"place":"18 km ENE of Swall Meadows, California","time":1644816793002,"updated":1644892664527,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833815","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833815.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833815","ids":",nn00833815,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.299,"rms":0.1991,"gap":155.85,"magType":"ml","type":"earthquake","title":"M 1.0 - 18 km ENE of Swall Meadows, California"},"geometry":{"type":"Point","coordinates":[-118.4615,37.5936,8.3]},"id":"nn00833815"},
- {"type":"Feature","properties":{"mag":1.4,"place":"20 km N of Chickaloon, Alaska","time":1644816757986,"updated":1644816955375,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222icq3a","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222icq3a.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222icq3a","ids":",ak02222icq3a,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.24,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 20 km N of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.4536,61.9797,32.5]},"id":"ak02222icq3a"},
- {"type":"Feature","properties":{"mag":1.93,"place":"20 km ESE of Pāhala, Hawaii","time":1644816519940,"updated":1644816850830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916767","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916767.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":57,"net":"hv","code":"72916767","ids":",hv72916767,","sources":",hv,","types":",origin,phase-data,","nst":29,"dmin":null,"rms":0.379999995,"gap":207,"magType":"ml","type":"earthquake","title":"M 1.9 - 20 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.309494018555,19.1061668395996,-0.689999997615814]},"id":"hv72916767"},
- {"type":"Feature","properties":{"mag":0.86,"place":"18km ESE of Little Lake, CA","time":1644816488400,"updated":1644848059793,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185216","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185216.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40185216","ids":",ci40185216,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.07532,"rms":0.04,"gap":98,"magType":"ml","type":"earthquake","title":"M 0.9 - 18km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7145,35.8933333,10.38]},"id":"ci40185216"},
- {"type":"Feature","properties":{"mag":4.9,"place":"10 km SSW of Fort Portal, Uganda","time":1644816480388,"updated":1644933989426,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkpj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkpj.geojson","felt":11,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":374,"net":"us","code":"7000gkpj","ids":",us7000gkpj,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.268,"rms":0.62,"gap":68,"magType":"mb","type":"earthquake","title":"M 4.9 - 10 km SSW of Fort Portal, Uganda"},"geometry":{"type":"Point","coordinates":[30.2373,0.5716,10]},"id":"us7000gkpj"},
- {"type":"Feature","properties":{"mag":1.5,"place":"4 km SSW of Big Lake, Alaska","time":1644816394697,"updated":1644816955225,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ibfjh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ibfjh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222ibfjh","ids":",ak02222ibfjh,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.39,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 4 km SSW of Big Lake, Alaska"},"geometry":{"type":"Point","coordinates":[-149.9857,61.4851,48.8]},"id":"ak02222ibfjh"},
- {"type":"Feature","properties":{"mag":0.26,"place":"Mount St. Helens area, Washington","time":1644815725370,"updated":1644819311180,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816651","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816651.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61816651","ids":",uw61816651,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.002017,"rms":0.13,"gap":76,"magType":"ml","type":"earthquake","title":"M 0.3 - Mount St. Helens area, Washington"},"geometry":{"type":"Point","coordinates":[-122.18983333333334,46.20166666666667,5.42]},"id":"uw61816651"},
- {"type":"Feature","properties":{"mag":0.58,"place":"37 km NE of Amboy, Washington","time":1644815500630,"updated":1644818877450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816646","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816646.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"uw","code":"61816646","ids":",uw61816646,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.01146,"rms":0.11,"gap":148,"magType":"ml","type":"earthquake","title":"M 0.6 - 37 km NE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.17733333333334,46.1855,4.94]},"id":"uw61816646"},
- {"type":"Feature","properties":{"mag":0.52,"place":"37 km NNE of Amboy, Washington","time":1644815322190,"updated":1644818291170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816641","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816641.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uw","code":"61816641","ids":",uw61816641,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.003847,"rms":0.09,"gap":89,"magType":"ml","type":"earthquake","title":"M 0.5 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18983333333334,46.196,2.96]},"id":"uw61816641"},
- {"type":"Feature","properties":{"mag":1.1,"place":"10km WNW of The Geysers, CA","time":1644814986860,"updated":1644822610940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692521","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692521.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nc","code":"73692521","ids":",nc73692521,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.003271,"rms":0.02,"gap":65,"magType":"md","type":"earthquake","title":"M 1.1 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8539963,38.8251648,2.6]},"id":"nc73692521"},
- {"type":"Feature","properties":{"mag":1.77,"place":"16 km SSE of Sunnyside, Utah","time":1644814515170,"updated":1644875059050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481942","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481942.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"uu","code":"60481942","ids":",uu60481942,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.01913,"rms":0.14,"gap":199,"magType":"md","type":"earthquake","title":"M 1.8 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3006667,39.4213333,-3.11]},"id":"uu60481942"},
- {"type":"Feature","properties":{"mag":-0.03,"place":"37 km NNE of Amboy, Washington","time":1644814417530,"updated":1644863635500,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816636","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816636.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816636","ids":",uw61816636,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.008547,"rms":0.19,"gap":139,"magType":"ml","type":"earthquake","title":"M -0.0 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.183,46.191833333333335,5.51]},"id":"uw61816636"},
- {"type":"Feature","properties":{"mag":0.38,"place":"7km SSE of Idyllwild, CA","time":1644814245950,"updated":1644940650528,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37392140","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37392140.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"37392140","ids":",ci37392140,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02073,"rms":0.11,"gap":126,"magType":"ml","type":"earthquake","title":"M 0.4 - 7km SSE of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.6873333,33.6863333,17.21]},"id":"ci37392140"},
- {"type":"Feature","properties":{"mag":0.56,"place":"7km SSE of Idyllwild, CA","time":1644814243030,"updated":1644884434756,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37392132","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37392132.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"37392132","ids":",ci37392132,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01922,"rms":0.12,"gap":122,"magType":"ml","type":"earthquake","title":"M 0.6 - 7km SSE of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.694,33.6781667,14.46]},"id":"ci37392132"},
- {"type":"Feature","properties":{"mag":0.45,"place":"1km SSW of Valle Vista, CA","time":1644814233970,"updated":1644883813690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185208","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185208.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40185208","ids":",ci40185208,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.05892,"rms":0.13,"gap":84,"magType":"ml","type":"earthquake","title":"M 0.5 - 1km SSW of Valle Vista, CA"},"geometry":{"type":"Point","coordinates":[-116.8963333,33.7415,4]},"id":"ci40185208"},
- {"type":"Feature","properties":{"mag":1.6,"place":"19 km WNW of Central, Alaska","time":1644814002726,"updated":1644816423986,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222huax7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222huax7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02222huax7","ids":",ak02222huax7,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.42,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 19 km WNW of Central, Alaska"},"geometry":{"type":"Point","coordinates":[-145.1587,65.6604,0]},"id":"ak02222huax7"},
- {"type":"Feature","properties":{"mag":1.15,"place":"3km ENE of The Geysers, CA","time":1644813415180,"updated":1644821170786,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692516","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692516.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73692516","ids":",nc73692516,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01325,"rms":0.03,"gap":93,"magType":"md","type":"earthquake","title":"M 1.2 - 3km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.723999,38.7919998,1.83]},"id":"nc73692516"},
- {"type":"Feature","properties":{"mag":2.25,"place":"1 km ESE of Pāhala, Hawaii","time":1644813160990,"updated":1644813347040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916702","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916702.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":78,"net":"hv","code":"72916702","ids":",hv72916702,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.109999999,"gap":143,"magType":"md","type":"earthquake","title":"M 2.3 - 1 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.462005615234,19.1981658935547,36.4300003051758]},"id":"hv72916702"},
- {"type":"Feature","properties":{"mag":1.2,"place":"31 km E of Chase, Alaska","time":1644813137243,"updated":1644813358356,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222hr8va","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222hr8va.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02222hr8va","ids":",ak02222hr8va,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.26,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 31 km E of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.4983,62.4439,57.9]},"id":"ak02222hr8va"},
- {"type":"Feature","properties":{"mag":1.39,"place":"27 km ENE of Torrey, Utah","time":1644813052740,"updated":1644874656370,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481937","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481937.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"uu","code":"60481937","ids":",uu60481937,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.474,"rms":0.1,"gap":114,"magType":"md","type":"earthquake","title":"M 1.4 - 27 km ENE of Torrey, Utah"},"geometry":{"type":"Point","coordinates":[-111.116,38.3713333,5.98]},"id":"uu60481937"},
- {"type":"Feature","properties":{"mag":0.63,"place":"15km NE of Ridgecrest, CA","time":1644812863910,"updated":1644883253854,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185200","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185200.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40185200","ids":",ci40185200,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.1002,"rms":0.16,"gap":92,"magType":"ml","type":"earthquake","title":"M 0.6 - 15km NE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5643333,35.719,7.04]},"id":"ci40185200"},
- {"type":"Feature","properties":{"mag":0.05,"place":"33km NNW of Searles Valley, CA","time":1644812837160,"updated":1644883285649,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37392124","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37392124.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"37392124","ids":",ci37392124,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.139,"rms":0.11,"gap":148,"magType":"ml","type":"earthquake","title":"M 0.1 - 33km NNW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5061667,36.0513333,-1.3]},"id":"ci37392124"},
- {"type":"Feature","properties":{"mag":0.93,"place":"20km E of Little Lake, CA","time":1644811596700,"updated":1644882684127,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185192","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185192.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"40185192","ids":",ci40185192,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.03999,"rms":0.12,"gap":51,"magType":"ml","type":"earthquake","title":"M 0.9 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6815,35.9168333,3.46]},"id":"ci40185192"},
- {"type":"Feature","properties":{"mag":4.7,"place":"30 km SSW of Rumonge, Burundi","time":1644811491218,"updated":1644834499814,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkp1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkp1.geojson","felt":3,"cdi":4.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":341,"net":"us","code":"7000gkp1","ids":",us7000gkp1,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":3.865,"rms":0.94,"gap":57,"magType":"mb","type":"earthquake","title":"M 4.7 - 30 km SSW of Rumonge, Burundi"},"geometry":{"type":"Point","coordinates":[29.328,-4.2262,10]},"id":"us7000gkp1"},
- {"type":"Feature","properties":{"mag":2.14,"place":"5 km NE of Pāhala, Hawaii","time":1644811392670,"updated":1644811722690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916687","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916687.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72916687","ids":",hv72916687,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.119999997,"gap":116,"magType":"ml","type":"earthquake","title":"M 2.1 - 5 km NE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.4375,19.2393341064453,33.4199981689453]},"id":"hv72916687"},
- {"type":"Feature","properties":{"mag":0.69,"place":"10km WNW of The Geysers, CA","time":1644810998040,"updated":1644814096012,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692506","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692506.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":7,"net":"nc","code":"73692506","ids":",nc73692506,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.004293,"rms":0.02,"gap":66,"magType":"md","type":"earthquake","title":"M 0.7 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8550034,38.8235016,2.69]},"id":"nc73692506"},
- {"type":"Feature","properties":{"mag":1,"place":"12km WNW of The Geysers, CA","time":1644810506060,"updated":1644812774876,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692496","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692496.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73692496","ids":",nc73692496,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.006183,"rms":0.04,"gap":98,"magType":"md","type":"earthquake","title":"M 1.0 - 12km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.878334,38.8334999,2.25]},"id":"nc73692496"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"9 km ENE of Pāhala, Hawaii","time":1644810404130,"updated":1644810592750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916667","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916667.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72916667","ids":",hv72916667,","sources":",hv,","types":",origin,phase-data,","nst":40,"dmin":null,"rms":0.119999997,"gap":163,"magType":"md","type":"earthquake","title":"M 1.8 - 9 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.394836425781,19.2245006561279,32.1100006103516]},"id":"hv72916667"},
- {"type":"Feature","properties":{"mag":0,"place":"69 km S of Cantwell, Alaska","time":1644810074625,"updated":1644880238887,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222h7m63","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222h7m63.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ak","code":"02222h7m63","ids":",ak02222h7m63,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.09,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.0 - 69 km S of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-148.9065,62.7693,10.3]},"id":"ak02222h7m63"},
- {"type":"Feature","properties":{"mag":0.87,"place":"7km WNW of The Geysers, CA","time":1644810050350,"updated":1644818051444,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692486","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692486.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73692486","ids":",nc73692486,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.00771,"rms":0.03,"gap":61,"magType":"md","type":"earthquake","title":"M 0.9 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8273315,38.7981682,1.67]},"id":"nc73692486"},
- {"type":"Feature","properties":{"mag":1.22,"place":"34km E of Coso Junction, CA","time":1644810038040,"updated":1644848225711,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185184","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185184.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40185184","ids":",ci40185184,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.1168,"rms":0.16,"gap":172,"magType":"ml","type":"earthquake","title":"M 1.2 - 34km E of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.58,36.1,1.33]},"id":"ci40185184"},
- {"type":"Feature","properties":{"mag":2.47,"place":"2 km SSE of Yauco, Puerto Rico","time":1644809757280,"updated":1644815587610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334683","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334683.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":94,"net":"pr","code":"71334683","ids":",pr71334683,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.13,"gap":138,"magType":"md","type":"earthquake","title":"M 2.5 - 2 km SSE of Yauco, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8433333333333,18.0151666666667,12.62]},"id":"pr71334683"},
- {"type":"Feature","properties":{"mag":1.88,"place":"1 km ENE of Pāhala, Hawaii","time":1644809752800,"updated":1644810083700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916642","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916642.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":54,"net":"hv","code":"72916642","ids":",hv72916642,","sources":",hv,","types":",origin,phase-data,","nst":45,"dmin":null,"rms":0.170000002,"gap":100,"magType":"md","type":"earthquake","title":"M 1.9 - 1 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.46533203125,19.2081661224365,35.7599983215332]},"id":"hv72916642"},
- {"type":"Feature","properties":{"mag":2.19000006,"place":"0 km WSW of Pāhala, Hawaii","time":1644809701520,"updated":1644809926670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916637","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916637.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72916637","ids":",hv72916637,","sources":",hv,","types":",origin,phase-data,","nst":41,"dmin":null,"rms":0.159999996,"gap":85,"magType":"md","type":"earthquake","title":"M 2.2 - 0 km WSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.47966003418,19.2024993896484,35.9500007629395]},"id":"hv72916637"},
- {"type":"Feature","properties":{"mag":1.97,"place":"9 km SSE of Guánica, Puerto Rico","time":1644809091500,"updated":1644813596310,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334673","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334673.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":60,"net":"pr","code":"71334673","ids":",pr71334673,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.11,"gap":242,"magType":"md","type":"earthquake","title":"M 2.0 - 9 km SSE of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8775,17.8881666666667,12.85]},"id":"pr71334673"},
- {"type":"Feature","properties":{"mag":1.05,"place":"6km NW of The Geysers, CA","time":1644808850080,"updated":1644816430272,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692476","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692476.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":17,"net":"nc","code":"73692476","ids":",nc73692476,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.01002,"rms":0.05,"gap":33,"magType":"md","type":"earthquake","title":"M 1.1 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7976685,38.8178329,2.22]},"id":"nc73692476"},
- {"type":"Feature","properties":{"mag":1.1,"place":"27 km E of Tatitlek, Alaska","time":1644808694921,"updated":1644809591672,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222h2t2s","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222h2t2s.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"02222h2t2s","ids":",ak02222h2t2s,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.4,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 27 km E of Tatitlek, Alaska"},"geometry":{"type":"Point","coordinates":[-146.1769,60.8208,19]},"id":"ak02222h2t2s"},
- {"type":"Feature","properties":{"mag":0.81,"place":"11 km SSE of Lacomb, Oregon","time":1644808614140,"updated":1644863083330,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816606","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816606.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"uw","code":"61816606","ids":",uw61816606,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.05129,"rms":0.15,"gap":86,"magType":"ml","type":"earthquake","title":"M 0.8 - 11 km SSE of Lacomb, Oregon"},"geometry":{"type":"Point","coordinates":[-122.67516666666667,44.498333333333335,14.42]},"id":"uw61816606"},
- {"type":"Feature","properties":{"mag":1.44,"place":"7km WNW of Cobb, CA","time":1644808202350,"updated":1645092853160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692471","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692471.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"nc","code":"73692471","ids":",nc73692471,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":47,"dmin":0.006572,"rms":0.04,"gap":42,"magType":"md","type":"earthquake","title":"M 1.4 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7976667,38.8351667,2.46]},"id":"nc73692471"},
- {"type":"Feature","properties":{"mag":-0.14,"place":"37 km NNE of Amboy, Washington","time":1644808140440,"updated":1644862736940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816591","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816591.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816591","ids":",uw61816591,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.01002,"rms":0.06,"gap":107,"magType":"ml","type":"earthquake","title":"M -0.1 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19783333333334,46.195,2.75]},"id":"uw61816591"},
- {"type":"Feature","properties":{"mag":2.7,"place":"53 km E of Pedro Bay, Alaska","time":1644807854182,"updated":1644808754040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222gzsxg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222gzsxg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":112,"net":"ak","code":"02222gzsxg","ids":",us7000gknu,ak02222gzsxg,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.7,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 53 km E of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.1472,59.7674,101.3]},"id":"ak02222gzsxg"},
- {"type":"Feature","properties":{"mag":2.27,"place":"8 km E of Pāhala, Hawaii","time":1644807763380,"updated":1644808234040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916592","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916592.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":79,"net":"hv","code":"72916592","ids":",us7000gknt,hv72916592,","sources":",us,hv,","types":",origin,phase-data,","nst":50,"dmin":null,"rms":0.119999997,"gap":162,"magType":"ml","type":"earthquake","title":"M 2.3 - 8 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.394332885742,19.1940002441406,32.8600006103516]},"id":"hv72916592"},
- {"type":"Feature","properties":{"mag":2.3,"place":"34 km ESE of Pedro Bay, Alaska","time":1644807229256,"updated":1644808017695,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222goy4k","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222goy4k.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"02222goy4k","ids":",ak02222goy4k,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 34 km ESE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.5377,59.6767,120.8]},"id":"ak02222goy4k"},
- {"type":"Feature","properties":{"mag":1.06,"place":"16km W of Searles Valley, CA","time":1644807028240,"updated":1644882407710,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185176","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185176.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40185176","ids":",ci40185176,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.07028,"rms":0.14,"gap":71,"magType":"ml","type":"earthquake","title":"M 1.1 - 16km W of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5786667,35.747,6.72]},"id":"ci40185176"},
- {"type":"Feature","properties":{"mag":2.01,"place":"17km NW of Parkfield, CA","time":1644806969620,"updated":1645060095860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692466","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692466.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"nc","code":"73692466","ids":",nc73692466,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":51,"dmin":0.0236,"rms":0.1,"gap":80,"magType":"md","type":"earthquake","title":"M 2.0 - 17km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.5645,36.0026667,4.15]},"id":"nc73692466"},
- {"type":"Feature","properties":{"mag":4.5,"place":"86 km S of Hirara, Japan","time":1644806895486,"updated":1644809279040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gknm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gknm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gknm","ids":",us7000gknm,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.239,"rms":0.73,"gap":212,"magType":"mb","type":"earthquake","title":"M 4.5 - 86 km S of Hirara, Japan"},"geometry":{"type":"Point","coordinates":[125.417,24.0275,10]},"id":"us7000gknm"},
- {"type":"Feature","properties":{"mag":0.65,"place":"16km SSW of Searles Valley, CA","time":1644805833510,"updated":1644882007505,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185160","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185160.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40185160","ids":",ci40185160,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.04295,"rms":0.14,"gap":116,"magType":"ml","type":"earthquake","title":"M 0.7 - 16km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.457,35.6293333,6.94]},"id":"ci40185160"},
- {"type":"Feature","properties":{"mag":0.58,"place":"2 km S of Government Camp, Oregon","time":1644805777480,"updated":1644866433630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816581","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816581.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"uw","code":"61816581","ids":",uw61816581,","sources":",uw,","types":",origin,phase-data,","nst":7,"dmin":0.032,"rms":0.07,"gap":236,"magType":"ml","type":"earthquake","title":"M 0.6 - 2 km S of Government Camp, Oregon"},"geometry":{"type":"Point","coordinates":[-121.7495,45.27766666666667,5.75]},"id":"uw61816581"},
- {"type":"Feature","properties":{"mag":0.4,"place":"20km E of Little Lake, CA","time":1644805471270,"updated":1644881809246,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185152","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185152.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40185152","ids":",ci40185152,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.04028,"rms":0.15,"gap":60,"magType":"ml","type":"earthquake","title":"M 0.4 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6841667,35.9183333,4.16]},"id":"ci40185152"},
- {"type":"Feature","properties":{"mag":1.29,"place":"12km WSW of Salton City, CA","time":1644805354110,"updated":1644881560066,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185144","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185144.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40185144","ids":",ci40185144,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":69,"dmin":0.07601,"rms":0.22,"gap":55,"magType":"ml","type":"earthquake","title":"M 1.3 - 12km WSW of Salton City, CA"},"geometry":{"type":"Point","coordinates":[-116.0685,33.2486667,9.09]},"id":"ci40185144"},
- {"type":"Feature","properties":{"mag":1.33,"place":"20km E of Little Lake, CA","time":1644805300380,"updated":1644880229727,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"ci","code":"40185136","ids":",ci40185136,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.03884,"rms":0.12,"gap":50,"magType":"ml","type":"earthquake","title":"M 1.3 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6873333,35.9231667,3.65]},"id":"ci40185136"},
- {"type":"Feature","properties":{"mag":0.93,"place":"20km E of Little Lake, CA","time":1644805299880,"updated":1644879977066,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391996","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391996.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"37391996","ids":",ci37391996,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.03924,"rms":0.12,"gap":51,"magType":"ml","type":"earthquake","title":"M 0.9 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6846667,35.9201667,4.07]},"id":"ci37391996"},
- {"type":"Feature","properties":{"mag":2.17,"place":"4 km SW of Indios, Puerto Rico","time":1644804973950,"updated":1644807626550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334668","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334668.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"pr","code":"71334668","ids":",pr71334668,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.12,"gap":200,"magType":"md","type":"earthquake","title":"M 2.2 - 4 km SW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8451666666667,17.9663333333333,15.72]},"id":"pr71334668"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644804916690,"updated":1644811750774,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692461","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692461.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692461","ids":",nc73692461,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01073,"rms":0.01,"gap":100,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8078308,38.8339996,2.57]},"id":"nc73692461"},
- {"type":"Feature","properties":{"mag":4.6,"place":"157 km SSW of Merizo Village, Guam","time":1644804353993,"updated":1644805418040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkni","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkni.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gkni","ids":",us7000gkni,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.782,"rms":0.64,"gap":233,"magType":"mb","type":"earthquake","title":"M 4.6 - 157 km SSW of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.296,11.8863,10]},"id":"us7000gkni"},
- {"type":"Feature","properties":{"mag":2.1,"place":"35 km E of Pedro Bay, Alaska","time":1644804180973,"updated":1644804891264,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222ge4pk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222ge4pk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"02222ge4pk","ids":",ak02222ge4pk,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 35 km E of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.4739,59.8383,135.6]},"id":"ak02222ge4pk"},
- {"type":"Feature","properties":{"mag":1.4,"place":"36 km NNW of Valdez, Alaska","time":1644804007210,"updated":1644804279484,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222gdhze","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222gdhze.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222gdhze","ids":",ak02222gdhze,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.29,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 36 km NNW of Valdez, Alaska"},"geometry":{"type":"Point","coordinates":[-146.4844,61.4551,27.6]},"id":"ak02222gdhze"},
- {"type":"Feature","properties":{"mag":1.19,"place":"0 km W of Loyal, Oklahoma","time":1644803974210,"updated":1644935229421,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dcoc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dcoc.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ok","code":"2022dcoc","ids":",ok2022dcoc,","sources":",ok,","types":",origin,phase-data,","nst":61,"dmin":0.1178768685,"rms":0.44,"gap":57,"magType":"ml","type":"earthquake","title":"M 1.2 - 0 km W of Loyal, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.13133333,35.972,4.99]},"id":"ok2022dcoc"},
- {"type":"Feature","properties":{"mag":0.54,"place":"19km N of Borrego Springs, CA","time":1644803859100,"updated":1644868314044,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185128","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185128.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40185128","ids":",ci40185128,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.08548,"rms":0.17,"gap":100,"magType":"ml","type":"earthquake","title":"M 0.5 - 19km N of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.3748333,33.4283333,11.48]},"id":"ci40185128"},
- {"type":"Feature","properties":{"mag":0.5,"place":"7km W of Cobb, CA","time":1644803437930,"updated":1644810190615,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692456","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692456.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":4,"net":"nc","code":"73692456","ids":",nc73692456,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.007598,"rms":0.03,"gap":46,"magType":"md","type":"earthquake","title":"M 0.5 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8024979,38.828167,1.92]},"id":"nc73692456"},
- {"type":"Feature","properties":{"mag":1,"place":"24 km SSE of Glacier View, Alaska","time":1644803265534,"updated":1644803507831,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222g27zk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222g27zk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"ak","code":"02222g27zk","ids":",ak02222g27zk,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 24 km SSE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.4761,61.6009,30.9]},"id":"ak02222g27zk"},
- {"type":"Feature","properties":{"mag":1.17,"place":"7km NW of The Geysers, CA","time":1644803090220,"updated":1644808631635,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692451","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692451.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73692451","ids":",nc73692451,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.004652,"rms":0.02,"gap":40,"magType":"md","type":"earthquake","title":"M 1.2 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.809166,38.8279991,1.61]},"id":"nc73692451"},
- {"type":"Feature","properties":{"mag":1.2,"place":"25 km WSW of Denali Park, Alaska","time":1644802988312,"updated":1644803257218,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222g1a7r","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222g1a7r.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02222g1a7r","ids":",ak02222g1a7r,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 25 km WSW of Denali Park, Alaska"},"geometry":{"type":"Point","coordinates":[-149.3741,63.6374,87]},"id":"ak02222g1a7r"},
- {"type":"Feature","properties":{"mag":0.5,"place":"8km NW of The Geysers, CA","time":1644802837430,"updated":1644807011334,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692446","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692446.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":4,"net":"nc","code":"73692446","ids":",nc73692446,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.006798,"rms":0.02,"gap":53,"magType":"md","type":"earthquake","title":"M 0.5 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.815834,38.8284988,2.21]},"id":"nc73692446"},
- {"type":"Feature","properties":{"mag":1.4,"place":"18 km S of Susitna North, Alaska","time":1644802677612,"updated":1644802966366,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222g03rq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222g03rq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222g03rq","ids":",ak02222g03rq,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 18 km S of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8358,61.9967,43.6]},"id":"ak02222g03rq"},
- {"type":"Feature","properties":{"mag":1.25,"place":"9km NNE of Santa Paula, CA","time":1644801709950,"updated":1644868010017,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185112","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185112.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40185112","ids":",ci40185112,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.08694,"rms":0.3,"gap":55,"magType":"ml","type":"earthquake","title":"M 1.3 - 9km NNE of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.0326667,34.4298333,2.51]},"id":"ci40185112"},
- {"type":"Feature","properties":{"mag":1.17,"place":"24km NE of Hollister, CA","time":1644800150210,"updated":1645018274633,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692436","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692436.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"nc","code":"73692436","ids":",nc73692436,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.04657,"rms":0.09,"gap":76,"magType":"md","type":"earthquake","title":"M 1.2 - 24km NE of Hollister, CA"},"geometry":{"type":"Point","coordinates":[-121.2288333,37.009,4.52]},"id":"nc73692436"},
- {"type":"Feature","properties":{"mag":1.5,"place":"10 km ENE of Fox, Alaska","time":1644799984076,"updated":1644800511867,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222fhzh7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222fhzh7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02222fhzh7","ids":",ak02222fhzh7,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 10 km ENE of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.3971,64.9863,1.6]},"id":"ak02222fhzh7"},
- {"type":"Feature","properties":{"mag":0.67,"place":"11km ENE of Morgan Hill, CA","time":1644799974270,"updated":1644886931643,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692431","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692431.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"nc","code":"73692431","ids":",nc73692431,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04938,"rms":0.05,"gap":71,"magType":"md","type":"earthquake","title":"M 0.7 - 11km ENE of Morgan Hill, CA"},"geometry":{"type":"Point","coordinates":[-121.5356667,37.1673333,9.33]},"id":"nc73692431"},
- {"type":"Feature","properties":{"mag":1.4,"place":"18 km WNW of Cooper Landing, Alaska","time":1644799701999,"updated":1644800250923,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222fgyai","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222fgyai.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02222fgyai","ids":",ak02222fgyai,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 18 km WNW of Cooper Landing, Alaska"},"geometry":{"type":"Point","coordinates":[-150.1194,60.5719,39.6]},"id":"ak02222fgyai"},
- {"type":"Feature","properties":{"mag":1.58,"place":"4km NNW of Boron, CA","time":1644799696800,"updated":1644878318137,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185088","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185088.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"ci","code":"40185088","ids":",ci40185088,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.09585,"rms":0.21,"gap":66,"magType":"ml","type":"quarry blast","title":"M 1.6 Quarry Blast - 4km NNW of Boron, CA"},"geometry":{"type":"Point","coordinates":[-117.6728333,35.0285,0.33]},"id":"ci40185088"},
- {"type":"Feature","properties":{"mag":1.33,"place":"9km ENE of Borrego Springs, CA","time":1644799475720,"updated":1644878039460,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185080","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185080.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"ci","code":"40185080","ids":",ci40185080,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":73,"dmin":0.07282,"rms":0.21,"gap":22,"magType":"ml","type":"earthquake","title":"M 1.3 - 9km ENE of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.2843333,33.2925,6.51]},"id":"ci40185080"},
- {"type":"Feature","properties":{"mag":2,"place":"9 km E of Pāhala, Hawaii","time":1644799308940,"updated":1644799502760,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916467","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916467.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"hv","code":"72916467","ids":",hv72916467,","sources":",hv,","types":",origin,phase-data,","nst":38,"dmin":null,"rms":0.129999995,"gap":169,"magType":"md","type":"earthquake","title":"M 2.0 - 9 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.383834838867,19.203332901001,32.4099998474121]},"id":"hv72916467"},
- {"type":"Feature","properties":{"mag":0.12,"place":"12km ESE of Anza, CA","time":1644799250780,"updated":1644876890131,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185072","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185072.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40185072","ids":",ci40185072,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.03791,"rms":0.1,"gap":58,"magType":"ml","type":"earthquake","title":"M 0.1 - 12km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5615,33.5115,13.07]},"id":"ci40185072"},
- {"type":"Feature","properties":{"mag":-0.05,"place":"11km SSW of Searles Valley, CA","time":1644798792570,"updated":1644867500723,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185064","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185064.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40185064","ids":",ci40185064,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.09035,"rms":0.13,"gap":175,"magType":"ml","type":"earthquake","title":"M -0.1 - 11km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.45,35.6765,1.99]},"id":"ci40185064"},
- {"type":"Feature","properties":{"mag":0.29,"place":"15 km WNW of Entiat, Washington","time":1644798549290,"updated":1644800348160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816566","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816566.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61816566","ids":",uw61816566,","sources":",uw,","types":",origin,phase-data,","nst":5,"dmin":0.09345,"rms":0.03,"gap":149,"magType":"md","type":"earthquake","title":"M 0.3 - 15 km WNW of Entiat, Washington"},"geometry":{"type":"Point","coordinates":[-120.41183333333333,47.711333333333336,2.71]},"id":"uw61816566"},
- {"type":"Feature","properties":{"mag":1.65,"place":"7 km ESE of Vonore, Tennessee","time":1644798547590,"updated":1644881640792,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/se60145843","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/se60145843.geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"se","code":"60145843","ids":",se60145843,","sources":",se,","types":",dyfi,origin,phase-data,","nst":5,"dmin":0.1209,"rms":0.27,"gap":97,"magType":"md","type":"earthquake","title":"M 1.7 - 7 km ESE of Vonore, Tennessee"},"geometry":{"type":"Point","coordinates":[-84.1643333,35.5558333,1.7]},"id":"se60145843"},
- {"type":"Feature","properties":{"mag":1.2,"place":"Southern Alaska","time":1644797673436,"updated":1644797836264,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02222f9otr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02222f9otr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"02222f9otr","ids":",ak02222f9otr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - Southern Alaska"},"geometry":{"type":"Point","coordinates":[-150.4584,61.4075,17.5]},"id":"ak02222f9otr"},
- {"type":"Feature","properties":{"mag":1.78,"place":"6 km WSW of Fuig, Puerto Rico","time":1644797543410,"updated":1644799605680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334663","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334663.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"pr","code":"71334663","ids":",pr71334663,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.12,"gap":184,"magType":"md","type":"earthquake","title":"M 1.8 - 6 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9701666666667,17.9701666666667,11.03]},"id":"pr71334663"},
- {"type":"Feature","properties":{"mag":0.7,"place":"40 km SSE of Goldfield, Nevada","time":1644797048971,"updated":1644892697656,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833861","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833861.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nn","code":"00833861","ids":",nn00833861,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.166,"rms":0.1096,"gap":206.52,"magType":"ml","type":"earthquake","title":"M 0.7 - 40 km SSE of Goldfield, Nevada"},"geometry":{"type":"Point","coordinates":[-117.072,37.3699,0]},"id":"nn00833861"},
- {"type":"Feature","properties":{"mag":0.86,"place":"9km WNW of Cobb, CA","time":1644796247920,"updated":1644801315783,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692421","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692421.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692421","ids":",nc73692421,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.008797,"rms":0.01,"gap":150,"magType":"md","type":"earthquake","title":"M 0.9 - 9km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8273315,38.8446655,1.78]},"id":"nc73692421"},
- {"type":"Feature","properties":{"mag":2.9,"place":"57 km SSW of Whites City, New Mexico","time":1644795857340,"updated":1644878406476,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dcjq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dcjq.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"tx","code":"2022dcjq","ids":",tx2022dcjq,us7000gkmu,","sources":",tx,us,","types":",dyfi,origin,phase-data,","nst":21,"dmin":0.1140306713,"rms":0.3,"gap":88,"magType":"ml","type":"earthquake","title":"M 2.9 - 57 km SSW of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.6369925,31.70722294,5.231787109]},"id":"tx2022dcjq"},
- {"type":"Feature","properties":{"mag":1.4,"place":"67 km N of Petersville, Alaska","time":1644795502128,"updated":1644797836108,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022215kfk4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022215kfk4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"022215kfk4","ids":",ak022215kfk4,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.37,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 67 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6053,63.1003,117.1]},"id":"ak022215kfk4"},
- {"type":"Feature","properties":{"mag":0.83,"place":"13km WNW of Anza, CA","time":1644795473620,"updated":1644876244000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185048","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185048.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40185048","ids":",ci40185048,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":46,"dmin":0.0408,"rms":0.14,"gap":34,"magType":"ml","type":"earthquake","title":"M 0.8 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.811,33.5821667,7.87]},"id":"ci40185048"},
- {"type":"Feature","properties":{"mag":0,"place":"12km NE of Anza, CA","time":1644795454390,"updated":1644876446968,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37488837","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37488837.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"37488837","ids":",ci37488837,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.02715,"rms":0.07,"gap":131,"magType":"ml","type":"earthquake","title":"M 0.0 - 12km NE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5765,33.6221667,7.99]},"id":"ci37488837"},
- {"type":"Feature","properties":{"mag":1.4,"place":"15 km NNW of Willow, Alaska","time":1644795276364,"updated":1644795501821,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022215jlsk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022215jlsk.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"022215jlsk","ids":",ak022215jlsk,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.81,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 15 km NNW of Willow, Alaska"},"geometry":{"type":"Point","coordinates":[-150.1725,61.8746,45.7]},"id":"ak022215jlsk"},
- {"type":"Feature","properties":{"mag":1.5,"place":"7 km ESE of Willow, Alaska","time":1644795202714,"updated":1644795401485,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022215jd0v","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022215jd0v.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"022215jd0v","ids":",ak022215jd0v,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 7 km ESE of Willow, Alaska"},"geometry":{"type":"Point","coordinates":[-149.9124,61.7253,50.5]},"id":"ak022215jd0v"},
- {"type":"Feature","properties":{"mag":1.57,"place":"1 km E of Guánica, Puerto Rico","time":1644794594620,"updated":1644795557820,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334658","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334658.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"pr","code":"71334658","ids":",pr71334658,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.22,"gap":197,"magType":"md","type":"earthquake","title":"M 1.6 - 1 km E of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8973333333333,17.9701666666667,13.84]},"id":"pr71334658"},
- {"type":"Feature","properties":{"mag":0.96,"place":"6km N of Moreno Valley, CA","time":1644794164500,"updated":1644875755174,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185040","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185040.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40185040","ids":",ci40185040,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":38,"dmin":0.06651,"rms":0.14,"gap":99,"magType":"ml","type":"earthquake","title":"M 1.0 - 6km N of Moreno Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.2411667,33.982,14.09]},"id":"ci40185040"},
- {"type":"Feature","properties":{"mag":0.88,"place":"6km ESE of Pinnacles, CA","time":1644794149910,"updated":1644888313667,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692411","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692411.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nc","code":"73692411","ids":",nc73692411,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.05302,"rms":0.08,"gap":121,"magType":"md","type":"earthquake","title":"M 0.9 - 6km ESE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.0846667,36.5038333,7.06]},"id":"nc73692411"},
- {"type":"Feature","properties":{"mag":0.13,"place":"37 km NNE of Amboy, Washington","time":1644793709520,"updated":1644799493670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816551","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816551.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816551","ids":",uw61816551,","sources":",uw,","types":",origin,phase-data,","nst":13,"dmin":0.004281,"rms":0.08,"gap":153,"magType":"ml","type":"earthquake","title":"M 0.1 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19083333333333,46.1955,3.72]},"id":"uw61816551"},
- {"type":"Feature","properties":{"mag":0.65,"place":"11km ENE of Morgan Hill, CA","time":1644792619460,"updated":1644887652599,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692406","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692406.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nc","code":"73692406","ids":",nc73692406,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04057,"rms":0.08,"gap":57,"magType":"md","type":"earthquake","title":"M 0.7 - 11km ENE of Morgan Hill, CA"},"geometry":{"type":"Point","coordinates":[-121.5496667,37.1851667,7.36]},"id":"nc73692406"},
- {"type":"Feature","properties":{"mag":0.86,"place":"18km NNW of Searles Valley, CA","time":1644792104790,"updated":1644867116927,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185016","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185016.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40185016","ids":",ci40185016,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.1165,"rms":0.16,"gap":120,"magType":"ml","type":"earthquake","title":"M 0.9 - 18km NNW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4588333,35.9243333,1.36]},"id":"ci40185016"},
- {"type":"Feature","properties":{"mag":4.4,"place":"south of the Fiji Islands","time":1644791925938,"updated":1644894225040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkmq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkmq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gkmq","ids":",us7000gkmq,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.861,"rms":0.85,"gap":43,"magType":"mb","type":"earthquake","title":"M 4.4 - south of the Fiji Islands"},"geometry":{"type":"Point","coordinates":[179.5941,-24.9178,524.03]},"id":"us7000gkmq"},
- {"type":"Feature","properties":{"mag":3.9,"place":"199 km SE of Perryville, Alaska","time":1644791509431,"updated":1644893899040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022214xjxs","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022214xjxs.geojson","felt":null,"cdi":null,"mmi":1.283,"alert":null,"status":"reviewed","tsunami":0,"sig":234,"net":"ak","code":"022214xjxs","ids":",us7000gkmp,ak022214xjxs,","sources":",us,ak,","types":",origin,phase-data,shakemap,","nst":null,"dmin":null,"rms":1.21,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.9 - 199 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.7905,54.7226,41.1]},"id":"ak022214xjxs"},
- {"type":"Feature","properties":{"mag":0.47,"place":"12km NE of Little Lake, CA","time":1644791392500,"updated":1644866904920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185008","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185008.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40185008","ids":",ci40185008,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.02689,"rms":0.08,"gap":68,"magType":"ml","type":"earthquake","title":"M 0.5 - 12km NE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.8001667,36.0085,1.21]},"id":"ci40185008"},
- {"type":"Feature","properties":{"mag":1.88,"place":"2 km SSW of Indios, Puerto Rico","time":1644791251290,"updated":1644792152250,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334653","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334653.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":54,"net":"pr","code":"71334653","ids":",pr71334653,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.16,"gap":199,"magType":"md","type":"earthquake","title":"M 1.9 - 2 km SSW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8331666666667,17.9706666666667,14.39]},"id":"pr71334653"},
- {"type":"Feature","properties":{"mag":0.74,"place":"24km SW of Toms Place, CA","time":1644791144980,"updated":1644798136479,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692396","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692396.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nc","code":"73692396","ids":",nc73692396,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.1702,"rms":0.14,"gap":153,"magType":"md","type":"earthquake","title":"M 0.7 - 24km SW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8963333,37.4281667,2.93]},"id":"nc73692396"},
- {"type":"Feature","properties":{"mag":3.9,"place":"203 km SE of Perryville, Alaska","time":1644791139765,"updated":1644891883040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022214w8vk","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022214w8vk.geojson","felt":null,"cdi":null,"mmi":1,"alert":null,"status":"reviewed","tsunami":0,"sig":234,"net":"ak","code":"022214w8vk","ids":",us7000gkmn,ak022214w8vk,","sources":",us,ak,","types":",origin,phase-data,shakemap,","nst":null,"dmin":null,"rms":1.13,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.9 - 203 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-156.7209,54.7136,26.4]},"id":"ak022214w8vk"},
- {"type":"Feature","properties":{"mag":1,"place":"16 km S of Funny River, Alaska","time":1644790967429,"updated":1644791443526,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022214vmg6","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022214vmg6.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"ak","code":"022214vmg6","ids":",ak022214vmg6,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.21,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 16 km S of Funny River, Alaska"},"geometry":{"type":"Point","coordinates":[-150.7849,60.3509,45.6]},"id":"ak022214vmg6"},
- {"type":"Feature","properties":{"mag":1.3,"place":"25 km ENE of Chase, Alaska","time":1644790849436,"updated":1644791082033,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022214v75k","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022214v75k.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"022214v75k","ids":",ak022214v75k,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 25 km ENE of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6916,62.5691,2.7]},"id":"ak022214v75k"},
- {"type":"Feature","properties":{"mag":4.7,"place":"south of the Mariana Islands","time":1644790158523,"updated":1644886686040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkml","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkml.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gkml","ids":",us7000gkml,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.835,"rms":0.55,"gap":89,"magType":"mb","type":"earthquake","title":"M 4.7 - south of the Mariana Islands"},"geometry":{"type":"Point","coordinates":[144.3376,11.8175,10]},"id":"us7000gkml"},
- {"type":"Feature","properties":{"mag":0.56,"place":"18km ESE of Anza, CA","time":1644790025250,"updated":1644875299975,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40185000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40185000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40185000","ids":",ci40185000,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.05355,"rms":0.12,"gap":58,"magType":"ml","type":"earthquake","title":"M 0.6 - 18km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4883333,33.512,14.38]},"id":"ci40185000"},
- {"type":"Feature","properties":{"mag":1.47,"place":"8 km NW of Wetumka, Oklahoma","time":1644789706250,"updated":1644870690363,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dcgg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dcgg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"ok","code":"2022dcgg","ids":",ok2022dcgg,","sources":",ok,","types":",origin,phase-data,","nst":49,"dmin":0.1628680397,"rms":0.45,"gap":73,"magType":"ml","type":"quarry blast","title":"M 1.5 Quarry Blast - 8 km NW of Wetumka, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.307,35.28716667,0]},"id":"ok2022dcgg"},
- {"type":"Feature","properties":{"mag":0.93,"place":"7 km SW of Drummond, Montana","time":1644789307730,"updated":1645116727020,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538404","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538404.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"mb","code":"80538404","ids":",mb80538404,","sources":",mb,","types":",origin,phase-data,","nst":14,"dmin":0.289,"rms":0.15,"gap":103,"magType":"ml","type":"earthquake","title":"M 0.9 - 7 km SW of Drummond, Montana"},"geometry":{"type":"Point","coordinates":[-113.2263333,46.6261667,4.29]},"id":"mb80538404"},
- {"type":"Feature","properties":{"mag":0.76,"place":"17km ESE of Little Lake, CA","time":1644788722930,"updated":1644875008413,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184992","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184992.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40184992","ids":",ci40184992,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.08145,"rms":0.08,"gap":59,"magType":"ml","type":"earthquake","title":"M 0.8 - 17km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7276667,35.8958333,10.27]},"id":"ci40184992"},
- {"type":"Feature","properties":{"mag":1.3,"place":"57 km SW of Nanwalek, Alaska","time":1644788716476,"updated":1644788978014,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022214f1xb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022214f1xb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"022214f1xb","ids":",ak022214f1xb,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 57 km SW of Nanwalek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.561,58.9589,66.1]},"id":"ak022214f1xb"},
- {"type":"Feature","properties":{"mag":1.5,"place":"21 km W of Susitna, Alaska","time":1644788672127,"updated":1644789389088,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022214evey","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022214evey.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"022214evey","ids":",ak022214evey,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.7,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 21 km W of Susitna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.9128,61.5449,61.7]},"id":"ak022214evey"},
- {"type":"Feature","properties":{"mag":0.62,"place":"17km ESE of Little Lake, CA","time":1644788660260,"updated":1644874739512,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184984","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184984.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40184984","ids":",ci40184984,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.07807,"rms":0.08,"gap":62,"magType":"ml","type":"earthquake","title":"M 0.6 - 17km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7206667,35.8945,4.87]},"id":"ci40184984"},
- {"type":"Feature","properties":{"mag":0.92,"place":"26 km WNW of Hebgen Lake Estates, Montana","time":1644788460650,"updated":1644877344760,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538419","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538419.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"mb","code":"80538419","ids":",mb80538419,","sources":",mb,","types":",origin,phase-data,","nst":12,"dmin":0.061,"rms":0.15,"gap":103,"magType":"ml","type":"earthquake","title":"M 0.9 - 26 km WNW of Hebgen Lake Estates, Montana"},"geometry":{"type":"Point","coordinates":[-111.4891667,44.8743333,12.17]},"id":"mb80538419"},
- {"type":"Feature","properties":{"mag":4.8,"place":"170 km SSW of Merizo Village, Guam","time":1644788267284,"updated":1644885114040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkmh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkmh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gkmh","ids":",us7000gkmh,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.902,"rms":0.39,"gap":87,"magType":"mb","type":"earthquake","title":"M 4.8 - 170 km SSW of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.2128,11.7866,10]},"id":"us7000gkmh"},
- {"type":"Feature","properties":{"mag":2.24,"place":"5km WNW of Walker, CA","time":1644788087480,"updated":1644898033695,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692386","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692386.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":77,"net":"nc","code":"73692386","ids":",nc73692386,nn00833812,","sources":",nc,nn,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.04704,"rms":0.07,"gap":52,"magType":"md","type":"earthquake","title":"M 2.2 - 5km WNW of Walker, CA"},"geometry":{"type":"Point","coordinates":[-119.5311667,38.5396667,4.38]},"id":"nc73692386"},
- {"type":"Feature","properties":{"mag":1.7,"place":"4 km ESE of Little America, Wyoming","time":1644787645260,"updated":1644872222930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481932","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481932.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"uu","code":"60481932","ids":",uu60481932,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.0885,"rms":0.27,"gap":103,"magType":"md","type":"earthquake","title":"M 1.7 - 4 km ESE of Little America, Wyoming"},"geometry":{"type":"Point","coordinates":[-109.8055,41.5268333,-3.41]},"id":"uu60481932"},
- {"type":"Feature","properties":{"mag":1.6,"place":"27km ESE of Bodie, CA","time":1644787636200,"updated":1644955273158,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692381","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692381.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nc","code":"73692381","ids":",nc73692381,nn00833809,","sources":",nc,nn,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.2492,"rms":0.07,"gap":107,"magType":"md","type":"earthquake","title":"M 1.6 - 27km ESE of Bodie, CA"},"geometry":{"type":"Point","coordinates":[-118.7436667,38.0876667,5.2]},"id":"nc73692381"},
- {"type":"Feature","properties":{"mag":2.57,"place":"4 km SSE of Maria Antonia, Puerto Rico","time":1644787095210,"updated":1644787845530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334638","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334638.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":102,"net":"pr","code":"71334638","ids":",pr71334638,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.17,"gap":219,"magType":"md","type":"earthquake","title":"M 2.6 - 4 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8746666666667,17.9366666666667,13.04]},"id":"pr71334638"},
- {"type":"Feature","properties":{"mag":1.16,"place":"14km SW of Searles Valley, CA","time":1644786693920,"updated":1644874597340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40184976","ids":",ci40184976,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.1167,"rms":0.16,"gap":98,"magType":"ml","type":"earthquake","title":"M 1.2 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5231667,35.6923333,10.33]},"id":"ci40184976"},
- {"type":"Feature","properties":{"mag":1.93,"place":"27 km WNW of Hebgen Lake Estates, Montana","time":1644786368060,"updated":1644854398740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538314","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538314.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":57,"net":"mb","code":"80538314","ids":",mb80538314,","sources":",mb,","types":",origin,phase-data,","nst":37,"dmin":0.068,"rms":0.2,"gap":39,"magType":"ml","type":"earthquake","title":"M 1.9 - 27 km WNW of Hebgen Lake Estates, Montana"},"geometry":{"type":"Point","coordinates":[-111.4978333,44.879,11.27]},"id":"mb80538314"},
- {"type":"Feature","properties":{"mag":1.3,"place":"3 km W of Susitna, Alaska","time":1644786181738,"updated":1644786763835,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02221460pp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02221460pp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02221460pp","ids":",ak02221460pp,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 3 km W of Susitna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5684,61.5476,64.3]},"id":"ak02221460pp"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644786074300,"updated":1644788120602,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692366","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692366.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692366","ids":",nc73692366,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.0135,"rms":0.03,"gap":83,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.817337,38.8356667,1.48]},"id":"nc73692366"},
- {"type":"Feature","properties":{"mag":2.46,"place":"3 km SW of Indios, Puerto Rico","time":1644785929230,"updated":1644787088060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334633","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334633.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":93,"net":"pr","code":"71334633","ids":",pr71334633,","sources":",pr,","types":",origin,phase-data,","nst":17,"dmin":null,"rms":0.13,"gap":165,"magType":"md","type":"earthquake","title":"M 2.5 - 3 km SW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8418333333333,17.9721666666667,15.19]},"id":"pr71334633"},
- {"type":"Feature","properties":{"mag":2.87,"place":"22 km N of Pāhala, Hawaii","time":1644785870630,"updated":1644872398426,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916282","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916282.geojson","felt":0,"cdi":1,"mmi":2.494,"alert":null,"status":"automatic","tsunami":0,"sig":127,"net":"hv","code":"72916282","ids":",hv72916282,us7000gkm4,","sources":",hv,us,","types":",dyfi,origin,phase-data,shakemap,","nst":17,"dmin":null,"rms":0.379999995,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.9 - 22 km N of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.508666992188,19.4078330993652,11.4200000762939]},"id":"hv72916282"},
- {"type":"Feature","properties":{"mag":3.32,"place":"27 km SE of Pāhala, Hawaii","time":1644785862020,"updated":1644787469262,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916277","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916277.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"hv","code":"72916277","ids":",hv72916277,","sources":",hv,","types":",dyfi,origin,phase-data,","nst":47,"dmin":null,"rms":0.16,"gap":255,"magType":"ml","type":"earthquake","title":"M 3.3 - 27 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.308833333333,19.0186666666667,6.69]},"id":"hv72916277"},
- {"type":"Feature","properties":{"mag":3.7,"place":"86 km SSW of Fort McPherson, Canada","time":1644785534549,"updated":1644788172040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkm9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkm9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":211,"net":"us","code":"7000gkm9","ids":",us7000gkm9,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.737,"rms":0.77,"gap":61,"magType":"mb","type":"earthquake","title":"M 3.7 - 86 km SSW of Fort McPherson, Canada"},"geometry":{"type":"Point","coordinates":[-135.7331,66.7393,5]},"id":"us7000gkm9"},
- {"type":"Feature","properties":{"mag":5.3,"place":"168 km S of Merizo Village, Guam","time":1644785382739,"updated":1645045189154,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkm3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkm3.geojson","felt":3,"cdi":2.2,"mmi":2.935,"alert":"green","status":"reviewed","tsunami":0,"sig":433,"net":"us","code":"7000gkm3","ids":",us7000gkm3,","sources":",us,","types":",dyfi,losspager,moment-tensor,oaf,origin,phase-data,shakemap,","nst":null,"dmin":1.864,"rms":1.16,"gap":19,"magType":"mww","type":"earthquake","title":"M 5.3 - 168 km S of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.4432,11.7602,10]},"id":"us7000gkm3"},
- {"type":"Feature","properties":{"mag":0.95,"place":"10km NNW of Idyllwild, CA","time":1644785362550,"updated":1644874347920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184960","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184960.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40184960","ids":",ci40184960,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.03271,"rms":0.12,"gap":50,"magType":"ml","type":"earthquake","title":"M 1.0 - 10km NNW of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7588333,33.8271667,15.46]},"id":"ci40184960"},
- {"type":"Feature","properties":{"mag":0.07,"place":"38 km NNE of Amboy, Washington","time":1644784593140,"updated":1644791612560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816491","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816491.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816491","ids":",uw61816491,","sources":",uw,","types":",origin,phase-data,","nst":14,"dmin":0.004693,"rms":0.12,"gap":84,"magType":"ml","type":"earthquake","title":"M 0.1 - 38 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.17966666666666,46.197833333333335,1.24]},"id":"uw61816491"},
- {"type":"Feature","properties":{"mag":4.2,"place":"175 km N of Lospalos, Timor Leste","time":1644784311321,"updated":1644785379040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gklw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gklw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gklw","ids":",us7000gklw,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.959,"rms":0.73,"gap":52,"magType":"mb","type":"earthquake","title":"M 4.2 - 175 km N of Lospalos, Timor Leste"},"geometry":{"type":"Point","coordinates":[127.0985,-6.9395,392.42]},"id":"us7000gklw"},
- {"type":"Feature","properties":{"mag":0.83,"place":"7km NW of The Geysers, CA","time":1644784289780,"updated":1644786794377,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692351","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692351.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692351","ids":",nc73692351,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.001306,"rms":0.03,"gap":65,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8116684,38.8230019,1.77]},"id":"nc73692351"},
- {"type":"Feature","properties":{"mag":1.27,"place":"2 km W of Dibble, Oklahoma","time":1644784277589,"updated":1644854905348,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dcdf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dcdf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ok","code":"2022dcdf","ids":",ok2022dcdf,","sources":",ok,","types":",origin,phase-data,","nst":51,"dmin":0.1178768685,"rms":0.3,"gap":59,"magType":"ml","type":"earthquake","title":"M 1.3 - 2 km W of Dibble, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.65716667,35.03433333,6.33]},"id":"ok2022dcdf"},
- {"type":"Feature","properties":{"mag":5.7,"place":"168 km SSW of Merizo Village, Guam","time":1644784185609,"updated":1645043998815,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gklv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gklv.geojson","felt":3,"cdi":2.7,"mmi":3.296,"alert":"green","status":"reviewed","tsunami":0,"sig":501,"net":"us","code":"7000gklv","ids":",us7000gklv,pt22044005,","sources":",us,pt,","types":",dyfi,losspager,moment-tensor,oaf,origin,phase-data,shakemap,","nst":null,"dmin":1.873,"rms":0.89,"gap":59,"magType":"mww","type":"earthquake","title":"M 5.7 - 168 km SSW of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.3012,11.7882,10]},"id":"us7000gklv"},
- {"type":"Feature","properties":{"mag":1.82,"place":"1 km S of Guánica, Puerto Rico","time":1644783678050,"updated":1644785251590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334623","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334623.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":51,"net":"pr","code":"71334623","ids":",pr71334623,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.07,"gap":207,"magType":"md","type":"earthquake","title":"M 1.8 - 1 km S of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.907,17.9563333333333,11]},"id":"pr71334623"},
- {"type":"Feature","properties":{"mag":2.8,"place":"51 km NNE of Kobuk, Alaska","time":1644783657762,"updated":1644784709309,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022213oggq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022213oggq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":121,"net":"ak","code":"022213oggq","ids":",ak022213oggq,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 51 km NNE of Kobuk, Alaska"},"geometry":{"type":"Point","coordinates":[-156.3468,67.3149,2.5]},"id":"ak022213oggq"},
- {"type":"Feature","properties":{"mag":2.8,"place":"56 km S of Whites City, New Mexico","time":1644783478587,"updated":1644879381130,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dccu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dccu.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"tx","code":"2022dccu","ids":",us7000gklq,tx2022dccu,","sources":",us,tx,","types":",origin,phase-data,","nst":17,"dmin":0.09076029741,"rms":0.3,"gap":60,"magType":"ml","type":"earthquake","title":"M 2.8 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3943105,31.66857506,7.699755859]},"id":"tx2022dccu"},
- {"type":"Feature","properties":{"mag":1.01,"place":"18km ESE of Little Lake, CA","time":1644783218840,"updated":1644873756022,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40184936","ids":",ci40184936,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.07772,"rms":0.1,"gap":39,"magType":"ml","type":"earthquake","title":"M 1.0 - 18km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7195,35.894,4.95]},"id":"ci40184936"},
- {"type":"Feature","properties":{"mag":0.64,"place":"20km E of Little Lake, CA","time":1644782959200,"updated":1644873510662,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184928","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184928.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40184928","ids":",ci40184928,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.0417,"rms":0.07,"gap":50,"magType":"ml","type":"earthquake","title":"M 0.6 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6875,35.919,3.53]},"id":"ci40184928"},
- {"type":"Feature","properties":{"mag":1.96,"place":"3km S of Canyondam, CA","time":1644782747570,"updated":1644949311302,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692346","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692346.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":59,"net":"nc","code":"73692346","ids":",nc73692346,nn00833798,","sources":",nc,nn,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.1149,"rms":0.18,"gap":79,"magType":"md","type":"earthquake","title":"M 2.0 - 3km S of Canyondam, CA"},"geometry":{"type":"Point","coordinates":[-121.08,40.1441667,-0.45]},"id":"nc73692346"},
- {"type":"Feature","properties":{"mag":1.41,"place":"16 km SSE of Waynoka, Oklahoma","time":1644782589859,"updated":1644855374992,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dcci","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dcci.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"ok","code":"2022dcci","ids":",ok2022dcci,","sources":",ok,","types":",origin,phase-data,","nst":41,"dmin":0.007198587392,"rms":0.15,"gap":89,"magType":"ml","type":"earthquake","title":"M 1.4 - 16 km SSE of Waynoka, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.79233333,36.44816667,7.45]},"id":"ok2022dcci"},
- {"type":"Feature","properties":{"mag":0.96,"place":"2km NW of The Geysers, CA","time":1644782428710,"updated":1644783190978,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692341","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692341.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73692341","ids":",nc73692341,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01439,"rms":0.02,"gap":98,"magType":"md","type":"earthquake","title":"M 1.0 - 2km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7696686,38.7885017,1.98]},"id":"nc73692341"},
- {"type":"Feature","properties":{"mag":-0.26,"place":"10km SSE of Banning, CA","time":1644782149660,"updated":1644852987606,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40184920","ids":",ci40184920,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.09655,"rms":0.12,"gap":154,"magType":"ml","type":"earthquake","title":"M -0.3 - 10km SSE of Banning, CA"},"geometry":{"type":"Point","coordinates":[-116.851,33.8346667,5.69]},"id":"ci40184920"},
- {"type":"Feature","properties":{"mag":0.97,"place":"13km NW of Pinnacles, CA","time":1644781705710,"updated":1645047853596,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692336","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692336.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"nc","code":"73692336","ids":",nc73692336,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.05562,"rms":0.07,"gap":171,"magType":"md","type":"earthquake","title":"M 1.0 - 13km NW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.246,36.6173333,6.45]},"id":"nc73692336"},
- {"type":"Feature","properties":{"mag":0.92,"place":"2km NNW of The Geysers, CA","time":1644781285810,"updated":1644784755144,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692331","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692331.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":13,"net":"nc","code":"73692331","ids":",nc73692331,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.0084,"rms":0.06,"gap":64,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7624969,38.7924995,1.23]},"id":"nc73692331"},
- {"type":"Feature","properties":{"mag":4.5,"place":"44 km SE of Koseda, Japan","time":1644780298884,"updated":1644783680040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gklh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gklh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gklh","ids":",us7000gklh,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.436,"rms":0.75,"gap":127,"magType":"mb","type":"earthquake","title":"M 4.5 - 44 km SE of Koseda, Japan"},"geometry":{"type":"Point","coordinates":[131.032,30.158,32.53]},"id":"us7000gklh"},
- {"type":"Feature","properties":{"mag":1.9,"place":"65 km SE of Denali National Park, Alaska","time":1644780261222,"updated":1644780961958,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222133oqy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222133oqy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0222133oqy","ids":",ak0222133oqy,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.37,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 65 km SE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-150.7131,63.1621,114.1]},"id":"ak0222133oqy"},
- {"type":"Feature","properties":{"mag":2.43,"place":"5 km ENE of Pāhala, Hawaii","time":1644779957720,"updated":1644788330040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916167","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916167.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":91,"net":"hv","code":"72916167","ids":",hv72916167,us7000gkld,","sources":",hv,us,","types":",dyfi,origin,phase-data,","nst":52,"dmin":null,"rms":0.129999995,"gap":133,"magType":"ml","type":"earthquake","title":"M 2.4 - 5 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.430999755859,19.2124996185303,32.7000007629395]},"id":"hv72916167"},
- {"type":"Feature","properties":{"mag":1.1,"place":"6 km SE of Clam Gulch, Alaska","time":1644778608919,"updated":1644778857945,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022212p6gu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022212p6gu.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"022212p6gu","ids":",ak022212p6gu,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 6 km SE of Clam Gulch, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3202,60.1837,58.4]},"id":"ak022212p6gu"},
- {"type":"Feature","properties":{"mag":3.03,"place":"28 km SW of Esperanza, Puerto Rico","time":1644777757290,"updated":1644780596370,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334618","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334618.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":141,"net":"pr","code":"71334618","ids":",pr71334618,","sources":",pr,","types":",origin,phase-data,","nst":18,"dmin":null,"rms":0.57,"gap":256,"magType":"md","type":"earthquake","title":"M 3.0 - 28 km SW of Esperanza, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-65.6276666666667,17.8873333333333,107.58]},"id":"pr71334618"},
- {"type":"Feature","properties":{"mag":5.3,"place":"19 km WSW of Metsavan, Armenia","time":1644776756184,"updated":1644921400166,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkl5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkl5.geojson","felt":117,"cdi":6.5,"mmi":5.636,"alert":"green","status":"reviewed","tsunami":0,"sig":508,"net":"us","code":"7000gkl5","ids":",us7000gkl5,","sources":",us,","types":",dyfi,losspager,origin,phase-data,shakemap,","nst":null,"dmin":1.001,"rms":0.89,"gap":39,"magType":"mww","type":"earthquake","title":"M 5.3 - 19 km WSW of Metsavan, Armenia"},"geometry":{"type":"Point","coordinates":[44.0042,41.1537,10]},"id":"us7000gkl5"},
- {"type":"Feature","properties":{"mag":4.6,"place":"46 km ESE of Alo, Wallis and Futuna","time":1644776334042,"updated":1644788982040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkl6","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkl6.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gkl6","ids":",us7000gkl6,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.429,"rms":0.28,"gap":113,"magType":"mb","type":"earthquake","title":"M 4.6 - 46 km ESE of Alo, Wallis and Futuna"},"geometry":{"type":"Point","coordinates":[-177.7144,-14.4795,10]},"id":"us7000gkl6"},
- {"type":"Feature","properties":{"mag":1.85000002,"place":"6 km S of Pāhala, Hawaii","time":1644776150760,"updated":1644776334950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916092","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916092.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":53,"net":"hv","code":"72916092","ids":",hv72916092,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.129999995,"gap":170,"magType":"md","type":"earthquake","title":"M 1.9 - 6 km S of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.475006103516,19.1434993743896,34.5200004577637]},"id":"hv72916092"},
- {"type":"Feature","properties":{"mag":1.3,"place":"8 km NNW of Four Mile Road, Alaska","time":1644776090080,"updated":1644776323252,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022212g6i8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022212g6i8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"022212g6i8","ids":",ak022212g6i8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.52,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 8 km NNW of Four Mile Road, Alaska"},"geometry":{"type":"Point","coordinates":[-149.195,64.6726,16.2]},"id":"ak022212g6i8"},
- {"type":"Feature","properties":{"mag":1.2,"place":"15 km E of Fox, Alaska","time":1644775513258,"updated":1644775952424,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022212e62p","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022212e62p.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"022212e62p","ids":",ak022212e62p,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 15 km E of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.2878,64.97,0]},"id":"ak022212e62p"},
- {"type":"Feature","properties":{"mag":0.86,"place":"9km WNW of Cobb, CA","time":1644775436390,"updated":1644778694502,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692316","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692316.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692316","ids":",nc73692316,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.006902,"rms":0.02,"gap":99,"magType":"md","type":"earthquake","title":"M 0.9 - 9km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8268356,38.8400002,1.79]},"id":"nc73692316"},
- {"type":"Feature","properties":{"mag":0.38,"place":"24km ESE of Little Lake, CA","time":1644775045140,"updated":1644873343327,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184888","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184888.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40184888","ids":",ci40184888,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.06723,"rms":0.09,"gap":94,"magType":"ml","type":"earthquake","title":"M 0.4 - 24km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.664,35.8558333,11.3]},"id":"ci40184888"},
- {"type":"Feature","properties":{"mag":3.3,"place":"227 km SE of Chiniak, Alaska","time":1644774814474,"updated":1644785795040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkkx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkkx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"7000gkkx","ids":",us7000gkkx,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.283,"rms":0.38,"gap":215,"magType":"ml","type":"earthquake","title":"M 3.3 - 227 km SE of Chiniak, Alaska"},"geometry":{"type":"Point","coordinates":[-149.2186,56.4277,10]},"id":"us7000gkkx"},
- {"type":"Feature","properties":{"mag":1.3,"place":"31 km SE of Mina, Nevada","time":1644774298467,"updated":1644963501301,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833796","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833796.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833796","ids":",nn00833796,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.052,"rms":0.1021,"gap":154.51,"magType":"ml","type":"earthquake","title":"M 1.3 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8972,38.1568,5.5]},"id":"nn00833796"},
- {"type":"Feature","properties":{"mag":0.99,"place":"7km W of Cobb, CA","time":1644773703820,"updated":1645081512030,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692301","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692301.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nc","code":"73692301","ids":",nc73692301,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":4,"dmin":0.01457,"rms":0.01,"gap":173,"magType":"md","type":"earthquake","title":"M 1.0 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8078333,38.8333333,2.86]},"id":"nc73692301"},
- {"type":"Feature","properties":{"mag":-0.66,"place":"38 km NE of Amboy, Washington","time":1644773380690,"updated":1644864438650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816436","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816436.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816436","ids":",uw61816436,","sources":",uw,","types":",origin,phase-data,","nst":7,"dmin":0.007588,"rms":0.06,"gap":134,"magType":"md","type":"earthquake","title":"M -0.7 - 38 km NE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.16,46.19266666666667,3.99]},"id":"uw61816436"},
- {"type":"Feature","properties":{"mag":-0.36,"place":"38 km NNE of Amboy, Washington","time":1644772984840,"updated":1644817858440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816431","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816431.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816431","ids":",uw61816431,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.005022,"rms":0.18,"gap":81,"magType":"ml","type":"earthquake","title":"M -0.4 - 38 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.179,46.198,4.96]},"id":"uw61816431"},
- {"type":"Feature","properties":{"mag":1.1,"place":"8 km W of Point Possession, Alaska","time":1644772886357,"updated":1644773077173,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022211w72z","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022211w72z.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"022211w72z","ids":",ak022211w72z,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 8 km W of Point Possession, Alaska"},"geometry":{"type":"Point","coordinates":[-150.8504,60.9244,36]},"id":"ak022211w72z"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"11 km SE of Pāhala, Hawaii","time":1644772363660,"updated":1644772558200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72916017","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72916017.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72916017","ids":",hv72916017,","sources":",hv,","types":",origin,phase-data,","nst":45,"dmin":null,"rms":0.140000001,"gap":183,"magType":"md","type":"earthquake","title":"M 1.8 - 11 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.399169921875,19.1263332366943,31.3600006103516]},"id":"hv72916017"},
- {"type":"Feature","properties":{"mag":-0.03,"place":"7km NW of Anza, CA","time":1644772352990,"updated":1644866799907,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40184848","ids":",ci40184848,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.0306,"rms":0.06,"gap":134,"magType":"ml","type":"earthquake","title":"M -0.0 - 7km NW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.7275,33.5955,11.08]},"id":"ci40184848"},
- {"type":"Feature","properties":{"mag":0.75,"place":"5km N of Cabazon, CA","time":1644772043710,"updated":1644873245564,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40184832","ids":",ci40184832,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.07709,"rms":0.12,"gap":49,"magType":"ml","type":"earthquake","title":"M 0.8 - 5km N of Cabazon, CA"},"geometry":{"type":"Point","coordinates":[-116.7845,33.9603333,14.25]},"id":"ci40184832"},
- {"type":"Feature","properties":{"mag":0.3,"place":"24km ESE of Little Lake, CA","time":1644772011250,"updated":1644872969002,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184824","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184824.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40184824","ids":",ci40184824,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.0647,"rms":0.09,"gap":92,"magType":"ml","type":"earthquake","title":"M 0.3 - 24km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6708333,35.841,8.22]},"id":"ci40184824"},
- {"type":"Feature","properties":{"mag":0.01,"place":"17 km SE of Three Rivers, Oregon","time":1644771792930,"updated":1644816322630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816426","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816426.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816426","ids":",uw61816426,","sources":",uw,","types":",origin,phase-data,","nst":6,"dmin":0.004992,"rms":0.19,"gap":108,"magType":"ml","type":"earthquake","title":"M 0.0 - 17 km SE of Three Rivers, Oregon"},"geometry":{"type":"Point","coordinates":[-121.29366666666667,43.729,1.63]},"id":"uw61816426"},
- {"type":"Feature","properties":{"mag":2.41,"place":"45km W of Petrolia, CA","time":1644771435670,"updated":1645054994331,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692296","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692296.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":89,"net":"nc","code":"73692296","ids":",nc73692296,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.3645,"rms":0.15,"gap":297,"magType":"md","type":"earthquake","title":"M 2.4 - 45km W of Petrolia, CA"},"geometry":{"type":"Point","coordinates":[-124.8078333,40.3683333,13.25]},"id":"nc73692296"},
- {"type":"Feature","properties":{"mag":4.8,"place":"114 km W of Neiafu, Tonga","time":1644769959923,"updated":1644784847040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkkj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkkj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gkkj","ids":",us7000gkkj,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.093,"rms":0.76,"gap":47,"magType":"mb","type":"earthquake","title":"M 4.8 - 114 km W of Neiafu, Tonga"},"geometry":{"type":"Point","coordinates":[-175.0596,-18.4916,224.16]},"id":"us7000gkkj"},
- {"type":"Feature","properties":{"mag":4.8,"place":"11 km SSW of Fort Portal, Uganda","time":1644769715385,"updated":1644853829322,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkkh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkkh.geojson","felt":7,"cdi":4.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":358,"net":"us","code":"7000gkkh","ids":",us7000gkkh,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.259,"rms":0.56,"gap":68,"magType":"mb","type":"earthquake","title":"M 4.8 - 11 km SSW of Fort Portal, Uganda"},"geometry":{"type":"Point","coordinates":[30.2464,0.5659,10]},"id":"us7000gkkh"},
- {"type":"Feature","properties":{"mag":0.3,"place":"5 km SSW of Virginia City, Nevada","time":1644769485273,"updated":1644770588674,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833792","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833792.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833792","ids":",nn00833792,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.041,"rms":0.0732,"gap":115.73,"magType":"ml","type":"earthquake","title":"M 0.3 - 5 km SSW of Virginia City, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6863,39.2662,7.8]},"id":"nn00833792"},
- {"type":"Feature","properties":{"mag":1.8,"place":"63 km S of Cordova, Alaska","time":1644769296215,"updated":1644769580969,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022211as8l","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022211as8l.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"022211as8l","ids":",ak022211as8l,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 63 km S of Cordova, Alaska"},"geometry":{"type":"Point","coordinates":[-145.5524,59.9782,17.1]},"id":"ak022211as8l"},
- {"type":"Feature","properties":{"mag":0.33,"place":"21km ESE of Little Lake, CA","time":1644769011730,"updated":1644872847274,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184808","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184808.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40184808","ids":",ci40184808,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.07822,"rms":0.1,"gap":75,"magType":"ml","type":"earthquake","title":"M 0.3 - 21km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6948333,35.8623333,6.41]},"id":"ci40184808"},
- {"type":"Feature","properties":{"mag":4.5,"place":"186 km NW of Sabang, Indonesia","time":1644768876126,"updated":1644783618040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkk0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkk0.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkk0","ids":",us7000gkk0,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.313,"rms":0.38,"gap":161,"magType":"mb","type":"earthquake","title":"M 4.5 - 186 km NW of Sabang, Indonesia"},"geometry":{"type":"Point","coordinates":[94.2732,7.2201,10]},"id":"us7000gkk0"},
- {"type":"Feature","properties":{"mag":0.89,"place":"14km NE of Ridgecrest, CA","time":1644768722090,"updated":1644872711258,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184800","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184800.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40184800","ids":",ci40184800,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.1022,"rms":0.12,"gap":88,"magType":"ml","type":"earthquake","title":"M 0.9 - 14km NE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5663333,35.7165,8.8]},"id":"ci40184800"},
- {"type":"Feature","properties":{"mag":1.44,"place":"15 km WNW of Santa Rita, Montana","time":1644768701000,"updated":1644873156820,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538389","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538389.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"mb","code":"80538389","ids":",mb80538389,","sources":",mb,","types":",origin,phase-data,","nst":9,"dmin":0.622,"rms":0.19,"gap":133,"magType":"ml","type":"earthquake","title":"M 1.4 - 15 km WNW of Santa Rita, Montana"},"geometry":{"type":"Point","coordinates":[-112.5121667,48.7545,2.27]},"id":"mb80538389"},
- {"type":"Feature","properties":{"mag":0.05,"place":"34 km ESE of Port Heiden, Alaska","time":1644768539240,"updated":1644966989800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91489411","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91489411.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91489411","ids":",av91489411,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.19,"gap":233,"magType":"ml","type":"earthquake","title":"M 0.1 - 34 km ESE of Port Heiden, Alaska"},"geometry":{"type":"Point","coordinates":[-158.098666666667,56.8406666666667,17.65]},"id":"av91489411"},
- {"type":"Feature","properties":{"mag":0.17,"place":"11km NNE of Anza, CA","time":1644768261900,"updated":1644772838484,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184792","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184792.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40184792","ids":",ci40184792,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.0243,"rms":0.07,"gap":127,"magType":"ml","type":"earthquake","title":"M 0.2 - 11km NNE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6245,33.6411667,10.89]},"id":"ci40184792"},
- {"type":"Feature","properties":{"mag":2.93,"place":"5 km SSW of Indios, Puerto Rico","time":1644768231540,"updated":1644772805378,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334613","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334613.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":132,"net":"pr","code":"71334613","ids":",pr71334613,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":23,"dmin":null,"rms":0.17,"gap":201,"magType":"md","type":"earthquake","title":"M 2.9 - 5 km SSW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8406666666667,17.946,15.61]},"id":"pr71334613"},
- {"type":"Feature","properties":{"mag":1.53,"place":"2 km SSE of Pāhala, Hawaii","time":1644768164280,"updated":1644874144970,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915987","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915987.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"hv","code":"72915987","ids":",hv72915987,","sources":",hv,","types":",origin,phase-data,","nst":25,"dmin":null,"rms":0.12,"gap":101,"magType":"md","type":"earthquake","title":"M 1.5 - 2 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.472666666667,19.185,31.66]},"id":"hv72915987"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644767805720,"updated":1644770354668,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692291","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692291.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692291","ids":",nc73692291,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01077,"rms":0.02,"gap":95,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8191681,38.831501,1.67]},"id":"nc73692291"},
- {"type":"Feature","properties":{"mag":1.1,"place":"17 km W of Cohoe, Alaska","time":1644767804526,"updated":1644768104010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022210wvcb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022210wvcb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"022210wvcb","ids":",ak022210wvcb,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 17 km W of Cohoe, Alaska"},"geometry":{"type":"Point","coordinates":[-151.6294,60.3783,62.2]},"id":"ak022210wvcb"},
- {"type":"Feature","properties":{"mag":1.6,"place":"40 km SSW of Dry Creek, Alaska","time":1644767792711,"updated":1644768204336,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022210wuej","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022210wuej.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"022210wuej","ids":",ak022210wuej,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 40 km SSW of Dry Creek, Alaska"},"geometry":{"type":"Point","coordinates":[-145.0017,63.3245,1.8]},"id":"ak022210wuej"},
- {"type":"Feature","properties":{"mag":1.6,"place":"38 km NW of Ninilchik, Alaska","time":1644767145192,"updated":1644767973235,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022210uiif","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022210uiif.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"022210uiif","ids":",ak022210uiif,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 38 km NW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.1122,60.3206,77.7]},"id":"ak022210uiif"},
- {"type":"Feature","properties":{"mag":1.03,"place":"20km E of Little Lake, CA","time":1644766957610,"updated":1644872486242,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184784","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184784.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40184784","ids":",ci40184784,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.04027,"rms":0.15,"gap":50,"magType":"ml","type":"earthquake","title":"M 1.0 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.687,35.9206667,4.13]},"id":"ci40184784"},
- {"type":"Feature","properties":{"mag":1.78,"place":"9 km E of Amber, Oklahoma","time":1644766835469,"updated":1644853569489,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dbtr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dbtr.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"ok","code":"2022dbtr","ids":",ok2022dbtr,","sources":",ok,","types":",dyfi,origin,phase-data,","nst":56,"dmin":0.05218975859,"rms":0.27,"gap":47,"magType":"ml","type":"earthquake","title":"M 1.8 - 9 km E of Amber, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.77483333,35.14783333,5.28]},"id":"ok2022dbtr"},
- {"type":"Feature","properties":{"mag":0.46,"place":"1km NNW of The Geysers, CA","time":1644766561750,"updated":1644768793530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692286","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692286.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":3,"net":"nc","code":"73692286","ids":",nc73692286,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01398,"rms":0.02,"gap":85,"magType":"md","type":"earthquake","title":"M 0.5 - 1km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7628326,38.7868347,2.29]},"id":"nc73692286"},
- {"type":"Feature","properties":{"mag":3.5,"place":"56 km S of Whites City, New Mexico","time":1644766493483,"updated":1644875352028,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dbtm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dbtm.geojson","felt":null,"cdi":null,"mmi":4.426,"alert":null,"status":"reviewed","tsunami":0,"sig":188,"net":"tx","code":"2022dbtm","ids":",us7000gkji,tx2022dbtm,","sources":",us,tx,","types":",origin,phase-data,shakemap,","nst":19,"dmin":0.09259288127,"rms":0.3,"gap":59,"magType":"ml","type":"earthquake","title":"M 3.5 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3921656,31.6695081,7.596923828000001]},"id":"tx2022dbtm"},
- {"type":"Feature","properties":{"mag":2.32,"place":"31 km S of Magrath, Canada","time":1644766423600,"updated":1644853828560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538279","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538279.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":83,"net":"mb","code":"80538279","ids":",mb80538279,","sources":",mb,","types":",origin,phase-data,","nst":13,"dmin":0.587,"rms":0.38,"gap":153,"magType":"ml","type":"earthquake","title":"M 2.3 - 31 km S of Magrath, Canada"},"geometry":{"type":"Point","coordinates":[-112.8263333,49.133,18.94]},"id":"mb80538279"},
- {"type":"Feature","properties":{"mag":0.17,"place":"16 km SSE of Carbonado, Washington","time":1644766279950,"updated":1644877573030,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816401","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816401.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816401","ids":",uw61816401,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.02891,"rms":0.1,"gap":146,"magType":"ml","type":"earthquake","title":"M 0.2 - 16 km SSE of Carbonado, Washington"},"geometry":{"type":"Point","coordinates":[-121.95783333333333,46.943333333333335,12.86]},"id":"uw61816401"},
- {"type":"Feature","properties":{"mag":-0.79,"place":"Mount St. Helens area, Washington","time":1644766151570,"updated":1644877191400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816396","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816396.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816396","ids":",uw61816396,","sources":",uw,","types":",origin,phase-data,","nst":5,"dmin":0.0303,"rms":0.2,"gap":292,"magType":"md","type":"earthquake","title":"M -0.8 - Mount St. Helens area, Washington"},"geometry":{"type":"Point","coordinates":[-122.15216666666667,46.18066666666667,-1.68]},"id":"uw61816396"},
- {"type":"Feature","properties":{"mag":-0.57,"place":"60 km SE of Pedro Bay, Alaska","time":1644765763860,"updated":1644884352200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91489371","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91489371.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91489371","ids":",av91489371,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.08,"gap":151,"magType":"ml","type":"earthquake","title":"M -0.6 - 60 km SE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.440666666667,59.3588333333333,2.6]},"id":"av91489371"},
- {"type":"Feature","properties":{"mag":2.6,"place":"56 km S of Whites City, New Mexico","time":1644765273191,"updated":1644781489040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkjf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkjf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"7000gkjf","ids":",us7000gkjf,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.089,"rms":0.37,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.6 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3959,31.6654,5]},"id":"us7000gkjf"},
- {"type":"Feature","properties":{"mag":1.4,"place":"120 km E of McCarthy, Alaska","time":1644764519855,"updated":1644764827482,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak022210l446","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak022210l446.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"022210l446","ids":",ak022210l446,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 120 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6605,61.4645,0]},"id":"ak022210l446"},
- {"type":"Feature","properties":{"mag":0.09,"place":"5 km W of Waterville, Washington","time":1644764396130,"updated":1644876437280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816386","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816386.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816386","ids":",uw61816386,","sources":",uw,","types":",origin,phase-data,","nst":6,"dmin":0.03165,"rms":0.07,"gap":117,"magType":"ml","type":"earthquake","title":"M 0.1 - 5 km W of Waterville, Washington"},"geometry":{"type":"Point","coordinates":[-120.14416666666666,47.644666666666666,3.13]},"id":"uw61816386"},
- {"type":"Feature","properties":{"mag":0.55,"place":"12 km NNE of Ashford, Washington","time":1644764206780,"updated":1644791050180,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816381","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816381.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"uw","code":"61816381","ids":",uw61816381,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.0246,"rms":0.13,"gap":150,"magType":"ml","type":"earthquake","title":"M 0.6 - 12 km NNE of Ashford, Washington"},"geometry":{"type":"Point","coordinates":[-121.989,46.8655,11.37]},"id":"uw61816381"},
- {"type":"Feature","properties":{"mag":1.1,"place":"31 km SE of Mina, Nevada","time":1644763914014,"updated":1644964430701,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833787","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833787.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833787","ids":",nn00833787,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.064,"rms":0.0853,"gap":147.85,"magType":"ml","type":"earthquake","title":"M 1.1 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8845,38.1639,11.1]},"id":"nn00833787"},
- {"type":"Feature","properties":{"mag":5.4,"place":"Vanuatu region","time":1644763682160,"updated":1644854359040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkjc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkjc.geojson","felt":null,"cdi":null,"mmi":2.927,"alert":"green","status":"reviewed","tsunami":0,"sig":449,"net":"us","code":"7000gkjc","ids":",us7000gkjc,","sources":",us,","types":",losspager,origin,phase-data,shakemap,","nst":null,"dmin":5.354,"rms":0.63,"gap":106,"magType":"mww","type":"earthquake","title":"M 5.4 - Vanuatu region"},"geometry":{"type":"Point","coordinates":[173.5571,-21.0277,10]},"id":"us7000gkjc"},
- {"type":"Feature","properties":{"mag":0.86,"place":"9km NW of The Geysers, CA","time":1644763378780,"updated":1644767172363,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692281","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692281.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692281","ids":",nc73692281,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.007323,"rms":0.04,"gap":91,"magType":"md","type":"earthquake","title":"M 0.9 - 9km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8263321,38.8370018,1.36]},"id":"nc73692281"},
- {"type":"Feature","properties":{"mag":2.1,"place":"18 km NNE of Sterling, Alaska","time":1644762777307,"updated":1644764596794,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0222106bk3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0222106bk3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"0222106bk3","ids":",ak0222106bk3,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 18 km NNE of Sterling, Alaska"},"geometry":{"type":"Point","coordinates":[-150.6317,60.6873,19.1]},"id":"ak0222106bk3"},
- {"type":"Feature","properties":{"mag":0.47,"place":"2km NNW of The Geysers, CA","time":1644762767550,"updated":1644765612200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692276","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692276.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":3,"net":"nc","code":"73692276","ids":",nc73692276,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.01208,"rms":0.03,"gap":78,"magType":"md","type":"earthquake","title":"M 0.5 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7646637,38.7891655,1.74]},"id":"nc73692276"},
- {"type":"Feature","properties":{"mag":2.8,"place":"55 km S of Whites City, New Mexico","time":1644762710286,"updated":1644780116040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkj8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkj8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"7000gkj8","ids":",us7000gkj8,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.095,"rms":0.22,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.8 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3889,31.6721,5]},"id":"us7000gkj8"},
- {"type":"Feature","properties":{"mag":4.5,"place":"76 km NNW of Wanaka, New Zealand","time":1644762678691,"updated":1644784158541,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkj7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkj7.geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkj7","ids":",us7000gkj7,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.769,"rms":0.46,"gap":86,"magType":"mb","type":"earthquake","title":"M 4.5 - 76 km NNW of Wanaka, New Zealand"},"geometry":{"type":"Point","coordinates":[168.7354,-44.084,6.9]},"id":"us7000gkj7"},
- {"type":"Feature","properties":{"mag":0.28,"place":"13km WNW of Anza, CA","time":1644762460960,"updated":1644763949905,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184752","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184752.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40184752","ids":",ci40184752,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.0357,"rms":0.17,"gap":66,"magType":"ml","type":"earthquake","title":"M 0.3 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8065,33.589,5.92]},"id":"ci40184752"},
- {"type":"Feature","properties":{"mag":-0.13,"place":"1km NNW of The Geysers, CA","time":1644762114610,"updated":1645072694250,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692271","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692271.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73692271","ids":",nc73692271,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.011,"rms":0.01,"gap":77,"magType":"md","type":"earthquake","title":"M -0.1 - 1km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7611667,38.7896667,1.48]},"id":"nc73692271"},
- {"type":"Feature","properties":{"mag":2.09,"place":"15 km NNE of Pāhala, Hawaii","time":1644762041780,"updated":1644889523250,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915922","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915922.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"hv","code":"72915922","ids":",hv72915922,","sources":",hv,","types":",origin,phase-data,","nst":48,"dmin":null,"rms":0.13,"gap":78,"magType":"md","type":"earthquake","title":"M 2.1 - 15 km NNE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.439333333333,19.3415,7.92]},"id":"hv72915922"},
- {"type":"Feature","properties":{"mag":2.14,"place":"9 km SE of La Parguera, Puerto Rico","time":1644761575050,"updated":1644770416290,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334603","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334603.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"pr","code":"71334603","ids":",pr71334603,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.08,"gap":253,"magType":"md","type":"earthquake","title":"M 2.1 - 9 km SE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9823333333333,17.9091666666667,14.03]},"id":"pr71334603"},
- {"type":"Feature","properties":{"mag":1.7,"place":"40 km SW of Cantwell, Alaska","time":1644760980351,"updated":1644761190101,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220zzzdf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220zzzdf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02220zzzdf","ids":",ak02220zzzdf,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.96,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 40 km SW of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-149.4929,63.1179,75.8]},"id":"ak02220zzzdf"},
- {"type":"Feature","properties":{"mag":1.11,"place":"14km SW of Searles Valley, CA","time":1644760956350,"updated":1644872221726,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184728","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184728.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"ci","code":"40184728","ids":",ci40184728,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.1134,"rms":0.13,"gap":79,"magType":"ml","type":"earthquake","title":"M 1.1 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5248333,35.688,6.89]},"id":"ci40184728"},
- {"type":"Feature","properties":{"mag":1.35,"place":"19km N of Yucca Valley, CA","time":1644760907350,"updated":1644763984608,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184720","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184720.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":28,"net":"ci","code":"40184720","ids":",ci40184720,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.0534,"rms":0.1,"gap":140,"magType":"ml","type":"earthquake","title":"M 1.4 - 19km N of Yucca Valley, CA"},"geometry":{"type":"Point","coordinates":[-116.4463333,34.2835,5.37]},"id":"ci40184720"},
- {"type":"Feature","properties":{"mag":0.96,"place":"10km W of Round Valley, CA","time":1644760879090,"updated":1644782054845,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692266","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692266.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"nc","code":"73692266","ids":",nc73692266,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.1359,"rms":0.05,"gap":143,"magType":"md","type":"earthquake","title":"M 1.0 - 10km W of Round Valley, CA"},"geometry":{"type":"Point","coordinates":[-118.7031667,37.4311667,14.54]},"id":"nc73692266"},
- {"type":"Feature","properties":{"mag":3.3,"place":"118 km E of McCarthy, Alaska","time":1644760492419,"updated":1644762235040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkj1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkj1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"7000gkj1","ids":",ak02220zpl8n,us7000gkj1,","sources":",ak,us,","types":",origin,phase-data,","nst":null,"dmin":0.642,"rms":0.9,"gap":100,"magType":"ml","type":"earthquake","title":"M 3.3 - 118 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6942,61.499,10]},"id":"us7000gkj1"},
- {"type":"Feature","properties":{"mag":0.99,"place":"4 km W of Point Roberts, Washington","time":1644760244360,"updated":1644882582210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816376","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816376.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"uw","code":"61816376","ids":",uw61816376,","sources":",uw,","types":",origin,phase-data,","nst":13,"dmin":0.2458,"rms":0.34,"gap":169,"magType":"ml","type":"earthquake","title":"M 1.0 - 4 km W of Point Roberts, Washington"},"geometry":{"type":"Point","coordinates":[-123.14183333333334,48.987,22.95]},"id":"uw61816376"},
- {"type":"Feature","properties":{"mag":1.6,"place":"45 km SSE of Manley Hot Springs, Alaska","time":1644759877424,"updated":1644760648536,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220zneye","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220zneye.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02220zneye","ids":",ak02220zneye,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.89,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 45 km SSE of Manley Hot Springs, Alaska"},"geometry":{"type":"Point","coordinates":[-150.2141,64.6306,4.5]},"id":"ak02220zneye"},
- {"type":"Feature","properties":{"mag":0.34,"place":"13 km S of Morton, Washington","time":1644759511180,"updated":1644882090270,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816371","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816371.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"uw","code":"61816371","ids":",uw61816371,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.09243,"rms":0.16,"gap":119,"magType":"ml","type":"earthquake","title":"M 0.3 - 13 km S of Morton, Washington"},"geometry":{"type":"Point","coordinates":[-122.25383333333333,46.4395,8.55]},"id":"uw61816371"},
- {"type":"Feature","properties":{"mag":0.21,"place":"20km ESE of Anza, CA","time":1644759412590,"updated":1644871862177,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184712","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184712.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40184712","ids":",ci40184712,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.07197,"rms":0.15,"gap":63,"magType":"ml","type":"earthquake","title":"M 0.2 - 20km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4818333,33.4686667,11.37]},"id":"ci40184712"},
- {"type":"Feature","properties":{"mag":3.48,"place":"69 km N of Brenas, Puerto Rico","time":1644759347420,"updated":1644763969327,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022044003","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022044003.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":186,"net":"pr","code":"2022044003","ids":",pr2022044003,","sources":",pr,","types":",origin,phase-data,","nst":14,"dmin":0.6418,"rms":0.45,"gap":272,"magType":"md","type":"earthquake","title":"M 3.5 - 69 km N of Brenas, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.3516,19.0938,23]},"id":"pr2022044003"},
- {"type":"Feature","properties":{"mag":0.39,"place":"8km NW of The Geysers, CA","time":1644759121650,"updated":1644761053739,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692261","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692261.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692261","ids":",nc73692261,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.009463,"rms":0.02,"gap":56,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8146667,38.8321648,1.58]},"id":"nc73692261"},
- {"type":"Feature","properties":{"mag":-0.46,"place":"38 km NE of Amboy, Washington","time":1644759010820,"updated":1644878215560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816366","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816366.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816366","ids":",uw61816366,","sources":",uw,","types":",origin,phase-data,","nst":5,"dmin":0.0121,"rms":0.1,"gap":256,"magType":"md","type":"earthquake","title":"M -0.5 - 38 km NE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.169,46.196333333333335,-0.18]},"id":"uw61816366"},
- {"type":"Feature","properties":{"mag":1.3,"place":"26 km SE of Fallon Station, Nevada","time":1644758622579,"updated":1644955645268,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833784","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833784.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833784","ids":",nn00833784,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.376,"rms":0.1261,"gap":88.47,"magType":"ml","type":"earthquake","title":"M 1.3 - 26 km SE of Fallon Station, Nevada"},"geometry":{"type":"Point","coordinates":[-118.524,39.2326,0.4]},"id":"nn00833784"},
- {"type":"Feature","properties":{"mag":1.3,"place":"27 km SE of Fallon Station, Nevada","time":1644758192491,"updated":1644770966640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833781","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833781.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833781","ids":",nn00833781,","sources":",nn,","types":",origin,phase-data,","nst":22,"dmin":0.368,"rms":0.1779,"gap":87.4,"magType":"ml","type":"earthquake","title":"M 1.3 - 27 km SE of Fallon Station, Nevada"},"geometry":{"type":"Point","coordinates":[-118.5221,39.2186,0]},"id":"nn00833781"},
- {"type":"Feature","properties":{"mag":4.3,"place":"132 km SE of Kushiro, Japan","time":1644758077946,"updated":1645125309040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000glq1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000glq1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000glq1","ids":",us7000glq1,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.915,"rms":0.47,"gap":138,"magType":"mb","type":"earthquake","title":"M 4.3 - 132 km SE of Kushiro, Japan"},"geometry":{"type":"Point","coordinates":[145.4294,42.0719,10]},"id":"us7000glq1"},
- {"type":"Feature","properties":{"mag":1.6,"place":"22 km SW of Tyonek, Alaska","time":1644757789898,"updated":1644758063708,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220zfxwj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220zfxwj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02220zfxwj","ids":",ak02220zfxwj,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 22 km SW of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4815,60.9508,63.2]},"id":"ak02220zfxwj"},
- {"type":"Feature","properties":{"mag":2.7,"place":"57 km S of Whites City, New Mexico","time":1644757158809,"updated":1644757667040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkis","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkis.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"7000gkis","ids":",us7000gkis,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.089,"rms":0.17,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.7 - 57 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3966,31.657,7.57]},"id":"us7000gkis"},
- {"type":"Feature","properties":{"mag":1.2,"place":"34 km SSW of Alamo, Nevada","time":1644756748936,"updated":1645046601568,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833981","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833981.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833981","ids":",nn00833981,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.495,"rms":0.1428,"gap":354.12,"magType":"ml","type":"earthquake","title":"M 1.2 - 34 km SSW of Alamo, Nevada"},"geometry":{"type":"Point","coordinates":[-115.3332,37.0826,0]},"id":"nn00833981"},
- {"type":"Feature","properties":{"mag":0.67,"place":"4km SW of Gonzales, CA","time":1644756480630,"updated":1645038851724,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692256","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692256.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"nc","code":"73692256","ids":",nc73692256,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.07923,"rms":0.11,"gap":71,"magType":"md","type":"earthquake","title":"M 0.7 - 4km SW of Gonzales, CA"},"geometry":{"type":"Point","coordinates":[-121.481,36.4848333,8.17]},"id":"nc73692256"},
- {"type":"Feature","properties":{"mag":3.26,"place":"68 km N of Brenas, Puerto Rico","time":1644755493710,"updated":1644769358870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334578","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334578.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":164,"net":"pr","code":"71334578","ids":",pr71334578,","sources":",pr,","types":",origin,phase-data,","nst":16,"dmin":null,"rms":0.28,"gap":287,"magType":"md","type":"earthquake","title":"M 3.3 - 68 km N of Brenas, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.3705,19.0836666666667,35.81]},"id":"pr71334578"},
- {"type":"Feature","properties":{"mag":3.47,"place":"Puerto Rico region","time":1644755312360,"updated":1644759812672,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022044001","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022044001.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":185,"net":"pr","code":"2022044001","ids":",us7000gkip,pr2022044001,","sources":",us,pr,","types":",origin,phase-data,","nst":22,"dmin":0.6325,"rms":0.31,"gap":235,"magType":"md","type":"earthquake","title":"M 3.5 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-66.402,19.0966,21]},"id":"pr2022044001"},
- {"type":"Feature","properties":{"mag":2.6,"place":"91 km WSW of Elfin Cove, Alaska","time":1644755307456,"updated":1644756754040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220yyjdr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220yyjdr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":104,"net":"ak","code":"02220yyjdr","ids":",us7000gkiq,ak02220yyjdr,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 91 km WSW of Elfin Cove, Alaska"},"geometry":{"type":"Point","coordinates":[-137.7948,57.9011,5.9]},"id":"ak02220yyjdr"},
- {"type":"Feature","properties":{"mag":1.8,"place":"9 km ESE of Denali National Park, Alaska","time":1644755083086,"updated":1644755699073,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220yxphr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220yxphr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02220yxphr","ids":",ak02220yxphr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.06,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 9 km ESE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.552,63.4993,20]},"id":"ak02220yxphr"},
- {"type":"Feature","properties":{"mag":1.39,"place":"14km WSW of Searles Valley, CA","time":1644754555140,"updated":1644868353930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184696","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184696.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"ci","code":"40184696","ids":",ci40184696,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.1054,"rms":0.19,"gap":91,"magType":"ml","type":"earthquake","title":"M 1.4 - 14km WSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.548,35.7181667,2.87]},"id":"ci40184696"},
- {"type":"Feature","properties":{"mag":3.5,"place":"66 km N of Brenas, Puerto Rico","time":1644754242060,"updated":1644759692720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022044000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022044000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":188,"net":"pr","code":"2022044000","ids":",pr2022044000,","sources":",pr,","types":",origin,phase-data,","nst":18,"dmin":0.6008,"rms":0.49,"gap":270,"magType":"md","type":"earthquake","title":"M 3.5 - 66 km N of Brenas, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.4063,19.0651,31]},"id":"pr2022044000"},
- {"type":"Feature","properties":{"mag":1.8,"place":"149 km WNW of Haines Junction, Canada","time":1644753951812,"updated":1644754215976,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220ytnkd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220ytnkd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02220ytnkd","ids":",ak02220ytnkd,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 149 km WNW of Haines Junction, Canada"},"geometry":{"type":"Point","coordinates":[-139.9493,61.3854,12.3]},"id":"ak02220ytnkd"},
- {"type":"Feature","properties":{"mag":1.07,"place":"4 km SE of La Parguera, Puerto Rico","time":1644753509930,"updated":1644767945613,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022044002","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022044002.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"pr","code":"2022044002","ids":",pr2022044002,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":0.0333,"rms":0.05,"gap":333,"magType":"md","type":"earthquake","title":"M 1.1 - 4 km SE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0178,17.9491,4]},"id":"pr2022044002"},
- {"type":"Feature","properties":{"mag":4.4,"place":"74 km S of Kushiro, Japan","time":1644753190178,"updated":1644754469040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkii","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkii.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gkii","ids":",us7000gkii,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.075,"rms":0.44,"gap":113,"magType":"mb","type":"earthquake","title":"M 4.4 - 74 km S of Kushiro, Japan"},"geometry":{"type":"Point","coordinates":[144.5459,42.3155,49.31]},"id":"us7000gkii"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of Cobb, CA","time":1644753121060,"updated":1644755054150,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692251","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692251.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692251","ids":",nc73692251,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.01442,"rms":0.01,"gap":95,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8099976,38.8378334,2.09]},"id":"nc73692251"},
- {"type":"Feature","properties":{"mag":2.21,"place":"15 km S of Fern Forest, Hawaii","time":1644752766290,"updated":1644890943440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915807","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915807.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":75,"net":"hv","code":"72915807","ids":",hv72915807,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.15,"gap":143,"magType":"md","type":"earthquake","title":"M 2.2 - 15 km S of Fern Forest, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.116,19.3253333333333,5.59]},"id":"hv72915807"},
- {"type":"Feature","properties":{"mag":1.3,"place":"Nevada","time":1644751510459,"updated":1644954152939,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833778","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833778.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833778","ids":",nn00833778,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.09,"rms":0.0971,"gap":114.17,"magType":"ml","type":"earthquake","title":"M 1.3 - Nevada"},"geometry":{"type":"Point","coordinates":[-117.8587,38.1824,11.2]},"id":"nn00833778"},
- {"type":"Feature","properties":{"mag":0.4,"place":"9 km ENE of Floriston, California","time":1644750964786,"updated":1644770400753,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833791","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833791.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833791","ids":",nn00833791,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.108,"rms":0.0858,"gap":91.28,"magType":"ml","type":"earthquake","title":"M 0.4 - 9 km ENE of Floriston, California"},"geometry":{"type":"Point","coordinates":[-119.9152,39.4187,8.1]},"id":"nn00833791"},
- {"type":"Feature","properties":{"mag":2.8,"place":"55 km S of Whites City, New Mexico","time":1644750958486,"updated":1644879425584,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dbkz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dbkz.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"tx","code":"2022dbkz","ids":",tx2022dbkz,us7000gki7,","sources":",tx,us,","types":",dyfi,origin,phase-data,","nst":14,"dmin":0.09224967396,"rms":0.2,"gap":59,"magType":"ml","type":"earthquake","title":"M 2.8 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.37286,31.67790378,6.157275391]},"id":"tx2022dbkz"},
- {"type":"Feature","properties":{"mag":1.4,"place":"34 km NE of Susitna North, Alaska","time":1644750781897,"updated":1644754215827,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220y9tv3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220y9tv3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02220y9tv3","ids":",ak02220y9tv3,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 34 km NE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.3069,62.3334,12.3]},"id":"ak02220y9tv3"},
- {"type":"Feature","properties":{"mag":1.96,"place":"11km NNW of Piru, CA","time":1644750564170,"updated":1644868169380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184680","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184680.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":59,"net":"ci","code":"40184680","ids":",ci40184680,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":61,"dmin":0.1168,"rms":0.25,"gap":36,"magType":"ml","type":"earthquake","title":"M 2.0 - 11km NNW of Piru, CA"},"geometry":{"type":"Point","coordinates":[-118.8395,34.505,14.6]},"id":"ci40184680"},
- {"type":"Feature","properties":{"mag":3,"place":"55 km S of Whites City, New Mexico","time":1644750337351,"updated":1644877136972,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dbkq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dbkq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"tx","code":"2022dbkq","ids":",us7000gkia,tx2022dbkq,","sources":",us,tx,","types":",origin,phase-data,","nst":19,"dmin":0.09475163282,"rms":0.2,"gap":57,"magType":"ml","type":"earthquake","title":"M 3.0 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3760417,31.67236859,7.288427734]},"id":"tx2022dbkq"},
- {"type":"Feature","properties":{"mag":3,"place":"55 km S of Whites City, New Mexico","time":1644750212274,"updated":1644877490369,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dbkn","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dbkn.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"tx","code":"2022dbkn","ids":",us7000gkih,tx2022dbkn,","sources":",us,tx,","types":",origin,phase-data,","nst":12,"dmin":0.09323810142,"rms":0.3,"gap":68,"magType":"ml","type":"earthquake","title":"M 3.0 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3739447,31.67881614,6.260107422]},"id":"tx2022dbkn"},
- {"type":"Feature","properties":{"mag":4.2,"place":"55 km S of Whites City, New Mexico","time":1644750135597,"updated":1644864517313,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dbkm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dbkm.geojson","felt":4,"cdi":2.8,"mmi":4.766,"alert":"green","status":"reviewed","tsunami":0,"sig":273,"net":"tx","code":"2022dbkm","ids":",tx2022dbkm,us7000gki3,","sources":",tx,us,","types":",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,","nst":55,"dmin":0.09845587274,"rms":0.2,"gap":56,"magType":"ml","type":"earthquake","title":"M 4.2 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.38548,31.67437675,7.416967772999999]},"id":"tx2022dbkm"},
- {"type":"Feature","properties":{"mag":1.6,"place":"30 km ENE of Girdwood, Alaska","time":1644749998339,"updated":1644750949750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220xydix","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220xydix.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02220xydix","ids":",ak02220xydix,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.23,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 30 km ENE of Girdwood, Alaska"},"geometry":{"type":"Point","coordinates":[-148.6607,61.0572,14.5]},"id":"ak02220xydix"},
- {"type":"Feature","properties":{"mag":4.7,"place":"80 km NNW of Wanaka, New Zealand","time":1644749149719,"updated":1644821461040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gki0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gki0.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gki0","ids":",us7000gki0,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.805,"rms":0.55,"gap":76,"magType":"mb","type":"earthquake","title":"M 4.7 - 80 km NNW of Wanaka, New Zealand"},"geometry":{"type":"Point","coordinates":[168.6699,-44.0606,10]},"id":"us7000gki0"},
- {"type":"Feature","properties":{"mag":1.68,"place":"6km WNW of Fontana, CA","time":1644749051660,"updated":1644764072660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184664","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184664.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"ci","code":"40184664","ids":",ci40184664,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":62,"dmin":0.03227,"rms":0.18,"gap":34,"magType":"ml","type":"earthquake","title":"M 1.7 - 6km WNW of Fontana, CA"},"geometry":{"type":"Point","coordinates":[-117.5143333,34.1143333,14]},"id":"ci40184664"},
- {"type":"Feature","properties":{"mag":1.78,"place":"6 km WSW of Guánica, Puerto Rico","time":1644747875680,"updated":1644751536830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334553","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334553.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"pr","code":"71334553","ids":",pr71334553,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.07,"gap":208,"magType":"md","type":"earthquake","title":"M 1.8 - 6 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9658333333333,17.9535,13.87]},"id":"pr71334553"},
- {"type":"Feature","properties":{"mag":3.7,"place":"190 km SSE of Atka, Alaska","time":1644747253549,"updated":1644749102040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkhv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkhv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":211,"net":"us","code":"7000gkhv","ids":",us7000gkhv,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.716,"rms":0.7,"gap":242,"magType":"mb","type":"earthquake","title":"M 3.7 - 190 km SSE of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-173.3958,50.5622,10]},"id":"us7000gkhv"},
- {"type":"Feature","properties":{"mag":4.6,"place":"8 km WNW of Culaman, Philippines","time":1644747138346,"updated":1644756739077,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkhu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkhu.geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gkhu","ids":",us7000gkhu,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.061,"rms":0.59,"gap":107,"magType":"mb","type":"earthquake","title":"M 4.6 - 8 km WNW of Culaman, Philippines"},"geometry":{"type":"Point","coordinates":[125.5894,6.0018,81.68]},"id":"us7000gkhu"},
- {"type":"Feature","properties":{"mag":2.6,"place":"119 km E of McCarthy, Alaska","time":1644746981479,"updated":1644752690040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkhm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkhm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"7000gkhm","ids":",ak02220xnmf0,us7000gkhm,","sources":",ak,us,","types":",origin,phase-data,","nst":null,"dmin":0.65,"rms":0.69,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.6 - 119 km E of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.6826,61.5046,3.55]},"id":"us7000gkhm"},
- {"type":"Feature","properties":{"mag":1,"place":"33 km SW of Alamo, Nevada","time":1644746568858,"updated":1644970381142,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833927","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833927.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833927","ids":",nn00833927,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.429,"rms":0.1424,"gap":319.46,"magType":"ml","type":"earthquake","title":"M 1.0 - 33 km SW of Alamo, Nevada"},"geometry":{"type":"Point","coordinates":[-115.4489,37.1672,0]},"id":"nn00833927"},
- {"type":"Feature","properties":{"mag":4.9,"place":"Reykjanes Ridge","time":1644746544222,"updated":1644748062040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkhr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkhr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkhr","ids":",us7000gkhr,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":7.244,"rms":0.45,"gap":93,"magType":"mb","type":"earthquake","title":"M 4.9 - Reykjanes Ridge"},"geometry":{"type":"Point","coordinates":[-33.1807,57.5134,10]},"id":"us7000gkhr"},
- {"type":"Feature","properties":{"mag":1.5,"place":"40 km NW of Ninilchik, Alaska","time":1644746455694,"updated":1644747042259,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220xlq2m","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220xlq2m.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02220xlq2m","ids":",ak02220xlq2m,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 40 km NW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.2504,60.2759,80.6]},"id":"ak02220xlq2m"},
- {"type":"Feature","properties":{"mag":4.7,"place":"Reykjanes Ridge","time":1644746429302,"updated":1644747629040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkhl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkhl.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gkhl","ids":",us7000gkhl,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":8.233,"rms":0.84,"gap":58,"magType":"mb","type":"earthquake","title":"M 4.7 - Reykjanes Ridge"},"geometry":{"type":"Point","coordinates":[-33.4226,57.6563,10]},"id":"us7000gkhl"},
- {"type":"Feature","properties":{"mag":1.9,"place":"27 km ENE of Torrey, Utah","time":1644746325470,"updated":1644852580050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481887","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481887.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"uu","code":"60481887","ids":",uu60481887,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.4721,"rms":0.06,"gap":114,"magType":"ml","type":"earthquake","title":"M 1.9 - 27 km ENE of Torrey, Utah"},"geometry":{"type":"Point","coordinates":[-111.115,38.374,8.24]},"id":"uu60481887"},
- {"type":"Feature","properties":{"mag":1.76,"place":"22km NW of San Simeon, CA","time":1644746136950,"updated":1645049590758,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692246","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692246.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"nc","code":"73692246","ids":",nc73692246,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.1917,"rms":0.08,"gap":180,"magType":"md","type":"earthquake","title":"M 1.8 - 22km NW of San Simeon, CA"},"geometry":{"type":"Point","coordinates":[-121.336,35.804,7.04]},"id":"nc73692246"},
- {"type":"Feature","properties":{"mag":0.4,"place":"14km WSW of Searles Valley, CA","time":1644745799210,"updated":1644867299578,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184640","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184640.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40184640","ids":",ci40184640,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.0893,"rms":0.13,"gap":77,"magType":"ml","type":"earthquake","title":"M 0.4 - 14km WSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5566667,35.7326667,11.18]},"id":"ci40184640"},
- {"type":"Feature","properties":{"mag":1.3,"place":"31 km SE of Mina, Nevada","time":1644743702583,"updated":1644950261038,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833775","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833775.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833775","ids":",nn00833775,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.058,"rms":0.0795,"gap":109.86,"magType":"ml","type":"earthquake","title":"M 1.3 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8934,38.1654,10.2]},"id":"nn00833775"},
- {"type":"Feature","properties":{"mag":2.21,"place":"7 km SSE of Guánica, Puerto Rico","time":1644743586360,"updated":1644745693410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334543","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334543.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":75,"net":"pr","code":"71334543","ids":",pr71334543,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.14,"gap":232,"magType":"md","type":"earthquake","title":"M 2.2 - 7 km SSE of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8876666666667,17.903,13.81]},"id":"pr71334543"},
- {"type":"Feature","properties":{"mag":1.2,"place":"27 km NNW of Benton, California","time":1644743011426,"updated":1645045855151,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833773","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833773.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833773","ids":",nn00833773,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.207,"rms":0.1317,"gap":209.65,"magType":"ml","type":"earthquake","title":"M 1.2 - 27 km NNW of Benton, California"},"geometry":{"type":"Point","coordinates":[-118.5842,38.0543,8.3]},"id":"nn00833773"},
- {"type":"Feature","properties":{"mag":-0.11,"place":"46 km WNW of Tyonek, Alaska","time":1644742869180,"updated":1644886798730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91489046","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91489046.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91489046","ids":",av91489046,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.12,"gap":253,"magType":"ml","type":"earthquake","title":"M -0.1 - 46 km WNW of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-151.941166666667,61.218,19]},"id":"av91489046"},
- {"type":"Feature","properties":{"mag":1.71000004,"place":"1 km NE of Pāhala, Hawaii","time":1644742426200,"updated":1644742626240,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915667","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915667.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":45,"net":"hv","code":"72915667","ids":",hv72915667,","sources":",hv,","types":",origin,phase-data,","nst":38,"dmin":null,"rms":0.119999997,"gap":97,"magType":"md","type":"earthquake","title":"M 1.7 - 1 km NE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.468338012695,19.2099990844727,34.5200004577637]},"id":"hv72915667"},
- {"type":"Feature","properties":{"mag":0.6,"place":"26 km SW of Mina, Nevada","time":1644742286108,"updated":1645045668386,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833771","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833771.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nn","code":"00833771","ids":",nn00833771,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.114,"rms":0.0732,"gap":143.8,"magType":"ml","type":"earthquake","title":"M 0.6 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3598,38.2572,8.8]},"id":"nn00833771"},
- {"type":"Feature","properties":{"mag":0.77,"place":"14km SW of Searles Valley, CA","time":1644741918260,"updated":1644867084330,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184632","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184632.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40184632","ids":",ci40184632,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.1158,"rms":0.14,"gap":78,"magType":"ml","type":"earthquake","title":"M 0.8 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5293333,35.6888333,7.72]},"id":"ci40184632"},
- {"type":"Feature","properties":{"mag":2.11999989,"place":"8 km ENE of Pāhala, Hawaii","time":1644741357390,"updated":1644741541990,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915662","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915662.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":69,"net":"hv","code":"72915662","ids":",hv72915662,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.129999995,"gap":139,"magType":"md","type":"earthquake","title":"M 2.1 - 8 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.401000976562,19.2350006103516,30.2000007629395]},"id":"hv72915662"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"7 km NE of Ashford, Washington","time":1644740616640,"updated":1644883119510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816351","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816351.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816351","ids":",uw61816351,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.0706,"rms":0.1,"gap":234,"magType":"ml","type":"earthquake","title":"M -0.1 - 7 km NE of Ashford, Washington"},"geometry":{"type":"Point","coordinates":[-121.95016666666666,46.79633333333334,5.56]},"id":"uw61816351"},
- {"type":"Feature","properties":{"mag":2.42,"place":"0 km ESE of Lluveras, Puerto Rico","time":1644740588490,"updated":1644807678341,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334518","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334518.geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":90,"net":"pr","code":"71334518","ids":",pr71334518,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":8,"dmin":null,"rms":0.07,"gap":82,"magType":"md","type":"earthquake","title":"M 2.4 - 0 km ESE of Lluveras, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8996666666667,18.0373333333333,17.66]},"id":"pr71334518"},
- {"type":"Feature","properties":{"mag":5.7,"place":"126 km W of Ternate, Indonesia","time":1644740507062,"updated":1644853501040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkgx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkgx.geojson","felt":null,"cdi":null,"mmi":4.269,"alert":"green","status":"reviewed","tsunami":0,"sig":500,"net":"us","code":"7000gkgx","ids":",us7000gkgx,","sources":",us,","types":",losspager,origin,phase-data,shakemap,","nst":null,"dmin":1.123,"rms":0.9,"gap":20,"magType":"mww","type":"earthquake","title":"M 5.7 - 126 km W of Ternate, Indonesia"},"geometry":{"type":"Point","coordinates":[126.2485,0.8869,30.34]},"id":"us7000gkgx"},
- {"type":"Feature","properties":{"mag":0.76,"place":"7km NNW of Avila Beach, CA","time":1644740464970,"updated":1645032795156,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692236","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692236.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"nc","code":"73692236","ids":",nc73692236,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.01953,"rms":0.08,"gap":72,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NNW of Avila Beach, CA"},"geometry":{"type":"Point","coordinates":[-120.7588333,35.2386667,7.13]},"id":"nc73692236"},
- {"type":"Feature","properties":{"mag":1.34,"place":"12km NNE of Pinnacles, CA","time":1644739970520,"updated":1644748693539,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692231","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692231.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":28,"net":"nc","code":"73692231","ids":",nc73692231,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.07152,"rms":0.2,"gap":143,"magType":"md","type":"earthquake","title":"M 1.3 - 12km NNE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.0970001,36.6331673,10.3]},"id":"nc73692231"},
- {"type":"Feature","properties":{"mag":0.55,"place":"3km SSW of Anderson Springs, CA","time":1644739534220,"updated":1644741253735,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692226","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692226.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":5,"net":"nc","code":"73692226","ids":",nc73692226,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.01555,"rms":0.04,"gap":206,"magType":"md","type":"earthquake","title":"M 0.6 - 3km SSW of Anderson Springs, CA"},"geometry":{"type":"Point","coordinates":[-122.7131653,38.7490005,0.79]},"id":"nc73692226"},
- {"type":"Feature","properties":{"mag":1.3,"place":"11 km S of Talkeetna, Alaska","time":1644739230799,"updated":1644741332116,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220wesvx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220wesvx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02220wesvx","ids":",ak02220wesvx,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 11 km S of Talkeetna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.0972,62.2203,21.8]},"id":"ak02220wesvx"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"9 km SE of Pāhala, Hawaii","time":1644739205360,"updated":1644739382970,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915607","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915607.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72915607","ids":",hv72915607,","sources":",hv,","types":",origin,phase-data,","nst":34,"dmin":null,"rms":0.109999999,"gap":176,"magType":"md","type":"earthquake","title":"M 1.8 - 9 km SE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.427169799805,19.1318340301514,31.8999996185303]},"id":"hv72915607"},
- {"type":"Feature","properties":{"mag":4.5,"place":"58 km N of Maumere, Indonesia","time":1644739169997,"updated":1644740499040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkgs","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkgs.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkgs","ids":",us7000gkgs,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.538,"rms":0.59,"gap":109,"magType":"mb","type":"earthquake","title":"M 4.5 - 58 km N of Maumere, Indonesia"},"geometry":{"type":"Point","coordinates":[122.3125,-8.099,10]},"id":"us7000gkgs"},
- {"type":"Feature","properties":{"mag":1.5,"place":"54 km S of Silver Peak, Nevada","time":1644739070253,"updated":1645044371833,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833768","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833768.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"nn","code":"00833768","ids":",nn00833768,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.03,"rms":0.2754,"gap":124.2,"magType":"ml","type":"earthquake","title":"M 1.5 - 54 km S of Silver Peak, Nevada"},"geometry":{"type":"Point","coordinates":[-117.656,37.2617,8]},"id":"nn00833768"},
- {"type":"Feature","properties":{"mag":1.32,"place":"20 km WSW of Smoot, Wyoming","time":1644739064480,"updated":1644868340690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481882","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481882.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"uu","code":"60481882","ids":",uu60481882,","sources":",uu,","types":",origin,phase-data,","nst":16,"dmin":0.5691,"rms":0.29,"gap":114,"magType":"md","type":"earthquake","title":"M 1.3 - 20 km WSW of Smoot, Wyoming"},"geometry":{"type":"Point","coordinates":[-111.125,42.5218333,9.95]},"id":"uu60481882"},
- {"type":"Feature","properties":{"mag":1.6,"place":"2km ENE of Pacifica, CA","time":1644738987000,"updated":1645040411033,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692221","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692221.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nc","code":"73692221","ids":",nc73692221,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":56,"dmin":0.0167,"rms":0.05,"gap":105,"magType":"md","type":"earthquake","title":"M 1.6 - 2km ENE of Pacifica, CA"},"geometry":{"type":"Point","coordinates":[-122.467,37.6216667,11.9]},"id":"nc73692221"},
- {"type":"Feature","properties":{"mag":-0.14,"place":"Alaska Peninsula","time":1644738944280,"updated":1644784107260,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91488971","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91488971.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91488971","ids":",av91488971,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.27,"gap":138,"magType":"ml","type":"earthquake","title":"M -0.1 - Alaska Peninsula"},"geometry":{"type":"Point","coordinates":[-158.182333333333,56.8931666666667,11.07]},"id":"av91488971"},
- {"type":"Feature","properties":{"mag":1.22,"place":"5km WNW of Avenal, CA","time":1644738864790,"updated":1644982694053,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692216","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692216.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"nc","code":"73692216","ids":",nc73692216,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.09143,"rms":0.09,"gap":165,"magType":"md","type":"earthquake","title":"M 1.2 - 5km WNW of Avenal, CA"},"geometry":{"type":"Point","coordinates":[-120.182,36.0265,6.22]},"id":"nc73692216"},
- {"type":"Feature","properties":{"mag":3.34,"place":"9 km E of Pāhala, Hawaii","time":1644738182520,"updated":1644875665120,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915592","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915592.geojson","felt":21,"cdi":3.4,"mmi":4.039,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"hv","code":"72915592","ids":",hv72915592,us7000gkgh,","sources":",hv,us,","types":",dyfi,origin,phase-data,shakemap,","nst":57,"dmin":null,"rms":0.13,"gap":161,"magType":"ml","type":"earthquake","title":"M 3.3 - 9 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.387,19.201,31.82]},"id":"hv72915592"},
- {"type":"Feature","properties":{"mag":4.2,"place":"Kermadec Islands region","time":1644738023404,"updated":1644752475040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkhg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkhg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gkhg","ids":",us7000gkhg,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.145,"rms":0.79,"gap":144,"magType":"mb","type":"earthquake","title":"M 4.2 - Kermadec Islands region"},"geometry":{"type":"Point","coordinates":[179.6254,-29.3475,458.58]},"id":"us7000gkhg"},
- {"type":"Feature","properties":{"mag":2.09,"place":"5 km SW of Waikoloa, Hawaii","time":1644737698690,"updated":1644894881280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915577","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915577.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"hv","code":"72915577","ids":",hv72915577,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.13,"gap":120,"magType":"md","type":"earthquake","title":"M 2.1 - 5 km SW of Waikoloa, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.828833333333,19.902,39.46]},"id":"hv72915577"},
- {"type":"Feature","properties":{"mag":1.3,"place":"3 km SE of Big Lake, Alaska","time":1644737690080,"updated":1644737965926,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220w0p63","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220w0p63.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02220w0p63","ids":",ak02220w0p63,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 3 km SE of Big Lake, Alaska"},"geometry":{"type":"Point","coordinates":[-149.9077,61.5009,39.7]},"id":"ak02220w0p63"},
- {"type":"Feature","properties":{"mag":1.07,"place":"79 km W of Adak, Alaska","time":1644737089820,"updated":1644872369880,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91488941","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91488941.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"av","code":"91488941","ids":",av91488941,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.17,"gap":270,"magType":"ml","type":"earthquake","title":"M 1.1 - 79 km W of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-177.791,51.8493333333333,-1.78]},"id":"av91488941"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644736014280,"updated":1644742993931,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692211","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692211.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692211","ids":",nc73692211,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01314,"rms":0.02,"gap":63,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8180008,38.8349991,1.69]},"id":"nc73692211"},
- {"type":"Feature","properties":{"mag":0.21,"place":"2km NNE of The Geysers, CA","time":1644735776360,"updated":1644742870916,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692206","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692206.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":1,"net":"nc","code":"73692206","ids":",nc73692206,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01087,"rms":0.01,"gap":89,"magType":"md","type":"earthquake","title":"M 0.2 - 2km NNE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.75,38.7928352,2.69]},"id":"nc73692206"},
- {"type":"Feature","properties":{"mag":5.3,"place":"South Sandwich Islands region","time":1644735250703,"updated":1644849102040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkg0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkg0.geojson","felt":null,"cdi":null,"mmi":3.923,"alert":"green","status":"reviewed","tsunami":0,"sig":432,"net":"us","code":"7000gkg0","ids":",us7000gkg0,","sources":",us,","types":",losspager,origin,phase-data,shakemap,","nst":null,"dmin":5.268,"rms":0.88,"gap":27,"magType":"mww","type":"earthquake","title":"M 5.3 - South Sandwich Islands region"},"geometry":{"type":"Point","coordinates":[-27.8756,-56.1329,99.34]},"id":"us7000gkg0"},
- {"type":"Feature","properties":{"mag":4.9,"place":"65 km S of Kushiro, Japan","time":1644735032809,"updated":1644735999040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkfy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkfy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkfy","ids":",us7000gkfy,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.889,"rms":0.98,"gap":131,"magType":"mb","type":"earthquake","title":"M 4.9 - 65 km S of Kushiro, Japan"},"geometry":{"type":"Point","coordinates":[144.2391,42.3966,42.46]},"id":"us7000gkfy"},
- {"type":"Feature","properties":{"mag":-0.74,"place":"62 km ENE of Pedro Bay, Alaska","time":1644734668230,"updated":1644871153230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91488901","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91488901.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91488901","ids":",av91488901,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.05,"gap":226,"magType":"ml","type":"earthquake","title":"M -0.7 - 62 km ENE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.113833333333,60.0428333333333,1.34]},"id":"av91488901"},
- {"type":"Feature","properties":{"mag":0.53,"place":"50 km SW of Skwentna, Alaska","time":1644734393170,"updated":1644870412560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91488896","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91488896.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"av","code":"91488896","ids":",av91488896,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.06,"gap":292,"magType":"ml","type":"earthquake","title":"M 0.5 - 50 km SW of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-152.104833333333,61.6836666666667,-1.46]},"id":"av91488896"},
- {"type":"Feature","properties":{"mag":1.2,"place":"Central California","time":1644734002571,"updated":1644962001921,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833766","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833766.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833766","ids":",nn00833766,","sources":",nn,","types":",origin,phase-data,","nst":12,"dmin":0.028,"rms":0.1294,"gap":84.68,"magType":"ml","type":"earthquake","title":"M 1.2 - Central California"},"geometry":{"type":"Point","coordinates":[-119.4025,38.5016,1.8]},"id":"nn00833766"},
- {"type":"Feature","properties":{"mag":0.5,"place":"62 km WNW of Beatty, Nevada","time":1644733610176,"updated":1644968890546,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833921","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833921.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nn","code":"00833921","ids":",nn00833921,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.16,"rms":0.3642,"gap":116.05,"magType":"ml","type":"earthquake","title":"M 0.5 - 62 km WNW of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-117.3851,37.155,14.2]},"id":"nn00833921"},
- {"type":"Feature","properties":{"mag":0.76,"place":"3km SE of The Geysers, CA","time":1644733548470,"updated":1644981254049,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692201","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692201.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"nc","code":"73692201","ids":",nc73692201,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.002925,"rms":0.04,"gap":95,"magType":"md","type":"earthquake","title":"M 0.8 - 3km SE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.728,38.76,1.96]},"id":"nc73692201"},
- {"type":"Feature","properties":{"mag":0.54,"place":"3km SE of The Geysers, CA","time":1644733400800,"updated":1644735873894,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692196","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692196.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":4,"net":"nc","code":"73692196","ids":",nc73692196,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.002773,"rms":0.03,"gap":104,"magType":"md","type":"earthquake","title":"M 0.5 - 3km SE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7283325,38.7621651,1.59]},"id":"nc73692196"},
- {"type":"Feature","properties":{"mag":1.3,"place":"50 km WNW of Ninilchik, Alaska","time":1644732909511,"updated":1644733137362,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220vb3tz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220vb3tz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02220vb3tz","ids":",ak02220vb3tz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.49,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 50 km WNW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.5328,60.1979,86.3]},"id":"ak02220vb3tz"},
- {"type":"Feature","properties":{"mag":1.4,"place":"51 km SSE of Denali National Park, Alaska","time":1644732701014,"updated":1644733137218,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220vabdr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220vabdr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02220vabdr","ids":",ak02220vabdr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 51 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.519,63.0907,10.4]},"id":"ak02220vabdr"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1644732428250,"updated":1644740350630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692191","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692191.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692191","ids":",nc73692191,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.004833,"rms":0.02,"gap":115,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8056641,38.8199997,1.26]},"id":"nc73692191"},
- {"type":"Feature","properties":{"mag":0.66,"place":"2km SW of Cobb, CA","time":1644731891910,"updated":1644737412489,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692181","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692181.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":7,"net":"nc","code":"73692181","ids":",nc73692181,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01715,"rms":0.02,"gap":124,"magType":"md","type":"earthquake","title":"M 0.7 - 2km SW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7406693,38.809166,2.67]},"id":"nc73692181"},
- {"type":"Feature","properties":{"mag":1.99,"place":"9 km E of Pāhala, Hawaii","time":1644731814980,"updated":1644732146560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915502","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915502.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":61,"net":"hv","code":"72915502","ids":",hv72915502,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.129999995,"gap":174,"magType":"ml","type":"earthquake","title":"M 2.0 - 9 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.385498046875,19.1973323822021,31.7299995422363]},"id":"hv72915502"},
- {"type":"Feature","properties":{"mag":2.20000005,"place":"Island of Hawaii, Hawaii","time":1644731754620,"updated":1644731951000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915497","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915497.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72915497","ids":",hv72915497,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.129999995,"gap":161,"magType":"md","type":"earthquake","title":"M 2.2 - Island of Hawaii, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.392837524414,19.1965007781982,32.0299987792969]},"id":"hv72915497"},
- {"type":"Feature","properties":{"mag":1.5,"place":"43 km NNE of Whittier, Alaska","time":1644731574376,"updated":1644732175190,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220uxp62","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220uxp62.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02220uxp62","ids":",ak02220uxp62,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.08,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 43 km NNE of Whittier, Alaska"},"geometry":{"type":"Point","coordinates":[-148.2906,61.1148,0]},"id":"ak02220uxp62"},
- {"type":"Feature","properties":{"mag":1.2,"place":"7 km ESE of Walker, California","time":1644731223811,"updated":1644964802094,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833765","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833765.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833765","ids":",nn00833765,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.038,"rms":0.2462,"gap":85.82,"magType":"ml","type":"earthquake","title":"M 1.2 - 7 km ESE of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3939,38.4897,0]},"id":"nn00833765"},
- {"type":"Feature","properties":{"mag":1,"place":"14 km NE of Ashford, Washington","time":1644731167010,"updated":1644770799840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816316","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816316.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"uw","code":"61816316","ids":",uw61816316,","sources":",uw,","types":",origin,phase-data,","nst":22,"dmin":0.02448,"rms":0.1,"gap":75,"magType":"ml","type":"earthquake","title":"M 1.0 - 14 km NE of Ashford, Washington"},"geometry":{"type":"Point","coordinates":[-121.91783333333333,46.86366666666667,10.18]},"id":"uw61816316"},
- {"type":"Feature","properties":{"mag":2.1,"place":"26 km E of Port Alsworth, Alaska","time":1644731095348,"updated":1644732062040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220uvzls","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220uvzls.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"02220uvzls","ids":",us7000gkfq,ak02220uvzls,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 26 km E of Port Alsworth, Alaska"},"geometry":{"type":"Point","coordinates":[-153.8407,60.2408,195.4]},"id":"ak02220uvzls"},
- {"type":"Feature","properties":{"mag":1.5,"place":"20 km WSW of Petersville, Alaska","time":1644731006116,"updated":1644731583709,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220uvpk2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220uvpk2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"02220uvpk2","ids":",ak02220uvpk2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.52,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 20 km WSW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0902,62.3967,74.1]},"id":"ak02220uvpk2"},
- {"type":"Feature","properties":{"mag":2.41,"place":"5 km SSW of Indios, Puerto Rico","time":1644730302880,"updated":1644731751500,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334513","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334513.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":89,"net":"pr","code":"71334513","ids":",pr71334513,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.15,"gap":216,"magType":"md","type":"earthquake","title":"M 2.4 - 5 km SSW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8385,17.9441666666667,11.28]},"id":"pr71334513"},
- {"type":"Feature","properties":{"mag":1.89999998,"place":"14 km ENE of Pāhala, Hawaii","time":1644729733970,"updated":1644729915530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915452","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915452.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"hv","code":"72915452","ids":",hv72915452,","sources":",hv,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.159999996,"gap":153,"magType":"md","type":"earthquake","title":"M 1.9 - 14 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.363006591797,19.2736663818359,-0.699999988079071]},"id":"hv72915452"},
- {"type":"Feature","properties":{"mag":2.48,"place":"14 km S of Fern Forest, Hawaii","time":1644729689710,"updated":1644895584520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915447","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915447.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":95,"net":"hv","code":"72915447","ids":",hv72915447,","sources":",hv,","types":",origin,phase-data,","nst":45,"dmin":null,"rms":0.14,"gap":109,"magType":"ml","type":"earthquake","title":"M 2.5 - 14 km S of Fern Forest, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.139333333333,19.3318333333333,4.69]},"id":"hv72915447"},
- {"type":"Feature","properties":{"mag":0.35,"place":"7km NW of The Geysers, CA","time":1644729650860,"updated":1644735852167,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692176","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692176.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692176","ids":",nc73692176,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.003419,"rms":0.03,"gap":191,"magType":"md","type":"earthquake","title":"M 0.4 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8069992,38.8258324,2.89]},"id":"nc73692176"},
- {"type":"Feature","properties":{"mag":1.41,"place":"15km E of Seven Trees, CA","time":1644729441410,"updated":1644991945010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692171","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692171.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"nc","code":"73692171","ids":",nc73692171,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.02769,"rms":0.05,"gap":78,"magType":"md","type":"earthquake","title":"M 1.4 - 15km E of Seven Trees, CA"},"geometry":{"type":"Point","coordinates":[-121.6661667,37.2861667,3.33]},"id":"nc73692171"},
- {"type":"Feature","properties":{"mag":1.02,"place":"12km NE of Little Lake, CA","time":1644729200640,"updated":1644866845677,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184584","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184584.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40184584","ids":",ci40184584,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02647,"rms":0.11,"gap":72,"magType":"ml","type":"earthquake","title":"M 1.0 - 12km NE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.805,36.0088333,1.63]},"id":"ci40184584"},
- {"type":"Feature","properties":{"mag":0.1,"place":"68 km W of Tyonek, Alaska","time":1644729176810,"updated":1644869473430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91488836","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91488836.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91488836","ids":",av91488836,","sources":",av,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.08,"gap":173,"magType":"ml","type":"earthquake","title":"M 0.1 - 68 km W of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.395333333333,61.0216666666667,7.22]},"id":"av91488836"},
- {"type":"Feature","properties":{"mag":3.5,"place":"56 km S of Whites City, New Mexico","time":1644729112128,"updated":1644876066870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dayy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dayy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":188,"net":"tx","code":"2022dayy","ids":",us7000gkfh,tx2022dayy,","sources":",us,tx,","types":",origin,phase-data,","nst":15,"dmin":0.09846342032,"rms":0.3,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.5 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3803075,31.66774561,7.185595703]},"id":"tx2022dayy"},
- {"type":"Feature","properties":{"mag":0.39,"place":"8km ESE of Valle Vista, CA","time":1644729099320,"updated":1644866568651,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184576","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184576.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40184576","ids":",ci40184576,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.0812,"rms":0.08,"gap":96,"magType":"ml","type":"earthquake","title":"M 0.4 - 8km ESE of Valle Vista, CA"},"geometry":{"type":"Point","coordinates":[-116.8161667,33.707,14.52]},"id":"ci40184576"},
- {"type":"Feature","properties":{"mag":3.7,"place":"55 km S of Whites City, New Mexico","time":1644729028356,"updated":1644874006804,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dayw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dayw.geojson","felt":null,"cdi":null,"mmi":4.293,"alert":null,"status":"reviewed","tsunami":0,"sig":211,"net":"tx","code":"2022dayw","ids":",us7000gkfg,tx2022dayw,","sources":",us,tx,","types":",origin,phase-data,shakemap,","nst":20,"dmin":0.09956208986,"rms":0.3,"gap":58,"magType":"ml","type":"earthquake","title":"M 3.7 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3816876,31.67164338,7.622631836000001]},"id":"tx2022dayw"},
- {"type":"Feature","properties":{"mag":0.96,"place":"16km E of Seven Trees, CA","time":1644729021590,"updated":1644887711604,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692166","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692166.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"nc","code":"73692166","ids":",nc73692166,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02648,"rms":0.07,"gap":80,"magType":"md","type":"earthquake","title":"M 1.0 - 16km E of Seven Trees, CA"},"geometry":{"type":"Point","coordinates":[-121.6615,37.2838333,3.01]},"id":"nc73692166"},
- {"type":"Feature","properties":{"mag":1.06,"place":"3km SW of Salton City, CA","time":1644728979750,"updated":1644865999603,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184568","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184568.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40184568","ids":",ci40184568,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":45,"dmin":0.001797,"rms":0.2,"gap":87,"magType":"ml","type":"earthquake","title":"M 1.1 - 3km SW of Salton City, CA"},"geometry":{"type":"Point","coordinates":[-115.9845,33.2815,5.04]},"id":"ci40184568"},
- {"type":"Feature","properties":{"mag":0.19,"place":"12km ENE of Mammoth Lakes, CA","time":1644728661910,"updated":1644784093066,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc71127179","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc71127179.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nc","code":"71127179","ids":",nc71127179,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.02954,"rms":0.04,"gap":153,"magType":"md","type":"earthquake","title":"M 0.2 - 12km ENE of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.8505,37.6651667,0.56]},"id":"nc71127179"},
- {"type":"Feature","properties":{"mag":1.22,"place":"5km NNW of Pinnacles, CA","time":1644728657780,"updated":1644979933784,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692156","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692156.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"nc","code":"73692156","ids":",nc73692156,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.02073,"rms":0.04,"gap":119,"magType":"md","type":"earthquake","title":"M 1.2 - 5km NNW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.1596667,36.5708333,3.61]},"id":"nc73692156"},
- {"type":"Feature","properties":{"mag":1.9,"place":"12 km SW of Butte, Alaska","time":1644728518663,"updated":1644728717909,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220umrzu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220umrzu.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02220umrzu","ids":",ak02220umrzu,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.18,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 12 km SW of Butte, Alaska"},"geometry":{"type":"Point","coordinates":[-149.184,61.4597,66.3]},"id":"ak02220umrzu"},
- {"type":"Feature","properties":{"mag":0.1,"place":"47 km SE of Mammoth, Wyoming","time":1644728381050,"updated":1644867289390,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481867","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481867.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uu","code":"60481867","ids":",uu60481867,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.07896,"rms":0.07,"gap":132,"magType":"md","type":"earthquake","title":"M 0.1 - 47 km SE of Mammoth, Wyoming"},"geometry":{"type":"Point","coordinates":[-110.3476667,44.6291667,6]},"id":"uu60481867"},
- {"type":"Feature","properties":{"mag":0.36,"place":"4km SW of Anderson Springs, CA","time":1644728240520,"updated":1644731172694,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692151","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692151.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692151","ids":",nc73692151,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.007785,"rms":0.04,"gap":119,"magType":"md","type":"earthquake","title":"M 0.4 - 4km SW of Anderson Springs, CA"},"geometry":{"type":"Point","coordinates":[-122.7218323,38.7541656,0.07]},"id":"nc73692151"},
- {"type":"Feature","properties":{"mag":1.07,"place":"14km WSW of Searles Valley, CA","time":1644728155240,"updated":1644865266041,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184560","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184560.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40184560","ids":",ci40184560,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.1075,"rms":0.12,"gap":77,"magType":"ml","type":"earthquake","title":"M 1.1 - 14km WSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5465,35.7163333,8.5]},"id":"ci40184560"},
- {"type":"Feature","properties":{"mag":1.04,"place":"14km N of Castaic, CA","time":1644728005900,"updated":1644772175391,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184552","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184552.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40184552","ids":",ci40184552,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.07615,"rms":0.25,"gap":82,"magType":"ml","type":"earthquake","title":"M 1.0 - 14km N of Castaic, CA"},"geometry":{"type":"Point","coordinates":[-118.6311667,34.6148333,8.6]},"id":"ci40184552"},
- {"type":"Feature","properties":{"mag":4.7,"place":"31 km SW of Nueva Concepción, Guatemala","time":1644727417797,"updated":1644998524200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkfd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkfd.geojson","felt":2,"cdi":6.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":341,"net":"us","code":"7000gkfd","ids":",us7000gkfd,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.683,"rms":0.69,"gap":174,"magType":"mb","type":"earthquake","title":"M 4.7 - 31 km SW of Nueva Concepción, Guatemala"},"geometry":{"type":"Point","coordinates":[-91.5107,14.0085,71.95]},"id":"us7000gkfd"},
- {"type":"Feature","properties":{"mag":0.91,"place":"15km E of Little Lake, CA","time":1644727283960,"updated":1644864707021,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184544","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184544.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"40184544","ids":",ci40184544,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.06823,"rms":0.07,"gap":56,"magType":"ml","type":"earthquake","title":"M 0.9 - 15km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7375,35.9288333,9.85]},"id":"ci40184544"},
- {"type":"Feature","properties":{"mag":0.95,"place":"10km ESE of Boonville, CA","time":1644727270810,"updated":1644888972855,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692146","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692146.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"nc","code":"73692146","ids":",nc73692146,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.05785,"rms":0.06,"gap":120,"magType":"md","type":"earthquake","title":"M 1.0 - 10km ESE of Boonville, CA"},"geometry":{"type":"Point","coordinates":[-123.2606667,38.9631667,3.8]},"id":"nc73692146"},
- {"type":"Feature","properties":{"mag":5.5,"place":"58 km N of Namuac, Philippines","time":1644726978921,"updated":1644813648064,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkf7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkf7.geojson","felt":7,"cdi":5,"mmi":4.262,"alert":"green","status":"reviewed","tsunami":0,"sig":469,"net":"us","code":"7000gkf7","ids":",us7000gkf7,","sources":",us,","types":",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":3.663,"rms":0.87,"gap":102,"magType":"mww","type":"earthquake","title":"M 5.5 - 58 km N of Namuac, Philippines"},"geometry":{"type":"Point","coordinates":[121.2133,19.1381,39.74]},"id":"us7000gkf7"},
- {"type":"Feature","properties":{"mag":1.83000004,"place":"9 km ENE of Pāhala, Hawaii","time":1644726768010,"updated":1644726964230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915377","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915377.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72915377","ids":",hv72915377,","sources":",hv,","types":",origin,phase-data,","nst":31,"dmin":null,"rms":0.129999995,"gap":146,"magType":"md","type":"earthquake","title":"M 1.8 - 9 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.397827148438,19.2334995269775,31.6900005340576]},"id":"hv72915377"},
- {"type":"Feature","properties":{"mag":4.5,"place":"126 km NNE of Calama, Chile","time":1644726679411,"updated":1644729719040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkf2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkf2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gkf2","ids":",us7000gkf2,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.873,"rms":0.9,"gap":51,"magType":"mb","type":"earthquake","title":"M 4.5 - 126 km NNE of Calama, Chile"},"geometry":{"type":"Point","coordinates":[-68.6102,-21.3508,122.54]},"id":"us7000gkf2"},
- {"type":"Feature","properties":{"mag":4.8,"place":"west of the Galapagos Islands","time":1644726512053,"updated":1644728684040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkf6","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkf6.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gkf6","ids":",us7000gkf6,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":15.649,"rms":0.77,"gap":221,"magType":"mb","type":"earthquake","title":"M 4.8 - west of the Galapagos Islands"},"geometry":{"type":"Point","coordinates":[-97.7478,2.2457,10]},"id":"us7000gkf6"},
- {"type":"Feature","properties":{"mag":1.9,"place":"48 km ESE of Pope-Vannoy Landing, Alaska","time":1644726182451,"updated":1644726573829,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220u5xsx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220u5xsx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02220u5xsx","ids":",ak02220u5xsx,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.06,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 48 km ESE of Pope-Vannoy Landing, Alaska"},"geometry":{"type":"Point","coordinates":[-153.6908,59.4057,120.5]},"id":"ak02220u5xsx"},
- {"type":"Feature","properties":{"mag":1.3,"place":"13 km N of Fishhook, Alaska","time":1644726006337,"updated":1644726252977,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220u5ayh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220u5ayh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"02220u5ayh","ids":",ak02220u5ayh,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.49,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 13 km N of Fishhook, Alaska"},"geometry":{"type":"Point","coordinates":[-149.2467,61.8691,20.3]},"id":"ak02220u5ayh"},
- {"type":"Feature","properties":{"mag":0.89,"place":"57 km ESE of West Yellowstone, Montana","time":1644725467730,"updated":1644859755190,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481862","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481862.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"uu","code":"60481862","ids":",uu60481862,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.04983,"rms":0.12,"gap":100,"magType":"md","type":"earthquake","title":"M 0.9 - 57 km ESE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.4775,44.4046667,4.79]},"id":"uu60481862"},
- {"type":"Feature","properties":{"mag":1.8,"place":"25 km SSE of Whittier, Alaska","time":1644725339829,"updated":1644726252832,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220u2xli","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220u2xli.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02220u2xli","ids":",ak02220u2xli,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.88,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 25 km SSE of Whittier, Alaska"},"geometry":{"type":"Point","coordinates":[-148.47,60.5714,11]},"id":"ak02220u2xli"},
- {"type":"Feature","properties":{"mag":0.99,"place":"5km NNE of Pinnacles, CA","time":1644724929980,"updated":1644979155717,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nc","code":"73692136","ids":",nc73692136,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.04633,"rms":0.06,"gap":124,"magType":"md","type":"earthquake","title":"M 1.0 - 5km NNE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.1256667,36.5751667,7.66]},"id":"nc73692136"},
- {"type":"Feature","properties":{"mag":2.9,"place":"55 km S of Whites City, New Mexico","time":1644724883810,"updated":1644877854236,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022dawp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022dawp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"tx","code":"2022dawp","ids":",us7000gkev,tx2022dawp,","sources":",us,tx,","types":",origin,phase-data,","nst":20,"dmin":0.1000254221,"rms":0.2,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.9 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3822299,31.67209952,7.262719727000001]},"id":"tx2022dawp"},
- {"type":"Feature","properties":{"mag":2.32,"place":"10 km SSE of Lares, Puerto Rico","time":1644723903980,"updated":1644727527460,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334508","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334508.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":83,"net":"pr","code":"71334508","ids":",pr71334508,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.13,"gap":155,"magType":"md","type":"earthquake","title":"M 2.3 - 10 km SSE of Lares, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8335,18.2086666666667,31.66]},"id":"pr71334508"},
- {"type":"Feature","properties":{"mag":4.4,"place":"239 km NE of Laikit, Laikit II (Dimembe), Indonesia","time":1644723851615,"updated":1644725862040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gket","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gket.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gket","ids":",us7000gket,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.681,"rms":0.98,"gap":112,"magType":"mb","type":"earthquake","title":"M 4.4 - 239 km NE of Laikit, Laikit II (Dimembe), Indonesia"},"geometry":{"type":"Point","coordinates":[126.254,3.2282,82.77]},"id":"us7000gket"},
- {"type":"Feature","properties":{"mag":3.2,"place":"212 km W of Bandon, Oregon","time":1644723769544,"updated":1644724974040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkes","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkes.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"7000gkes","ids":",us7000gkes,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.53,"rms":0.54,"gap":247,"magType":"ml","type":"earthquake","title":"M 3.2 - 212 km W of Bandon, Oregon"},"geometry":{"type":"Point","coordinates":[-126.9749,43.4806,10]},"id":"us7000gkes"},
- {"type":"Feature","properties":{"mag":1.3,"place":"31 km SE of Mina, Nevada","time":1644723481474,"updated":1644950821483,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833762","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833762.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833762","ids":",nn00833762,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.065,"rms":0.1052,"gap":110.7,"magType":"ml","type":"earthquake","title":"M 1.3 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8868,38.1689,8.5]},"id":"nn00833762"},
- {"type":"Feature","properties":{"mag":1.9,"place":"1 km SE of Guánica, Puerto Rico","time":1644723229610,"updated":1644723875610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334503","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334503.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"pr","code":"71334503","ids":",pr71334503,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.17,"gap":205,"magType":"md","type":"earthquake","title":"M 1.9 - 1 km SE of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9001666666667,17.9611666666667,14.54]},"id":"pr71334503"},
- {"type":"Feature","properties":{"mag":1.55,"place":"6 km SE of Erin Springs, Oklahoma","time":1644722966129,"updated":1644868874301,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022davo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022davo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"ok","code":"2022davo","ids":",ok2022davo,","sources":",ok,","types":",origin,phase-data,","nst":54,"dmin":0.1430719244,"rms":0.25,"gap":63,"magType":"ml","type":"earthquake","title":"M 1.6 - 6 km SE of Erin Springs, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5595,34.77233333,7]},"id":"ok2022davo"},
- {"type":"Feature","properties":{"mag":1.47,"place":"16 km SSE of Sunnyside, Utah","time":1644722858510,"updated":1644867132910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481857","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481857.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"uu","code":"60481857","ids":",uu60481857,","sources":",uu,","types":",origin,phase-data,","nst":11,"dmin":0.01691,"rms":0.14,"gap":197,"magType":"ml","type":"earthquake","title":"M 1.5 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3035,39.4216667,-2.13]},"id":"uu60481857"},
- {"type":"Feature","properties":{"mag":2.7,"place":"58 km ENE of Ugashik, Alaska","time":1644722423834,"updated":1644723275040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkei","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkei.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"7000gkei","ids":",us7000gkei,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.512,"rms":0.34,"gap":114,"magType":"ml","type":"earthquake","title":"M 2.7 - 58 km ENE of Ugashik, Alaska"},"geometry":{"type":"Point","coordinates":[-156.4671,57.6873,10]},"id":"us7000gkei"},
- {"type":"Feature","properties":{"mag":4.8,"place":"Kermadec Islands, New Zealand","time":1644722294162,"updated":1644724631040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkeu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkeu.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gkeu","ids":",us7000gkeu,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.56,"rms":0.91,"gap":146,"magType":"mb","type":"earthquake","title":"M 4.8 - Kermadec Islands, New Zealand"},"geometry":{"type":"Point","coordinates":[-178.8798,-30.5857,126.34]},"id":"us7000gkeu"},
- {"type":"Feature","properties":{"mag":2,"place":"7 km ENE of Pāhala, Hawaii","time":1644722216280,"updated":1644722409510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915322","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915322.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"hv","code":"72915322","ids":",hv72915322,","sources":",hv,","types":",origin,phase-data,","nst":40,"dmin":null,"rms":0.150000006,"gap":132,"magType":"md","type":"earthquake","title":"M 2.0 - 7 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.412338256836,19.236499786377,32.1300010681152]},"id":"hv72915322"},
- {"type":"Feature","properties":{"mag":1.07,"place":"14km WSW of Searles Valley, CA","time":1644721474960,"updated":1644764093044,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184496","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184496.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40184496","ids":",ci40184496,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.1235,"rms":0.16,"gap":93,"magType":"ml","type":"earthquake","title":"M 1.1 - 14km WSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5411667,35.7008333,13.42]},"id":"ci40184496"},
- {"type":"Feature","properties":{"mag":1.46,"place":"6km NW of The Geysers, CA","time":1644721131600,"updated":1644989156708,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692126","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692126.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":33,"net":"nc","code":"73692126","ids":",nc73692126,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":33,"dmin":0.009203,"rms":0.02,"gap":32,"magType":"md","type":"earthquake","title":"M 1.5 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7994995,38.8193321,3.22]},"id":"nc73692126"},
- {"type":"Feature","properties":{"mag":0.2,"place":"16 km NW of Sutcliffe, Nevada","time":1644719675796,"updated":1644770025924,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833790","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833790.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833790","ids":",nn00833790,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.096,"rms":0.1538,"gap":152.79,"magType":"ml","type":"earthquake","title":"M 0.2 - 16 km NW of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.7154,40.0752,17.4]},"id":"nn00833790"},
- {"type":"Feature","properties":{"mag":1.6,"place":"55 km SE of Pope-Vannoy Landing, Alaska","time":1644719594407,"updated":1644719911655,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220t18ol","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220t18ol.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02220t18ol","ids":",ak02220t18ol,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.39,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 55 km SE of Pope-Vannoy Landing, Alaska"},"geometry":{"type":"Point","coordinates":[-153.8386,59.19,95.2]},"id":"ak02220t18ol"},
- {"type":"Feature","properties":{"mag":0.88,"place":"6km NNW of The Geysers, CA","time":1644719577490,"updated":1644723250888,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692121","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692121.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73692121","ids":",nc73692121,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.01182,"rms":0.02,"gap":33,"magType":"md","type":"earthquake","title":"M 0.9 - 6km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7949982,38.8223343,2.64]},"id":"nc73692121"},
- {"type":"Feature","properties":{"mag":1.8,"place":"8 km NNW of Fox River, Alaska","time":1644719232952,"updated":1644719811241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220sztip","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220sztip.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02220sztip","ids":",ak02220sztip,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 8 km NNW of Fox River, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0325,59.9208,16.7]},"id":"ak02220sztip"},
- {"type":"Feature","properties":{"mag":0.85,"place":"2km NNW of The Geysers, CA","time":1644718897900,"updated":1644721632733,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692116","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692116.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692116","ids":",nc73692116,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.008854,"rms":0.01,"gap":107,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7611694,38.791832,2.36]},"id":"nc73692116"},
- {"type":"Feature","properties":{"mag":1.70000005,"place":"14 km S of Volcano, Hawaii","time":1644718799820,"updated":1644718990850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915267","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915267.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"hv","code":"72915267","ids":",hv72915267,","sources":",hv,","types":",origin,phase-data,","nst":36,"dmin":null,"rms":0.180000007,"gap":90,"magType":"md","type":"earthquake","title":"M 1.7 - 14 km S of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.211837768555,19.3153324127197,1.49000000953674]},"id":"hv72915267"},
- {"type":"Feature","properties":{"mag":4.9,"place":"south of the Fiji Islands","time":1644718520243,"updated":1644719633040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkea","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkea.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkea","ids":",us7000gkea,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.005,"rms":1.21,"gap":52,"magType":"mb","type":"earthquake","title":"M 4.9 - south of the Fiji Islands"},"geometry":{"type":"Point","coordinates":[-178.7459,-25.3088,360.98]},"id":"us7000gkea"},
- {"type":"Feature","properties":{"mag":0.84,"place":"2km NE of The Geysers, CA","time":1644718137100,"updated":1644720075586,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692111","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692111.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692111","ids":",nc73692111,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.00875,"rms":0.02,"gap":95,"magType":"md","type":"earthquake","title":"M 0.8 - 2km NE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7368317,38.7919998,2.31]},"id":"nc73692111"},
- {"type":"Feature","properties":{"mag":0.81,"place":"6km N of Banning, CA","time":1644718030310,"updated":1644866603890,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391964","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391964.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"37391964","ids":",ci37391964,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.08022,"rms":0.13,"gap":78,"magType":"ml","type":"earthquake","title":"M 0.8 - 6km N of Banning, CA"},"geometry":{"type":"Point","coordinates":[-116.8891667,33.9808333,14.02]},"id":"ci37391964"},
- {"type":"Feature","properties":{"mag":0.53,"place":"6km NNW of Banning, CA","time":1644718017480,"updated":1644866195840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184488","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184488.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40184488","ids":",ci40184488,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.07971,"rms":0.11,"gap":79,"magType":"ml","type":"earthquake","title":"M 0.5 - 6km NNW of Banning, CA"},"geometry":{"type":"Point","coordinates":[-116.891,33.9805,13.87]},"id":"ci40184488"},
- {"type":"Feature","properties":{"mag":1.8,"place":"24 km ENE of Susitna North, Alaska","time":1644717735208,"updated":1644718548821,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220suljm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220suljm.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"02220suljm","ids":",ak02220suljm,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.08,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 24 km ENE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.4053,62.239,35]},"id":"ak02220suljm"},
- {"type":"Feature","properties":{"mag":1.4,"place":"54 km ESE of Lovelock, Nevada","time":1644717285818,"updated":1644770023819,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833789","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833789.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00833789","ids":",nn00833789,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.233,"rms":0.4118,"gap":141.15,"magType":"ml","type":"earthquake","title":"M 1.4 - 54 km ESE of Lovelock, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8931,39.9834,0]},"id":"nn00833789"},
- {"type":"Feature","properties":{"mag":2.14,"place":"6 km ENE of Pāhala, Hawaii","time":1644716996000,"updated":1644717325700,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915237","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915237.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":70,"net":"hv","code":"72915237","ids":",hv72915237,","sources":",hv,","types":",origin,phase-data,","nst":48,"dmin":null,"rms":0.140000001,"gap":125,"magType":"ml","type":"earthquake","title":"M 2.1 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.425827026367,19.234167098999,33.5900001525879]},"id":"hv72915237"},
- {"type":"Feature","properties":{"mag":1.5,"place":"6 km E of Pāhala, Hawaii","time":1644716954240,"updated":1644898744560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915232","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915232.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"hv","code":"72915232","ids":",hv72915232,","sources":",hv,","types":",origin,phase-data,","nst":17,"dmin":null,"rms":0.11,"gap":216,"magType":"md","type":"earthquake","title":"M 1.5 - 6 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.417166666667,19.2031666666667,32.17]},"id":"hv72915232"},
- {"type":"Feature","properties":{"mag":1.04,"place":"4km SE of Johannesburg, CA","time":1644716930430,"updated":1644764178618,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184480","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184480.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40184480","ids":",ci40184480,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.1452,"rms":0.21,"gap":113,"magType":"ml","type":"earthquake","title":"M 1.0 - 4km SE of Johannesburg, CA"},"geometry":{"type":"Point","coordinates":[-117.6006667,35.3501667,2.33]},"id":"ci40184480"},
- {"type":"Feature","properties":{"mag":-0.2,"place":"52 km ENE of Beatty, Nevada","time":1644716852252,"updated":1644966663241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833918","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833918.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833918","ids":",nn00833918,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.115,"rms":0.1275,"gap":137.6,"magType":"ml","type":"earthquake","title":"M -0.2 - 52 km ENE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2222,37.1124,0]},"id":"nn00833918"},
- {"type":"Feature","properties":{"mag":1.4,"place":"61 km NNW of Petersville, Alaska","time":1644715918203,"updated":1644716674985,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220sfk8x","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220sfk8x.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"02220sfk8x","ids":",ak02220sfk8x,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.28,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 61 km NNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0673,63.0347,119.6]},"id":"ak02220sfk8x"},
- {"type":"Feature","properties":{"mag":2.13,"place":"5km E of Covelo, CA","time":1644715485060,"updated":1644987609561,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692101","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692101.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"nc","code":"73692101","ids":",nc73692101,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.09323,"rms":0.11,"gap":42,"magType":"md","type":"earthquake","title":"M 2.1 - 5km E of Covelo, CA"},"geometry":{"type":"Point","coordinates":[-123.1885,39.7991667,7.38]},"id":"nc73692101"},
- {"type":"Feature","properties":{"mag":4.3,"place":"57 km NNW of Ende, Indonesia","time":1644715353281,"updated":1644716733040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gke3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gke3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gke3","ids":",us7000gke3,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.762,"rms":0.56,"gap":144,"magType":"mb","type":"earthquake","title":"M 4.3 - 57 km NNW of Ende, Indonesia"},"geometry":{"type":"Point","coordinates":[121.5274,-8.3366,195.2]},"id":"us7000gke3"},
- {"type":"Feature","properties":{"mag":1.9,"place":"27 km NNW of Sutton-Alpine, Alaska","time":1644714399483,"updated":1644716133456,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220sa2mz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220sa2mz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"02220sa2mz","ids":",ak02220sa2mz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 27 km NNW of Sutton-Alpine, Alaska"},"geometry":{"type":"Point","coordinates":[-149.0321,61.9898,34.2]},"id":"ak02220sa2mz"},
- {"type":"Feature","properties":{"mag":1.7,"place":"37 km W of Tatitlek, Alaska","time":1644714373495,"updated":1644714660258,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220sa0o5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220sa0o5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"02220sa0o5","ids":",ak02220sa0o5,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.8,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 37 km W of Tatitlek, Alaska"},"geometry":{"type":"Point","coordinates":[-147.3584,60.9254,4.4]},"id":"ak02220sa0o5"},
- {"type":"Feature","properties":{"mag":0.27,"place":"20km E of Little Lake, CA","time":1644713923310,"updated":1644863675380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184448","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184448.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40184448","ids":",ci40184448,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.03814,"rms":0.14,"gap":51,"magType":"ml","type":"earthquake","title":"M 0.3 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6841667,35.9213333,4.28]},"id":"ci40184448"},
- {"type":"Feature","properties":{"mag":3.2,"place":"78 km SSE of Old Harbor, Alaska","time":1644713912079,"updated":1644714760591,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220rzrqz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220rzrqz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":158,"net":"ak","code":"02220rzrqz","ids":",us7000gkdz,ak02220rzrqz,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.35,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 78 km SSE of Old Harbor, Alaska"},"geometry":{"type":"Point","coordinates":[-152.637,56.5955,0.1]},"id":"ak02220rzrqz"},
- {"type":"Feature","properties":{"mag":0.88,"place":"16km ESE of Julian, CA","time":1644713861470,"updated":1644861057288,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184440","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184440.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40184440","ids":",ci40184440,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":38,"dmin":0.03109,"rms":0.19,"gap":47,"magType":"ml","type":"earthquake","title":"M 0.9 - 16km ESE of Julian, CA"},"geometry":{"type":"Point","coordinates":[-116.4401667,33.0461667,8.41]},"id":"ci40184440"},
- {"type":"Feature","properties":{"mag":0.93,"place":"6km NE of Ridgemark, CA","time":1644713767740,"updated":1644781333773,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692096","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692096.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"nc","code":"73692096","ids":",nc73692096,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.05311,"rms":0.07,"gap":67,"magType":"md","type":"earthquake","title":"M 0.9 - 6km NE of Ridgemark, CA"},"geometry":{"type":"Point","coordinates":[-121.3136667,36.8505,8.27]},"id":"nc73692096"},
- {"type":"Feature","properties":{"mag":0.46,"place":"2km NW of The Geysers, CA","time":1644713475510,"updated":1644716476258,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692091","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692091.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":3,"net":"nc","code":"73692091","ids":",nc73692091,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01504,"rms":0.02,"gap":127,"magType":"md","type":"earthquake","title":"M 0.5 - 2km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.770668,38.786499,2.31]},"id":"nc73692091"},
- {"type":"Feature","properties":{"mag":1.6,"place":"30 km WNW of Petersville, Alaska","time":1644713218004,"updated":1644713998271,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220rx94j","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220rx94j.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"02220rx94j","ids":",ak02220rx94j,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.66,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 30 km WNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3038,62.6078,71.4]},"id":"ak02220rx94j"},
- {"type":"Feature","properties":{"mag":0.44,"place":"10km NE of Aguanga, CA","time":1644712598680,"updated":1644860667063,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184424","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184424.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40184424","ids":",ci40184424,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.02318,"rms":0.18,"gap":47,"magType":"ml","type":"earthquake","title":"M 0.4 - 10km NE of Aguanga, CA"},"geometry":{"type":"Point","coordinates":[-116.7765,33.5005,7.96]},"id":"ci40184424"},
- {"type":"Feature","properties":{"mag":0.9,"place":"29 km SSE of Denali National Park, Alaska","time":1644710572674,"updated":1644791342836,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak02220rnsfe","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak02220rnsfe.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ak","code":"02220rnsfe","ids":",ak02220rnsfe,","sources":",ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 0.9 - 29 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3959,63.3166,1.6]},"id":"ak02220rnsfe"},
- {"type":"Feature","properties":{"mag":4.6,"place":"Pagan region, Northern Mariana Islands","time":1644710448005,"updated":1644711848040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkdv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkdv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gkdv","ids":",us7000gkdv,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.407,"rms":0.66,"gap":81,"magType":"mb","type":"earthquake","title":"M 4.6 - Pagan region, Northern Mariana Islands"},"geometry":{"type":"Point","coordinates":[145.8011,18.9529,116.75]},"id":"us7000gkdv"},
- {"type":"Feature","properties":{"mag":1.5,"place":"9 km NNE of Ridgeway, Alaska","time":1644710397547,"updated":1644710602189,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zi5nu2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zi5nu2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221zi5nu2","ids":",ak0221zi5nu2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.33,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 9 km NNE of Ridgeway, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0314,60.6129,54.1]},"id":"ak0221zi5nu2"},
- {"type":"Feature","properties":{"mag":1.12,"place":"3 km N of Deer Island, Oregon","time":1644709809520,"updated":1645053663030,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816266","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816266.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"uw","code":"61816266","ids":",uw61816266,","sources":",uw,","types":",origin,phase-data,","nst":9,"dmin":0.1169,"rms":0.06,"gap":97,"magType":"ml","type":"earthquake","title":"M 1.1 - 3 km N of Deer Island, Oregon"},"geometry":{"type":"Point","coordinates":[-122.84183333333333,45.96366666666667,21.12]},"id":"uw61816266"},
- {"type":"Feature","properties":{"mag":1.2,"place":"1 km NNW of Walker, California","time":1644709676654,"updated":1644862623425,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833760","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833760.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833760","ids":",nn00833760,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.041,"rms":0.1152,"gap":162.4,"magType":"ml","type":"earthquake","title":"M 1.2 - 1 km NNW of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.481,38.5282,6.2]},"id":"nn00833760"},
- {"type":"Feature","properties":{"mag":0.83,"place":"9km NE of Cabazon, CA","time":1644709507630,"updated":1644780886348,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184408","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184408.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40184408","ids":",ci40184408,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.07996,"rms":0.13,"gap":60,"magType":"ml","type":"earthquake","title":"M 0.8 - 9km NE of Cabazon, CA"},"geometry":{"type":"Point","coordinates":[-116.7115,33.9663333,16.44]},"id":"ci40184408"},
- {"type":"Feature","properties":{"mag":1.13,"place":"6km ENE of Pinnacles, CA","time":1644709131190,"updated":1644980413821,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692086","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692086.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"nc","code":"73692086","ids":",nc73692086,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.04434,"rms":0.08,"gap":204,"magType":"md","type":"earthquake","title":"M 1.1 - 6km ENE of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.078,36.5466667,9.47]},"id":"nc73692086"},
- {"type":"Feature","properties":{"mag":2.01,"place":"18km NNW of Morongo Valley, CA","time":1644708389910,"updated":1644764258830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184400","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184400.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"ci","code":"40184400","ids":",ci40184400,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":60,"dmin":0.1592,"rms":0.16,"gap":45,"magType":"ml","type":"earthquake","title":"M 2.0 - 18km NNW of Morongo Valley, CA"},"geometry":{"type":"Point","coordinates":[-116.6555,34.198,0.4]},"id":"ci40184400"},
- {"type":"Feature","properties":{"mag":4.9,"place":"57 km NNW of Nuku‘alofa, Tonga","time":1644708145155,"updated":1644709390040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkdr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkdr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkdr","ids":",us7000gkdr,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":6.796,"rms":0.84,"gap":76,"magType":"mb","type":"earthquake","title":"M 4.9 - 57 km NNW of Nuku‘alofa, Tonga"},"geometry":{"type":"Point","coordinates":[-175.4464,-20.6695,10]},"id":"us7000gkdr"},
- {"type":"Feature","properties":{"mag":0.96,"place":"5km NNW of Pinnacles, CA","time":1644707300630,"updated":1644969256727,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692071","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692071.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"nc","code":"73692071","ids":",nc73692071,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.01951,"rms":0.05,"gap":132,"magType":"md","type":"earthquake","title":"M 1.0 - 5km NNW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.1611667,36.5713333,3.99]},"id":"nc73692071"},
- {"type":"Feature","properties":{"mag":1.42,"place":"15km SW of Searles Valley, CA","time":1644707267830,"updated":1644780448241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184384","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184384.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"ci","code":"40184384","ids":",ci40184384,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.1079,"rms":0.12,"gap":85,"magType":"ml","type":"earthquake","title":"M 1.4 - 15km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5266667,35.681,6.43]},"id":"ci40184384"},
- {"type":"Feature","properties":{"mag":1.6,"place":"38 km W of Cantwell, Alaska","time":1644706187855,"updated":1644707015967,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zhi2br","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zhi2br.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221zhi2br","ids":",ak0221zhi2br,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.79,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 38 km W of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7236,63.42,0]},"id":"ak0221zhi2br"},
- {"type":"Feature","properties":{"mag":5,"place":"130 km WNW of Panguna, Papua New Guinea","time":1644706184940,"updated":1644707351040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkdg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkdg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":385,"net":"us","code":"7000gkdg","ids":",us7000gkdg,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.751,"rms":0.84,"gap":55,"magType":"mww","type":"earthquake","title":"M 5.0 - 130 km WNW of Panguna, Papua New Guinea"},"geometry":{"type":"Point","coordinates":[154.5029,-5.6629,93.71]},"id":"us7000gkdg"},
- {"type":"Feature","properties":{"mag":1.6,"place":"54 km SSE of Denali National Park, Alaska","time":1644705729469,"updated":1644706424537,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zhghco","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zhghco.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221zhghco","ids":",ak0221zhghco,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 54 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3735,63.0801,0]},"id":"ak0221zhghco"},
- {"type":"Feature","properties":{"mag":0.64,"place":"19km E of Little Lake, CA","time":1644705680250,"updated":1644780141210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184368","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184368.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40184368","ids":",ci40184368,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.04451,"rms":0.09,"gap":49,"magType":"ml","type":"earthquake","title":"M 0.6 - 19km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6931667,35.92,3.5]},"id":"ci40184368"},
- {"type":"Feature","properties":{"mag":2.19,"place":"7 km E of Pāhala, Hawaii","time":1644705446370,"updated":1644705777160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72915047","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72915047.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72915047","ids":",hv72915047,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.129999995,"gap":160,"magType":"ml","type":"earthquake","title":"M 2.2 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.403503417969,19.2011661529541,32.2099990844727]},"id":"hv72915047"},
- {"type":"Feature","properties":{"mag":2.1,"place":"66 km WSW of Nanwalek, Alaska","time":1644705312523,"updated":1644706193846,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zhezju","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zhezju.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"0221zhezju","ids":",ak0221zhezju,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 66 km WSW of Nanwalek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.9374,59.0575,65.6]},"id":"ak0221zhezju"},
- {"type":"Feature","properties":{"mag":1.43,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644704430770,"updated":1644879635860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049623","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049623.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"av","code":"91049623","ids":",av91049623,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.15,"gap":351,"magType":"ml","type":"earthquake","title":"M 1.4 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.319333333333,52.0356666666667,8.55]},"id":"av91049623"},
- {"type":"Feature","properties":{"mag":1.95,"place":"23km NE of Redway, CA","time":1644704261200,"updated":1645000814907,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692061","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692061.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"nc","code":"73692061","ids":",nc73692061,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.0879,"rms":0.11,"gap":49,"magType":"md","type":"earthquake","title":"M 2.0 - 23km NE of Redway, CA"},"geometry":{"type":"Point","coordinates":[-123.619,40.2571667,29.62]},"id":"nc73692061"},
- {"type":"Feature","properties":{"mag":0.3,"place":"60 km WNW of Beatty, Nevada","time":1644704162456,"updated":1644870953859,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833758","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833758.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833758","ids":",nn00833758,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.156,"rms":0.1175,"gap":160.24,"magType":"ml","type":"earthquake","title":"M 0.3 - 60 km WNW of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-117.3557,37.164,7.8]},"id":"nn00833758"},
- {"type":"Feature","properties":{"mag":1.95,"place":"12 km ESE of Crowder, Oklahoma","time":1644703641239,"updated":1644849819194,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dakx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dakx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"ok","code":"2022dakx","ids":",ok2022dakx,","sources":",ok,","types":",origin,phase-data,","nst":64,"dmin":0.1151773983,"rms":0.2,"gap":98,"magType":"ml","type":"earthquake","title":"M 2.0 - 12 km ESE of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53183333,35.099,7.22]},"id":"ok2022dakx"},
- {"type":"Feature","properties":{"mag":1.8,"place":"51 km N of Chickaloon, Alaska","time":1644703185388,"updated":1644704650141,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgyrln","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgyrln.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221zgyrln","ids":",ak0221zgyrln,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.61,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 51 km N of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.4076,62.2583,19.8]},"id":"ak0221zgyrln"},
- {"type":"Feature","properties":{"mag":2,"place":"45 km N of Valdez, Alaska","time":1644703111963,"updated":1644703357382,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgyixg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgyixg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"0221zgyixg","ids":",ak0221zgyixg,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.93,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 45 km N of Valdez, Alaska"},"geometry":{"type":"Point","coordinates":[-146.4652,61.5343,17.7]},"id":"ak0221zgyixg"},
- {"type":"Feature","properties":{"mag":0.11,"place":"66 km W of Salamatof, Alaska","time":1644703111910,"updated":1644787528870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91488376","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91488376.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91488376","ids":",av91488376,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.05,"gap":256,"magType":"ml","type":"earthquake","title":"M 0.1 - 66 km W of Salamatof, Alaska"},"geometry":{"type":"Point","coordinates":[-152.524,60.5218333333333,6.4]},"id":"av91488376"},
- {"type":"Feature","properties":{"mag":1,"place":"61 km W of Happy Valley, Alaska","time":1644702749534,"updated":1644703096585,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgx8g8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgx8g8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"ak","code":"0221zgx8g8","ids":",ak0221zgx8g8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.39,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.0 - 61 km W of Happy Valley, Alaska"},"geometry":{"type":"Point","coordinates":[-152.8253,60.0345,94.4]},"id":"ak0221zgx8g8"},
- {"type":"Feature","properties":{"mag":1.71,"place":"7 km E of Fairwinds, Canada","time":1644702668730,"updated":1645048714360,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816251","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816251.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":45,"net":"uw","code":"61816251","ids":",uw61816251,","sources":",uw,","types":",origin,phase-data,","nst":9,"dmin":0.06372,"rms":0.23,"gap":231,"magType":"ml","type":"earthquake","title":"M 1.7 - 7 km E of Fairwinds, Canada"},"geometry":{"type":"Point","coordinates":[-124.02183333333333,49.286833333333334,57.68]},"id":"uw61816251"},
- {"type":"Feature","properties":{"mag":0.95,"place":"7km E of Moreno Valley, CA","time":1644702650160,"updated":1644779983665,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184344","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184344.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40184344","ids":",ci40184344,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.02256,"rms":0.17,"gap":108,"magType":"ml","type":"earthquake","title":"M 1.0 - 7km E of Moreno Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.1493333,33.936,16.16]},"id":"ci40184344"},
- {"type":"Feature","properties":{"mag":1.3,"place":"3 km NW of Chickaloon, Alaska","time":1644702595363,"updated":1644702895961,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgwnap","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgwnap.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"0221zgwnap","ids":",ak0221zgwnap,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.34,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 3 km NW of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.5118,61.8169,16]},"id":"ak0221zgwnap"},
- {"type":"Feature","properties":{"mag":1.1,"place":"16 km NE of Yerington, Nevada","time":1644702192365,"updated":1644871141423,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833756","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833756.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833756","ids":",nn00833756,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.201,"rms":0.1205,"gap":133.22,"magType":"ml","type":"earthquake","title":"M 1.1 - 16 km NE of Yerington, Nevada"},"geometry":{"type":"Point","coordinates":[-119.0131,39.08,10.3]},"id":"nn00833756"},
- {"type":"Feature","properties":{"mag":2.3,"place":"64 km E of King Salmon, Alaska","time":1644702173783,"updated":1644702665256,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgv57c","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgv57c.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"0221zgv57c","ids":",ak0221zgv57c,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 64 km E of King Salmon, Alaska"},"geometry":{"type":"Point","coordinates":[-155.5493,58.681,144.8]},"id":"ak0221zgv57c"},
- {"type":"Feature","properties":{"mag":0.36,"place":"6km WNW of Cobb, CA","time":1644702026440,"updated":1644707772430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692046","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692046.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73692046","ids":",nc73692046,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.006044,"rms":0.03,"gap":199,"magType":"md","type":"earthquake","title":"M 0.4 - 6km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7886658,38.8325005,5.04]},"id":"nc73692046"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of Cobb, CA","time":1644701561860,"updated":1644706213277,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692041","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692041.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692041","ids":",nc73692041,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01481,"rms":0.01,"gap":86,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8083344,38.8381653,2.21]},"id":"nc73692041"},
- {"type":"Feature","properties":{"mag":2,"place":"74 km N of Chickaloon, Alaska","time":1644700647074,"updated":1644701011422,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgpq78","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgpq78.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"0221zgpq78","ids":",ak0221zgpq78,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 74 km N of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.2514,62.4585,38.4]},"id":"ak0221zgpq78"},
- {"type":"Feature","properties":{"mag":2.44,"place":"6 km SSE of Maria Antonia, Puerto Rico","time":1644700397770,"updated":1644704038680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334488","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334488.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":92,"net":"pr","code":"71334488","ids":",pr71334488,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.1,"gap":225,"magType":"md","type":"earthquake","title":"M 2.4 - 6 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8576666666667,17.9236666666667,13.06]},"id":"pr71334488"},
- {"type":"Feature","properties":{"mag":2.17,"place":"11 km E of Crowder, Oklahoma","time":1644700114219,"updated":1644851854196,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022daiz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022daiz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"ok","code":"2022daiz","ids":",ok2022daiz,","sources":",ok,","types":",origin,phase-data,","nst":52,"dmin":0.1115781046,"rms":0.22,"gap":85,"magType":"ml","type":"earthquake","title":"M 2.2 - 11 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.54966667,35.112,7.54]},"id":"ok2022daiz"},
- {"type":"Feature","properties":{"mag":1.8,"place":"37 km WNW of Nanwalek, Alaska","time":1644700096304,"updated":1644700810680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zgnrwv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zgnrwv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221zgnrwv","ids":",ak0221zgnrwv,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.87,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 37 km WNW of Nanwalek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.556,59.4391,78]},"id":"ak0221zgnrwv"},
- {"type":"Feature","properties":{"mag":1.26,"place":"5km SSE of Loma Linda, CA","time":1644699333420,"updated":1644779540891,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184328","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184328.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40184328","ids":",ci40184328,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":57,"dmin":0.07865,"rms":0.16,"gap":62,"magType":"ml","type":"earthquake","title":"M 1.3 - 5km SSE of Loma Linda, CA"},"geometry":{"type":"Point","coordinates":[-117.2323333,34.0086667,14.97]},"id":"ci40184328"},
- {"type":"Feature","properties":{"mag":5.5,"place":"central Mid-Atlantic Ridge","time":1644698933854,"updated":1644785511291,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkcm","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkcm.geojson","felt":null,"cdi":null,"mmi":0,"alert":"green","status":"reviewed","tsunami":0,"sig":465,"net":"us","code":"7000gkcm","ids":",us7000gkcm,","sources":",us,","types":",losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":9.271,"rms":0.7,"gap":79,"magType":"mww","type":"earthquake","title":"M 5.5 - central Mid-Atlantic Ridge"},"geometry":{"type":"Point","coordinates":[-19.9873,-0.5003,10]},"id":"us7000gkcm"},
- {"type":"Feature","properties":{"mag":0.62,"place":"5km NW of The Geysers, CA","time":1644698254990,"updated":1644704598102,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692031","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692031.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73692031","ids":",nc73692031,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.005626,"rms":0.02,"gap":46,"magType":"md","type":"earthquake","title":"M 0.6 - 5km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.796669,38.8134995,2.61]},"id":"nc73692031"},
- {"type":"Feature","properties":{"mag":1.99,"place":"7 km ENE of Pāhala, Hawaii","time":1644697718870,"updated":1644698049560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914892","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914892.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":61,"net":"hv","code":"72914892","ids":",hv72914892,","sources":",hv,","types":",origin,phase-data,","nst":37,"dmin":null,"rms":0.189999998,"gap":143,"magType":"ml","type":"earthquake","title":"M 2.0 - 7 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.410339355469,19.2256660461426,33.0499992370605]},"id":"hv72914892"},
- {"type":"Feature","properties":{"mag":1.1,"place":"34 km SSW of Alamo, Nevada","time":1644697442224,"updated":1644865403583,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833752","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833752.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833752","ids":",nn00833752,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.48,"rms":0.2602,"gap":199.59,"magType":"ml","type":"earthquake","title":"M 1.1 - 34 km SSW of Alamo, Nevada"},"geometry":{"type":"Point","coordinates":[-115.3511,37.0935,10.6]},"id":"nn00833752"},
- {"type":"Feature","properties":{"mag":1.99000001,"place":"8 km E of Pāhala, Hawaii","time":1644697227350,"updated":1644697424440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914882","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914882.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":61,"net":"hv","code":"72914882","ids":",hv72914882,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.150000006,"gap":166,"magType":"md","type":"earthquake","title":"M 2.0 - 8 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.397003173828,19.1898326873779,32.2200012207031]},"id":"hv72914882"},
- {"type":"Feature","properties":{"mag":1.49,"place":"24km WNW of Ludlow, CA","time":1644697113400,"updated":1644778895104,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184320","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184320.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"ci","code":"40184320","ids":",ci40184320,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.03947,"rms":0.16,"gap":67,"magType":"ml","type":"earthquake","title":"M 1.5 - 24km WNW of Ludlow, CA"},"geometry":{"type":"Point","coordinates":[-116.3825,34.835,6.32]},"id":"ci40184320"},
- {"type":"Feature","properties":{"mag":1.3,"place":"2 km SW of Coleville, California","time":1644696286855,"updated":1644719915954,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833749","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833749.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"nn","code":"00833749","ids":",nn00833749,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.037,"rms":0.1112,"gap":117.7,"magType":"ml","type":"earthquake","title":"M 1.3 - 2 km SW of Coleville, California"},"geometry":{"type":"Point","coordinates":[-119.5287,38.5498,5.6]},"id":"nn00833749"},
- {"type":"Feature","properties":{"mag":1.7,"place":"12 km WNW of Cohoe, Alaska","time":1644696276380,"updated":1644696542171,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zg1j19","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zg1j19.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"0221zg1j19","ids":",ak0221zg1j19,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.3,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 12 km WNW of Cohoe, Alaska"},"geometry":{"type":"Point","coordinates":[-151.5194,60.4078,70.3]},"id":"ak0221zg1j19"},
- {"type":"Feature","properties":{"mag":-0.7,"place":"18 km NE of Milford, Utah","time":1644695624250,"updated":1644866327640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481842","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481842.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uu","code":"60481842","ids":",uu60481842,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.01222,"rms":0.06,"gap":102,"magType":"md","type":"earthquake","title":"M -0.7 - 18 km NE of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-112.8398333,38.4928333,-0.21]},"id":"uu60481842"},
- {"type":"Feature","properties":{"mag":-0.85,"place":"18 km NE of Milford, Utah","time":1644695603100,"updated":1644866576450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029979","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029979.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uu","code":"60029979","ids":",uu60029979,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.02533,"rms":0.06,"gap":117,"magType":"md","type":"earthquake","title":"M -0.9 - 18 km NE of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-112.8373333,38.4931667,0.15]},"id":"uu60029979"},
- {"type":"Feature","properties":{"mag":2.27,"place":"2 km SSE of Pāhala, Hawaii","time":1644695375090,"updated":1644695707020,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914857","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914857.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":79,"net":"hv","code":"72914857","ids":",hv72914857,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.129999995,"gap":95,"magType":"ml","type":"earthquake","title":"M 2.3 - 2 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.471496582031,19.1838340759277,31.2299995422363]},"id":"hv72914857"},
- {"type":"Feature","properties":{"mag":1.9,"place":"0 km WSW of Indios, Puerto Rico","time":1644695328340,"updated":1644696846860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334478","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334478.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"pr","code":"71334478","ids":",pr71334478,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.14,"gap":176,"magType":"md","type":"earthquake","title":"M 1.9 - 0 km WSW of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8265,17.9925,16.18]},"id":"pr71334478"},
- {"type":"Feature","properties":{"mag":1.62,"place":"9km ENE of Coso Junction, CA","time":1644695182030,"updated":1644764321940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184312","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184312.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"ci","code":"40184312","ids":",ci40184312,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02837,"rms":0.16,"gap":70,"magType":"ml","type":"earthquake","title":"M 1.6 - 9km ENE of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.8603333,36.0895,3.63]},"id":"ci40184312"},
- {"type":"Feature","properties":{"mag":0.86,"place":"7km WNW of Cobb, CA","time":1644694859280,"updated":1644700572726,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692016","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692016.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73692016","ids":",nc73692016,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.0173,"rms":0.29,"gap":153,"magType":"md","type":"earthquake","title":"M 0.9 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7985001,38.8438339,-0.76]},"id":"nc73692016"},
- {"type":"Feature","properties":{"mag":0.14,"place":"20km E of Little Lake, CA","time":1644694636080,"updated":1644862462202,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184304","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184304.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40184304","ids":",ci40184304,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.02724,"rms":0.04,"gap":123,"magType":"ml","type":"earthquake","title":"M 0.1 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6838333,35.9456667,2.81]},"id":"ci40184304"},
- {"type":"Feature","properties":{"mag":2.09,"place":"3 km ENE of Pāhala, Hawaii","time":1644694632390,"updated":1644694962660,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914842","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914842.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":67,"net":"hv","code":"72914842","ids":",hv72914842,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.219999999,"gap":118,"magType":"ml","type":"earthquake","title":"M 2.1 - 3 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.447830200195,19.2133331298828,0.660000026226044]},"id":"hv72914842"},
- {"type":"Feature","properties":{"mag":0.08,"place":"47 km SSE of Mammoth, Wyoming","time":1644694599560,"updated":1644871204870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481837","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481837.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uu","code":"60481837","ids":",uu60481837,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.04705,"rms":0.09,"gap":165,"magType":"md","type":"earthquake","title":"M 0.1 - 47 km SSE of Mammoth, Wyoming"},"geometry":{"type":"Point","coordinates":[-110.4103333,44.6068333,2.07]},"id":"uu60481837"},
- {"type":"Feature","properties":{"mag":2.02999997,"place":"3 km ESE of Pāhala, Hawaii","time":1644694395640,"updated":1644694581790,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914837","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914837.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":63,"net":"hv","code":"72914837","ids":",hv72914837,","sources":",hv,","types":",origin,phase-data,","nst":36,"dmin":null,"rms":0.100000001,"gap":124,"magType":"md","type":"earthquake","title":"M 2.0 - 3 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.45166015625,19.1916675567627,36.25]},"id":"hv72914837"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"44 km ESE of Beatty, Nevada","time":1644693940831,"updated":1644719916775,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833755","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833755.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833755","ids":",nn00833755,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.072,"rms":0.1042,"gap":245.84,"magType":"ml","type":"earthquake","title":"M -0.1 - 44 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.3235,36.7162,8.4]},"id":"nn00833755"},
- {"type":"Feature","properties":{"mag":2.38,"place":"4 km W of Fuig, Puerto Rico","time":1644692268490,"updated":1644696831010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334473","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334473.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":87,"net":"pr","code":"71334473","ids":",pr71334473,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.11,"gap":163,"magType":"md","type":"earthquake","title":"M 2.4 - 4 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9605,17.9848333333333,12.98]},"id":"pr71334473"},
- {"type":"Feature","properties":{"mag":1.79,"place":"5km SW of Walker, CA","time":1644691701730,"updated":1644884334186,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692006","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692006.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"nc","code":"73692006","ids":",nc73692006,nn00833747,","sources":",nc,nn,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.04688,"rms":0.05,"gap":82,"magType":"md","type":"earthquake","title":"M 1.8 - 5km SW of Walker, CA"},"geometry":{"type":"Point","coordinates":[-119.523,38.4821667,3.36]},"id":"nc73692006"},
- {"type":"Feature","properties":{"mag":0.57,"place":"8km ENE of Anza, CA","time":1644691669620,"updated":1644862338755,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184256","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184256.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40184256","ids":",ci40184256,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.007807,"rms":0.13,"gap":49,"magType":"ml","type":"earthquake","title":"M 0.6 - 8km ENE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6028333,33.5928333,15.59]},"id":"ci40184256"},
- {"type":"Feature","properties":{"mag":2.37,"place":"1 km SSE of Magas Arriba, Puerto Rico","time":1644691619970,"updated":1644696311277,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334468","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334468.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":87,"net":"pr","code":"71334468","ids":",pr71334468,","sources":",pr,","types":",dyfi,origin,phase-data,","nst":10,"dmin":null,"rms":0.14,"gap":179,"magType":"md","type":"earthquake","title":"M 2.4 - 1 km SSE of Magas Arriba, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.7663333333333,18.0051666666667,15.46]},"id":"pr71334468"},
- {"type":"Feature","properties":{"mag":0.03,"place":"9km SSW of Idyllwild, CA","time":1644691573740,"updated":1644862218946,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184240","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184240.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40184240","ids":",ci40184240,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.05819,"rms":0.12,"gap":119,"magType":"ml","type":"earthquake","title":"M 0.0 - 9km SSW of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7583333,33.666,9.44]},"id":"ci40184240"},
- {"type":"Feature","properties":{"mag":1.17,"place":"12km NW of The Geysers, CA","time":1644691460550,"updated":1644698952569,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73692001","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73692001.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73692001","ids":",nc73692001,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.005522,"rms":0.02,"gap":85,"magType":"md","type":"earthquake","title":"M 1.2 - 12km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8756638,38.8404999,2.6]},"id":"nc73692001"},
- {"type":"Feature","properties":{"mag":2.09,"place":"21km W of Petrolia, CA","time":1644691418890,"updated":1644978731796,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691996","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691996.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"nc","code":"73691996","ids":",nc73691996,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.1434,"rms":0.09,"gap":269,"magType":"md","type":"earthquake","title":"M 2.1 - 21km W of Petrolia, CA"},"geometry":{"type":"Point","coordinates":[-124.53,40.288,18.41]},"id":"nc73691996"},
- {"type":"Feature","properties":{"mag":1.7,"place":"54 km WNW of Petersville, Alaska","time":1644691077732,"updated":1644691433234,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zf1s2f","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zf1s2f.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"0221zf1s2f","ids":",ak0221zf1s2f,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.9,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 54 km WNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.7279,62.7107,4.4]},"id":"ak0221zf1s2f"},
- {"type":"Feature","properties":{"mag":2.11999989,"place":"2 km S of Pāhala, Hawaii","time":1644690580890,"updated":1644690764930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914802","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914802.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":69,"net":"hv","code":"72914802","ids":",hv72914802,","sources":",hv,","types":",origin,phase-data,","nst":29,"dmin":null,"rms":0.119999997,"gap":199,"magType":"md","type":"earthquake","title":"M 2.1 - 2 km S of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.477340698242,19.183666229248,34.4700012207031]},"id":"hv72914802"},
- {"type":"Feature","properties":{"mag":1.32,"place":"12 km E of Crowder, Oklahoma","time":1644690397780,"updated":1644867514924,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022dadq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022dadq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"ok","code":"2022dadq","ids":",ok2022dadq,","sources":",ok,","types":",origin,phase-data,","nst":35,"dmin":0.1115781046,"rms":0.25,"gap":86,"magType":"ml","type":"earthquake","title":"M 1.3 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53283333,35.1035,7.12]},"id":"ok2022dadq"},
- {"type":"Feature","properties":{"mag":0.15,"place":"10km NNW of Anza, CA","time":1644689708630,"updated":1644771236963,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184224","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184224.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40184224","ids":",ci40184224,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.03686,"rms":0.07,"gap":120,"magType":"ml","type":"earthquake","title":"M 0.2 - 10km NNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6995,33.6388333,12.61]},"id":"ci40184224"},
- {"type":"Feature","properties":{"mag":1.79,"place":"2 km SSE of Yauco, Puerto Rico","time":1644689663450,"updated":1644692000440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334463","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334463.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"pr","code":"71334463","ids":",pr71334463,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.02,"gap":307,"magType":"md","type":"earthquake","title":"M 1.8 - 2 km SSE of Yauco, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8391666666667,18.0178333333333,11.46]},"id":"pr71334463"},
- {"type":"Feature","properties":{"mag":2.9,"place":"25 km SSE of Susitna North, Alaska","time":1644689404574,"updated":1644702123872,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkbl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkbl.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"7000gkbl","ids":",ak0221zevvmm,us7000gkbl,","sources":",ak,us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.376,"rms":0.76,"gap":25,"magType":"ml","type":"earthquake","title":"M 2.9 - 25 km SSE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6109,61.9608,7.12]},"id":"us7000gkbl"},
- {"type":"Feature","properties":{"mag":4.6,"place":"Hindu Kush region, Afghanistan","time":1644689090033,"updated":1644697965040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkbj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkbj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gkbj","ids":",us7000gkbj,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.577,"rms":0.62,"gap":52,"magType":"mb","type":"earthquake","title":"M 4.6 - Hindu Kush region, Afghanistan"},"geometry":{"type":"Point","coordinates":[70.5973,35.4707,84.92]},"id":"us7000gkbj"},
- {"type":"Feature","properties":{"mag":1.5,"place":"11 km ENE of Fox, Alaska","time":1644688786870,"updated":1644688998149,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zel1dr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zel1dr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221zel1dr","ids":",ak0221zel1dr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 11 km ENE of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.3838,64.9854,0]},"id":"ak0221zel1dr"},
- {"type":"Feature","properties":{"mag":2.2,"place":"56 km SE of Denali National Park, Alaska","time":1644688392522,"updated":1644688998006,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zejopb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zejopb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"0221zejopb","ids":",ak0221zejopb,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":2.13,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 56 km SE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-150.8889,63.1975,99.3]},"id":"ak0221zejopb"},
- {"type":"Feature","properties":{"mag":2.64,"place":"6km WNW of Walker, CA","time":1644688264540,"updated":1644740360815,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691991","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691991.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":107,"net":"nc","code":"73691991","ids":",nc73691991,nn00833743,","sources":",nc,nn,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.09204,"rms":0.11,"gap":80,"magType":"md","type":"earthquake","title":"M 2.6 - 6km WNW of Walker, CA"},"geometry":{"type":"Point","coordinates":[-119.5471649,38.5385017,2.27]},"id":"nc73691991"},
- {"type":"Feature","properties":{"mag":0.74,"place":"12km NNE of Ocotillo Wells, CA","time":1644687742290,"updated":1644862053933,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184192","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184192.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40184192","ids":",ci40184192,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.1605,"rms":0.21,"gap":275,"magType":"ml","type":"earthquake","title":"M 0.7 - 12km NNE of Ocotillo Wells, CA"},"geometry":{"type":"Point","coordinates":[-116.0708333,33.2395,4.02]},"id":"ci40184192"},
- {"type":"Feature","properties":{"mag":1.6,"place":"25 km WNW of Happy Valley, Alaska","time":1644687544123,"updated":1644687685516,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zegnrg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zegnrg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221zegnrg","ids":",ak0221zegnrg,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.22,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 25 km WNW of Happy Valley, Alaska"},"geometry":{"type":"Point","coordinates":[-152.1551,60.0222,26.1]},"id":"ak0221zegnrg"},
- {"type":"Feature","properties":{"mag":0.65,"place":"7km WNW of Cobb, CA","time":1644687000730,"updated":1644688573504,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73691976","ids":",nc73691976,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.01268,"rms":0.01,"gap":59,"magType":"md","type":"earthquake","title":"M 0.7 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8068314,38.8358345,1.97]},"id":"nc73691976"},
- {"type":"Feature","properties":{"mag":1.19,"place":"7km WNW of Cobb, CA","time":1644686798340,"updated":1644695113199,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691971","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691971.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"nc","code":"73691971","ids":",nc73691971,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.01192,"rms":0.01,"gap":51,"magType":"md","type":"earthquake","title":"M 1.2 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8065033,38.8349991,2.11]},"id":"nc73691971"},
- {"type":"Feature","properties":{"mag":0.51,"place":"15km SSW of Searles Valley, CA","time":1644686507810,"updated":1644861384444,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391828","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391828.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"37391828","ids":",ci37391828,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.04886,"rms":0.14,"gap":135,"magType":"ml","type":"earthquake","title":"M 0.5 - 15km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4503333,35.6345,5.93]},"id":"ci37391828"},
- {"type":"Feature","properties":{"mag":0.66,"place":"15km SSW of Searles Valley, CA","time":1644686500070,"updated":1644861190534,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184168","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184168.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40184168","ids":",ci40184168,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.05341,"rms":0.13,"gap":121,"magType":"ml","type":"earthquake","title":"M 0.7 - 15km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4393333,35.6366667,5.56]},"id":"ci40184168"},
- {"type":"Feature","properties":{"mag":2.4,"place":"3 km E of Hope, Alaska","time":1644686141828,"updated":1644701404385,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zeblhw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zeblhw.geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":89,"net":"ak","code":"0221zeblhw","ids":",ak0221zeblhw,us7000gkb3,","sources":",ak,us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.4 - 3 km E of Hope, Alaska"},"geometry":{"type":"Point","coordinates":[-149.5685,60.9199,5.9]},"id":"ak0221zeblhw"},
- {"type":"Feature","properties":{"mag":4.9,"place":"Kermadec Islands, New Zealand","time":1644686007657,"updated":1644688680040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkb9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkb9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gkb9","ids":",us7000gkb9,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.836,"rms":0.79,"gap":54,"magType":"mb","type":"earthquake","title":"M 4.9 - Kermadec Islands, New Zealand"},"geometry":{"type":"Point","coordinates":[-177.0553,-29.625,21.5]},"id":"us7000gkb9"},
- {"type":"Feature","properties":{"mag":1.8,"place":"60 km NE of Chase, Alaska","time":1644685573674,"updated":1644685962046,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221ze9lvb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221ze9lvb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221ze9lvb","ids":",ak0221ze9lvb,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.92,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 60 km NE of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.225,62.8106,66.7]},"id":"ak0221ze9lvb"},
- {"type":"Feature","properties":{"mag":1.1,"place":"10 km NE of Silver Springs, Nevada","time":1644685438575,"updated":1644871140104,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833742","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833742.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833742","ids":",nn00833742,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.295,"rms":0.0274,"gap":187.63,"magType":"ml","type":"earthquake","title":"M 1.1 - 10 km NE of Silver Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-119.1381,39.486,4.6]},"id":"nn00833742"},
- {"type":"Feature","properties":{"mag":0.61,"place":"7 km ESE of Hebgen Lake Estates, Montana","time":1644685376360,"updated":1644852987790,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481822","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481822.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"uu","code":"60481822","ids":",uu60481822,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.0468,"rms":0.11,"gap":81,"magType":"md","type":"earthquake","title":"M 0.6 - 7 km ESE of Hebgen Lake Estates, Montana"},"geometry":{"type":"Point","coordinates":[-111.1015,44.7495,12.41]},"id":"uu60481822"},
- {"type":"Feature","properties":{"mag":1.8,"place":"34 km S of Glacier View, Alaska","time":1644685054099,"updated":1644685330545,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zdz5d8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zdz5d8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221zdz5d8","ids":",ak0221zdz5d8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.99,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 34 km S of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.7771,61.5011,21.1]},"id":"ak0221zdz5d8"},
- {"type":"Feature","properties":{"mag":2.5,"place":"10 km NE of Silver Springs, Nevada","time":1644684953594,"updated":1644862065181,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833739","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833739.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"nn","code":"00833739","ids":",us7000gkax,nn00833739,","sources":",us,nn,","types":",origin,phase-data,","nst":15,"dmin":0.297,"rms":0.1533,"gap":90.1,"magType":"ml","type":"earthquake","title":"M 2.5 - 10 km NE of Silver Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-119.1359,39.4843,8.6]},"id":"nn00833739"},
- {"type":"Feature","properties":{"mag":0.82,"place":"1km NNE of Borrego Springs, CA","time":1644684001170,"updated":1644778602075,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40184136","ids":",ci40184136,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.0422,"rms":0.12,"gap":82,"magType":"ml","type":"earthquake","title":"M 0.8 - 1km NNE of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.3668333,33.2665,7.71]},"id":"ci40184136"},
- {"type":"Feature","properties":{"mag":0.74,"place":"7km WNW of The Geysers, CA","time":1644683727430,"updated":1644691570830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691956","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691956.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":8,"net":"nc","code":"73691956","ids":",nc73691956,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.002493,"rms":0.02,"gap":61,"magType":"md","type":"earthquake","title":"M 0.7 - 7km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8286667,38.8113327,1.32]},"id":"nc73691956"},
- {"type":"Feature","properties":{"mag":1.02,"place":"8 km SW of Milford, Utah","time":1644682535840,"updated":1644861955800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481812","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481812.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"uu","code":"60481812","ids":",uu60481812,","sources":",uu,","types":",origin,phase-data,","nst":11,"dmin":0.02207,"rms":0.08,"gap":125,"magType":"md","type":"earthquake","title":"M 1.0 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.09,38.347,5.12]},"id":"uu60481812"},
- {"type":"Feature","properties":{"mag":2.4,"place":"6 km WNW of Ludlow, Maine","time":1644682474098,"updated":1644872152900,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkat","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkat.geojson","felt":31,"cdi":5.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"us","code":"7000gkat","ids":",us7000gkat,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.347,"rms":0.67,"gap":69,"magType":"mb_lg","type":"earthquake","title":"M 2.4 - 6 km WNW of Ludlow, Maine"},"geometry":{"type":"Point","coordinates":[-68.1111,46.1685,5]},"id":"us7000gkat"},
- {"type":"Feature","properties":{"mag":2,"place":"5 km WNW of Lucien, Oklahoma","time":1644682440690,"updated":1644851088252,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022czzg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022czzg.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"ok","code":"2022czzg","ids":",ok2022czzg,","sources":",ok,","types":",dyfi,origin,phase-data,","nst":101,"dmin":0,"rms":0.19,"gap":28,"magType":"ml","type":"earthquake","title":"M 2.0 - 5 km WNW of Lucien, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.51066667,36.2885,7.99]},"id":"ok2022czzg"},
- {"type":"Feature","properties":{"mag":0.35,"place":"7km NW of The Geysers, CA","time":1644682364640,"updated":1644690010670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691941","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691941.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691941","ids":",nc73691941,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.006701,"rms":0,"gap":143,"magType":"md","type":"earthquake","title":"M 0.4 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.803833,38.8279991,1.59]},"id":"nc73691941"},
- {"type":"Feature","properties":{"mag":1.02,"place":"10km WNW of The Geysers, CA","time":1644682246000,"updated":1644688510497,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":16,"net":"nc","code":"73691936","ids":",nc73691936,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.005618,"rms":0.02,"gap":88,"magType":"md","type":"earthquake","title":"M 1.0 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8556671,38.8219986,2.43]},"id":"nc73691936"},
- {"type":"Feature","properties":{"mag":3.1,"place":"52 km W of Tatitlek, Alaska","time":1644681973095,"updated":1644687420040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zdo67z","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zdo67z.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":148,"net":"ak","code":"0221zdo67z","ids":",us7000gkar,ak0221zdo67z,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.84,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 52 km W of Tatitlek, Alaska"},"geometry":{"type":"Point","coordinates":[-147.6374,60.8954,21.6]},"id":"ak0221zdo67z"},
- {"type":"Feature","properties":{"mag":1.9,"place":"53 km SSW of Tanana, Alaska","time":1644681840458,"updated":1644682264925,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zdnpt9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zdnpt9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221zdnpt9","ids":",ak0221zdnpt9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.97,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 53 km SSW of Tanana, Alaska"},"geometry":{"type":"Point","coordinates":[-152.4731,64.7254,5.6]},"id":"ak0221zdnpt9"},
- {"type":"Feature","properties":{"mag":0.75,"place":"16km NE of Little Lake, CA","time":1644681650590,"updated":1644861035762,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391820","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391820.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"37391820","ids":",ci37391820,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.002494,"rms":0.12,"gap":68,"magType":"ml","type":"earthquake","title":"M 0.8 - 16km NE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7683333,36.0253333,1.22]},"id":"ci37391820"},
- {"type":"Feature","properties":{"mag":1.18,"place":"8km W of Cobb, CA","time":1644681633720,"updated":1644686951357,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691931","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691931.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73691931","ids":",nc73691931,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.0101,"rms":0.01,"gap":71,"magType":"md","type":"earthquake","title":"M 1.2 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8105011,38.8334999,2.2]},"id":"nc73691931"},
- {"type":"Feature","properties":{"mag":0.55,"place":"16km NE of Little Lake, CA","time":1644681633230,"updated":1644860626367,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184120","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184120.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40184120","ids":",ci40184120,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.00134,"rms":0.14,"gap":83,"magType":"ml","type":"earthquake","title":"M 0.6 - 16km NE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7661667,36.0263333,1.32]},"id":"ci40184120"},
- {"type":"Feature","properties":{"mag":1.82,"place":"8km SW of Petrolia, CA","time":1644681236420,"updated":1644972971091,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691926","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691926.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":51,"net":"nc","code":"73691926","ids":",nc73691926,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01369,"rms":0.06,"gap":237,"magType":"md","type":"earthquake","title":"M 1.8 - 8km SW of Petrolia, CA"},"geometry":{"type":"Point","coordinates":[-124.3585,40.2821667,19.37]},"id":"nc73691926"},
- {"type":"Feature","properties":{"mag":0.7,"place":"2km NNW of The Geysers, CA","time":1644680634730,"updated":1644684011050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691921","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691921.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":8,"net":"nc","code":"73691921","ids":",nc73691921,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01029,"rms":0.01,"gap":78,"magType":"md","type":"earthquake","title":"M 0.7 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7621689,38.7905006,0.88]},"id":"nc73691921"},
- {"type":"Feature","properties":{"mag":1.6,"place":"135 km NW of Yakutat, Alaska","time":1644680602170,"updated":1644680862174,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zdaopo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zdaopo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221zdaopo","ids":",ak0221zdaopo,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 135 km NW of Yakutat, Alaska"},"geometry":{"type":"Point","coordinates":[-141.6905,60.2611,0]},"id":"ak0221zdaopo"},
- {"type":"Feature","properties":{"mag":1.82000005,"place":"10 km E of Pāhala, Hawaii","time":1644680384710,"updated":1644680574780,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914642","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914642.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":51,"net":"hv","code":"72914642","ids":",hv72914642,","sources":",hv,","types":",origin,phase-data,","nst":35,"dmin":null,"rms":0.119999997,"gap":166,"magType":"md","type":"earthquake","title":"M 1.8 - 10 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.381332397461,19.2103328704834,30.6700000762939]},"id":"hv72914642"},
- {"type":"Feature","properties":{"mag":2.2,"place":"23 km NNW of Ninilchik, Alaska","time":1644680218734,"updated":1644687131040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zd99kf","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zd99kf.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"0221zd99kf","ids":",us7000gkam,ak0221zd99kf,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 23 km NNW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-151.8548,60.2397,60.7]},"id":"ak0221zd99kf"},
- {"type":"Feature","properties":{"mag":2.94,"place":"23 km ESE of Honaunau-Napoopoo, Hawaii","time":1644680006580,"updated":1644964287193,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914632","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914632.geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":133,"net":"hv","code":"72914632","ids":",hv72914632,","sources":",hv,","types":",dyfi,origin,phase-data,","nst":45,"dmin":null,"rms":0.12,"gap":150,"magType":"ml","type":"earthquake","title":"M 2.9 - 23 km ESE of Honaunau-Napoopoo, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.649166666667,19.4075,0.28]},"id":"hv72914632"},
- {"type":"Feature","properties":{"mag":1.1,"place":"34 km SE of Mina, Nevada","time":1644679469333,"updated":1644864659180,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833738","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833738.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833738","ids":",nn00833738,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.112,"rms":0.0707,"gap":189.58,"magType":"ml","type":"earthquake","title":"M 1.1 - 34 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8245,38.1729,7.2]},"id":"nn00833738"},
- {"type":"Feature","properties":{"mag":1.7,"place":"59 km SSE of Denali National Park, Alaska","time":1644679059948,"updated":1644679349093,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zd55h5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zd55h5.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"0221zd55h5","ids":",ak0221zd55h5,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.13,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 59 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4524,63.0215,5.2]},"id":"ak0221zd55h5"},
- {"type":"Feature","properties":{"mag":0.2,"place":"67 km W of Tyonek, Alaska","time":1644678751790,"updated":1644790158250,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91487926","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91487926.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"av","code":"91487926","ids":",av91487926,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.09,"gap":313,"magType":"ml","type":"earthquake","title":"M 0.2 - 67 km W of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.385,61.0261666666667,10.37]},"id":"av91487926"},
- {"type":"Feature","properties":{"mag":3,"place":"21 km SW of Tyonek, Alaska","time":1644678403971,"updated":1644685874040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zd2sxy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zd2sxy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":138,"net":"ak","code":"0221zd2sxy","ids":",us7000gkaj,ak0221zd2sxy,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.54,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 21 km SW of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-151.3569,60.9095,82.9]},"id":"ak0221zd2sxy"},
- {"type":"Feature","properties":{"mag":1.33,"place":"9km NNW of Santa Paula, CA","time":1644678360930,"updated":1644778204325,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184096","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184096.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"ci","code":"40184096","ids":",ci40184096,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.0255,"rms":0.25,"gap":65,"magType":"ml","type":"earthquake","title":"M 1.3 - 9km NNW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1121667,34.4223333,14.43]},"id":"ci40184096"},
- {"type":"Feature","properties":{"mag":2.32,"place":"4 km ESE of Maria Antonia, Puerto Rico","time":1644678255600,"updated":1644679301430,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334448","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334448.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":83,"net":"pr","code":"71334448","ids":",pr71334448,","sources":",pr,","types":",origin,phase-data,","nst":18,"dmin":null,"rms":0.18,"gap":187,"magType":"md","type":"earthquake","title":"M 2.3 - 4 km ESE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8508333333333,17.9655,18.16]},"id":"pr71334448"},
- {"type":"Feature","properties":{"mag":0.87,"place":"26km N of Yucca Valley, CA","time":1644678042070,"updated":1644860234332,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184088","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184088.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40184088","ids":",ci40184088,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.08925,"rms":0.2,"gap":116,"magType":"ml","type":"earthquake","title":"M 0.9 - 26km N of Yucca Valley, CA"},"geometry":{"type":"Point","coordinates":[-116.471,34.3426667,10.45]},"id":"ci40184088"},
- {"type":"Feature","properties":{"mag":2.25,"place":"12 km ENE of Pāhala, Hawaii","time":1644677951040,"updated":1644678282010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914607","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914607.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":78,"net":"hv","code":"72914607","ids":",hv72914607,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.209999993,"gap":147,"magType":"ml","type":"earthquake","title":"M 2.3 - 12 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.371994018555,19.2463340759277,-0.660000026226044]},"id":"hv72914607"},
- {"type":"Feature","properties":{"mag":0.85,"place":"7km NW of The Geysers, CA","time":1644677444070,"updated":1644682450898,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691916","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691916.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691916","ids":",nc73691916,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.002352,"rms":0.02,"gap":66,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8128357,38.8243332,2.26]},"id":"nc73691916"},
- {"type":"Feature","properties":{"mag":-0.16,"place":"Fox Islands, Aleutian Islands, Alaska","time":1644676981130,"updated":1644876693400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049613","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049613.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049613","ids":",av91049613,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.14,"gap":176,"magType":"ml","type":"earthquake","title":"M -0.2 - Fox Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[-168.056166666667,53.4391666666667,1.98]},"id":"av91049613"},
- {"type":"Feature","properties":{"mag":2.37,"place":"4 km SSW of Pāhala, Hawaii","time":1644676612790,"updated":1644685496040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914592","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914592.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":86,"net":"hv","code":"72914592","ids":",us7000gkac,hv72914592,","sources":",us,hv,","types":",origin,phase-data,","nst":51,"dmin":null,"rms":0.129999995,"gap":104,"magType":"ml","type":"earthquake","title":"M 2.4 - 4 km SSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.489669799805,19.166166305542,35.4599990844727]},"id":"hv72914592"},
- {"type":"Feature","properties":{"mag":5,"place":"central Mid-Atlantic Ridge","time":1644676077496,"updated":1644677233040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gkab","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gkab.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":385,"net":"us","code":"7000gkab","ids":",us7000gkab,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":9.196,"rms":0.95,"gap":79,"magType":"mb","type":"earthquake","title":"M 5.0 - central Mid-Atlantic Ridge"},"geometry":{"type":"Point","coordinates":[-19.7113,-0.3907,10]},"id":"us7000gkab"},
- {"type":"Feature","properties":{"mag":0.65,"place":"18km ESE of Little Lake, CA","time":1644675443260,"updated":1644777847000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184072","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184072.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40184072","ids":",ci40184072,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.07887,"rms":0.08,"gap":53,"magType":"ml","type":"earthquake","title":"M 0.7 - 18km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7171667,35.8905,2.79]},"id":"ci40184072"},
- {"type":"Feature","properties":{"mag":0.79,"place":"22km N of Ridgecrest, CA","time":1644675424240,"updated":1644777366790,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184064","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184064.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40184064","ids":",ci40184064,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.06321,"rms":0.1,"gap":63,"magType":"ml","type":"earthquake","title":"M 0.8 - 22km N of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.6886667,35.8211667,8.98]},"id":"ci40184064"},
- {"type":"Feature","properties":{"mag":0.32,"place":"19km ESE of Little Lake, CA","time":1644675405080,"updated":1644777565009,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37488677","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37488677.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"37488677","ids":",ci37488677,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.07266,"rms":0.05,"gap":68,"magType":"ml","type":"earthquake","title":"M 0.3 - 19km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7065,35.8911667,2.81]},"id":"ci37488677"},
- {"type":"Feature","properties":{"mag":0.9,"place":"2km NW of The Geysers, CA","time":1644675388620,"updated":1644677413397,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691911","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691911.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73691911","ids":",nc73691911,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.009925,"rms":0.02,"gap":76,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7753296,38.7944984,3.52]},"id":"nc73691911"},
- {"type":"Feature","properties":{"mag":2.06,"place":"10 km E of Pāhala, Hawaii","time":1644674660040,"updated":1644674990440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914557","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914557.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"hv","code":"72914557","ids":",hv72914557,","sources":",hv,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.219999999,"gap":230,"magType":"ml","type":"earthquake","title":"M 2.1 - 10 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.376007080078,19.2101669311523,2.0699999332428]},"id":"hv72914557"},
- {"type":"Feature","properties":{"mag":2,"place":"4 km SSE of Pāhala, Hawaii","time":1644674362540,"updated":1644674563910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914552","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914552.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"hv","code":"72914552","ids":",hv72914552,","sources":",hv,","types":",origin,phase-data,","nst":41,"dmin":null,"rms":0.109999999,"gap":93,"magType":"md","type":"earthquake","title":"M 2.0 - 4 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.465835571289,19.1630001068115,33.1699981689453]},"id":"hv72914552"},
- {"type":"Feature","properties":{"mag":0.6,"place":"34 km SE of West Yellowstone, Montana","time":1644673679510,"updated":1644861429890,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481807","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481807.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"uu","code":"60481807","ids":",uu60481807,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.02868,"rms":0.07,"gap":170,"magType":"md","type":"earthquake","title":"M 0.6 - 34 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8375,44.4226667,2.78]},"id":"uu60481807"},
- {"type":"Feature","properties":{"mag":2.22,"place":"9 km ENE of Pāhala, Hawaii","time":1644673449410,"updated":1644673780490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914527","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914527.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":76,"net":"hv","code":"72914527","ids":",hv72914527,","sources":",hv,","types":",origin,phase-data,","nst":48,"dmin":null,"rms":0.129999995,"gap":151,"magType":"ml","type":"earthquake","title":"M 2.2 - 9 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.389831542969,19.2238330841064,32.9599990844727]},"id":"hv72914527"},
- {"type":"Feature","properties":{"mag":1.1,"place":"27 km SW of Mina, Nevada","time":1644673159832,"updated":1644863734133,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833736","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833736.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833736","ids":",nn00833736,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.107,"rms":0.0547,"gap":120.1,"magType":"ml","type":"earthquake","title":"M 1.1 - 27 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3694,38.2504,11]},"id":"nn00833736"},
- {"type":"Feature","properties":{"mag":1.8,"place":"28 km NE of Susitna North, Alaska","time":1644672924946,"updated":1644673197873,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zc2432","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zc2432.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221zc2432","ids":",ak0221zc2432,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.93,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 28 km NE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.536,62.3696,82.5]},"id":"ak0221zc2432"},
- {"type":"Feature","properties":{"mag":2.5,"place":"5 km SSE of Roosevelt, Arizona","time":1644672648866,"updated":1644758179391,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gka5","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gka5.geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"7000gka5","ids":",us7000gka5,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.095,"rms":0.38,"gap":60,"magType":"ml","type":"earthquake","title":"M 2.5 - 5 km SSE of Roosevelt, Arizona"},"geometry":{"type":"Point","coordinates":[-111.1178,33.6214,5.38]},"id":"us7000gka5"},
- {"type":"Feature","properties":{"mag":1,"place":"33 km SE of West Yellowstone, Montana","time":1644672403500,"updated":1644850082630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481802","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481802.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"uu","code":"60481802","ids":",uu60481802,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.02818,"rms":0.14,"gap":88,"magType":"md","type":"earthquake","title":"M 1.0 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8373333,44.4231667,1.79]},"id":"uu60481802"},
- {"type":"Feature","properties":{"mag":2.17,"place":"23 km E of Honaunau-Napoopoo, Hawaii","time":1644671522870,"updated":1644973725920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914497","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914497.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"hv","code":"72914497","ids":",hv72914497,","sources":",hv,","types":",origin,phase-data,","nst":50,"dmin":null,"rms":0.2,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.2 - 23 km E of Honaunau-Napoopoo, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.6445,19.475,2.95]},"id":"hv72914497"},
- {"type":"Feature","properties":{"mag":4.3,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644671478650,"updated":1644700398684,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk9x","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk9x.geojson","felt":null,"cdi":null,"mmi":1.265,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gk9x","ids":",ak0221zbwycq,us7000gk9x,","sources":",ak,us,","types":",origin,phase-data,shakemap,","nst":null,"dmin":0.861,"rms":0.54,"gap":185,"magType":"mb","type":"earthquake","title":"M 4.3 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.8855,51.1184,35]},"id":"us7000gk9x"},
- {"type":"Feature","properties":{"mag":0.76,"place":"6km NW of The Geysers, CA","time":1644671112640,"updated":1644673934127,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691901","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691901.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":9,"net":"nc","code":"73691901","ids":",nc73691901,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.009493,"rms":0.03,"gap":54,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7979965,38.8223343,2.4]},"id":"nc73691901"},
- {"type":"Feature","properties":{"mag":-0.5,"place":"28 km WSW of Mina, Nevada","time":1644670948730,"updated":1644883591798,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833874","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833874.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833874","ids":",nn00833874,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.081,"rms":0.0113,"gap":201.17,"magType":"ml","type":"earthquake","title":"M -0.5 - 28 km WSW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.4147,38.2908,12.2]},"id":"nn00833874"},
- {"type":"Feature","properties":{"mag":0.36,"place":"7km WNW of Cobb, CA","time":1644670932150,"updated":1644673276063,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691896","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691896.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691896","ids":",nc73691896,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01183,"rms":0.02,"gap":110,"magType":"md","type":"earthquake","title":"M 0.4 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8051682,38.8359985,1.79]},"id":"nc73691896"},
- {"type":"Feature","properties":{"mag":0.88,"place":"14km NE of Ridgecrest, CA","time":1644670674820,"updated":1644764343638,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184032","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184032.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40184032","ids":",ci40184032,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.1233,"rms":0.17,"gap":147,"magType":"ml","type":"earthquake","title":"M 0.9 - 14km NE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5508333,35.6981667,2.2]},"id":"ci40184032"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644670575020,"updated":1644672373970,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691891","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691891.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691891","ids":",nc73691891,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.01027,"rms":0.01,"gap":85,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8106689,38.8336678,2.08]},"id":"nc73691891"},
- {"type":"Feature","properties":{"mag":3.81,"place":"104 km NNW of San Antonio, Puerto Rico","time":1644670484090,"updated":1644673645645,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022043000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022043000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":223,"net":"pr","code":"2022043000","ids":",us7000gk9v,pr2022043000,","sources":",us,pr,","types":",origin,phase-data,","nst":28,"dmin":0.9721,"rms":0.28,"gap":258,"magType":"md","type":"earthquake","title":"M 3.8 - 104 km NNW of San Antonio, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.3958,19.397,10]},"id":"pr2022043000"},
- {"type":"Feature","properties":{"mag":0.35,"place":"7km NW of The Geysers, CA","time":1644670448740,"updated":1644671772905,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691886","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691886.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691886","ids":",nc73691886,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.002861,"rms":0.02,"gap":108,"magType":"md","type":"earthquake","title":"M 0.4 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.810997,38.8261681,1.37]},"id":"nc73691886"},
- {"type":"Feature","properties":{"mag":3,"place":"274 km W of Ferndale, California","time":1644670402302,"updated":1644718514532,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk9u","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk9u.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"7000gk9u","ids":",us7000gk9u,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":2.582,"rms":0.66,"gap":268,"magType":"ml","type":"earthquake","title":"M 3.0 - 274 km W of Ferndale, California"},"geometry":{"type":"Point","coordinates":[-127.5003,40.5798,10]},"id":"us7000gk9u"},
- {"type":"Feature","properties":{"mag":0.78,"place":"13km ENE of Ridgecrest, CA","time":1644669991750,"updated":1644777166652,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184024","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184024.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40184024","ids":",ci40184024,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.09765,"rms":0.11,"gap":90,"magType":"ml","type":"earthquake","title":"M 0.8 - 13km ENE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5475,35.6785,6.54]},"id":"ci40184024"},
- {"type":"Feature","properties":{"mag":0.25,"place":"4km WNW of The Geysers, CA","time":1644669964750,"updated":1644671052833,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691881","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691881.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":1,"net":"nc","code":"73691881","ids":",nc73691881,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.006486,"rms":0.02,"gap":125,"magType":"md","type":"earthquake","title":"M 0.3 - 4km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7959976,38.7946663,0.89]},"id":"nc73691881"},
- {"type":"Feature","properties":{"mag":2.58,"place":"5 km SW of La Parguera, Puerto Rico","time":1644669815190,"updated":1644674348990,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334418","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334418.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":102,"net":"pr","code":"71334418","ids":",pr71334418,","sources":",pr,","types":",origin,phase-data,","nst":20,"dmin":null,"rms":0.15,"gap":237,"magType":"md","type":"earthquake","title":"M 2.6 - 5 km SW of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0871666666667,17.9413333333333,11.41]},"id":"pr71334418"},
- {"type":"Feature","properties":{"mag":0.4,"place":"3 km SSW of Coleville, California","time":1644669784894,"updated":1644883405673,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833873","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833873.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833873","ids":",nn00833873,","sources":",nn,","types":",origin,phase-data,","nst":5,"dmin":0.051,"rms":0.191,"gap":233.23,"magType":"ml","type":"earthquake","title":"M 0.4 - 3 km SSW of Coleville, California"},"geometry":{"type":"Point","coordinates":[-119.5193,38.5349,7.2]},"id":"nn00833873"},
- {"type":"Feature","properties":{"mag":1.6,"place":"20 km NNE of Skwentna, Alaska","time":1644669773653,"updated":1644669972333,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zbi8p3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zbi8p3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221zbi8p3","ids":",ak0221zbi8p3,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 20 km NNE of Skwentna, Alaska"},"geometry":{"type":"Point","coordinates":[-151.1885,62.1427,73.7]},"id":"ak0221zbi8p3"},
- {"type":"Feature","properties":{"mag":1.16,"place":"18km E of Clearlake, CA","time":1644668312860,"updated":1644907090563,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691876","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691876.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"nc","code":"73691876","ids":",nc73691876,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.1003,"rms":0.18,"gap":138,"magType":"md","type":"earthquake","title":"M 1.2 - 18km E of Clearlake, CA"},"geometry":{"type":"Point","coordinates":[-122.4131667,38.9765,-0.1]},"id":"nc73691876"},
- {"type":"Feature","properties":{"mag":2,"place":"6 km SW of La Parguera, Puerto Rico","time":1644668143100,"updated":1644677706510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334438","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334438.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"pr","code":"71334438","ids":",pr71334438,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.04,"gap":264,"magType":"md","type":"earthquake","title":"M 2.0 - 6 km SW of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0816666666667,17.9321666666667,11.27]},"id":"pr71334438"},
- {"type":"Feature","properties":{"mag":1.9,"place":"62 km W of Salamatof, Alaska","time":1644668034757,"updated":1644668339559,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zbc10s","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zbc10s.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221zbc10s","ids":",ak0221zbc10s,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.56,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 62 km W of Salamatof, Alaska"},"geometry":{"type":"Point","coordinates":[-152.45,60.5331,7.9]},"id":"ak0221zbc10s"},
- {"type":"Feature","properties":{"mag":2.3,"place":"66 km W of Salamatof, Alaska","time":1644667948862,"updated":1644789153890,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zbbrbb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zbbrbb.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"0221zbbrbb","ids":",av91487721,ak0221zbbrbb,","sources":",av,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 66 km W of Salamatof, Alaska"},"geometry":{"type":"Point","coordinates":[-152.5151,60.5409,0.7]},"id":"ak0221zbbrbb"},
- {"type":"Feature","properties":{"mag":0.48,"place":"10km N of Anza, CA","time":1644667897440,"updated":1644764361152,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40184000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40184000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40184000","ids":",ci40184000,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.07416,"rms":0.05,"gap":102,"magType":"ml","type":"earthquake","title":"M 0.5 - 10km N of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.6865,33.6405,13.25]},"id":"ci40184000"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644667118390,"updated":1644668352574,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691871","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691871.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691871","ids":",nc73691871,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.01171,"rms":0.01,"gap":93,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8160019,38.8341675,1.85]},"id":"nc73691871"},
- {"type":"Feature","properties":{"mag":1.5,"place":"10 km SE of Susitna, Alaska","time":1644667074530,"updated":1644667257324,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221zb00wt","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221zb00wt.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221zb00wt","ids":",ak0221zb00wt,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.29,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 10 km SE of Susitna, Alaska"},"geometry":{"type":"Point","coordinates":[-150.3989,61.4687,11.6]},"id":"ak0221zb00wt"},
- {"type":"Feature","properties":{"mag":0.6,"place":"16 km NNW of Sutcliffe, Nevada","time":1644666991074,"updated":1644883219636,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833871","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833871.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nn","code":"00833871","ids":",nn00833871,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.099,"rms":0.1745,"gap":158.53,"magType":"ml","type":"earthquake","title":"M 0.6 - 16 km NNW of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.7038,40.0734,15.9]},"id":"nn00833871"},
- {"type":"Feature","properties":{"mag":1.21,"place":"7km NW of The Geysers, CA","time":1644666601350,"updated":1644674351155,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691866","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691866.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":23,"net":"nc","code":"73691866","ids":",nc73691866,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.00182,"rms":0.02,"gap":38,"magType":"md","type":"earthquake","title":"M 1.2 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8093338,38.8216667,2.82]},"id":"nc73691866"},
- {"type":"Feature","properties":{"mag":2.7,"place":"western Texas","time":1644666601330,"updated":1644668227040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk9a","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk9a.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"7000gk9a","ids":",us7000gk9a,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.092,"rms":0.27,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.7 - western Texas"},"geometry":{"type":"Point","coordinates":[-104.394,31.6814,5]},"id":"us7000gk9a"},
- {"type":"Feature","properties":{"mag":0.91,"place":"2km W of Agua Dulce, CA","time":1644666591650,"updated":1644776726431,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183992","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183992.geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"40183992","ids":",ci40183992,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.07669,"rms":0.1,"gap":86,"magType":"ml","type":"earthquake","title":"M 0.9 - 2km W of Agua Dulce, CA"},"geometry":{"type":"Point","coordinates":[-118.3485,34.4985,6.65]},"id":"ci40183992"},
- {"type":"Feature","properties":{"mag":2.5,"place":"4 km ENE of Hope, Kansas","time":1644666477290,"updated":1644684063751,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk99","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk99.geojson","felt":5,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":98,"net":"us","code":"7000gk99","ids":",us7000gk99,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.51,"rms":0.9,"gap":127,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 4 km ENE of Hope, Kansas"},"geometry":{"type":"Point","coordinates":[-97.0282,38.7077,5]},"id":"us7000gk99"},
- {"type":"Feature","properties":{"mag":0.56,"place":"8km E of Ridgecrest, CA","time":1644666058310,"updated":1644764383177,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183968","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183968.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40183968","ids":",ci40183968,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.1072,"rms":0.08,"gap":175,"magType":"ml","type":"earthquake","title":"M 0.6 - 8km E of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5893333,35.614,10.1]},"id":"ci40183968"},
- {"type":"Feature","properties":{"mag":1.22,"place":"33 km SE of West Yellowstone, Montana","time":1644665582210,"updated":1644859473010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481797","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481797.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"uu","code":"60481797","ids":",uu60481797,","sources":",uu,","types":",origin,phase-data,","nst":14,"dmin":0.03451,"rms":0.23,"gap":90,"magType":"md","type":"earthquake","title":"M 1.2 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8491667,44.4181667,3.7]},"id":"uu60481797"},
- {"type":"Feature","properties":{"mag":2.34,"place":"7 km SE of La Parguera, Puerto Rico","time":1644665309820,"updated":1644668527350,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334398","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334398.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"pr","code":"71334398","ids":",pr71334398,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.05,"gap":243,"magType":"md","type":"earthquake","title":"M 2.3 - 7 km SE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.0023333333333,17.9246666666667,6.6]},"id":"pr71334398"},
- {"type":"Feature","properties":{"mag":1.85000002,"place":"24 km E of Honaunau-Napoopoo, Hawaii","time":1644664916460,"updated":1644665246980,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914322","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914322.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":53,"net":"hv","code":"72914322","ids":",hv72914322,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.389999986,"gap":70,"magType":"md","type":"earthquake","title":"M 1.9 - 24 km E of Honaunau-Napoopoo, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.633499145508,19.4406661987305,5.38000011444092]},"id":"hv72914322"},
- {"type":"Feature","properties":{"mag":0.36,"place":"2km N of The Geysers, CA","time":1644663779850,"updated":1644665413279,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691861","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691861.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691861","ids":",nc73691861,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.003704,"rms":0.04,"gap":147,"magType":"md","type":"earthquake","title":"M 0.4 - 2km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7580032,38.7971649,1.33]},"id":"nc73691861"},
- {"type":"Feature","properties":{"mag":4.3,"place":"65 km NNW of Neiafu, Tonga","time":1644663338187,"updated":1644664658040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk93","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk93.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gk93","ids":",us7000gk93,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.858,"rms":0.43,"gap":150,"magType":"mb","type":"earthquake","title":"M 4.3 - 65 km NNW of Neiafu, Tonga"},"geometry":{"type":"Point","coordinates":[-174.3015,-18.1451,219.49]},"id":"us7000gk93"},
- {"type":"Feature","properties":{"mag":0.64,"place":"11km WSW of Beaumont, CA","time":1644663249510,"updated":1644776329841,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183960","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183960.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40183960","ids":",ci40183960,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.09199,"rms":0.17,"gap":57,"magType":"ml","type":"earthquake","title":"M 0.6 - 11km WSW of Beaumont, CA"},"geometry":{"type":"Point","coordinates":[-117.0838333,33.8883333,7.08]},"id":"ci40183960"},
- {"type":"Feature","properties":{"mag":4,"place":"49 km SW of Ashkāsham, Afghanistan","time":1644663024467,"updated":1644663792040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk91","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk91.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":246,"net":"us","code":"7000gk91","ids":",us7000gk91,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.849,"rms":0.24,"gap":183,"magType":"mb","type":"earthquake","title":"M 4.0 - 49 km SW of Ashkāsham, Afghanistan"},"geometry":{"type":"Point","coordinates":[71.1106,36.3909,121.6]},"id":"us7000gk91"},
- {"type":"Feature","properties":{"mag":1.98,"place":"2km NNW of The Geysers, CA","time":1644662720350,"updated":1644671292110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691856","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691856.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":60,"net":"nc","code":"73691856","ids":",nc73691856,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.006452,"rms":0.04,"gap":62,"magType":"md","type":"earthquake","title":"M 2.0 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7623367,38.7944984,0.62]},"id":"nc73691856"},
- {"type":"Feature","properties":{"mag":-0.06,"place":"89 km W of Adak, Alaska","time":1644662216690,"updated":1644788780380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91487636","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91487636.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91487636","ids":",av91487636,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.02,"gap":165,"magType":"ml","type":"earthquake","title":"M -0.1 - 89 km W of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-177.929,51.8605,5.78]},"id":"av91487636"},
- {"type":"Feature","properties":{"mag":0.88,"place":"7km NW of The Geysers, CA","time":1644662103670,"updated":1644669730715,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691851","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691851.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73691851","ids":",nc73691851,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01618,"rms":0.01,"gap":87,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8036652,38.8260002,2.44]},"id":"nc73691851"},
- {"type":"Feature","properties":{"mag":0.69,"place":"15km W of Searles Valley, CA","time":1644661928330,"updated":1644764428583,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183952","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183952.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40183952","ids":",ci40183952,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.06238,"rms":0.14,"gap":152,"magType":"ml","type":"earthquake","title":"M 0.7 - 15km W of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5701667,35.7573333,7.75]},"id":"ci40183952"},
- {"type":"Feature","properties":{"mag":0.19,"place":"26 km ENE of Ashford, Washington","time":1644661687080,"updated":1644793239240,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816196","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816196.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61816196","ids":",uw61816196,","sources":",uw,","types":",origin,phase-data,","nst":7,"dmin":0.03596,"rms":0.05,"gap":159,"magType":"ml","type":"earthquake","title":"M 0.2 - 26 km ENE of Ashford, Washington"},"geometry":{"type":"Point","coordinates":[-121.72683333333333,46.87133333333333,-1.83]},"id":"uw61816196"},
- {"type":"Feature","properties":{"mag":0.97,"place":"7km NW of Anza, CA","time":1644661603960,"updated":1644764446375,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183944","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183944.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40183944","ids":",ci40183944,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":42,"dmin":0.02861,"rms":0.19,"gap":35,"magType":"ml","type":"earthquake","title":"M 1.0 - 7km NW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.7295,33.5933333,10.18]},"id":"ci40183944"},
- {"type":"Feature","properties":{"mag":1.13,"place":"2 km SSW of Quinton, Oklahoma","time":1644661079070,"updated":1644866440472,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cznn","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cznn.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ok","code":"2022cznn","ids":",ok2022cznn,","sources":",ok,","types":",origin,phase-data,","nst":42,"dmin":0.03869240723,"rms":0.23,"gap":120,"magType":"ml","type":"earthquake","title":"M 1.1 - 2 km SSW of Quinton, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.38416667,35.09866667,6.77]},"id":"ok2022cznn"},
- {"type":"Feature","properties":{"mag":1.11,"place":"33 km SE of West Yellowstone, Montana","time":1644660683430,"updated":1644852893860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481792","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481792.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"uu","code":"60481792","ids":",uu60481792,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.03299,"rms":0.07,"gap":89,"magType":"md","type":"earthquake","title":"M 1.1 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.845,44.419,1.86]},"id":"uu60481792"},
- {"type":"Feature","properties":{"mag":1.07,"place":"33 km SE of West Yellowstone, Montana","time":1644660477580,"updated":1644852736440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481787","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481787.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"uu","code":"60481787","ids":",uu60481787,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.03096,"rms":0.09,"gap":89,"magType":"md","type":"earthquake","title":"M 1.1 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8418333,44.4206667,2.84]},"id":"uu60481787"},
- {"type":"Feature","properties":{"mag":0.93,"place":"23 km ENE of Ashford, Washington","time":1644660410560,"updated":1644717081830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816186","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816186.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"uw","code":"61816186","ids":",uw61816186,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.02122,"rms":0.08,"gap":103,"magType":"ml","type":"earthquake","title":"M 0.9 - 23 km ENE of Ashford, Washington"},"geometry":{"type":"Point","coordinates":[-121.74966666666667,46.8535,1.69]},"id":"uw61816186"},
- {"type":"Feature","properties":{"mag":0.51,"place":"34 km SE of West Yellowstone, Montana","time":1644660289220,"updated":1644860965770,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481782","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481782.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uu","code":"60481782","ids":",uu60481782,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.03449,"rms":0.13,"gap":113,"magType":"md","type":"earthquake","title":"M 0.5 - 34 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8358333,44.4168333,1.58]},"id":"uu60481782"},
- {"type":"Feature","properties":{"mag":1.04,"place":"13km SSW of Searles Valley, CA","time":1644660206410,"updated":1644775951807,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"ci","code":"40183936","ids":",ci40183936,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.08196,"rms":0.14,"gap":85,"magType":"ml","type":"earthquake","title":"M 1.0 - 13km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4831667,35.6668333,5.12]},"id":"ci40183936"},
- {"type":"Feature","properties":{"mag":0.35,"place":"15km SSW of Searles Valley, CA","time":1644660179500,"updated":1644776970949,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37488669","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37488669.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"37488669","ids":",ci37488669,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.05503,"rms":0.14,"gap":171,"magType":"ml","type":"earthquake","title":"M 0.4 - 15km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4365,35.6375,5.55]},"id":"ci37488669"},
- {"type":"Feature","properties":{"mag":0.97,"place":"8km NW of The Geysers, CA","time":1644660103030,"updated":1644661272827,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691846","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691846.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73691846","ids":",nc73691846,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.007841,"rms":0.02,"gap":48,"magType":"md","type":"earthquake","title":"M 1.0 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8154984,38.8300018,2.04]},"id":"nc73691846"},
- {"type":"Feature","properties":{"mag":0.49,"place":"26 km S of Morton, Washington","time":1644660074070,"updated":1644714650340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816181","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816181.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uw","code":"61816181","ids":",uw61816181,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.01702,"rms":0.13,"gap":207,"magType":"ml","type":"earthquake","title":"M 0.5 - 26 km S of Morton, Washington"},"geometry":{"type":"Point","coordinates":[-122.27366666666667,46.31916666666667,6.09]},"id":"uw61816181"},
- {"type":"Feature","properties":{"mag":2.1,"place":"56 km N of Petersville, Alaska","time":1644659377413,"updated":1644660155474,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z9renc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z9renc.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"0221z9renc","ids":",ak0221z9renc,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 56 km N of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5686,62.9926,88.7]},"id":"ak0221z9renc"},
- {"type":"Feature","properties":{"mag":0.67,"place":"34 km SE of West Yellowstone, Montana","time":1644659345040,"updated":1644860593840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481777","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481777.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"uu","code":"60481777","ids":",uu60481777,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.02903,"rms":0.14,"gap":167,"magType":"md","type":"earthquake","title":"M 0.7 - 34 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8293333,44.4226667,1.5]},"id":"uu60481777"},
- {"type":"Feature","properties":{"mag":1.1,"place":"11km WNW of Cobb, CA","time":1644658972600,"updated":1644668111553,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691841","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691841.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"nc","code":"73691841","ids":",nc73691841,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.01734,"rms":0.04,"gap":163,"magType":"md","type":"earthquake","title":"M 1.1 - 11km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8414993,38.864666,1.44]},"id":"nc73691841"},
- {"type":"Feature","properties":{"mag":1.93,"place":"32 km SE of West Yellowstone, Montana","time":1644658948110,"updated":1644858788140,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481772","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481772.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":57,"net":"uu","code":"60481772","ids":",uu60481772,","sources":",uu,","types":",origin,phase-data,","nst":17,"dmin":0.024,"rms":0.18,"gap":90,"magType":"md","type":"earthquake","title":"M 1.9 - 32 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.854,44.4311667,3.56]},"id":"uu60481772"},
- {"type":"Feature","properties":{"mag":1.09,"place":"10km NW of Pinnacles, CA","time":1644658786350,"updated":1645073245217,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691836","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691836.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"nc","code":"73691836","ids":",nc73691836,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.03924,"rms":0.08,"gap":126,"magType":"md","type":"earthquake","title":"M 1.1 - 10km NW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.2113333,36.605,4.91]},"id":"nc73691836"},
- {"type":"Feature","properties":{"mag":0.79,"place":"3km NNW of Palomar Observatory, CA","time":1644658548030,"updated":1644775492839,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40183920","ids":",ci40183920,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":43,"dmin":0.02757,"rms":0.19,"gap":27,"magType":"ml","type":"earthquake","title":"M 0.8 - 3km NNW of Palomar Observatory, CA"},"geometry":{"type":"Point","coordinates":[-116.8781667,33.378,6.88]},"id":"ci40183920"},
- {"type":"Feature","properties":{"mag":1.2,"place":"7 km WNW of Fox, Alaska","time":1644658214763,"updated":1644658792687,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z9naa7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z9naa7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"0221z9naa7","ids":",ak0221z9naa7,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.33,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 7 km WNW of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.759,64.98,18.5]},"id":"ak0221z9naa7"},
- {"type":"Feature","properties":{"mag":0.62,"place":"33 km SE of West Yellowstone, Montana","time":1644658026710,"updated":1644860437410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481767","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481767.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"uu","code":"60481767","ids":",uu60481767,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.02791,"rms":0.07,"gap":88,"magType":"md","type":"earthquake","title":"M 0.6 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8448333,44.4241667,2.32]},"id":"uu60481767"},
- {"type":"Feature","properties":{"mag":0.8,"place":"5 km W of Ashford, Washington","time":1644657309750,"updated":1644688613740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816176","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816176.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"uw","code":"61816176","ids":",uw61816176,","sources":",uw,","types":",origin,phase-data,","nst":23,"dmin":0.1317,"rms":0.11,"gap":95,"magType":"ml","type":"earthquake","title":"M 0.8 - 5 km W of Ashford, Washington"},"geometry":{"type":"Point","coordinates":[-122.10766666666666,46.751,15.72]},"id":"uw61816176"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"6 km E of Pāhala, Hawaii","time":1644657087530,"updated":1644657417900,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914187","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914187.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72914187","ids":",hv72914187,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.129999995,"gap":146,"magType":"md","type":"earthquake","title":"M 1.8 - 6 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.420333862305,19.2061672210693,32.8800010681152]},"id":"hv72914187"},
- {"type":"Feature","properties":{"mag":1.11,"place":"Andreanof Islands, Aleutian Islands, Alaska","time":1644657052660,"updated":1644875105470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049593","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049593.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"av","code":"91049593","ids":",av91049593,","sources":",av,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.22,"gap":209,"magType":"ml","type":"earthquake","title":"M 1.1 - Andreanof Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[-178.1875,51.5171666666667,10.19]},"id":"av91049593"},
- {"type":"Feature","properties":{"mag":1.73,"place":"8km W of Cobb, CA","time":1644656896330,"updated":1644663431069,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691831","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691831.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":46,"net":"nc","code":"73691831","ids":",nc73691831,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.01009,"rms":0.02,"gap":38,"magType":"md","type":"earthquake","title":"M 1.7 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8099976,38.8334999,2.03]},"id":"nc73691831"},
- {"type":"Feature","properties":{"mag":1.56,"place":"6 km S of Pāhala, Hawaii","time":1644656828880,"updated":1644878730760,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914177","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914177.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"hv","code":"72914177","ids":",hv72914177,","sources":",hv,","types":",origin,phase-data,","nst":30,"dmin":null,"rms":0.14,"gap":208,"magType":"md","type":"earthquake","title":"M 1.6 - 6 km S of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.484166666667,19.145,31.89]},"id":"hv72914177"},
- {"type":"Feature","properties":{"mag":0.9,"place":"20km E of Little Lake, CA","time":1644656445180,"updated":1644774975615,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183912","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183912.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40183912","ids":",ci40183912,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.04128,"rms":0.07,"gap":50,"magType":"ml","type":"earthquake","title":"M 0.9 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6871667,35.9193333,4.04]},"id":"ci40183912"},
- {"type":"Feature","properties":{"mag":1.90999997,"place":"8 km E of Pāhala, Hawaii","time":1644656340240,"updated":1644656528490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914162","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914162.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"hv","code":"72914162","ids":",hv72914162,","sources":",hv,","types":",origin,phase-data,","nst":39,"dmin":null,"rms":0.129999995,"gap":160,"magType":"md","type":"earthquake","title":"M 1.9 - 8 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.398834228516,19.1978340148926,30]},"id":"hv72914162"},
- {"type":"Feature","properties":{"mag":0.59,"place":"34 km SE of West Yellowstone, Montana","time":1644656295730,"updated":1644860219330,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481762","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481762.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"uu","code":"60481762","ids":",uu60481762,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.03334,"rms":0.18,"gap":85,"magType":"md","type":"earthquake","title":"M 0.6 - 34 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8276667,44.4185,1.51]},"id":"uu60481762"},
- {"type":"Feature","properties":{"mag":0.68,"place":"33 km SE of West Yellowstone, Montana","time":1644655880370,"updated":1644859506380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481757","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481757.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"uu","code":"60481757","ids":",uu60481757,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.0279,"rms":0.06,"gap":88,"magType":"md","type":"earthquake","title":"M 0.7 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8425,44.4238333,1.99]},"id":"uu60481757"},
- {"type":"Feature","properties":{"mag":2,"place":"44 km ESE of Pedro Bay, Alaska","time":1644655617827,"updated":1644655897603,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z95dfe","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z95dfe.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"0221z95dfe","ids":",ak0221z95dfe,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 44 km ESE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.4264,59.5768,108.1]},"id":"ak0221z95dfe"},
- {"type":"Feature","properties":{"mag":4.4,"place":"Fiji region","time":1644655519904,"updated":1644656605040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk8q","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk8q.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gk8q","ids":",us7000gk8q,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.69,"rms":0.58,"gap":115,"magType":"mb","type":"earthquake","title":"M 4.4 - Fiji region"},"geometry":{"type":"Point","coordinates":[-178.4422,-21.0881,531.96]},"id":"us7000gk8q"},
- {"type":"Feature","properties":{"mag":1.42,"place":"33 km SE of West Yellowstone, Montana","time":1644655493510,"updated":1644859225050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481752","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481752.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"uu","code":"60481752","ids":",uu60481752,","sources":",uu,","types":",origin,phase-data,","nst":25,"dmin":0.03257,"rms":0.18,"gap":88,"magType":"md","type":"earthquake","title":"M 1.4 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8505,44.4205,4.25]},"id":"uu60481752"},
- {"type":"Feature","properties":{"mag":1.4,"place":"35 km SE of Mina, Nevada","time":1644655226387,"updated":1644862252140,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833734","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833734.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"nn","code":"00833734","ids":",nn00833734,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.118,"rms":0.0904,"gap":115.81,"magType":"ml","type":"earthquake","title":"M 1.4 - 35 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8157,38.1724,9.5]},"id":"nn00833734"},
- {"type":"Feature","properties":{"mag":1.13,"place":"33 km SE of West Yellowstone, Montana","time":1644654762940,"updated":1644858662280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481742","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481742.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"uu","code":"60481742","ids":",uu60481742,","sources":",uu,","types":",origin,phase-data,","nst":17,"dmin":0.03052,"rms":0.12,"gap":90,"magType":"md","type":"earthquake","title":"M 1.1 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8505,44.4226667,3.79]},"id":"uu60481742"},
- {"type":"Feature","properties":{"mag":1.25,"place":"33 km SE of West Yellowstone, Montana","time":1644654738620,"updated":1644858287770,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029974","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029974.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"uu","code":"60029974","ids":",uu60029974,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.02987,"rms":0.06,"gap":133,"magType":"md","type":"earthquake","title":"M 1.3 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8483333,44.4228333,1.93]},"id":"uu60029974"},
- {"type":"Feature","properties":{"mag":0.7,"place":"33 km SE of West Yellowstone, Montana","time":1644654725330,"updated":1644858008730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481747","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481747.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"uu","code":"60481747","ids":",uu60481747,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.02948,"rms":0.08,"gap":133,"magType":"md","type":"earthquake","title":"M 0.7 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8455,44.4226667,1.86]},"id":"uu60481747"},
- {"type":"Feature","properties":{"mag":-0.09,"place":"35 km SE of West Yellowstone, Montana","time":1644654674360,"updated":1644857697620,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029969","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029969.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uu","code":"60029969","ids":",uu60029969,","sources":",uu,","types":",origin,phase-data,","nst":5,"dmin":0.03788,"rms":0.11,"gap":107,"magType":"md","type":"earthquake","title":"M -0.1 - 35 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8145,44.4166667,0.33]},"id":"uu60029969"},
- {"type":"Feature","properties":{"mag":0.85,"place":"34 km SE of West Yellowstone, Montana","time":1644654627310,"updated":1644857511170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481737","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481737.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"uu","code":"60481737","ids":",uu60481737,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.02695,"rms":0.14,"gap":179,"magType":"md","type":"earthquake","title":"M 0.9 - 34 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8303333,44.4246667,1.58]},"id":"uu60481737"},
- {"type":"Feature","properties":{"mag":0.82,"place":"33 km SE of West Yellowstone, Montana","time":1644654411070,"updated":1644857292310,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481732","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481732.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"uu","code":"60481732","ids":",uu60481732,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.03281,"rms":0.07,"gap":130,"magType":"md","type":"earthquake","title":"M 0.8 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.846,44.4193333,1.77]},"id":"uu60481732"},
- {"type":"Feature","properties":{"mag":4.6,"place":"245 km NW of Tobelo, Indonesia","time":1644654311116,"updated":1644655946040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk8l","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk8l.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gk8l","ids":",us7000gk8l,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.727,"rms":0.76,"gap":67,"magType":"mb","type":"earthquake","title":"M 4.6 - 245 km NW of Tobelo, Indonesia"},"geometry":{"type":"Point","coordinates":[126.5505,3.3914,36.36]},"id":"us7000gk8l"},
- {"type":"Feature","properties":{"mag":1.72,"place":"4 km WSW of Guánica, Puerto Rico","time":1644654126640,"updated":1644656543340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334393","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334393.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"pr","code":"71334393","ids":",pr71334393,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.05,"gap":212,"magType":"md","type":"earthquake","title":"M 1.7 - 4 km WSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.941,17.9518333333333,13.37]},"id":"pr71334393"},
- {"type":"Feature","properties":{"mag":0.93,"place":"37 km NNE of Amboy, Washington","time":1644653804760,"updated":1644716092500,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816156","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816156.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"uw","code":"61816156","ids":",uw61816156,","sources":",uw,","types":",origin,phase-data,","nst":16,"dmin":0.006203,"rms":0.13,"gap":86,"magType":"ml","type":"earthquake","title":"M 0.9 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18533333333333,46.194,3.4]},"id":"uw61816156"},
- {"type":"Feature","properties":{"mag":0.59,"place":"3km NW of The Geysers, CA","time":1644653654560,"updated":1644660311721,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691816","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691816.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":5,"net":"nc","code":"73691816","ids":",nc73691816,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.01886,"rms":0.03,"gap":165,"magType":"md","type":"earthquake","title":"M 0.6 - 3km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7754974,38.7971649,0.79]},"id":"nc73691816"},
- {"type":"Feature","properties":{"mag":1.5,"place":"25 km S of Mina, Nevada","time":1644653585599,"updated":1644862063380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833730","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833730.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"nn","code":"00833730","ids":",nn00833730,","sources":",nn,","types":",origin,phase-data,","nst":12,"dmin":0.118,"rms":0.1249,"gap":77.46,"magType":"ml","type":"earthquake","title":"M 1.5 - 25 km S of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.127,38.1631,5.4]},"id":"nn00833730"},
- {"type":"Feature","properties":{"mag":1.6,"place":"7 km S of Ridgely, Tennessee","time":1644653480280,"updated":1644850591100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nm60381381","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nm60381381.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nm","code":"60381381","ids":",nm60381381,","sources":",nm,","types":",origin,phase-data,","nst":16,"dmin":0.02455,"rms":0.02,"gap":90,"magType":"md","type":"earthquake","title":"M 1.6 - 7 km S of Ridgely, Tennessee"},"geometry":{"type":"Point","coordinates":[-89.4975,36.1953333,6.99]},"id":"nm60381381"},
- {"type":"Feature","properties":{"mag":1.4,"place":"15km NE of Ridgecrest, CA","time":1644653087430,"updated":1644764479922,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183872","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183872.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":30,"net":"ci","code":"40183872","ids":",ci40183872,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.122,"rms":0.21,"gap":149,"magType":"ml","type":"earthquake","title":"M 1.4 - 15km NE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5458333,35.701,2.08]},"id":"ci40183872"},
- {"type":"Feature","properties":{"mag":1.75,"place":"33 km SE of West Yellowstone, Montana","time":1644652908420,"updated":1644858628227,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481727","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481727.geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":47,"net":"uu","code":"60481727","ids":",uu60481727,","sources":",uu,","types":",dyfi,origin,phase-data,","nst":18,"dmin":0.03208,"rms":0.22,"gap":91,"magType":"md","type":"earthquake","title":"M 1.8 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8523333,44.4215,3.87]},"id":"uu60481727"},
- {"type":"Feature","properties":{"mag":1,"place":"9km NE of Alum Rock, CA","time":1644651027180,"updated":1644674352154,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691811","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691811.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nc","code":"73691811","ids":",nc73691811,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.0559,"rms":0.07,"gap":71,"magType":"md","type":"earthquake","title":"M 1.0 - 9km NE of Alum Rock, CA"},"geometry":{"type":"Point","coordinates":[-121.7658333,37.4288333,10.02]},"id":"nc73691811"},
- {"type":"Feature","properties":{"mag":1.95000005,"place":"8 km NE of Pāhala, Hawaii","time":1644650903480,"updated":1644651090400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72914127","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72914127.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":59,"net":"hv","code":"72914127","ids":",hv72914127,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.119999997,"gap":122,"magType":"md","type":"earthquake","title":"M 2.0 - 8 km NE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.418334960938,19.2498340606689,31.7099990844727]},"id":"hv72914127"},
- {"type":"Feature","properties":{"mag":0.35000000000000003,"place":"35 km NNE of Amboy, Washington","time":1644649652280,"updated":1644714052670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816151","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816151.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"uw","code":"61816151","ids":",uw61816151,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.009575,"rms":0.08,"gap":156,"magType":"ml","type":"earthquake","title":"M 0.4 - 35 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.223,46.188833333333335,0.98]},"id":"uw61816151"},
- {"type":"Feature","properties":{"mag":1.95,"place":"5 km SSE of Maria Antonia, Puerto Rico","time":1644649632560,"updated":1644653751040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334378","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334378.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"pr","code":"71334378","ids":",pr71334378,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.11,"gap":237,"magType":"md","type":"earthquake","title":"M 2.0 - 5 km SSE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8698333333333,17.9278333333333,9.47]},"id":"pr71334378"},
- {"type":"Feature","properties":{"mag":2.45,"place":"8 km SE of Maria Antonia, Puerto Rico","time":1644649554200,"updated":1644652822480,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334373","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334373.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":92,"net":"pr","code":"71334373","ids":",pr71334373,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.14,"gap":224,"magType":"md","type":"earthquake","title":"M 2.5 - 8 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8425,17.9208333333333,11.81]},"id":"pr71334373"},
- {"type":"Feature","properties":{"mag":2.4,"place":"58 km N of Chickaloon, Alaska","time":1644649497105,"updated":1644649777463,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z8axqj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z8axqj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":89,"net":"ak","code":"0221z8axqj","ids":",ak0221z8axqj,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.94,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.4 - 58 km N of Chickaloon, Alaska"},"geometry":{"type":"Point","coordinates":[-148.59,62.3212,8.2]},"id":"ak0221z8axqj"},
- {"type":"Feature","properties":{"mag":-0.09,"place":"14 km NNE of Atka, Alaska","time":1644649095450,"updated":1644873986630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049578","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049578.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049578","ids":",av91049578,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.3,"gap":80,"magType":"ml","type":"earthquake","title":"M -0.1 - 14 km NNE of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-174.155166666667,52.3208333333333,3.66]},"id":"av91049578"},
- {"type":"Feature","properties":{"mag":0.73,"place":"33 km SE of West Yellowstone, Montana","time":1644648887570,"updated":1644857012760,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029959","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029959.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"uu","code":"60029959","ids":",uu60029959,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.01868,"rms":0.03,"gap":185,"magType":"md","type":"earthquake","title":"M 0.7 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8346667,44.4326667,2.18]},"id":"uu60029959"},
- {"type":"Feature","properties":{"mag":0.96,"place":"33 km SE of West Yellowstone, Montana","time":1644648870710,"updated":1644856733110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481722","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481722.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"uu","code":"60481722","ids":",uu60481722,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.02642,"rms":0.06,"gap":187,"magType":"md","type":"earthquake","title":"M 1.0 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8455,44.4258333,2.54]},"id":"uu60481722"},
- {"type":"Feature","properties":{"mag":0.65,"place":"3km W of Cobb, CA","time":1644648649510,"updated":1644989711771,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691796","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691796.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"nc","code":"73691796","ids":",nc73691796,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01204,"rms":0.07,"gap":93,"magType":"md","type":"earthquake","title":"M 0.7 - 3km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7565,38.823,0.2]},"id":"nc73691796"},
- {"type":"Feature","properties":{"mag":1.13,"place":"3km W of Cobb, CA","time":1644648608610,"updated":1644657131428,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691791","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691791.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73691791","ids":",nc73691791,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01284,"rms":0.03,"gap":146,"magType":"md","type":"earthquake","title":"M 1.1 - 3km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7545013,38.8260002,0.63]},"id":"nc73691791"},
- {"type":"Feature","properties":{"mag":1.25,"place":"33 km SE of West Yellowstone, Montana","time":1644648564570,"updated":1644858821600,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481717","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481717.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"uu","code":"60481717","ids":",uu60481717,","sources":",uu,","types":",origin,phase-data,","nst":16,"dmin":0.03436,"rms":0.18,"gap":90,"magType":"md","type":"earthquake","title":"M 1.3 - 33 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.85,44.4185,4.21]},"id":"uu60481717"},
- {"type":"Feature","properties":{"mag":1.23,"place":"12km S of Olancha, CA","time":1644648500950,"updated":1644774732855,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183856","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183856.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40183856","ids":",ci40183856,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.08676,"rms":0.12,"gap":55,"magType":"ml","type":"earthquake","title":"M 1.2 - 12km S of Olancha, CA"},"geometry":{"type":"Point","coordinates":[-118.0263333,36.1755,3.77]},"id":"ci40183856"},
- {"type":"Feature","properties":{"mag":5,"place":"27 km E of Wewak, Papua New Guinea","time":1644647785334,"updated":1644649694098,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk89","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk89.geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":385,"net":"us","code":"7000gk89","ids":",us7000gk89,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":3.776,"rms":0.47,"gap":68,"magType":"mb","type":"earthquake","title":"M 5.0 - 27 km E of Wewak, Papua New Guinea"},"geometry":{"type":"Point","coordinates":[143.8819,-3.5195,10]},"id":"us7000gk89"},
- {"type":"Feature","properties":{"mag":1.4,"place":"19 km SE of Susitna North, Alaska","time":1644647484665,"updated":1644647723565,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z7v7yq","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z7v7yq.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221z7v7yq","ids":",ak0221z7v7yq,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.67,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 19 km SE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6303,62.023,32.4]},"id":"ak0221z7v7yq"},
- {"type":"Feature","properties":{"mag":0.84,"place":"32 km SE of West Yellowstone, Montana","time":1644647206540,"updated":1644855743080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481712","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481712.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"uu","code":"60481712","ids":",uu60481712,","sources":",uu,","types":",origin,phase-data,","nst":11,"dmin":0.02789,"rms":0.23,"gap":136,"magType":"md","type":"earthquake","title":"M 0.8 - 32 km SE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.8571667,44.428,5.37]},"id":"uu60481712"},
- {"type":"Feature","properties":{"mag":1.5,"place":"5 km WSW of Four Mile Road, Alaska","time":1644647171766,"updated":1644647883961,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z7u4d4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z7u4d4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221z7u4d4","ids":",ak0221z7u4d4,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.12,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 5 km WSW of Four Mile Road, Alaska"},"geometry":{"type":"Point","coordinates":[-149.2276,64.5841,10]},"id":"ak0221z7u4d4"},
- {"type":"Feature","properties":{"mag":1.69,"place":"5 km SSE of Touchet, Washington","time":1644646752690,"updated":1644713630640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816141","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816141.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"uw","code":"61816141","ids":",uw61816141,","sources":",uw,","types":",origin,phase-data,","nst":20,"dmin":0.03003,"rms":0.18,"gap":86,"magType":"ml","type":"earthquake","title":"M 1.7 - 5 km SSE of Touchet, Washington"},"geometry":{"type":"Point","coordinates":[-118.64316666666667,45.994,8.06]},"id":"uw61816141"},
- {"type":"Feature","properties":{"mag":0.46,"place":"49 km NE of King Cove, Alaska","time":1644646570300,"updated":1644872475720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049568","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049568.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"av","code":"91049568","ids":",av91049568,","sources":",av,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.15,"gap":107,"magType":"ml","type":"earthquake","title":"M 0.5 - 49 km NE of King Cove, Alaska"},"geometry":{"type":"Point","coordinates":[-161.825333333333,55.4025,10.15]},"id":"av91049568"},
- {"type":"Feature","properties":{"mag":0.96,"place":"47 km NE of King Cove, Alaska","time":1644646532790,"updated":1644871988950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049558","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049558.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"av","code":"91049558","ids":",av91049558,","sources":",av,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.11,"gap":108,"magType":"ml","type":"earthquake","title":"M 1.0 - 47 km NE of King Cove, Alaska"},"geometry":{"type":"Point","coordinates":[-161.876,55.4071666666667,8.95]},"id":"av91049558"},
- {"type":"Feature","properties":{"mag":0.6,"place":"22km ESE of Little Lake, CA","time":1644646484570,"updated":1644774473907,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40183848","ids":",ci40183848,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.07956,"rms":0.13,"gap":91,"magType":"ml","type":"earthquake","title":"M 0.6 - 22km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6721667,35.8673333,7.36]},"id":"ci40183848"},
- {"type":"Feature","properties":{"mag":1.4,"place":"68 km ESE of Denali Park, Alaska","time":1644646478501,"updated":1644646721361,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z7rkfh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z7rkfh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221z7rkfh","ids":",ak0221z7rkfh,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.23,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 68 km ESE of Denali Park, Alaska"},"geometry":{"type":"Point","coordinates":[-147.579,63.573,26.6]},"id":"ak0221z7rkfh"},
- {"type":"Feature","properties":{"mag":0.85,"place":"4km W of Cobb, CA","time":1644645848140,"updated":1644647593436,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691776","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691776.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691776","ids":",nc73691776,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.009639,"rms":0.02,"gap":195,"magType":"md","type":"earthquake","title":"M 0.9 - 4km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7639999,38.8219986,2.37]},"id":"nc73691776"},
- {"type":"Feature","properties":{"mag":0.98,"place":"24km NW of Parkfield, CA","time":1644645822550,"updated":1644958555715,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691771","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691771.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nc","code":"73691771","ids":",nc73691771,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.02405,"rms":0.09,"gap":98,"magType":"md","type":"earthquake","title":"M 1.0 - 24km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.6136667,36.0493333,5.8]},"id":"nc73691771"},
- {"type":"Feature","properties":{"mag":-0.19,"place":"12 km SE of Unalaska, Alaska","time":1644645811710,"updated":1644872706830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049573","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049573.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049573","ids":",av91049573,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.03,"gap":313,"magType":"ml","type":"earthquake","title":"M -0.2 - 12 km SE of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.406833333333,53.7878333333333,8]},"id":"av91049573"},
- {"type":"Feature","properties":{"mag":2,"place":"6 km S of Guánica, Puerto Rico","time":1644645647090,"updated":1644649132580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334363","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334363.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"pr","code":"71334363","ids":",pr71334363,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.15,"gap":267,"magType":"md","type":"earthquake","title":"M 2.0 - 6 km S of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9093333333333,17.9161666666667,12.49]},"id":"pr71334363"},
- {"type":"Feature","properties":{"mag":2.3,"place":"44 km W of Nanwalek, Alaska","time":1644644801506,"updated":1644645629482,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z7d1dw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z7d1dw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"ak","code":"0221z7d1dw","ids":",ak0221z7d1dw,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.3 - 44 km W of Nanwalek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.6945,59.286,62.1]},"id":"ak0221z7d1dw"},
- {"type":"Feature","properties":{"mag":0.53,"place":"16km W of Searles Valley, CA","time":1644644610060,"updated":1644858309130,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183832","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183832.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40183832","ids":",ci40183832,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.04146,"rms":0.16,"gap":145,"magType":"ml","type":"earthquake","title":"M 0.5 - 16km W of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5801667,35.7766667,4.22]},"id":"ci40183832"},
- {"type":"Feature","properties":{"mag":1.95,"place":"33 km W of Enterprise, Utah","time":1644644302660,"updated":1644848508320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481707","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481707.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"uu","code":"60481707","ids":",uu60481707,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.1993,"rms":0.17,"gap":198,"magType":"ml","type":"earthquake","title":"M 2.0 - 33 km W of Enterprise, Utah"},"geometry":{"type":"Point","coordinates":[-114.0958333,37.5218333,12.05]},"id":"uu60481707"},
- {"type":"Feature","properties":{"mag":4.3,"place":"248 km WNW of Haveluloto, Tonga","time":1644643839848,"updated":1644647077040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk7z","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk7z.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gk7z","ids":",us7000gk7z,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.997,"rms":0.51,"gap":123,"magType":"mb","type":"earthquake","title":"M 4.3 - 248 km WNW of Haveluloto, Tonga"},"geometry":{"type":"Point","coordinates":[-177.4745,-20.421,485.72]},"id":"us7000gk7z"},
- {"type":"Feature","properties":{"mag":1.64,"place":"3 km ENE of Alpine Northeast, Wyoming","time":1644643530010,"updated":1644679516420,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538234","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538234.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":41,"net":"mb","code":"80538234","ids":",mb80538234,","sources":",mb,","types":",origin,phase-data,","nst":10,"dmin":0.289,"rms":0.24,"gap":133,"magType":"ml","type":"earthquake","title":"M 1.6 - 3 km ENE of Alpine Northeast, Wyoming"},"geometry":{"type":"Point","coordinates":[-110.9676667,43.2008333,7.97]},"id":"mb80538234"},
- {"type":"Feature","properties":{"mag":0.9,"place":"27 km SSW of Mina, Nevada","time":1644642793940,"updated":1644865775107,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833729","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833729.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nn","code":"00833729","ids":",nn00833729,","sources":",nn,","types":",origin,phase-data,","nst":11,"dmin":0.211,"rms":0.0901,"gap":138.81,"magType":"ml","type":"earthquake","title":"M 0.9 - 27 km SSW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.2261,38.1617,10.1]},"id":"nn00833729"},
- {"type":"Feature","properties":{"mag":1.04,"place":"6km NW of The Geysers, CA","time":1644642341100,"updated":1644643397936,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691766","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691766.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":17,"net":"nc","code":"73691766","ids":",nc73691766,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.009668,"rms":0.06,"gap":50,"magType":"md","type":"earthquake","title":"M 1.0 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.807663,38.8074989,0.83]},"id":"nc73691766"},
- {"type":"Feature","properties":{"mag":1.57,"place":"5 km ENE of La Parguera, Puerto Rico","time":1644641291980,"updated":1644674451800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334408","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334408.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"pr","code":"71334408","ids":",pr71334408,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.03,"gap":153,"magType":"md","type":"earthquake","title":"M 1.6 - 5 km ENE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9998333333333,17.9871666666667,9.93]},"id":"pr71334408"},
- {"type":"Feature","properties":{"mag":1.74,"place":"15 km SSE of Sunnyside, Utah","time":1644641252020,"updated":1644854876310,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481697","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481697.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":47,"net":"uu","code":"60481697","ids":",uu60481697,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.01738,"rms":0.08,"gap":197,"magType":"md","type":"earthquake","title":"M 1.7 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3026667,39.4241667,-2.23]},"id":"uu60481697"},
- {"type":"Feature","properties":{"mag":0.62,"place":"13km NW of The Geysers, CA","time":1644641039520,"updated":1644642072796,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691761","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691761.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73691761","ids":",nc73691761,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.006906,"rms":0.02,"gap":160,"magType":"md","type":"earthquake","title":"M 0.6 - 13km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.876503,38.8424988,2.2]},"id":"nc73691761"},
- {"type":"Feature","properties":{"mag":1.4,"place":"34 km SE of Denali National Park, Alaska","time":1644641025810,"updated":1644641221744,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z6qyz9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z6qyz9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221z6qyz9","ids":",ak0221z6qyz9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.41,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 34 km SE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.2399,63.3137,16.9]},"id":"ak0221z6qyz9"},
- {"type":"Feature","properties":{"mag":1.23,"place":"8km N of Mojave, CA","time":1644640724210,"updated":1644773887203,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183800","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183800.geojson","felt":1,"cdi":0,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ci","code":"40183800","ids":",ci40183800,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.1198,"rms":0.18,"gap":55,"magType":"ml","type":"earthquake","title":"M 1.2 - 8km N of Mojave, CA"},"geometry":{"type":"Point","coordinates":[-118.1575,35.121,4.89]},"id":"ci40183800"},
- {"type":"Feature","properties":{"mag":0.9,"place":"9 km NNE of Truckee, California","time":1644640459965,"updated":1644871883181,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833728","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833728.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"nn","code":"00833728","ids":",nn00833728,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.112,"rms":0.0604,"gap":73.48,"magType":"ml","type":"earthquake","title":"M 0.9 - 9 km NNE of Truckee, California"},"geometry":{"type":"Point","coordinates":[-120.1572,39.4066,7.5]},"id":"nn00833728"},
- {"type":"Feature","properties":{"mag":5,"place":"54 km SE of Honiara, Solomon Islands","time":1644640384945,"updated":1644645398779,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk7u","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk7u.geojson","felt":6,"cdi":3.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":387,"net":"us","code":"7000gk7u","ids":",us7000gk7u,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.483,"rms":0.62,"gap":74,"magType":"mb","type":"earthquake","title":"M 5.0 - 54 km SE of Honiara, Solomon Islands"},"geometry":{"type":"Point","coordinates":[160.2241,-9.8407,33.04]},"id":"us7000gk7u"},
- {"type":"Feature","properties":{"mag":0.61,"place":"5 km NE of Howell, Utah","time":1644640230170,"updated":1644854689110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481692","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481692.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"uu","code":"60481692","ids":",uu60481692,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.1133,"rms":0.04,"gap":125,"magType":"md","type":"earthquake","title":"M 0.6 - 5 km NE of Howell, Utah"},"geometry":{"type":"Point","coordinates":[-112.3921667,41.8278333,6.88]},"id":"uu60481692"},
- {"type":"Feature","properties":{"mag":0.74,"place":"3km SE of The Geysers, CA","time":1644639605720,"updated":1644641352732,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691756","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691756.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":8,"net":"nc","code":"73691756","ids":",nc73691756,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.006635,"rms":0.02,"gap":104,"magType":"md","type":"earthquake","title":"M 0.7 - 3km SE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7333298,38.7611656,1.52]},"id":"nc73691756"},
- {"type":"Feature","properties":{"mag":4.9,"place":"243 km SSW of ‘Ohonua, Tonga","time":1644638877782,"updated":1644640080040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk7r","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk7r.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gk7r","ids":",us7000gk7r,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":6.154,"rms":1.36,"gap":124,"magType":"mb","type":"earthquake","title":"M 4.9 - 243 km SSW of ‘Ohonua, Tonga"},"geometry":{"type":"Point","coordinates":[-175.6328,-23.4352,10]},"id":"us7000gk7r"},
- {"type":"Feature","properties":{"mag":1.09,"place":"6km NNW of Toms Place, CA","time":1644638505350,"updated":1644778694608,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691746","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691746.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"nc","code":"73691746","ids":",nc73691746,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.04566,"rms":0.04,"gap":113,"magType":"md","type":"earthquake","title":"M 1.1 - 6km NNW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.7156667,37.6045,2.83]},"id":"nc73691746"},
- {"type":"Feature","properties":{"mag":0.59,"place":"22km ESE of Little Lake, CA","time":1644638292490,"updated":1644857931088,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183792","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183792.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40183792","ids":",ci40183792,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.07842,"rms":0.08,"gap":88,"magType":"ml","type":"earthquake","title":"M 0.6 - 22km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.674,35.8636667,7.79]},"id":"ci40183792"},
- {"type":"Feature","properties":{"mag":0.63,"place":"8 km ESE of Pony, Montana","time":1644638091600,"updated":1644880860170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538429","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538429.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"mb","code":"80538429","ids":",mb80538429,","sources":",mb,","types":",origin,phase-data,","nst":5,"dmin":0.121,"rms":0.08,"gap":104,"magType":"ml","type":"earthquake","title":"M 0.6 - 8 km ESE of Pony, Montana"},"geometry":{"type":"Point","coordinates":[-111.7995,45.6188333,0.66]},"id":"mb80538429"},
- {"type":"Feature","properties":{"mag":1.12,"place":"5 km SE of Unalaska, Alaska","time":1644637920230,"updated":1644870905060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049548","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049548.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"av","code":"91049548","ids":",av91049548,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.14,"gap":303,"magType":"ml","type":"earthquake","title":"M 1.1 - 5 km SE of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.473,53.8436666666667,9.5]},"id":"av91049548"},
- {"type":"Feature","properties":{"mag":1.79,"place":"0 km N of Tallaboa, Puerto Rico","time":1644637668450,"updated":1644638403080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334353","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334353.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"pr","code":"71334353","ids":",pr71334353,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.16,"gap":147,"magType":"md","type":"earthquake","title":"M 1.8 - 0 km N of Tallaboa, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.7168333333333,17.9993333333333,14.03]},"id":"pr71334353"},
- {"type":"Feature","properties":{"mag":2.73,"place":"4 km SW of Volcano, Hawaii","time":1644637549240,"updated":1644639290040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913877","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913877.geojson","felt":8,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":117,"net":"hv","code":"72913877","ids":",hv72913877,us7000gk7l,","sources":",hv,us,","types":",dyfi,origin,phase-data,","nst":25,"dmin":null,"rms":0.08,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.7 - 4 km SW of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.2615,19.4125,13.1]},"id":"hv72913877"},
- {"type":"Feature","properties":{"mag":1.52,"place":"8 km S of Harrison, Montana","time":1644637518480,"updated":1644678828650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538229","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538229.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"mb","code":"80538229","ids":",mb80538229,","sources":",mb,","types":",origin,phase-data,","nst":21,"dmin":0.111,"rms":0.19,"gap":53,"magType":"ml","type":"earthquake","title":"M 1.5 - 8 km S of Harrison, Montana"},"geometry":{"type":"Point","coordinates":[-111.785,45.6198333,3.24]},"id":"mb80538229"},
- {"type":"Feature","properties":{"mag":0.64,"place":"11km E of Mammoth Lakes, CA","time":1644637099960,"updated":1644772510877,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691741","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691741.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nc","code":"73691741","ids":",nc73691741,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.008954,"rms":0.03,"gap":90,"magType":"md","type":"earthquake","title":"M 0.6 - 11km E of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.8526667,37.6226667,5.69]},"id":"nc73691741"},
- {"type":"Feature","properties":{"mag":1.47,"place":"7km SSW of Holtville, CA","time":1644637093600,"updated":1644773511568,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183776","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183776.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"ci","code":"40183776","ids":",ci40183776,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.05877,"rms":0.22,"gap":67,"magType":"ml","type":"earthquake","title":"M 1.5 - 7km SSW of Holtville, CA"},"geometry":{"type":"Point","coordinates":[-115.4146667,32.753,12.05]},"id":"ci40183776"},
- {"type":"Feature","properties":{"mag":0.4,"place":"16 km NNW of Sutcliffe, Nevada","time":1644636987249,"updated":1644883022081,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833870","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833870.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833870","ids":",nn00833870,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.096,"rms":0.0413,"gap":184.28,"magType":"ml","type":"earthquake","title":"M 0.4 - 16 km NNW of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6625,40.0901,12.7]},"id":"nn00833870"},
- {"type":"Feature","properties":{"mag":0.75,"place":"12 km E of Crowder, Oklahoma","time":1644636291770,"updated":1644864978507,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cyzx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cyzx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ok","code":"2022cyzx","ids":",ok2022cyzx,","sources":",ok,","types":",origin,phase-data,","nst":34,"dmin":0.1007802235,"rms":0.24,"gap":94,"magType":"ml","type":"earthquake","title":"M 0.8 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53033333,35.11416667,7]},"id":"ok2022cyzx"},
- {"type":"Feature","properties":{"mag":2.43,"place":"1 km S of Guánica, Puerto Rico","time":1644636150490,"updated":1644637510200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334348","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334348.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":91,"net":"pr","code":"71334348","ids":",pr71334348,","sources":",pr,","types":",origin,phase-data,","nst":12,"dmin":null,"rms":0.25,"gap":203,"magType":"md","type":"earthquake","title":"M 2.4 - 1 km S of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9101666666667,17.9571666666667,15.57]},"id":"pr71334348"},
- {"type":"Feature","properties":{"mag":2.41,"place":"2 km SSE of Guánica, Puerto Rico","time":1644635967030,"updated":1644638473490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334343","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334343.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":89,"net":"pr","code":"71334343","ids":",pr71334343,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.09,"gap":213,"magType":"md","type":"earthquake","title":"M 2.4 - 2 km SSE of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9011666666667,17.9458333333333,13.16]},"id":"pr71334343"},
- {"type":"Feature","properties":{"mag":2.1,"place":"56 km WNW of Ninilchik, Alaska","time":1644635754956,"updated":1644638086459,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z5zk10","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z5zk10.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"0221z5zk10","ids":",ak0221z5zk10,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.83,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 56 km WNW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.5351,60.3122,102]},"id":"ak0221z5zk10"},
- {"type":"Feature","properties":{"mag":3.24,"place":"2km NNE of San Leandro, CA","time":1644635622080,"updated":1645080997209,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691736","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691736.geojson","felt":1113,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":542,"net":"nc","code":"73691736","ids":",nc73691736,us7000gk7c,","sources":",nc,us,","types":",dyfi,focal-mechanism,moment-tensor,nearby-cities,origin,phase-data,scitech-link,","nst":146,"dmin":0.02732,"rms":0.13,"gap":21,"magType":"mw","type":"earthquake","title":"M 3.2 - 2km NNE of San Leandro, CA"},"geometry":{"type":"Point","coordinates":[-122.1478333,37.7395,3.84]},"id":"nc73691736"},
- {"type":"Feature","properties":{"mag":4.5,"place":"79 km E of Hualien City, Taiwan","time":1644635373360,"updated":1644639369944,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk7a","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk7a.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gk7a","ids":",us7000gk7a,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.763,"rms":0.82,"gap":181,"magType":"mb","type":"earthquake","title":"M 4.5 - 79 km E of Hualien City, Taiwan"},"geometry":{"type":"Point","coordinates":[122.3837,23.9215,10]},"id":"us7000gk7a"},
- {"type":"Feature","properties":{"mag":0.48,"place":"84 km W of Adak, Alaska","time":1644635322030,"updated":1644788177910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91487261","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91487261.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"av","code":"91487261","ids":",av91487261,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.07,"gap":215,"magType":"ml","type":"earthquake","title":"M 0.5 - 84 km W of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-177.863833333333,51.8656666666667,8.08]},"id":"av91487261"},
- {"type":"Feature","properties":{"mag":1.37,"place":"1 km WSW of Dibble, Oklahoma","time":1644635284820,"updated":1644852666645,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cyzi","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cyzi.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":29,"net":"ok","code":"2022cyzi","ids":",ok2022cyzi,","sources":",ok,","types":",origin,phase-data,","nst":38,"dmin":0.1133777514,"rms":0.21,"gap":82,"magType":"ml","type":"earthquake","title":"M 1.4 - 1 km WSW of Dibble, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6485,35.02816667,10.2]},"id":"ok2022cyzi"},
- {"type":"Feature","properties":{"mag":4,"place":"67 km ESE of Nikolski, Alaska","time":1644635069016,"updated":1644699435690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk7b","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk7b.geojson","felt":null,"cdi":null,"mmi":1.005,"alert":null,"status":"reviewed","tsunami":0,"sig":246,"net":"us","code":"7000gk7b","ids":",ak0221z5x5te,us7000gk7b,","sources":",ak,us,","types":",origin,phase-data,shakemap,","nst":null,"dmin":0.614,"rms":0.64,"gap":180,"magType":"mb","type":"earthquake","title":"M 4.0 - 67 km ESE of Nikolski, Alaska"},"geometry":{"type":"Point","coordinates":[-167.9375,52.7125,42.96]},"id":"us7000gk7b"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km NW of The Geysers, CA","time":1644635022410,"updated":1644636613170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691731","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691731.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691731","ids":",nc73691731,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01225,"rms":0.01,"gap":79,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8171692,38.8343315,1.51]},"id":"nc73691731"},
- {"type":"Feature","properties":{"mag":1.22,"place":"24km NW of Parkfield, CA","time":1644634458420,"updated":1644967630574,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691726","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691726.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"nc","code":"73691726","ids":",nc73691726,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.0225,"rms":0.08,"gap":78,"magType":"md","type":"earthquake","title":"M 1.2 - 24km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.6126667,36.0506667,5.85]},"id":"nc73691726"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km NW of The Geysers, CA","time":1644634179260,"updated":1644635293043,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691721","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691721.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691721","ids":",nc73691721,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.005769,"rms":0.01,"gap":65,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8276672,38.8226662,1.18]},"id":"nc73691721"},
- {"type":"Feature","properties":{"mag":2.1,"place":"28 km NE of Fox River, Alaska","time":1644634028202,"updated":1644634300164,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z5kvqd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z5kvqd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":68,"net":"ak","code":"0221z5kvqd","ids":",ak0221z5kvqd,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.93,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.1 - 28 km NE of Fox River, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5678,60.021,18.3]},"id":"ak0221z5kvqd"},
- {"type":"Feature","properties":{"mag":1.90999997,"place":"8 km ESE of Pāhala, Hawaii","time":1644633837970,"updated":1644634028740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913837","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913837.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"hv","code":"72913837","ids":",hv72913837,","sources":",hv,","types":",origin,phase-data,","nst":41,"dmin":null,"rms":0.129999995,"gap":163,"magType":"md","type":"earthquake","title":"M 1.9 - 8 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.403167724609,19.183500289917,31.3500003814697]},"id":"hv72913837"},
- {"type":"Feature","properties":{"mag":0.62,"place":"11km NW of Toms Place, CA","time":1644633706780,"updated":1644675912280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691716","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691716.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nc","code":"73691716","ids":",nc73691716,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.04642,"rms":0.04,"gap":169,"magType":"md","type":"earthquake","title":"M 0.6 - 11km NW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.7796667,37.6148333,6.47]},"id":"nc73691716"},
- {"type":"Feature","properties":{"mag":1.02,"place":"12 km E of Crowder, Oklahoma","time":1644633666209,"updated":1644861617841,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cyyl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cyyl.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ok","code":"2022cyyl","ids":",ok2022cyyl,","sources":",ok,","types":",origin,phase-data,","nst":37,"dmin":0.112477928,"rms":0.22,"gap":86,"magType":"ml","type":"earthquake","title":"M 1.0 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.5335,35.1025,7.19]},"id":"ok2022cyyl"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km WNW of Cobb, CA","time":1644633565310,"updated":1644634633983,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691711","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691711.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691711","ids":",nc73691711,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.01282,"rms":0.01,"gap":117,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8083344,38.8361664,2.03]},"id":"nc73691711"},
- {"type":"Feature","properties":{"mag":1.41,"place":"9km NNE of Talmage, CA","time":1644632928180,"updated":1644965951416,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691706","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691706.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"nc","code":"73691706","ids":",nc73691706,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.1159,"rms":0.1,"gap":110,"magType":"md","type":"earthquake","title":"M 1.4 - 9km NNE of Talmage, CA"},"geometry":{"type":"Point","coordinates":[-123.1195,39.2058333,3.85]},"id":"nc73691706"},
- {"type":"Feature","properties":{"mag":2.08,"place":"7 km S of Indios, Puerto Rico","time":1644632905580,"updated":1644635809770,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334333","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334333.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":67,"net":"pr","code":"71334333","ids":",pr71334333,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.23,"gap":220,"magType":"md","type":"earthquake","title":"M 2.1 - 7 km S of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8316666666667,17.9293333333333,15.33]},"id":"pr71334333"},
- {"type":"Feature","properties":{"mag":1.1,"place":"24 km SSE of Glacier View, Alaska","time":1644632575285,"updated":1644632726276,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z5fmgo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z5fmgo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":19,"net":"ak","code":"0221z5fmgo","ids":",ak0221z5fmgo,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.4,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.1 - 24 km SSE of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.4753,61.6071,27.4]},"id":"ak0221z5fmgo"},
- {"type":"Feature","properties":{"mag":0.77,"place":"23km ESE of Little Lake, CA","time":1644632430650,"updated":1644857551053,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391804","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391804.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"37391804","ids":",ci37391804,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.07713,"rms":0.1,"gap":88,"magType":"ml","type":"earthquake","title":"M 0.8 - 23km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6741667,35.8613333,7.81]},"id":"ci37391804"},
- {"type":"Feature","properties":{"mag":0.59,"place":"22km ESE of Little Lake, CA","time":1644632428460,"updated":1644857787071,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391812","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391812.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"37391812","ids":",ci37391812,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.07934,"rms":0.11,"gap":87,"magType":"ml","type":"earthquake","title":"M 0.6 - 22km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6763333,35.8626667,6.98]},"id":"ci37391812"},
- {"type":"Feature","properties":{"mag":1.19,"place":"7km W of Cobb, CA","time":1644631248070,"updated":1644643450941,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691701","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691701.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"nc","code":"73691701","ids":",nc73691701,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.008271,"rms":0.04,"gap":61,"magType":"md","type":"earthquake","title":"M 1.2 - 7km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8050003,38.8306656,1.42]},"id":"nc73691701"},
- {"type":"Feature","properties":{"mag":1.6,"place":"63 km N of Chase, Alaska","time":1644631208011,"updated":1644631424150,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z5atm8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z5atm8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221z5atm8","ids":",ak0221z5atm8,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.99,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 63 km N of Chase, Alaska"},"geometry":{"type":"Point","coordinates":[-149.9523,63.0183,87.7]},"id":"ak0221z5atm8"},
- {"type":"Feature","properties":{"mag":0.54,"place":"3 km W of Benton City, Washington","time":1644630854840,"updated":1644712761570,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uw","code":"61816136","ids":",uw61816136,","sources":",uw,","types":",origin,phase-data,","nst":7,"dmin":0.07348,"rms":0.05,"gap":192,"magType":"ml","type":"earthquake","title":"M 0.5 - 3 km W of Benton City, Washington"},"geometry":{"type":"Point","coordinates":[-119.53783333333334,46.26166666666666,6.6]},"id":"uw61816136"},
- {"type":"Feature","properties":{"mag":1.9,"place":"42 km ENE of Susitna North, Alaska","time":1644630245758,"updated":1644630512600,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z4ysse","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z4ysse.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221z4ysse","ids":",ak0221z4ysse,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.49,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 42 km ENE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.136,62.3482,0]},"id":"ak0221z4ysse"},
- {"type":"Feature","properties":{"mag":0.85,"place":"6km WNW of Cobb, CA","time":1644630189170,"updated":1644631453657,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691691","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691691.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691691","ids":",nc73691691,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.0059,"rms":0.01,"gap":94,"magType":"md","type":"earthquake","title":"M 0.9 - 6km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7903366,38.8325005,1.74]},"id":"nc73691691"},
- {"type":"Feature","properties":{"mag":0.3,"place":"5km NW of The Geysers, CA","time":1644629140370,"updated":1644953837264,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691681","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691681.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nc","code":"73691681","ids":",nc73691681,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.004466,"rms":0.02,"gap":53,"magType":"md","type":"earthquake","title":"M 0.3 - 5km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.801,38.8083333,3.14]},"id":"nc73691681"},
- {"type":"Feature","properties":{"mag":1.6,"place":"40 km WSW of Clear, Alaska, Alaska","time":1644628786000,"updated":1644629320412,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z4tj06","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z4tj06.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221z4tj06","ids":",ak0221z4tj06,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 40 km WSW of Clear, Alaska, Alaska"},"geometry":{"type":"Point","coordinates":[-150.0019,64.1746,0]},"id":"ak0221z4tj06"},
- {"type":"Feature","properties":{"mag":0.66,"place":"3km SE of The Geysers, CA","time":1644628362250,"updated":1644629487458,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691671","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691671.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":7,"net":"nc","code":"73691671","ids":",nc73691671,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.005722,"rms":0.03,"gap":130,"magType":"md","type":"earthquake","title":"M 0.7 - 3km SE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7318344,38.7633324,1.63]},"id":"nc73691671"},
- {"type":"Feature","properties":{"mag":2.34,"place":"6 km SE of Maria Antonia, Puerto Rico","time":1644628314470,"updated":1644629984550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334328","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334328.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"pr","code":"71334328","ids":",pr71334328,","sources":",pr,","types":",origin,phase-data,","nst":20,"dmin":null,"rms":0.14,"gap":179,"magType":"md","type":"earthquake","title":"M 2.3 - 6 km SE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8445,17.9423333333333,11.81]},"id":"pr71334328"},
- {"type":"Feature","properties":{"mag":0.87,"place":"12km N of Tecate, B.C., MX","time":1644627772180,"updated":1644770162365,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183712","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183712.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40183712","ids":",ci40183712,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.04597,"rms":0.16,"gap":135,"magType":"ml","type":"earthquake","title":"M 0.9 - 12km N of Tecate, B.C., MX"},"geometry":{"type":"Point","coordinates":[-116.6176667,32.6786667,20.21]},"id":"ci40183712"},
- {"type":"Feature","properties":{"mag":1,"place":"13 km NNW of Indian Springs, Nevada","time":1644627405119,"updated":1644719901593,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833721","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833721.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833721","ids":",nn00833721,","sources":",nn,","types":",origin,phase-data,","nst":20,"dmin":0.216,"rms":0.1971,"gap":153.47,"magType":"ml","type":"earthquake","title":"M 1.0 - 13 km NNW of Indian Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-115.7121,36.6866,7.7]},"id":"nn00833721"},
- {"type":"Feature","properties":{"mag":5.2,"place":"67 km WSW of Basco, Philippines","time":1644626468560,"updated":1644627649040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk5t","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk5t.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":416,"net":"us","code":"7000gk5t","ids":",us7000gk5t,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.68,"rms":0.85,"gap":46,"magType":"mww","type":"earthquake","title":"M 5.2 - 67 km WSW of Basco, Philippines"},"geometry":{"type":"Point","coordinates":[121.4068,20.1411,36.41]},"id":"us7000gk5t"},
- {"type":"Feature","properties":{"mag":0.88,"place":"15km SSW of Searles Valley, CA","time":1644626392530,"updated":1644769812973,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183696","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183696.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40183696","ids":",ci40183696,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.0554,"rms":0.13,"gap":222,"magType":"ml","type":"earthquake","title":"M 0.9 - 15km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4603333,35.642,7.18]},"id":"ci40183696"},
- {"type":"Feature","properties":{"mag":0.09,"place":"23km ESE of Anza, CA","time":1644626231260,"updated":1644857062254,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183704","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183704.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40183704","ids":",ci40183704,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.111,"rms":0.16,"gap":218,"magType":"ml","type":"earthquake","title":"M 0.1 - 23km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4401667,33.4763333,2.15]},"id":"ci40183704"},
- {"type":"Feature","properties":{"mag":0.4,"place":"8km NW of The Geysers, CA","time":1644625644110,"updated":1644953055196,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691666","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691666.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nc","code":"73691666","ids":",nc73691666,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.01043,"rms":0.04,"gap":54,"magType":"md","type":"earthquake","title":"M 0.4 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8153333,38.833,1.74]},"id":"nc73691666"},
- {"type":"Feature","properties":{"mag":1,"place":"30 km NNW of Indian Springs, Nevada","time":1644625638757,"updated":1644719900166,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833714","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833714.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833714","ids":",nn00833714,","sources":",nn,","types":",origin,phase-data,","nst":21,"dmin":0.077,"rms":0.1526,"gap":242,"magType":"ml","type":"earthquake","title":"M 1.0 - 30 km NNW of Indian Springs, Nevada"},"geometry":{"type":"Point","coordinates":[-115.8469,36.8039,8.8]},"id":"nn00833714"},
- {"type":"Feature","properties":{"mag":3.93,"place":"98km W of Petrolia, CA","time":1644625579710,"updated":1644697851780,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691661","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691661.geojson","felt":2,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":238,"net":"nc","code":"73691661","ids":",nc73691661,us7000gk5p,","sources":",nc,us,","types":",dyfi,moment-tensor,nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.8446,"rms":0.29,"gap":276,"magType":"mw","type":"earthquake","title":"M 3.9 - 98km W of Petrolia, CA"},"geometry":{"type":"Point","coordinates":[-125.442,40.3718333,22.09]},"id":"nc73691661"},
- {"type":"Feature","properties":{"mag":0.61,"place":"4km SSE of Redlands, CA","time":1644625447680,"updated":1644855896748,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183688","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183688.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40183688","ids":",ci40183688,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.05154,"rms":0.22,"gap":200,"magType":"ml","type":"earthquake","title":"M 0.6 - 4km SSE of Redlands, CA"},"geometry":{"type":"Point","coordinates":[-117.1711667,34.0188333,5.23]},"id":"ci40183688"},
- {"type":"Feature","properties":{"mag":1.28,"place":"2 km E of Green, Oregon","time":1644625168310,"updated":1644717428460,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816111","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816111.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"uw","code":"61816111","ids":",uw61816111,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.06639,"rms":0.31,"gap":77,"magType":"ml","type":"earthquake","title":"M 1.3 - 2 km E of Green, Oregon"},"geometry":{"type":"Point","coordinates":[-123.34016666666666,43.15716666666667,-0.38]},"id":"uw61816111"},
- {"type":"Feature","properties":{"mag":1.9,"place":"16 km SE of Clam Gulch, Alaska","time":1644624888903,"updated":1644625193306,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z4710h","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z4710h.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221z4710h","ids":",ak0221z4710h,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 16 km SE of Clam Gulch, Alaska"},"geometry":{"type":"Point","coordinates":[-151.1654,60.1406,57.6]},"id":"ak0221z4710h"},
- {"type":"Feature","properties":{"mag":0.37,"place":"37 km NNE of Amboy, Washington","time":1644624831680,"updated":1644630789050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816106","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816106.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"uw","code":"61816106","ids":",uw61816106,","sources":",uw,","types":",origin,phase-data,","nst":13,"dmin":0.002056,"rms":0.13,"gap":58,"magType":"ml","type":"earthquake","title":"M 0.4 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.191,46.20183333333333,4.63]},"id":"uw61816106"},
- {"type":"Feature","properties":{"mag":0.63,"place":"4km SSE of Redlands, CA","time":1644624684870,"updated":1644855637279,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183672","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183672.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40183672","ids":",ci40183672,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.05169,"rms":0.13,"gap":200,"magType":"ml","type":"earthquake","title":"M 0.6 - 4km SSE of Redlands, CA"},"geometry":{"type":"Point","coordinates":[-117.172,34.0205,5.81]},"id":"ci40183672"},
- {"type":"Feature","properties":{"mag":1.4,"place":"10 km ENE of Fox, Alaska","time":1644624550255,"updated":1644624872519,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221z45vh9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221z45vh9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221z45vh9","ids":",ak0221z45vh9,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.01,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 10 km ENE of Fox, Alaska"},"geometry":{"type":"Point","coordinates":[-147.4187,64.9892,1.5]},"id":"ak0221z45vh9"},
- {"type":"Feature","properties":{"mag":4.9,"place":"109 km E of Port-Olry, Vanuatu","time":1644623265419,"updated":1644625563040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk5j","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk5j.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gk5j","ids":",us7000gk5j,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.945,"rms":0.84,"gap":56,"magType":"mb","type":"earthquake","title":"M 4.9 - 109 km E of Port-Olry, Vanuatu"},"geometry":{"type":"Point","coordinates":[168.0887,-15.0414,10]},"id":"us7000gk5j"},
- {"type":"Feature","properties":{"mag":2.2,"place":"0 km NNE of Tallaboa, Puerto Rico","time":1644622577230,"updated":1644625433540,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334318","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334318.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"pr","code":"71334318","ids":",pr71334318,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.11,"gap":145,"magType":"md","type":"earthquake","title":"M 2.2 - 0 km NNE of Tallaboa, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.7145,18,13.38]},"id":"pr71334318"},
- {"type":"Feature","properties":{"mag":2.21,"place":"7 km ENE of Pāhala, Hawaii","time":1644622317400,"updated":1644623372040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913607","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913607.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":75,"net":"hv","code":"72913607","ids":",us7000gk5g,hv72913607,","sources":",us,hv,","types":",origin,phase-data,","nst":45,"dmin":null,"rms":0.180000007,"gap":140,"magType":"ml","type":"earthquake","title":"M 2.2 - 7 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.411499023438,19.2229995727539,31]},"id":"hv72913607"},
- {"type":"Feature","properties":{"mag":2.02,"place":"1 km SE of Hala‘ula, Hawaii","time":1644622258020,"updated":1644633919910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913602","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913602.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":63,"net":"hv","code":"72913602","ids":",hv72913602,","sources":",hv,","types":",origin,phase-data,","nst":24,"dmin":null,"rms":0.16,"gap":166,"magType":"md","type":"earthquake","title":"M 2.0 - 1 km SE of Hala‘ula, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.770833333333,20.2258333333333,31.72]},"id":"hv72913602"},
- {"type":"Feature","properties":{"mag":1.5,"place":"20 km NE of Sterling, Alaska","time":1644622048041,"updated":1644622258029,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xufe7b","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xufe7b.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221xufe7b","ids":",ak0221xufe7b,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.76,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 20 km NE of Sterling, Alaska"},"geometry":{"type":"Point","coordinates":[-150.5545,60.6845,32.9]},"id":"ak0221xufe7b"},
- {"type":"Feature","properties":{"mag":2.34,"place":"16km NE of Borrego Springs, CA","time":1644621948160,"updated":1644857850831,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183624","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183624.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"ci","code":"40183624","ids":",ci40183624,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":89,"dmin":0.06987,"rms":0.18,"gap":18,"magType":"ml","type":"earthquake","title":"M 2.3 - 16km NE of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.2313333,33.338,11.16]},"id":"ci40183624"},
- {"type":"Feature","properties":{"mag":0.51,"place":"19km ESE of Anza, CA","time":1644621751880,"updated":1644764561654,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183608","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183608.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40183608","ids":",ci40183608,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.09185,"rms":0.15,"gap":61,"magType":"ml","type":"earthquake","title":"M 0.5 - 19km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4916667,33.4715,12.95]},"id":"ci40183608"},
- {"type":"Feature","properties":{"mag":0.55,"place":"19km ESE of Anza, CA","time":1644621742660,"updated":1644856884654,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183600","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183600.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40183600","ids":",ci40183600,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.0785,"rms":0.15,"gap":59,"magType":"ml","type":"earthquake","title":"M 0.6 - 19km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4965,33.4716667,12.98]},"id":"ci40183600"},
- {"type":"Feature","properties":{"mag":1.9,"place":"21 km N of Fishhook, Alaska","time":1644621742367,"updated":1644622257889,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xueb4w","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xueb4w.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221xueb4w","ids":",ak0221xueb4w,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 21 km N of Fishhook, Alaska"},"geometry":{"type":"Point","coordinates":[-149.182,61.9341,4.2]},"id":"ak0221xueb4w"},
- {"type":"Feature","properties":{"mag":2,"place":"29 km WNW of Petersville, Alaska","time":1644621653907,"updated":1644622418415,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xudy51","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xudy51.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"0221xudy51","ids":",ak0221xudy51,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 29 km WNW of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-151.2952,62.5852,0.9]},"id":"ak0221xudy51"},
- {"type":"Feature","properties":{"mag":0.6,"place":"37 km NNE of Amboy, Washington","time":1644621323430,"updated":1644630462520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816096","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816096.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"uw","code":"61816096","ids":",uw61816096,","sources":",uw,","types":",origin,phase-data,","nst":19,"dmin":0.009135,"rms":0.16,"gap":97,"magType":"ml","type":"earthquake","title":"M 0.6 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1815,46.1915,4.44]},"id":"uw61816096"},
- {"type":"Feature","properties":{"mag":1.63,"place":"20km E of Little Lake, CA","time":1644621208290,"updated":1644856607580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183592","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183592.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":41,"net":"ci","code":"40183592","ids":",ci40183592,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.03979,"rms":0.14,"gap":51,"magType":"ml","type":"earthquake","title":"M 1.6 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6835,35.9185,3.48]},"id":"ci40183592"},
- {"type":"Feature","properties":{"mag":0.89,"place":"7km NW of The Geysers, CA","time":1644620677930,"updated":1644627732274,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691631","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691631.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73691631","ids":",nc73691631,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.003912,"rms":0.03,"gap":55,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.805336,38.8246651,2.03]},"id":"nc73691631"},
- {"type":"Feature","properties":{"mag":1.1,"place":"10 km WNW of Adak, Alaska","time":1644620268380,"updated":1644633612760,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91487006","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91487006.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"av","code":"91487006","ids":",av91487006,","sources":",av,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.17,"gap":153,"magType":"ml","type":"earthquake","title":"M 1.1 - 10 km WNW of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-176.778166666667,51.9165,-0.35]},"id":"av91487006"},
- {"type":"Feature","properties":{"mag":0.66,"place":"16km SE of Anza, CA","time":1644620023110,"updated":1644764577672,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183576","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183576.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40183576","ids":",ci40183576,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.05709,"rms":0.23,"gap":48,"magType":"ml","type":"earthquake","title":"M 0.7 - 16km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5513333,33.4565,11.73]},"id":"ci40183576"},
- {"type":"Feature","properties":{"mag":1.56,"place":"5 km SSW of Pāhala, Hawaii","time":1644619896530,"updated":1644631478720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913557","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913557.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"hv","code":"72913557","ids":",hv72913557,","sources":",hv,","types":",origin,phase-data,","nst":16,"dmin":null,"rms":0.11,"gap":184,"magType":"md","type":"earthquake","title":"M 1.6 - 5 km SSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.493333333333,19.1551666666667,31.72]},"id":"hv72913557"},
- {"type":"Feature","properties":{"mag":0.56,"place":"65 km WNW of Ninilchik, Alaska","time":1644619186320,"updated":1644633222080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91486981","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91486981.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"av","code":"91486981","ids":",av91486981,","sources":",av,","types":",origin,phase-data,","nst":9,"dmin":null,"rms":0.07,"gap":199,"magType":"ml","type":"earthquake","title":"M 0.6 - 65 km WNW of Ninilchik, Alaska"},"geometry":{"type":"Point","coordinates":[-152.785833333333,60.226,9.03]},"id":"av91486981"},
- {"type":"Feature","properties":{"mag":0.71,"place":"37 km NNE of Amboy, Washington","time":1644618896280,"updated":1644713163510,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816081","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816081.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"uw","code":"61816081","ids":",uw61816081,","sources":",uw,","types":",origin,phase-data,","nst":16,"dmin":0.003878,"rms":0.19,"gap":82,"magType":"ml","type":"earthquake","title":"M 0.7 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18383333333334,46.1965,4.37]},"id":"uw61816081"},
- {"type":"Feature","properties":{"mag":1.8,"place":"8 km WSW of Knik, Alaska","time":1644618883756,"updated":1644619081941,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xtvhrr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xtvhrr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221xtvhrr","ids":",ak0221xtvhrr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 8 km WSW of Knik, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8829,61.4301,32.3]},"id":"ak0221xtvhrr"},
- {"type":"Feature","properties":{"mag":2.29,"place":"5 km SSE of Pāhala, Hawaii","time":1644618803530,"updated":1644619432040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913522","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913522.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":81,"net":"hv","code":"72913522","ids":",us7000gk55,hv72913522,","sources":",us,hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.150000006,"gap":137,"magType":"ml","type":"earthquake","title":"M 2.3 - 5 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.46516418457,19.1553325653076,31.0300006866455]},"id":"hv72913522"},
- {"type":"Feature","properties":{"mag":2.31,"place":"0 km ESE of Pāhala, Hawaii","time":1644618788270,"updated":1644619118260,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913517","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913517.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":82,"net":"hv","code":"72913517","ids":",hv72913517,","sources":",hv,","types":",origin,phase-data,","nst":26,"dmin":null,"rms":0.140000001,"gap":108,"magType":"ml","type":"earthquake","title":"M 2.3 - 0 km ESE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.470336914062,19.1991672515869,28.5599994659424]},"id":"hv72913517"},
- {"type":"Feature","properties":{"mag":1.65,"place":"3 km WSW of Fuig, Puerto Rico","time":1644618715400,"updated":1644622873390,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334313","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334313.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"pr","code":"71334313","ids":",pr71334313,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.04,"gap":177,"magType":"md","type":"earthquake","title":"M 1.7 - 3 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.944,17.9758333333333,8.14]},"id":"pr71334313"},
- {"type":"Feature","properties":{"mag":1.58,"place":"45km NE of Holtville, CA","time":1644618704960,"updated":1644856340635,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183560","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183560.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"ci","code":"40183560","ids":",ci40183560,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.08426,"rms":0.27,"gap":81,"magType":"ml","type":"quarry blast","title":"M 1.6 Quarry Blast - 45km NE of Holtville, CA"},"geometry":{"type":"Point","coordinates":[-115,33.0546667,-0.2]},"id":"ci40183560"},
- {"type":"Feature","properties":{"mag":0.09,"place":"4km E of Mammoth Lakes, CA","time":1644618408230,"updated":1644675192216,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691626","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691626.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691626","ids":",nc73691626,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.02284,"rms":0.01,"gap":157,"magType":"md","type":"earthquake","title":"M 0.1 - 4km E of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.929,37.6356667,5.39]},"id":"nc73691626"},
- {"type":"Feature","properties":{"mag":1.58,"place":"4 km W of Fuig, Puerto Rico","time":1644617890300,"updated":1644622447000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334308","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334308.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"pr","code":"71334308","ids":",pr71334308,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.04,"gap":168,"magType":"md","type":"earthquake","title":"M 1.6 - 4 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9605,17.9816666666667,12.13]},"id":"pr71334308"},
- {"type":"Feature","properties":{"mag":0.35,"place":"14km SW of Searles Valley, CA","time":1644617835470,"updated":1644621514251,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183552","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183552.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40183552","ids":",ci40183552,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.11,"rms":0.12,"gap":154,"magType":"ml","type":"earthquake","title":"M 0.4 - 14km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5271667,35.6831667,8.5]},"id":"ci40183552"},
- {"type":"Feature","properties":{"mag":1.27,"place":"4km N of Rancho Cucamonga, CA","time":1644617145320,"updated":1644856136861,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183536","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183536.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"ci","code":"40183536","ids":",ci40183536,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":40,"dmin":0.04804,"rms":0.14,"gap":74,"magType":"ml","type":"earthquake","title":"M 1.3 - 4km N of Rancho Cucamonga, CA"},"geometry":{"type":"Point","coordinates":[-117.5833333,34.1546667,9.6]},"id":"ci40183536"},
- {"type":"Feature","properties":{"mag":0.86,"place":"8km WNW of Cobb, CA","time":1644617080470,"updated":1644618434377,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691621","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691621.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691621","ids":",nc73691621,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.009853,"rms":0.01,"gap":104,"magType":"md","type":"earthquake","title":"M 0.9 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8146667,38.8474998,1]},"id":"nc73691621"},
- {"type":"Feature","properties":{"mag":1.26,"place":"15km SE of Arvin, CA","time":1644617043480,"updated":1644855639241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183528","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183528.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40183528","ids":",ci40183528,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.1047,"rms":0.17,"gap":90,"magType":"ml","type":"earthquake","title":"M 1.3 - 15km SE of Arvin, CA"},"geometry":{"type":"Point","coordinates":[-118.6923333,35.1261667,12.6]},"id":"ci40183528"},
- {"type":"Feature","properties":{"mag":1.77,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644616143620,"updated":1644626199970,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049533","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049533.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"av","code":"91049533","ids":",av91049533,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.06,"gap":330,"magType":"ml","type":"earthquake","title":"M 1.8 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.316333333333,52.0508333333333,-1.36]},"id":"av91049533"},
- {"type":"Feature","properties":{"mag":4.4,"place":"275 km ENE of Levuka, Fiji","time":1644615910913,"updated":1644617136040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk4w","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk4w.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gk4w","ids":",us7000gk4w,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.137,"rms":0.48,"gap":97,"magType":"mb","type":"earthquake","title":"M 4.4 - 275 km ENE of Levuka, Fiji"},"geometry":{"type":"Point","coordinates":[-178.159,-17.463,558.46]},"id":"us7000gk4w"},
- {"type":"Feature","properties":{"mag":3.2,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644615810342,"updated":1644794150040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk5q","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk5q.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"7000gk5q","ids":",av91049528,us7000gk5q,","sources":",av,us,","types":",origin,phase-data,","nst":null,"dmin":0.204,"rms":0.5,"gap":315,"magType":"ml","type":"earthquake","title":"M 3.2 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.1819,51.9566,10]},"id":"us7000gk5q"},
- {"type":"Feature","properties":{"mag":1.04,"place":"28 km S of Ennis, Montana","time":1644615676190,"updated":1644625131010,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538224","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538224.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":17,"net":"mb","code":"80538224","ids":",mb80538224,","sources":",mb,","types":",origin,phase-data,","nst":11,"dmin":0.271,"rms":0.17,"gap":109,"magType":"ml","type":"quarry blast","title":"M 1.0 Quarry Blast - 28 km S of Ennis, Montana"},"geometry":{"type":"Point","coordinates":[-111.7148333,45.0915,-2]},"id":"mb80538224"},
- {"type":"Feature","properties":{"mag":1.19,"place":"3km ESE of Home Gardens, CA","time":1644615514140,"updated":1644855288507,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183488","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183488.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ci","code":"40183488","ids":",ci40183488,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":46,"dmin":0.05549,"rms":0.18,"gap":46,"magType":"ml","type":"quarry blast","title":"M 1.2 Quarry Blast - 3km ESE of Home Gardens, CA"},"geometry":{"type":"Point","coordinates":[-117.4953333,33.8663333,-0.48]},"id":"ci40183488"},
- {"type":"Feature","properties":{"mag":0.9500000000000001,"place":"0 km SW of Kapowsin, Washington","time":1644615334510,"updated":1644631277210,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816076","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816076.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"uw","code":"61816076","ids":",uw61816076,","sources":",uw,","types":",origin,phase-data,","nst":10,"dmin":0.1418,"rms":0.17,"gap":270,"magType":"md","type":"explosion","title":"M 1.0 Explosion - 0 km SW of Kapowsin, Washington"},"geometry":{"type":"Point","coordinates":[-122.23466666666667,46.9805,9.23]},"id":"uw61816076"},
- {"type":"Feature","properties":{"mag":2.8,"place":"4 km NE of Covenant Life, Alaska","time":1644615300308,"updated":1644636517261,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xta6ip","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xta6ip.geojson","felt":7,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":123,"net":"ak","code":"0221xta6ip","ids":",ak0221xta6ip,us7000gk4p,","sources":",ak,us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":null,"rms":2.07,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 4 km NE of Covenant Life, Alaska"},"geometry":{"type":"Point","coordinates":[-135.9604,59.4445,3.4]},"id":"ak0221xta6ip"},
- {"type":"Feature","properties":{"mag":2.05,"place":"7 km ENE of Pāhala, Hawaii","time":1644615296070,"updated":1644615627330,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913442","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913442.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":65,"net":"hv","code":"72913442","ids":",hv72913442,","sources":",hv,","types":",origin,phase-data,","nst":43,"dmin":null,"rms":0.140000001,"gap":139,"magType":"ml","type":"earthquake","title":"M 2.1 - 7 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.40950012207,19.2264995574951,31.1700000762939]},"id":"hv72913442"},
- {"type":"Feature","properties":{"mag":1.57,"place":"21km SSW of La Quinta, CA","time":1644615108960,"updated":1644854914130,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183480","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183480.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"ci","code":"40183480","ids":",ci40183480,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":69,"dmin":0.04599,"rms":0.16,"gap":35,"magType":"ml","type":"earthquake","title":"M 1.6 - 21km SSW of La Quinta, CA"},"geometry":{"type":"Point","coordinates":[-116.3958333,33.4846667,9.58]},"id":"ci40183480"},
- {"type":"Feature","properties":{"mag":2,"place":"5km ENE of Bonadelle Ranchos-Madera Ranchos, CA","time":1644615011870,"updated":1644680831753,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691606","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691606.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"nc","code":"73691606","ids":",nc73691606,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.09475,"rms":0.1,"gap":196,"magType":"md","type":"earthquake","title":"M 2.0 - 5km ENE of Bonadelle Ranchos-Madera Ranchos, CA"},"geometry":{"type":"Point","coordinates":[-119.8256667,36.9975,6.78]},"id":"nc73691606"},
- {"type":"Feature","properties":{"mag":-0.18,"place":"11 km NNE of Atka, Alaska","time":1644614949300,"updated":1644632688860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91486876","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91486876.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91486876","ids":",av91486876,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.13,"gap":113,"magType":"ml","type":"earthquake","title":"M -0.2 - 11 km NNE of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-174.151,52.296,-2.75]},"id":"av91486876"},
- {"type":"Feature","properties":{"mag":1.13,"place":"20km N of Shelter Cove, CA","time":1644614887980,"updated":1644956351669,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691601","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691601.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"nc","code":"73691601","ids":",nc73691601,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.02525,"rms":0.06,"gap":137,"magType":"md","type":"earthquake","title":"M 1.1 - 20km N of Shelter Cove, CA"},"geometry":{"type":"Point","coordinates":[-124.0883333,40.211,14.74]},"id":"nc73691601"},
- {"type":"Feature","properties":{"mag":0,"place":"11 km N of Atka, Alaska","time":1644614197910,"updated":1644623639450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049523","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049523.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049523","ids":",av91049523,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.31,"gap":139,"magType":"ml","type":"earthquake","title":"M 0.0 - 11 km N of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-174.175,52.2958333333333,4.2]},"id":"av91049523"},
- {"type":"Feature","properties":{"mag":-0.34,"place":"14 km N of Atka, Alaska","time":1644614164430,"updated":1644623396200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049518","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049518.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049518","ids":",av91049518,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.28,"gap":98,"magType":"ml","type":"earthquake","title":"M -0.3 - 14 km N of Atka, Alaska"},"geometry":{"type":"Point","coordinates":[-174.168833333333,52.325,5.14]},"id":"av91049518"},
- {"type":"Feature","properties":{"mag":0.1,"place":"51 km ESE of Beatty, Nevada","time":1644614049474,"updated":1644633490287,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833697","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833697.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833697","ids":",nn00833697,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.055,"rms":0.0972,"gap":108.4,"magType":"ml","type":"earthquake","title":"M 0.1 - 51 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2722,36.6555,5.9]},"id":"nn00833697"},
- {"type":"Feature","properties":{"mag":1.2,"place":"1km SSW of San Marcos, CA","time":1644613905820,"updated":1644853487321,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183456","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183456.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ci","code":"40183456","ids":",ci40183456,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.04067,"rms":0.22,"gap":117,"magType":"ml","type":"quarry blast","title":"M 1.2 Quarry Blast - 1km SSW of San Marcos, CA"},"geometry":{"type":"Point","coordinates":[-117.1693333,33.1315,-0.2]},"id":"ci40183456"},
- {"type":"Feature","properties":{"mag":2,"place":"32 km NW of Eureka Roadhouse, Alaska","time":1644613869891,"updated":1644614246910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xt5238","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xt5238.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"0221xt5238","ids":",ak0221xt5238,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.88,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 32 km NW of Eureka Roadhouse, Alaska"},"geometry":{"type":"Point","coordinates":[-147.6807,62.101,15.4]},"id":"ak0221xt5238"},
- {"type":"Feature","properties":{"mag":1.49,"place":"16 km SSE of Sunnyside, Utah","time":1644613602900,"updated":1644854286540,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481672","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481672.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"uu","code":"60481672","ids":",uu60481672,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.01841,"rms":0.09,"gap":199,"magType":"ml","type":"earthquake","title":"M 1.5 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3013333,39.4236667,-2.92]},"id":"uu60481672"},
- {"type":"Feature","properties":{"mag":0.09,"place":"20km E of Little Lake, CA","time":1644613496870,"updated":1644621222938,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183440","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183440.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40183440","ids":",ci40183440,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.03242,"rms":0.03,"gap":173,"magType":"ml","type":"earthquake","title":"M 0.1 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6896667,35.9538333,3.47]},"id":"ci40183440"},
- {"type":"Feature","properties":{"mag":0.31,"place":"9km SSW of Idyllwild, CA","time":1644613259160,"updated":1644621181407,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183424","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183424.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"ci","code":"40183424","ids":",ci40183424,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.06051,"rms":0.09,"gap":128,"magType":"ml","type":"earthquake","title":"M 0.3 - 9km SSW of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7676667,33.6701667,10.48]},"id":"ci40183424"},
- {"type":"Feature","properties":{"mag":0.65,"place":"1km NNW of The Geysers, CA","time":1644612651680,"updated":1644614413115,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691596","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691596.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73691596","ids":",nc73691596,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.011,"rms":0.03,"gap":62,"magType":"md","type":"earthquake","title":"M 0.7 - 1km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7611694,38.7896652,1.67]},"id":"nc73691596"},
- {"type":"Feature","properties":{"mag":1.7,"place":"95 km S of McCarthy, Alaska","time":1644612285459,"updated":1644612473515,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xsqrup","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xsqrup.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"0221xsqrup","ids":",ak0221xsqrup,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.83,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 95 km S of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-142.7171,60.5828,8.1]},"id":"ak0221xsqrup"},
- {"type":"Feature","properties":{"mag":0.21,"place":"5km WNW of Cobb, CA","time":1644612258180,"updated":1644613212837,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691591","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691591.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":1,"net":"nc","code":"73691591","ids":",nc73691591,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.006241,"rms":0.02,"gap":99,"magType":"md","type":"earthquake","title":"M 0.2 - 5km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7826691,38.8366661,1.72]},"id":"nc73691591"},
- {"type":"Feature","properties":{"mag":1,"place":"2 km ENE of Walker, California","time":1644611067290,"updated":1644633516518,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833723","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833723.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833723","ids":",nn00833723,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.019,"rms":0.0595,"gap":142.31,"magType":"ml","type":"earthquake","title":"M 1.0 - 2 km ENE of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.4496,38.5209,3.4]},"id":"nn00833723"},
- {"type":"Feature","properties":{"mag":1.8,"place":"43 km ENE of Susitna North, Alaska","time":1644610291597,"updated":1644610480061,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xsjo5j","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xsjo5j.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221xsjo5j","ids":",ak0221xsjo5j,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 43 km ENE of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-149.1485,62.3767,48.4]},"id":"ak0221xsjo5j"},
- {"type":"Feature","properties":{"mag":1.3,"place":"5 km E of Butte, Montana","time":1644609776710,"updated":1644625291670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538204","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538204.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"mb","code":"80538204","ids":",mb80538204,","sources":",mb,","types":",origin,phase-data,","nst":10,"dmin":0.061,"rms":0.07,"gap":174,"magType":"ml","type":"quarry blast","title":"M 1.3 Quarry Blast - 5 km E of Butte, Montana"},"geometry":{"type":"Point","coordinates":[-112.4691667,45.9988333,-2]},"id":"mb80538204"},
- {"type":"Feature","properties":{"mag":1.67,"place":"7km SSW of Mojave, CA","time":1644609743840,"updated":1644787527996,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183360","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183360.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"ci","code":"40183360","ids":",ci40183360,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":28,"dmin":0.1168,"rms":0.21,"gap":37,"magType":"ml","type":"quarry blast","title":"M 1.7 Quarry Blast - 7km SSW of Mojave, CA"},"geometry":{"type":"Point","coordinates":[-118.1898333,34.9915,-0.8]},"id":"ci40183360"},
- {"type":"Feature","properties":{"mag":3.21,"place":"9 km NNW of Yauco, Puerto Rico","time":1644609540310,"updated":1644642845720,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334293","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334293.geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"pr","code":"71334293","ids":",pr71334293,us7000gk44,","sources":",pr,us,","types":",dyfi,origin,phase-data,","nst":34,"dmin":null,"rms":0.25,"gap":45,"magType":"md","type":"earthquake","title":"M 3.2 - 9 km NNW of Yauco, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8716666666667,18.1183333333333,52.78]},"id":"pr71334293"},
- {"type":"Feature","properties":{"mag":0.58,"place":"1 km NNW of Benton City, Washington","time":1644609227000,"updated":1644617868730,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816071","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816071.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"uw","code":"61816071","ids":",uw61816071,","sources":",uw,","types":",origin,phase-data,","nst":4,"dmin":0.04228,"rms":0.06,"gap":285,"magType":"ml","type":"earthquake","title":"M 0.6 - 1 km NNW of Benton City, Washington"},"geometry":{"type":"Point","coordinates":[-119.497,46.27633333333333,9.59]},"id":"uw61816071"},
- {"type":"Feature","properties":{"mag":0.21,"place":"2km N of The Geysers, CA","time":1644609066410,"updated":1644616331129,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691586","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691586.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":1,"net":"nc","code":"73691586","ids":",nc73691586,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.006478,"rms":0.02,"gap":119,"magType":"md","type":"earthquake","title":"M 0.2 - 2km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.760498,38.7941666,2.17]},"id":"nc73691586"},
- {"type":"Feature","properties":{"mag":0.89,"place":"44 km NNW of Grantsville, Utah","time":1644609018410,"updated":1644853268360,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481617","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481617.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"uu","code":"60481617","ids":",uu60481617,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.1265,"rms":0.07,"gap":92,"magType":"md","type":"earthquake","title":"M 0.9 - 44 km NNW of Grantsville, Utah"},"geometry":{"type":"Point","coordinates":[-112.6231667,40.978,7.35]},"id":"uu60481617"},
- {"type":"Feature","properties":{"mag":1.8,"place":"28 km W of Empire, Nevada","time":1644608985037,"updated":1644633515815,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833722","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833722.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"nn","code":"00833722","ids":",nn00833722,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.405,"rms":0.0113,"gap":308.76,"magType":"ml","type":"earthquake","title":"M 1.8 - 28 km W of Empire, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6787,40.573,16.9]},"id":"nn00833722"},
- {"type":"Feature","properties":{"mag":2.83,"place":"2 km SSW of Volcano, Hawaii","time":1644608847920,"updated":1644612407920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913362","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913362.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":123,"net":"hv","code":"72913362","ids":",hv72913362,","sources":",hv,","types":",origin,phase-data,","nst":36,"dmin":null,"rms":0.18,"gap":69,"magType":"md","type":"earthquake","title":"M 2.8 - 2 km SSW of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.2465,19.419,39.35]},"id":"hv72913362"},
- {"type":"Feature","properties":{"mag":0.35,"place":"5 km ESE of Unalaska, Alaska","time":1644608627290,"updated":1644635236200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049538","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049538.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"av","code":"91049538","ids":",av91049538,","sources":",av,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.15,"gap":185,"magType":"ml","type":"earthquake","title":"M 0.4 - 5 km ESE of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.459,53.8631666666667,9.98]},"id":"av91049538"},
- {"type":"Feature","properties":{"mag":0.45,"place":"3km N of The Geysers, CA","time":1644608562020,"updated":1644614770994,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691581","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691581.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":3,"net":"nc","code":"73691581","ids":",nc73691581,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007471,"rms":0.01,"gap":100,"magType":"md","type":"earthquake","title":"M 0.5 - 3km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7613297,38.8079987,1.07]},"id":"nc73691581"},
- {"type":"Feature","properties":{"mag":1.7,"place":"8 km ESE of Anchorage, Alaska","time":1644608303944,"updated":1644608606762,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xs40ai","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xs40ai.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"0221xs40ai","ids":",ak0221xs40ai,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 8 km ESE of Anchorage, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7584,61.1827,41.7]},"id":"ak0221xs40ai"},
- {"type":"Feature","properties":{"mag":1.18,"place":"2km ESE of Loma Linda, CA","time":1644607919150,"updated":1644787092361,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183336","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183336.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ci","code":"40183336","ids":",ci40183336,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":39,"dmin":0.09766,"rms":0.16,"gap":93,"magType":"ml","type":"earthquake","title":"M 1.2 - 2km ESE of Loma Linda, CA"},"geometry":{"type":"Point","coordinates":[-117.2403333,34.0396667,17.87]},"id":"ci40183336"},
- {"type":"Feature","properties":{"mag":4.9,"place":"38 km WSW of Sarupathar, India","time":1644607010063,"updated":1644609727040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk3y","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk3y.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gk3y","ids":",us7000gk3y,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":5.308,"rms":0.75,"gap":39,"magType":"mb","type":"earthquake","title":"M 4.9 - 38 km WSW of Sarupathar, India"},"geometry":{"type":"Point","coordinates":[96.454,26.0748,10]},"id":"us7000gk3y"},
- {"type":"Feature","properties":{"mag":2.4,"place":"64 km WNW of Happy Valley, Alaska","time":1644606916581,"updated":1644611635040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xrz2ah","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xrz2ah.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":89,"net":"ak","code":"0221xrz2ah","ids":",us7000gk3x,ak0221xrz2ah,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.56,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.4 - 64 km WNW of Happy Valley, Alaska"},"geometry":{"type":"Point","coordinates":[-152.8508,60.1069,128]},"id":"ak0221xrz2ah"},
- {"type":"Feature","properties":{"mag":0.82,"place":"7km NW of The Geysers, CA","time":1644606174990,"updated":1644608116287,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691571","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691571.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":10,"net":"nc","code":"73691571","ids":",nc73691571,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.005347,"rms":0.02,"gap":38,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8044968,38.8264999,1.81]},"id":"nc73691571"},
- {"type":"Feature","properties":{"mag":1.56,"place":"6 km ESE of Unalaska, Alaska","time":1644605973210,"updated":1644632230930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91486761","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91486761.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"av","code":"91486761","ids":",av91486761,","sources":",av,","types":",origin,phase-data,","nst":18,"dmin":null,"rms":0.18,"gap":185,"magType":"ml","type":"earthquake","title":"M 1.6 - 6 km ESE of Unalaska, Alaska"},"geometry":{"type":"Point","coordinates":[-166.447166666667,53.8563333333333,10.14]},"id":"av91486761"},
- {"type":"Feature","properties":{"mag":1.9,"place":"15 km SSE of Sunnyside, Utah","time":1644605037230,"updated":1644609213750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481607","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481607.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"uu","code":"60481607","ids":",uu60481607,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.0128,"rms":0.05,"gap":196,"magType":"md","type":"earthquake","title":"M 1.9 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3088333,39.4218333,-1.61]},"id":"uu60481607"},
- {"type":"Feature","properties":{"mag":1.3,"place":"8km ENE of Lebec, CA","time":1644604796460,"updated":1644611247776,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183264","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183264.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40183264","ids":",ci40183264,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.09332,"rms":0.17,"gap":66,"magType":"ml","type":"quarry blast","title":"M 1.3 Quarry Blast - 8km ENE of Lebec, CA"},"geometry":{"type":"Point","coordinates":[-118.7741667,34.8605,-1.11]},"id":"ci40183264"},
- {"type":"Feature","properties":{"mag":1.5,"place":"8 km N of Mill Creek, Oklahoma","time":1644604559109,"updated":1644878496258,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cyil","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cyil.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"ok","code":"2022cyil","ids":",ok2022cyil,","sources":",ok,","types":",origin,phase-data,","nst":23,"dmin":0.2627484398,"rms":0.3,"gap":90,"magType":"ml","type":"quarry blast","title":"M 1.5 Quarry Blast - 8 km N of Mill Creek, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.83466667,34.481,0]},"id":"ok2022cyil"},
- {"type":"Feature","properties":{"mag":0.87,"place":"2km NNW of The Geysers, CA","time":1644604535130,"updated":1644607453231,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691566","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691566.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73691566","ids":",nc73691566,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.009566,"rms":0.02,"gap":75,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7616653,38.7911682,1.96]},"id":"nc73691566"},
- {"type":"Feature","properties":{"mag":-0.34,"place":"20km E of Little Lake, CA","time":1644604277600,"updated":1644614113138,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183248","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183248.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40183248","ids":",ci40183248,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":4,"dmin":0.04608,"rms":0.04,"gap":163,"magType":"ml","type":"earthquake","title":"M -0.3 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6863333,35.9121667,3.95]},"id":"ci40183248"},
- {"type":"Feature","properties":{"mag":0.85,"place":"10km WNW of The Geysers, CA","time":1644604254740,"updated":1644606795145,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691561","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691561.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691561","ids":",nc73691561,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.002512,"rms":0.02,"gap":68,"magType":"md","type":"earthquake","title":"M 0.9 - 10km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8536682,38.8273315,2.08]},"id":"nc73691561"},
- {"type":"Feature","properties":{"mag":0.1,"place":"49 km SSW of Rachel, Nevada","time":1644604162738,"updated":1644633490902,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833698","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833698.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833698","ids":",nn00833698,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.053,"rms":0.0911,"gap":268.2,"magType":"ml","type":"earthquake","title":"M 0.1 - 49 km SSW of Rachel, Nevada"},"geometry":{"type":"Point","coordinates":[-115.9503,37.2262,8.1]},"id":"nn00833698"},
- {"type":"Feature","properties":{"mag":0.48,"place":"5km W of Cobb, CA","time":1644604017300,"updated":1644989721772,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691556","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691556.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nc","code":"73691556","ids":",nc73691556,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.01228,"rms":0.02,"gap":91,"magType":"md","type":"earthquake","title":"M 0.5 - 5km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7856667,38.8266667,0.6]},"id":"nc73691556"},
- {"type":"Feature","properties":{"mag":1.76,"place":"16 km SSE of Sunnyside, Utah","time":1644603952160,"updated":1644609088080,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481602","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481602.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"uu","code":"60481602","ids":",uu60481602,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.01955,"rms":0.07,"gap":199,"magType":"md","type":"earthquake","title":"M 1.8 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3016667,39.4168333,-2.5]},"id":"uu60481602"},
- {"type":"Feature","properties":{"mag":4.5,"place":"75 km E of Hualien City, Taiwan","time":1644603571473,"updated":1644634414763,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk3v","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk3v.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gk3v","ids":",us7000gk3v,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.723,"rms":1.07,"gap":98,"magType":"mb","type":"earthquake","title":"M 4.5 - 75 km E of Hualien City, Taiwan"},"geometry":{"type":"Point","coordinates":[122.3487,23.9536,33.91]},"id":"us7000gk3v"},
- {"type":"Feature","properties":{"mag":1.9,"place":"140 km ESE of McCarthy, Alaska","time":1644603365887,"updated":1644603588130,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xrdtjg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xrdtjg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221xrdtjg","ids":",ak0221xrdtjg,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 140 km ESE of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.38,61.1397,4.8]},"id":"ak0221xrdtjg"},
- {"type":"Feature","properties":{"mag":0.78,"place":"9km WNW of Cobb, CA","time":1644603315560,"updated":1644605597034,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691551","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691551.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":9,"net":"nc","code":"73691551","ids":",nc73691551,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.01055,"rms":0.06,"gap":62,"magType":"md","type":"earthquake","title":"M 0.8 - 9km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8219986,38.8391685,1.43]},"id":"nc73691551"},
- {"type":"Feature","properties":{"mag":0.45,"place":"10 km S of Carbonado, Washington","time":1644602939820,"updated":1644613951560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816056","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816056.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"uw","code":"61816056","ids":",uw61816056,","sources":",uw,","types":",origin,phase-data,","nst":9,"dmin":0.04518,"rms":0.09,"gap":176,"magType":"ml","type":"earthquake","title":"M 0.5 - 10 km S of Carbonado, Washington"},"geometry":{"type":"Point","coordinates":[-122.07133333333333,46.986333333333334,13.49]},"id":"uw61816056"},
- {"type":"Feature","properties":{"mag":0.65,"place":"6km NW of The Geysers, CA","time":1644602591010,"updated":1644604992979,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691546","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691546.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73691546","ids":",nc73691546,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.01031,"rms":0.04,"gap":76,"magType":"md","type":"earthquake","title":"M 0.7 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7969971,38.8219986,2.42]},"id":"nc73691546"},
- {"type":"Feature","properties":{"mag":1.08,"place":"20km E of Little Lake, CA","time":1644602171960,"updated":1644785370785,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183216","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183216.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40183216","ids":",ci40183216,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.03947,"rms":0.09,"gap":51,"magType":"ml","type":"earthquake","title":"M 1.1 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6815,35.9175,3.91]},"id":"ci40183216"},
- {"type":"Feature","properties":{"mag":0.91,"place":"20km E of Little Lake, CA","time":1644601824230,"updated":1644785144766,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183208","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183208.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"ci","code":"40183208","ids":",ci40183208,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.04039,"rms":0.09,"gap":51,"magType":"ml","type":"earthquake","title":"M 0.9 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.683,35.9173333,3.6]},"id":"ci40183208"},
- {"type":"Feature","properties":{"mag":4.5,"place":"73 km E of Hualien City, Taiwan","time":1644601665275,"updated":1644606090940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk3n","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk3n.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gk3n","ids":",us7000gk3n,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.7,"rms":0.76,"gap":98,"magType":"mb","type":"earthquake","title":"M 4.5 - 73 km E of Hualien City, Taiwan"},"geometry":{"type":"Point","coordinates":[122.326,23.9631,21.13]},"id":"us7000gk3n"},
- {"type":"Feature","properties":{"mag":0.68,"place":"6km S of Mentone, CA","time":1644600904620,"updated":1644613970556,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183200","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183200.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40183200","ids":",ci40183200,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.02228,"rms":0.22,"gap":107,"magType":"ml","type":"earthquake","title":"M 0.7 - 6km S of Mentone, CA"},"geometry":{"type":"Point","coordinates":[-117.1221667,34.0146667,15.75]},"id":"ci40183200"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644600414150,"updated":1644604272903,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691541","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691541.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691541","ids":",nc73691541,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007239,"rms":0.02,"gap":126,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8143311,38.829834,2.06]},"id":"nc73691541"},
- {"type":"Feature","properties":{"mag":0.38,"place":"11km NW of The Geysers, CA","time":1644600309600,"updated":1644601091574,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691536","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691536.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691536","ids":",nc73691536,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.02044,"rms":0.02,"gap":224,"magType":"md","type":"earthquake","title":"M 0.4 - 11km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8615036,38.8363342,2.86]},"id":"nc73691536"},
- {"type":"Feature","properties":{"mag":0.95,"place":"8km NW of The Geysers, CA","time":1644599951960,"updated":1644602112691,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691526","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691526.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":14,"net":"nc","code":"73691526","ids":",nc73691526,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.005741,"rms":0.04,"gap":43,"magType":"md","type":"earthquake","title":"M 1.0 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8138351,38.8283348,2.08]},"id":"nc73691526"},
- {"type":"Feature","properties":{"mag":1.17,"place":"8km NW of The Geysers, CA","time":1644599718200,"updated":1644613151830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691516","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691516.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73691516","ids":",nc73691516,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.006369,"rms":0.02,"gap":43,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8143311,38.8288345,2.16]},"id":"nc73691516"},
- {"type":"Feature","properties":{"mag":0.29,"place":"37 km NNE of Amboy, Washington","time":1644599119830,"updated":1644614378540,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816041","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816041.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61816041","ids":",uw61816041,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.002711,"rms":0.08,"gap":149,"magType":"mh","type":"earthquake","title":"M 0.3 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18583333333333,46.1975,0.92]},"id":"uw61816041"},
- {"type":"Feature","properties":{"mag":0.85,"place":"2km NNW of The Geysers, CA","time":1644598751850,"updated":1644600732539,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691511","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691511.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691511","ids":",nc73691511,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.007903,"rms":0.02,"gap":74,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7614975,38.7928352,2.66]},"id":"nc73691511"},
- {"type":"Feature","properties":{"mag":0.63,"place":"3 km W of Benton City, Washington","time":1644598388330,"updated":1644614609820,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816031","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816031.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"uw","code":"61816031","ids":",uw61816031,","sources":",uw,","types":",origin,phase-data,","nst":6,"dmin":0.07241,"rms":0.05,"gap":285,"magType":"ml","type":"earthquake","title":"M 0.6 - 3 km W of Benton City, Washington"},"geometry":{"type":"Point","coordinates":[-119.53766666666667,46.263333333333335,5.53]},"id":"uw61816031"},
- {"type":"Feature","properties":{"mag":0.8,"place":"4km ESE of Ontario, CA","time":1644598144250,"updated":1644610230278,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183160","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183160.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40183160","ids":",ci40183160,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.09195,"rms":0.17,"gap":76,"magType":"ml","type":"earthquake","title":"M 0.8 - 4km ESE of Ontario, CA"},"geometry":{"type":"Point","coordinates":[-117.593,34.0365,3.65]},"id":"ci40183160"},
- {"type":"Feature","properties":{"mag":5.5,"place":"69 km E of Hualien City, Taiwan","time":1644597790805,"updated":1644684545493,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk21","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk21.geojson","felt":23,"cdi":5.5,"mmi":3.775,"alert":"green","status":"reviewed","tsunami":0,"sig":478,"net":"us","code":"7000gk21","ids":",us7000gk21,","sources":",us,","types":",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":0.654,"rms":1.77,"gap":78,"magType":"mww","type":"earthquake","title":"M 5.5 - 69 km E of Hualien City, Taiwan"},"geometry":{"type":"Point","coordinates":[122.2868,24.0044,10]},"id":"us7000gk21"},
- {"type":"Feature","properties":{"mag":3.2,"place":"55 km S of Whites City, New Mexico","time":1644597720406,"updated":1644876782058,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022cyer","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022cyer.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"tx","code":"2022cyer","ids":",us7000gk1i,tx2022cyer,","sources":",us,tx,","types":",origin,phase-data,","nst":21,"dmin":0.0736160125,"rms":0.3,"gap":56,"magType":"ml","type":"earthquake","title":"M 3.2 - 55 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.4148319,31.67579431,7.391259766]},"id":"tx2022cyer"},
- {"type":"Feature","properties":{"mag":-0.49,"place":"61 km ENE of Pedro Bay, Alaska","time":1644596420880,"updated":1644631799170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91486631","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91486631.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91486631","ids":",av91486631,","sources":",av,","types":",origin,phase-data,","nst":4,"dmin":null,"rms":0.27,"gap":265,"magType":"ml","type":"earthquake","title":"M -0.5 - 61 km ENE of Pedro Bay, Alaska"},"geometry":{"type":"Point","coordinates":[-153.145666666667,60.0525,0.85]},"id":"av91486631"},
- {"type":"Feature","properties":{"mag":4.1,"place":"19 km SSE of Güvercinlik, Turkey","time":1644596288129,"updated":1644612819040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk05","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk05.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":259,"net":"us","code":"7000gk05","ids":",us7000gk05,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.843,"rms":0.85,"gap":79,"magType":"mb","type":"earthquake","title":"M 4.1 - 19 km SSE of Güvercinlik, Turkey"},"geometry":{"type":"Point","coordinates":[27.641,36.9648,10]},"id":"us7000gk05"},
- {"type":"Feature","properties":{"mag":3.1,"place":"4 km WSW of Fuig, Puerto Rico","time":1644595820490,"updated":1644612407040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022042002","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022042002.geojson","felt":2,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"pr","code":"2022042002","ids":",pr2022042002,us7000gk02,","sources":",pr,us,","types":",dyfi,origin,phase-data,","nst":15,"dmin":0.0692,"rms":0.17,"gap":185,"magType":"md","type":"earthquake","title":"M 3.1 - 4 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.948,17.9675,7]},"id":"pr2022042002"},
- {"type":"Feature","properties":{"mag":1.88,"place":"20km E of Little Lake, CA","time":1644595608630,"updated":1644784933160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183144","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183144.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":54,"net":"ci","code":"40183144","ids":",ci40183144,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.03953,"rms":0.1,"gap":33,"magType":"ml","type":"earthquake","title":"M 1.9 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6843333,35.9195,3.44]},"id":"ci40183144"},
- {"type":"Feature","properties":{"mag":1.53,"place":"20km E of Little Lake, CA","time":1644595588680,"updated":1644784628340,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40183136","ids":",ci40183136,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.03989,"rms":0.1,"gap":51,"magType":"ml","type":"earthquake","title":"M 1.5 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.683,35.918,3.61]},"id":"ci40183136"},
- {"type":"Feature","properties":{"mag":0.61,"place":"13km WNW of Anza, CA","time":1644595504310,"updated":1644615639827,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183120","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183120.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40183120","ids":",ci40183120,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.036,"rms":0.14,"gap":71,"magType":"ml","type":"earthquake","title":"M 0.6 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8068333,33.5888333,7.11]},"id":"ci40183120"},
- {"type":"Feature","properties":{"mag":1.1,"place":"26 km SW of Mina, Nevada","time":1644595333440,"updated":1644633514793,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833720","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833720.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833720","ids":",nn00833720,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.149,"rms":0.0786,"gap":251.18,"magType":"ml","type":"earthquake","title":"M 1.1 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3193,38.2198,4.8]},"id":"nn00833720"},
- {"type":"Feature","properties":{"mag":1.26,"place":"11km ESE of Willits, CA","time":1644594933030,"updated":1644788351528,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691496","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691496.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"nc","code":"73691496","ids":",nc73691496,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.07359,"rms":0.06,"gap":82,"magType":"md","type":"earthquake","title":"M 1.3 - 11km ESE of Willits, CA"},"geometry":{"type":"Point","coordinates":[-123.2428333,39.3695,6.24]},"id":"nc73691496"},
- {"type":"Feature","properties":{"mag":1.77,"place":"3km N of McCloud, CA","time":1644594765400,"updated":1644619390469,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691491","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691491.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"nc","code":"73691491","ids":",nc73691491,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.01376,"rms":0.11,"gap":97,"magType":"md","type":"earthquake","title":"M 1.8 - 3km N of McCloud, CA"},"geometry":{"type":"Point","coordinates":[-122.1316667,41.2858333,9.67]},"id":"nc73691491"},
- {"type":"Feature","properties":{"mag":0.88,"place":"10km SE of Anza, CA","time":1644594691650,"updated":1644769169310,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183112","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183112.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"ci","code":"40183112","ids":",ci40183112,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":36,"dmin":0.008228,"rms":0.14,"gap":49,"magType":"ml","type":"earthquake","title":"M 0.9 - 10km SE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5986667,33.487,4.03]},"id":"ci40183112"},
- {"type":"Feature","properties":{"mag":0.2,"place":"28 km SW of Mina, Nevada","time":1644594492541,"updated":1644633514018,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833719","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833719.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833719","ids":",nn00833719,","sources":",nn,","types":",origin,phase-data,","nst":7,"dmin":0.124,"rms":0.1715,"gap":269.46,"magType":"ml","type":"earthquake","title":"M 0.2 - 28 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3514,38.224,11.1]},"id":"nn00833719"},
- {"type":"Feature","properties":{"mag":0.56,"place":"13km WNW of Anza, CA","time":1644593514340,"updated":1644615275286,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183096","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183096.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40183096","ids":",ci40183096,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":27,"dmin":0.03552,"rms":0.09,"gap":73,"magType":"ml","type":"earthquake","title":"M 0.6 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8065,33.5906667,7.55]},"id":"ci40183096"},
- {"type":"Feature","properties":{"mag":1.01,"place":"19km W of Searles Valley, CA","time":1644593445840,"updated":1644614913501,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183088","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183088.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40183088","ids":",ci40183088,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.02563,"rms":0.11,"gap":74,"magType":"ml","type":"earthquake","title":"M 1.0 - 19km W of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.6105,35.7923333,10.35]},"id":"ci40183088"},
- {"type":"Feature","properties":{"mag":0.72,"place":"17km ESE of Anza, CA","time":1644592610040,"updated":1644594423111,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183080","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183080.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40183080","ids":",ci40183080,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.05388,"rms":0.18,"gap":59,"magType":"ml","type":"earthquake","title":"M 0.7 - 17km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.4971667,33.5115,12.8]},"id":"ci40183080"},
- {"type":"Feature","properties":{"mag":1.99000001,"place":"5 km E of Pāhala, Hawaii","time":1644592428580,"updated":1644592609690,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913112","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913112.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":61,"net":"hv","code":"72913112","ids":",hv72913112,","sources":",hv,","types":",origin,phase-data,","nst":28,"dmin":null,"rms":0.119999997,"gap":161,"magType":"md","type":"earthquake","title":"M 2.0 - 5 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.427505493164,19.1956672668457,31.6800003051758]},"id":"hv72913112"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"47 km ESE of Beatty, Nevada","time":1644592310769,"updated":1644633485756,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833687","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833687.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833687","ids":",nn00833687,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.054,"rms":0.1121,"gap":77.56,"magType":"ml","type":"earthquake","title":"M -0.1 - 47 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2801,36.7304,7.4]},"id":"nn00833687"},
- {"type":"Feature","properties":{"mag":1.19,"place":"6 km NW of Medford, Oklahoma","time":1644591364250,"updated":1644846608939,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cybe","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cybe.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"ok","code":"2022cybe","ids":",ok2022cybe,","sources":",ok,","types":",origin,phase-data,","nst":35,"dmin":0.0602881694,"rms":0.35,"gap":143,"magType":"ml","type":"earthquake","title":"M 1.2 - 6 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.78466667,36.84783333,7.26]},"id":"ok2022cybe"},
- {"type":"Feature","properties":{"mag":2.3,"place":"30 km NW of Stanley, Idaho","time":1644591287354,"updated":1644669511040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjzr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjzr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":81,"net":"us","code":"7000gjzr","ids":",mb80538184,us7000gjzr,","sources":",mb,us,","types":",origin,phase-data,","nst":null,"dmin":0.881,"rms":0.46,"gap":59,"magType":"ml","type":"earthquake","title":"M 2.3 - 30 km NW of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-115.2179,44.4045,13.04]},"id":"us7000gjzr"},
- {"type":"Feature","properties":{"mag":2.31,"place":"5 km E of Pāhala, Hawaii","time":1644590917450,"updated":1644669733040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913052","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913052.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":82,"net":"hv","code":"72913052","ids":",hv72913052,us7000gjzq,","sources":",hv,us,","types":",dyfi,origin,phase-data,","nst":50,"dmin":null,"rms":0.109999999,"gap":150,"magType":"ml","type":"earthquake","title":"M 2.3 - 5 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.423492431641,19.2045001983643,33.2599983215332]},"id":"hv72913052"},
- {"type":"Feature","properties":{"mag":2.12,"place":"6 km SSE of Indios, Puerto Rico","time":1644590740660,"updated":1644596412220,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334258","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334258.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":69,"net":"pr","code":"71334258","ids":",pr71334258,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.11,"gap":222,"magType":"md","type":"earthquake","title":"M 2.1 - 6 km SSE of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8071666666667,17.9365,18.5]},"id":"pr71334258"},
- {"type":"Feature","properties":{"mag":1.73,"place":"7km NNW of Pinnacles, CA","time":1644590497150,"updated":1644954975367,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691476","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691476.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"nc","code":"73691476","ids":",nc73691476,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.01011,"rms":0.11,"gap":121,"magType":"md","type":"earthquake","title":"M 1.7 - 7km NNW of Pinnacles, CA"},"geometry":{"type":"Point","coordinates":[-121.1831667,36.5816667,6.84]},"id":"nc73691476"},
- {"type":"Feature","properties":{"mag":1.9,"place":"50 km SSE of Denali National Park, Alaska","time":1644590376938,"updated":1644590681627,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xp52zh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xp52zh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221xp52zh","ids":",ak0221xp52zh,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.56,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 50 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4794,63.1009,3]},"id":"ak0221xp52zh"},
- {"type":"Feature","properties":{"mag":0.59,"place":"8 km ENE of West Yellowstone, Montana","time":1644590123790,"updated":1644592798070,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481587","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481587.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"uu","code":"60481587","ids":",uu60481587,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.05506,"rms":0.08,"gap":106,"magType":"md","type":"earthquake","title":"M 0.6 - 8 km ENE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-111.01,44.7043333,11.98]},"id":"uu60481587"},
- {"type":"Feature","properties":{"mag":1.58,"place":"2km N of McCloud, CA","time":1644590113140,"updated":1644608651338,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691471","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691471.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"nc","code":"73691471","ids":",nc73691471,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01101,"rms":0.08,"gap":100,"magType":"md","type":"earthquake","title":"M 1.6 - 2km N of McCloud, CA"},"geometry":{"type":"Point","coordinates":[-122.1356667,41.278,9.51]},"id":"nc73691471"},
- {"type":"Feature","properties":{"mag":1.6,"place":"22 km S of Glacier View, Alaska","time":1644590018353,"updated":1644590210633,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xp3ssr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xp3ssr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221xp3ssr","ids":",ak0221xp3ssr,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.88,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 22 km S of Glacier View, Alaska"},"geometry":{"type":"Point","coordinates":[-147.5997,61.6049,20]},"id":"ak0221xp3ssr"},
- {"type":"Feature","properties":{"mag":3.61,"place":"39 km NNE of Cruz Bay, U.S. Virgin Islands","time":1644589798710,"updated":1644591616817,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022042001","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022042001.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":200,"net":"pr","code":"2022042001","ids":",pr2022042001,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":1.0278,"rms":0.37,"gap":331,"magType":"md","type":"earthquake","title":"M 3.6 - 39 km NNE of Cruz Bay, U.S. Virgin Islands"},"geometry":{"type":"Point","coordinates":[-64.7041,18.6775,86]},"id":"pr2022042001"},
- {"type":"Feature","properties":{"mag":4.9,"place":"14 km S of Maitum, Philippines","time":1644589519508,"updated":1644646104905,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjzl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjzl.geojson","felt":8,"cdi":4.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":373,"net":"us","code":"7000gjzl","ids":",us7000gjzl,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.577,"rms":0.78,"gap":94,"magType":"mb","type":"earthquake","title":"M 4.9 - 14 km S of Maitum, Philippines"},"geometry":{"type":"Point","coordinates":[124.4923,5.9121,81.42]},"id":"us7000gjzl"},
- {"type":"Feature","properties":{"mag":2.93,"place":"20km E of Little Lake, CA","time":1644589273660,"updated":1644670040040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183056","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183056.geojson","felt":2,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":133,"net":"ci","code":"40183056","ids":",ci40183056,us7000gjzk,","sources":",ci,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":42,"dmin":0.04368,"rms":0.18,"gap":29,"magType":"ml","type":"earthquake","title":"M 2.9 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6876667,35.9163333,2.79]},"id":"ci40183056"},
- {"type":"Feature","properties":{"mag":2.32,"place":"20km E of Little Lake, CA","time":1644588950450,"updated":1644608303180,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183048","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183048.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":83,"net":"ci","code":"40183048","ids":",ci40183048,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":40,"dmin":0.04154,"rms":0.14,"gap":36,"magType":"ml","type":"earthquake","title":"M 2.3 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.688,35.9196667,3.13]},"id":"ci40183048"},
- {"type":"Feature","properties":{"mag":0.95,"place":"17km ESE of Anza, CA","time":1644588670480,"updated":1644607456120,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183040","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183040.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40183040","ids":",ci40183040,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.06294,"rms":0.13,"gap":59,"magType":"ml","type":"earthquake","title":"M 1.0 - 17km ESE of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.5008333,33.4996667,13.22]},"id":"ci40183040"},
- {"type":"Feature","properties":{"mag":2.00999999,"place":"6 km WSW of Pāhala, Hawaii","time":1644588613300,"updated":1644588944740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72913012","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72913012.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"hv","code":"72913012","ids":",hv72913012,","sources":",hv,","types":",origin,phase-data,","nst":41,"dmin":null,"rms":0.219999999,"gap":114,"magType":"md","type":"earthquake","title":"M 2.0 - 6 km WSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.538665771484,19.1784992218018,5.25]},"id":"hv72913012"},
- {"type":"Feature","properties":{"mag":4.7,"place":"203 km ESE of Kirakira, Solomon Islands","time":1644588576033,"updated":1644670641040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjzj","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjzj.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gjzj","ids":",us7000gjzj,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.015,"rms":0.48,"gap":72,"magType":"mb","type":"earthquake","title":"M 4.7 - 203 km ESE of Kirakira, Solomon Islands"},"geometry":{"type":"Point","coordinates":[163.5586,-11.3217,10]},"id":"us7000gjzj"},
- {"type":"Feature","properties":{"mag":1.49,"place":"16km NNW of Westmorland, CA","time":1644588123510,"updated":1644598101733,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183032","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183032.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"ci","code":"40183032","ids":",ci40183032,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.05108,"rms":0.23,"gap":148,"magType":"ml","type":"earthquake","title":"M 1.5 - 16km NNW of Westmorland, CA"},"geometry":{"type":"Point","coordinates":[-115.6825,33.174,1.63]},"id":"ci40183032"},
- {"type":"Feature","properties":{"mag":0.84,"place":"16km E of Coso Junction, CA","time":1644587922600,"updated":1644606906361,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183024","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183024.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40183024","ids":",ci40183024,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01491,"rms":0.06,"gap":94,"magType":"ml","type":"earthquake","title":"M 0.8 - 16km E of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.7723333,36.039,1.9]},"id":"ci40183024"},
- {"type":"Feature","properties":{"mag":3,"place":"56 km S of Whites City, New Mexico","time":1644587000813,"updated":1644944072866,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022cxyu","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022cxyu.geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"tx","code":"2022cxyu","ids":",tx2022cxyu,us7000gjze,","sources":",tx,us,","types":",dyfi,origin,phase-data,","nst":17,"dmin":0.09351361519,"rms":0.3,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.0 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.3910809,31.6685959,6.979931641]},"id":"tx2022cxyu"},
- {"type":"Feature","properties":{"mag":4.6,"place":"56 km NNE of Angoram, Papua New Guinea","time":1644586949690,"updated":1644588999040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjzg","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjzg.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gjzg","ids":",us7000gjzg,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":13.347,"rms":0.32,"gap":85,"magType":"mb","type":"earthquake","title":"M 4.6 - 56 km NNE of Angoram, Papua New Guinea"},"geometry":{"type":"Point","coordinates":[144.1881,-3.5657,10]},"id":"us7000gjzg"},
- {"type":"Feature","properties":{"mag":0.84,"place":"19km NNW of Borrego Springs, CA","time":1644586684820,"updated":1644606422345,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40183000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40183000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40183000","ids":",ci40183000,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":36,"dmin":0.0975,"rms":0.18,"gap":76,"magType":"ml","type":"earthquake","title":"M 0.8 - 19km NNW of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.423,33.4256667,14.19]},"id":"ci40183000"},
- {"type":"Feature","properties":{"mag":0.48,"place":"18km NW of Parkfield, CA","time":1644586480730,"updated":1644893596254,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691446","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691446.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nc","code":"73691446","ids":",nc73691446,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.03147,"rms":0.08,"gap":119,"magType":"md","type":"earthquake","title":"M 0.5 - 18km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.5751667,36.0058333,3.7]},"id":"nc73691446"},
- {"type":"Feature","properties":{"mag":1.12,"place":"9 km NNE of Helena Valley Northwest, Montana","time":1644586282010,"updated":1644594369450,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538179","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538179.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"mb","code":"80538179","ids":",mb80538179,","sources":",mb,","types":",origin,phase-data,","nst":13,"dmin":0.207,"rms":0.09,"gap":213,"magType":"ml","type":"earthquake","title":"M 1.1 - 9 km NNE of Helena Valley Northwest, Montana"},"geometry":{"type":"Point","coordinates":[-112.0333333,46.8075,6.98]},"id":"mb80538179"},
- {"type":"Feature","properties":{"mag":1.58,"place":"20km E of Little Lake, CA","time":1644586204160,"updated":1644605763750,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182992","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182992.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"ci","code":"40182992","ids":",ci40182992,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.04148,"rms":0.14,"gap":50,"magType":"ml","type":"earthquake","title":"M 1.6 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6856667,35.9178333,2.91]},"id":"ci40182992"},
- {"type":"Feature","properties":{"mag":5.2,"place":"51 km E of Wewak, Papua New Guinea","time":1644585318416,"updated":1644702671160,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjzc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjzc.geojson","felt":3,"cdi":4.6,"mmi":4.442,"alert":"green","status":"reviewed","tsunami":0,"sig":417,"net":"us","code":"7000gjzc","ids":",us7000gjzc,","sources":",us,","types":",dyfi,losspager,origin,phase-data,shakemap,","nst":null,"dmin":3.579,"rms":0.63,"gap":34,"magType":"mww","type":"earthquake","title":"M 5.2 - 51 km E of Wewak, Papua New Guinea"},"geometry":{"type":"Point","coordinates":[144.0993,-3.5255,10]},"id":"us7000gjzc"},
- {"type":"Feature","properties":{"mag":2.4,"place":"6 km NW of Medford, Oklahoma","time":1644585013630,"updated":1644607057722,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxxs","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxxs.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":89,"net":"ok","code":"2022cxxs","ids":",ok2022cxxs,us7000gjzb,","sources":",ok,us,","types":",dyfi,origin,phase-data,","nst":95,"dmin":0.05938834598,"rms":0.21,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.4 - 6 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.78533333,36.85283333,7.99]},"id":"ok2022cxxs"},
- {"type":"Feature","properties":{"mag":2.2,"place":"21 km NNE of Willow, Alaska","time":1644584482975,"updated":1644585262576,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xobh3e","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xobh3e.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"ak","code":"0221xobh3e","ids":",ak0221xobh3e,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.89,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.2 - 21 km NNE of Willow, Alaska"},"geometry":{"type":"Point","coordinates":[-149.8685,61.927,41.2]},"id":"ak0221xobh3e"},
- {"type":"Feature","properties":{"mag":1.69,"place":"24km ENE of San Ardo, CA","time":1644583955240,"updated":1644901390012,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691441","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691441.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":44,"net":"nc","code":"73691441","ids":",nc73691441,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.034,"rms":0.1,"gap":113,"magType":"md","type":"earthquake","title":"M 1.7 - 24km ENE of San Ardo, CA"},"geometry":{"type":"Point","coordinates":[-120.6378333,36.0646667,0.75]},"id":"nc73691441"},
- {"type":"Feature","properties":{"mag":1.45,"place":"25km E of San Ardo, CA","time":1644583892160,"updated":1644899650853,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691436","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691436.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"nc","code":"73691436","ids":",nc73691436,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":26,"dmin":0.03264,"rms":0.08,"gap":122,"magType":"md","type":"earthquake","title":"M 1.5 - 25km E of San Ardo, CA"},"geometry":{"type":"Point","coordinates":[-120.6356667,36.0623333,3.72]},"id":"nc73691436"},
- {"type":"Feature","properties":{"mag":4.9,"place":"73 km E of Hualien City, Taiwan","time":1644583888352,"updated":1644585436040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjz7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjz7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":369,"net":"us","code":"7000gjz7","ids":",us7000gjz7,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.701,"rms":0.75,"gap":75,"magType":"mb","type":"earthquake","title":"M 4.9 - 73 km E of Hualien City, Taiwan"},"geometry":{"type":"Point","coordinates":[122.3293,23.969,21.83]},"id":"us7000gjz7"},
- {"type":"Feature","properties":{"mag":0.6,"place":"26 km SW of Mina, Nevada","time":1644583869364,"updated":1644633513293,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833718","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833718.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nn","code":"00833718","ids":",nn00833718,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.113,"rms":0.0696,"gap":143.91,"magType":"ml","type":"earthquake","title":"M 0.6 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3615,38.2571,10.9]},"id":"nn00833718"},
- {"type":"Feature","properties":{"mag":1.96,"place":"4 km WSW of Fuig, Puerto Rico","time":1644583867030,"updated":1644584892590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334233","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334233.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":59,"net":"pr","code":"71334233","ids":",pr71334233,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.06,"gap":178,"magType":"md","type":"earthquake","title":"M 2.0 - 4 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9578333333333,17.9743333333333,9.35]},"id":"pr71334233"},
- {"type":"Feature","properties":{"mag":1.21,"place":"12 km ESE of Crowder, Oklahoma","time":1644582921620,"updated":1644847786593,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxwo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxwo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ok","code":"2022cxwo","ids":",ok2022cxwo,","sources":",ok,","types":",origin,phase-data,","nst":40,"dmin":0.1142775748,"rms":0.26,"gap":98,"magType":"ml","type":"earthquake","title":"M 1.2 - 12 km ESE of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53283333,35.09983333,7.72]},"id":"ok2022cxwo"},
- {"type":"Feature","properties":{"mag":0.13,"place":"38 km NNE of Amboy, Washington","time":1644582830900,"updated":1644619294830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61816001","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61816001.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61816001","ids":",uw61816001,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.00631,"rms":0.09,"gap":130,"magType":"md","type":"earthquake","title":"M 0.1 - 38 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19516666666667,46.205333333333336,4.39]},"id":"uw61816001"},
- {"type":"Feature","properties":{"mag":1.58,"place":"9 km SW of Milford, Utah","time":1644582829540,"updated":1644593138990,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481582","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481582.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"uu","code":"60481582","ids":",uu60481582,","sources":",uu,","types":",origin,phase-data,","nst":18,"dmin":0.02341,"rms":0.15,"gap":127,"magType":"ml","type":"earthquake","title":"M 1.6 - 9 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0991667,38.3458333,5.48]},"id":"uu60481582"},
- {"type":"Feature","properties":{"mag":0.9500000000000001,"place":"38 km NNE of Amboy, Washington","time":1644582510450,"updated":1644599240000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815996","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815996.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"uw","code":"61815996","ids":",uw61815996,","sources":",uw,","types":",origin,phase-data,","nst":23,"dmin":0.00787,"rms":0.16,"gap":88,"magType":"ml","type":"earthquake","title":"M 1.0 - 38 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1755,46.1965,3.25]},"id":"uw61815996"},
- {"type":"Feature","properties":{"mag":2.34,"place":"20km E of Little Lake, CA","time":1644581922170,"updated":1644605275280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182952","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182952.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"ci","code":"40182952","ids":",ci40182952,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":41,"dmin":0.04219,"rms":0.18,"gap":29,"magType":"ml","type":"earthquake","title":"M 2.3 - 20km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6873333,35.9181667,2.65]},"id":"ci40182952"},
- {"type":"Feature","properties":{"mag":1.13,"place":"6km NW of The Geysers, CA","time":1644581808560,"updated":1644594970985,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691421","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691421.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73691421","ids":",nc73691421,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.004828,"rms":0.02,"gap":34,"magType":"md","type":"earthquake","title":"M 1.1 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8040009,38.8224983,2.58]},"id":"nc73691421"},
- {"type":"Feature","properties":{"mag":0.44,"place":"16km N of Borrego Springs, CA","time":1644581681070,"updated":1644604823543,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40182936","ids":",ci40182936,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.07818,"rms":0.15,"gap":129,"magType":"ml","type":"earthquake","title":"M 0.4 - 16km N of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.3981667,33.4006667,10.02]},"id":"ci40182936"},
- {"type":"Feature","properties":{"mag":2.7,"place":"38 km WNW of Happy Valley, Alaska","time":1644581616156,"updated":1644581896817,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xnsn3j","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xnsn3j.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":112,"net":"ak","code":"0221xnsn3j","ids":",ak0221xnsn3j,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.61,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 38 km WNW of Happy Valley, Alaska"},"geometry":{"type":"Point","coordinates":[-152.387,60.0526,115.6]},"id":"ak0221xnsn3j"},
- {"type":"Feature","properties":{"mag":0.36,"place":"8km W of Cobb, CA","time":1644581550550,"updated":1644582556706,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691416","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691416.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691416","ids":",nc73691416,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.01042,"rms":0,"gap":105,"magType":"md","type":"earthquake","title":"M 0.4 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8103333,38.8338318,2.15]},"id":"nc73691416"},
- {"type":"Feature","properties":{"mag":0.38,"place":"16km WSW of Toms Place, CA","time":1644581030290,"updated":1644674593175,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691411","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691411.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nc","code":"73691411","ids":",nc73691411,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.1013,"rms":0.02,"gap":242,"magType":"md","type":"earthquake","title":"M 0.4 - 16km WSW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8428333,37.4891667,4.41]},"id":"nc73691411"},
- {"type":"Feature","properties":{"mag":1.2,"place":"20km NW of Parkfield, CA","time":1644580756720,"updated":1644882311042,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691401","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691401.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nc","code":"73691401","ids":",nc73691401,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.04479,"rms":0.13,"gap":71,"magType":"md","type":"earthquake","title":"M 1.2 - 20km NW of Parkfield, CA"},"geometry":{"type":"Point","coordinates":[-120.593,36.024,0.64]},"id":"nc73691401"},
- {"type":"Feature","properties":{"mag":0.28,"place":"17km WSW of Toms Place, CA","time":1644580618780,"updated":1644672251957,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691406","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691406.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nc","code":"73691406","ids":",nc73691406,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.1023,"rms":0.02,"gap":241,"magType":"md","type":"earthquake","title":"M 0.3 - 17km WSW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8446667,37.4883333,3.84]},"id":"nc73691406"},
- {"type":"Feature","properties":{"mag":0.75,"place":"9 km ENE of North Logan, Utah","time":1644580596400,"updated":1644593295440,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481577","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481577.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"uu","code":"60481577","ids":",uu60481577,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.0505,"rms":0.15,"gap":87,"magType":"md","type":"earthquake","title":"M 0.8 - 9 km ENE of North Logan, Utah"},"geometry":{"type":"Point","coordinates":[-111.6976667,41.7991667,14.6]},"id":"uu60481577"},
- {"type":"Feature","properties":{"mag":1.97,"place":"4 km SW of Guánica, Puerto Rico","time":1644580309410,"updated":1644582841640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334223","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334223.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":60,"net":"pr","code":"71334223","ids":",pr71334223,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.09,"gap":217,"magType":"md","type":"earthquake","title":"M 2.0 - 4 km SW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9436666666667,17.9478333333333,7.34]},"id":"pr71334223"},
- {"type":"Feature","properties":{"mag":1.2,"place":"26 km ESE of Manley Hot Springs, Alaska","time":1644580266845,"updated":1644580444305,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xnfafw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xnfafw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":22,"net":"ak","code":"0221xnfafw","ids":",ak0221xnfafw,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.5,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.2 - 26 km ESE of Manley Hot Springs, Alaska"},"geometry":{"type":"Point","coordinates":[-150.1065,64.9155,0]},"id":"ak0221xnfafw"},
- {"type":"Feature","properties":{"mag":0.6,"place":"3 km W of Walker, California","time":1644580225135,"updated":1644633512433,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833717","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833717.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nn","code":"00833717","ids":",nn00833717,","sources":",nn,","types":",origin,phase-data,","nst":7,"dmin":0.068,"rms":0.1001,"gap":184.39,"magType":"ml","type":"earthquake","title":"M 0.6 - 3 km W of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.5225,38.5181,7.8]},"id":"nn00833717"},
- {"type":"Feature","properties":{"mag":1.81,"place":"2 km SSE of Howardville, Missouri","time":1644579990260,"updated":1644590189840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nm60381301","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nm60381301.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"nm","code":"60381301","ids":",nm60381301,","sources":",nm,","types":",origin,phase-data,","nst":33,"dmin":0.02877,"rms":0.08,"gap":43,"magType":"md","type":"earthquake","title":"M 1.8 - 2 km SSE of Howardville, Missouri"},"geometry":{"type":"Point","coordinates":[-89.5903333,36.5455,7.85]},"id":"nm60381301"},
- {"type":"Feature","properties":{"mag":4.8,"place":"153 km SSW of Severo-Kuril’sk, Russia","time":1644579983012,"updated":1644581069040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjyx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjyx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gjyx","ids":",us7000gjyx,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":3.99,"rms":0.58,"gap":91,"magType":"mb","type":"earthquake","title":"M 4.8 - 153 km SSW of Severo-Kuril’sk, Russia"},"geometry":{"type":"Point","coordinates":[155.0371,49.4894,92.32]},"id":"us7000gjyx"},
- {"type":"Feature","properties":{"mag":1.14,"place":"2km S of Carson, CA","time":1644578427840,"updated":1644597414610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182920","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182920.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40182920","ids":",ci40182920,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.03901,"rms":0.36,"gap":84,"magType":"ml","type":"earthquake","title":"M 1.1 - 2km S of Carson, CA"},"geometry":{"type":"Point","coordinates":[-118.2833333,33.8158333,8.57]},"id":"ci40182920"},
- {"type":"Feature","properties":{"mag":1,"place":"30 km SE of Mina, Nevada","time":1644578292809,"updated":1644633484027,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833678","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833678.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"nn","code":"00833678","ids":",nn00833678,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.053,"rms":0.1376,"gap":130.62,"magType":"ml","type":"earthquake","title":"M 1.0 - 30 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.9027,38.1676,8.2]},"id":"nn00833678"},
- {"type":"Feature","properties":{"mag":1.2,"place":"36 km SE of Mina, Nevada","time":1644577974509,"updated":1644633482985,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833677","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833677.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833677","ids":",nn00833677,","sources":",nn,","types":",origin,phase-data,","nst":17,"dmin":0.125,"rms":0.112,"gap":119.71,"magType":"ml","type":"earthquake","title":"M 1.2 - 36 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7852,38.1855,9.7]},"id":"nn00833677"},
- {"type":"Feature","properties":{"mag":4.4,"place":"139 km N of Tual, Indonesia","time":1644577906582,"updated":1644579367040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjys","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjys.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gjys","ids":",us7000gjys,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.57,"rms":0.92,"gap":67,"magType":"mb","type":"earthquake","title":"M 4.4 - 139 km N of Tual, Indonesia"},"geometry":{"type":"Point","coordinates":[132.8715,-4.3709,10]},"id":"us7000gjys"},
- {"type":"Feature","properties":{"mag":0.84,"place":"8km NW of The Geysers, CA","time":1644577033560,"updated":1644577390202,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691391","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691391.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691391","ids":",nc73691391,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01069,"rms":0.02,"gap":55,"magType":"md","type":"earthquake","title":"M 0.8 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8156662,38.833168,1.49]},"id":"nc73691391"},
- {"type":"Feature","properties":{"mag":1.79,"place":"8km NW of The Geysers, CA","time":1644576820980,"updated":1644580273475,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691386","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691386.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":49,"net":"nc","code":"73691386","ids":",nc73691386,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":35,"dmin":0.008823,"rms":0.03,"gap":46,"magType":"md","type":"earthquake","title":"M 1.8 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8161697,38.8308334,1.95]},"id":"nc73691386"},
- {"type":"Feature","properties":{"mag":0.83,"place":"8 km SW of Milford, Utah","time":1644576721980,"updated":1644597972950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481572","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481572.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"uu","code":"60481572","ids":",uu60481572,","sources":",uu,","types":",origin,phase-data,","nst":13,"dmin":0.01998,"rms":0.07,"gap":125,"magType":"md","type":"earthquake","title":"M 0.8 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0885,38.3493333,5.31]},"id":"uu60481572"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644576583270,"updated":1644577151179,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691381","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691381.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691381","ids":",nc73691381,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.002775,"rms":0.03,"gap":106,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8073349,38.8251648,6.01]},"id":"nc73691381"},
- {"type":"Feature","properties":{"mag":4.3,"place":"114 km SE of Gorontalo, Indonesia","time":1644575741565,"updated":1644592704040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjyr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjyr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gjyr","ids":",us7000gjyr,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.473,"rms":0.5,"gap":47,"magType":"mb","type":"earthquake","title":"M 4.3 - 114 km SE of Gorontalo, Indonesia"},"geometry":{"type":"Point","coordinates":[123.8926,-0.0792,96.66]},"id":"us7000gjyr"},
- {"type":"Feature","properties":{"mag":1.8,"place":"5 km NE of Pāhala, Hawaii","time":1644575602410,"updated":1644575933470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912817","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912817.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"hv","code":"72912817","ids":",hv72912817,","sources":",hv,","types":",origin,phase-data,","nst":42,"dmin":null,"rms":0.140000001,"gap":118,"magType":"ml","type":"earthquake","title":"M 1.8 - 5 km NE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.438003540039,19.2386665344238,33.939998626709]},"id":"hv72912817"},
- {"type":"Feature","properties":{"mag":0.7,"place":"24 km N of Sutcliffe, Nevada","time":1644575507784,"updated":1644633511223,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833716","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833716.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nn","code":"00833716","ids":",nn00833716,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.067,"rms":0.1331,"gap":244.85,"magType":"ml","type":"earthquake","title":"M 0.7 - 24 km N of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6442,40.1682,9.7]},"id":"nn00833716"},
- {"type":"Feature","properties":{"mag":2.7,"place":"7 km SSE of Kachemak City, Alaska","time":1644575387400,"updated":1644928127040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xmp8dv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xmp8dv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":112,"net":"ak","code":"0221xmp8dv","ids":",us7000gjyn,ak0221xmp8dv,","sources":",us,ak,","types":",origin,phase-data,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 7 km SSE of Kachemak City, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4203,59.6015,59.5]},"id":"ak0221xmp8dv"},
- {"type":"Feature","properties":{"mag":1.3,"place":"50 km SSE of Denali National Park, Alaska","time":1644575297529,"updated":1644575466272,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xmoy6u","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xmoy6u.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"0221xmoy6u","ids":",ak0221xmoy6u,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.77,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 50 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.458,63.1004,9.9]},"id":"ak0221xmoy6u"},
- {"type":"Feature","properties":{"mag":0.7,"place":"5km WNW of The Geysers, CA","time":1644575273740,"updated":1644577753238,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691376","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691376.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":8,"net":"nc","code":"73691376","ids":",nc73691376,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.007578,"rms":0.01,"gap":98,"magType":"md","type":"earthquake","title":"M 0.7 - 5km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8101654,38.793499,3.92]},"id":"nc73691376"},
- {"type":"Feature","properties":{"mag":1.17,"place":"6 km NW of Kendrick, Oklahoma","time":1644574841009,"updated":1644850088603,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxsc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxsc.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"ok","code":"2022cxsc","ids":",ok2022cxsc,","sources":",ok,","types":",origin,phase-data,","nst":52,"dmin":0.1664673334,"rms":0.2,"gap":69,"magType":"ml","type":"earthquake","title":"M 1.2 - 6 km NW of Kendrick, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.823,35.82716667,7.83]},"id":"ok2022cxsc"},
- {"type":"Feature","properties":{"mag":1.48,"place":"4km WNW of Byron, CA","time":1644574741360,"updated":1644622511859,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691371","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691371.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"nc","code":"73691371","ids":",nc73691371,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.04807,"rms":0.18,"gap":156,"magType":"md","type":"earthquake","title":"M 1.5 - 4km WNW of Byron, CA"},"geometry":{"type":"Point","coordinates":[-121.6816667,37.8863333,15.58]},"id":"nc73691371"},
- {"type":"Feature","properties":{"mag":0.2,"place":"13 km SE of Walker, California","time":1644574571590,"updated":1644633510479,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833713","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833713.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833713","ids":",nn00833713,","sources":",nn,","types":",origin,phase-data,","nst":10,"dmin":0.089,"rms":0.1172,"gap":122.56,"magType":"ml","type":"earthquake","title":"M 0.2 - 13 km SE of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3665,38.4349,7.8]},"id":"nn00833713"},
- {"type":"Feature","properties":{"mag":0.85,"place":"4km W of Cobb, CA","time":1644574548400,"updated":1644576437113,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691366","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691366.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691366","ids":",nc73691366,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.01136,"rms":0.02,"gap":183,"magType":"md","type":"earthquake","title":"M 0.9 - 4km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7653351,38.8196678,1.56]},"id":"nc73691366"},
- {"type":"Feature","properties":{"mag":4.7,"place":"central Mid-Atlantic Ridge","time":1644574475162,"updated":1644575878040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjyl","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjyl.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":340,"net":"us","code":"7000gjyl","ids":",us7000gjyl,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":9.167,"rms":0.55,"gap":85,"magType":"mb","type":"earthquake","title":"M 4.7 - central Mid-Atlantic Ridge"},"geometry":{"type":"Point","coordinates":[-19.8959,-0.5626,10]},"id":"us7000gjyl"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"4 km SSW of Walker, California","time":1644573627207,"updated":1644633509548,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833712","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833712.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833712","ids":",nn00833712,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.049,"rms":0.0783,"gap":184.65,"magType":"ml","type":"earthquake","title":"M -0.1 - 4 km SSW of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.4908,38.4779,1.6]},"id":"nn00833712"},
- {"type":"Feature","properties":{"mag":1.59,"place":"5km WNW of Byron, CA","time":1644573260090,"updated":1644791470841,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691361","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691361.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nc","code":"73691361","ids":",nc73691361,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":45,"dmin":0.04711,"rms":0.18,"gap":122,"magType":"md","type":"earthquake","title":"M 1.6 - 5km WNW of Byron, CA"},"geometry":{"type":"Point","coordinates":[-121.6886667,37.8863333,15.89]},"id":"nc73691361"},
- {"type":"Feature","properties":{"mag":1.25,"place":"0 km WSW of Dibble, Oklahoma","time":1644572903649,"updated":1644588358213,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxra","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxra.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ok","code":"2022cxra","ids":",ok2022cxra,","sources":",ok,","types":",origin,phase-data,","nst":59,"dmin":0.1016800469,"rms":0.28,"gap":52,"magType":"ml","type":"earthquake","title":"M 1.3 - 0 km WSW of Dibble, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.63466667,35.031,8.61]},"id":"ok2022cxra"},
- {"type":"Feature","properties":{"mag":0.84,"place":"5km NW of The Geysers, CA","time":1644572823810,"updated":1644574452913,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691356","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691356.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691356","ids":",nc73691356,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.005103,"rms":0.01,"gap":118,"magType":"md","type":"earthquake","title":"M 0.8 - 5km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8018341,38.8079987,3]},"id":"nc73691356"},
- {"type":"Feature","properties":{"mag":1.62,"place":"18km WNW of Coalinga, CA","time":1644572729550,"updated":1644919524807,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691351","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691351.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"nc","code":"73691351","ids":",nc73691351,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.1391,"rms":0.18,"gap":70,"magType":"md","type":"earthquake","title":"M 1.6 - 18km WNW of Coalinga, CA"},"geometry":{"type":"Point","coordinates":[-120.5461667,36.2021667,8.1]},"id":"nc73691351"},
- {"type":"Feature","properties":{"mag":1.9,"place":"59 km NNE of Petersville, Alaska","time":1644572703476,"updated":1644572932105,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xm74ob","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xm74ob.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221xm74ob","ids":",ak0221xm74ob,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.89,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 59 km NNE of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.4647,63.0163,113.8]},"id":"ak0221xm74ob"},
- {"type":"Feature","properties":{"mag":0.78,"place":"11km SSW of Searles Valley, CA","time":1644572390510,"updated":1644604429793,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182880","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182880.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40182880","ids":",ci40182880,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.09164,"rms":0.18,"gap":110,"magType":"ml","type":"earthquake","title":"M 0.8 - 11km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.4631667,35.6783333,9.07]},"id":"ci40182880"},
- {"type":"Feature","properties":{"mag":2.16,"place":"10km ESE of Ojai, CA","time":1644571919000,"updated":1644981935174,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182864","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182864.geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":72,"net":"ci","code":"40182864","ids":",ci40182864,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":72,"dmin":0.01068,"rms":0.3,"gap":40,"magType":"ml","type":"earthquake","title":"M 2.2 - 10km ESE of Ojai, CA"},"geometry":{"type":"Point","coordinates":[-119.1321667,34.4271667,16.08]},"id":"ci40182864"},
- {"type":"Feature","properties":{"mag":0.68,"place":"6km SSE of Banning, CA","time":1644571451180,"updated":1644598928473,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182856","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182856.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"ci","code":"40182856","ids":",ci40182856,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":45,"dmin":0.06331,"rms":0.15,"gap":45,"magType":"ml","type":"earthquake","title":"M 0.7 - 6km SSE of Banning, CA"},"geometry":{"type":"Point","coordinates":[-116.8513333,33.8783333,15.08]},"id":"ci40182856"},
- {"type":"Feature","properties":{"mag":1.86,"place":"5 km WSW of Fuig, Puerto Rico","time":1644570773260,"updated":1644576527710,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334208","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334208.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"pr","code":"71334208","ids":",pr71334208,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.22,"gap":190,"magType":"md","type":"earthquake","title":"M 1.9 - 5 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9636666666667,17.9655,4.04]},"id":"pr71334208"},
- {"type":"Feature","properties":{"mag":1.2,"place":"7 km ENE of Walker, California","time":1644570681198,"updated":1644633508766,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833711","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833711.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833711","ids":",nn00833711,","sources":",nn,","types":",origin,phase-data,","nst":14,"dmin":0.046,"rms":0.1579,"gap":92.99,"magType":"ml","type":"earthquake","title":"M 1.2 - 7 km ENE of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3926,38.5335,3]},"id":"nn00833711"},
- {"type":"Feature","properties":{"mag":0.5,"place":"8 km SSW of Dayton, Nevada","time":1644570590388,"updated":1644633507737,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833710","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833710.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"nn","code":"00833710","ids":",nn00833710,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.084,"rms":0.1767,"gap":125.64,"magType":"ml","type":"earthquake","title":"M 0.5 - 8 km SSW of Dayton, Nevada"},"geometry":{"type":"Point","coordinates":[-119.636,39.1682,5.4]},"id":"nn00833710"},
- {"type":"Feature","properties":{"mag":1.3,"place":"32 km NW of Valdez, Alaska","time":1644570179596,"updated":1644570428002,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xly095","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xly095.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":26,"net":"ak","code":"0221xly095","ids":",ak0221xly095,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.92,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.3 - 32 km NW of Valdez, Alaska"},"geometry":{"type":"Point","coordinates":[-146.8412,61.2986,44.4]},"id":"ak0221xly095"},
- {"type":"Feature","properties":{"mag":0.86,"place":"9km WNW of Cobb, CA","time":1644569656930,"updated":1644572591704,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691341","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691341.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691341","ids":",nc73691341,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.009312,"rms":0.01,"gap":98,"magType":"md","type":"earthquake","title":"M 0.9 - 9km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8236694,38.8398323,1.73]},"id":"nc73691341"},
- {"type":"Feature","properties":{"mag":-0.4,"place":"11 km N of Truckee, California","time":1644569160413,"updated":1644633506794,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833709","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833709.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833709","ids":",nn00833709,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.132,"rms":0.0764,"gap":169.87,"magType":"ml","type":"earthquake","title":"M -0.4 - 11 km N of Truckee, California"},"geometry":{"type":"Point","coordinates":[-120.1829,39.4294,6.6]},"id":"nn00833709"},
- {"type":"Feature","properties":{"mag":1.6,"place":"22 km WSW of Susitna North, Alaska","time":1644569127806,"updated":1644569306062,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xllqy4","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xllqy4.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221xllqy4","ids":",ak0221xllqy4,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.22,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 22 km WSW of Susitna North, Alaska"},"geometry":{"type":"Point","coordinates":[-150.255,62.0847,56.6]},"id":"ak0221xllqy4"},
- {"type":"Feature","properties":{"mag":1.96,"place":"3 km S of Indios, Puerto Rico","time":1644569123550,"updated":1644621850060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334283","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334283.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":59,"net":"pr","code":"71334283","ids":",pr71334283,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.11,"gap":318,"magType":"md","type":"earthquake","title":"M 2.0 - 3 km S of Indios, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8236666666667,17.9636666666667,12.13]},"id":"pr71334283"},
- {"type":"Feature","properties":{"mag":1.15,"place":"8km NNE of Alum Rock, CA","time":1644568379160,"updated":1644640990691,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691336","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691336.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"nc","code":"73691336","ids":",nc73691336,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.03065,"rms":0.05,"gap":53,"magType":"md","type":"earthquake","title":"M 1.2 - 8km NNE of Alum Rock, CA"},"geometry":{"type":"Point","coordinates":[-121.798,37.4383333,4.44]},"id":"nc73691336"},
- {"type":"Feature","properties":{"mag":1.92,"place":"4 km W of Fuig, Puerto Rico","time":1644568339160,"updated":1644570139580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334203","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334203.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":57,"net":"pr","code":"71334203","ids":",pr71334203,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.2,"gap":170,"magType":"md","type":"earthquake","title":"M 1.9 - 4 km W of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9621666666667,17.9798333333333,9.82]},"id":"pr71334203"},
- {"type":"Feature","properties":{"mag":-0.06,"place":"68 km W of Tyonek, Alaska","time":1644568144320,"updated":1644618222650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049508","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049508.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049508","ids":",av91049508,","sources":",av,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.15,"gap":147,"magType":"ml","type":"earthquake","title":"M -0.1 - 68 km W of Tyonek, Alaska"},"geometry":{"type":"Point","coordinates":[-152.3955,61.1365,4.38]},"id":"av91049508"},
- {"type":"Feature","properties":{"mag":2.18,"place":"1 km SE of Liborio Negron Torres, Puerto Rico","time":1644567912970,"updated":1644584922740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334228","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334228.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":73,"net":"pr","code":"71334228","ids":",pr71334228,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.26,"gap":83,"magType":"md","type":"earthquake","title":"M 2.2 - 1 km SE of Liborio Negron Torres, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9343333333333,18.0323333333333,7.61]},"id":"pr71334228"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"8 km ENE of Pāhala, Hawaii","time":1644567591950,"updated":1644567787870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912632","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912632.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72912632","ids":",hv72912632,","sources":",hv,","types":",origin,phase-data,","nst":36,"dmin":null,"rms":0.129999995,"gap":142,"magType":"md","type":"earthquake","title":"M 1.8 - 8 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.408172607422,19.2310009002686,31.4099998474121]},"id":"hv72912632"},
- {"type":"Feature","properties":{"mag":0.47,"place":"12km NNE of Trabuco Canyon, CA","time":1644567540860,"updated":1644596258494,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182848","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182848.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40182848","ids":",ci40182848,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.09816,"rms":0.1,"gap":139,"magType":"ml","type":"earthquake","title":"M 0.5 - 12km NNE of Trabuco Canyon, CA"},"geometry":{"type":"Point","coordinates":[-117.5418333,33.7613333,9.49]},"id":"ci40182848"},
- {"type":"Feature","properties":{"mag":1.94,"place":"1 km SSW of Fuig, Puerto Rico","time":1644567375310,"updated":1644569984980,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334198","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334198.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"pr","code":"71334198","ids":",pr71334198,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.07,"gap":175,"magType":"md","type":"earthquake","title":"M 1.9 - 1 km SSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.923,17.9773333333333,7.58]},"id":"pr71334198"},
- {"type":"Feature","properties":{"mag":1.99,"place":"16 km SSE of Sunnyside, Utah","time":1644567034440,"updated":1644602839610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481567","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481567.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":61,"net":"uu","code":"60481567","ids":",uu60481567,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.02507,"rms":0.15,"gap":186,"magType":"md","type":"earthquake","title":"M 2.0 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.2935,39.4186667,-3.21]},"id":"uu60481567"},
- {"type":"Feature","properties":{"mag":1.54,"place":"2 km SSW of Monte Grande, Puerto Rico","time":1644567023520,"updated":1644581291140,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334218","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334218.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"pr","code":"71334218","ids":",pr71334218,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.2,"gap":279,"magType":"md","type":"earthquake","title":"M 1.5 - 2 km SSW of Monte Grande, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.1188333333333,18.0708333333333,17.97]},"id":"pr71334218"},
- {"type":"Feature","properties":{"mag":0.94,"place":"9km NE of Coso Junction, CA","time":1644566985370,"updated":1644764686185,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182840","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182840.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40182840","ids":",ci40182840,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.03017,"rms":0.1,"gap":156,"magType":"ml","type":"earthquake","title":"M 0.9 - 9km NE of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.8691667,36.0896667,2.74]},"id":"ci40182840"},
- {"type":"Feature","properties":{"mag":1.26,"place":"4km NNW of Fontana, CA","time":1644566871930,"updated":1644784203840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182824","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182824.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ci","code":"40182824","ids":",ci40182824,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":62,"dmin":0.04874,"rms":0.17,"gap":37,"magType":"ml","type":"earthquake","title":"M 1.3 - 4km NNW of Fontana, CA"},"geometry":{"type":"Point","coordinates":[-117.4808333,34.1336667,5.27]},"id":"ci40182824"},
- {"type":"Feature","properties":{"mag":1.82,"place":"Puerto Rico region","time":1644566802380,"updated":1644578725030,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334213","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334213.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":51,"net":"pr","code":"71334213","ids":",pr71334213,","sources":",pr,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.08,"gap":166,"magType":"md","type":"earthquake","title":"M 1.8 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-66.9521666666667,17.9828333333333,11.96]},"id":"pr71334213"},
- {"type":"Feature","properties":{"mag":1.1,"place":"8 km E of Walker, California","time":1644566678928,"updated":1644633506002,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833708","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833708.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833708","ids":",nn00833708,","sources":",nn,","types":",origin,phase-data,","nst":8,"dmin":0.054,"rms":0.1752,"gap":148.06,"magType":"ml","type":"earthquake","title":"M 1.1 - 8 km E of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.376,38.5265,0]},"id":"nn00833708"},
- {"type":"Feature","properties":{"mag":1.68,"place":"5km WNW of Byron, CA","time":1644566418620,"updated":1644625632050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691326","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691326.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"nc","code":"73691326","ids":",nc73691326,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":49,"dmin":0.04293,"rms":0.19,"gap":124,"magType":"md","type":"earthquake","title":"M 1.7 - 5km WNW of Byron, CA"},"geometry":{"type":"Point","coordinates":[-121.6841667,37.8911667,14.66]},"id":"nc73691326"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644566246730,"updated":1644567010178,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691321","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691321.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691321","ids":",nc73691321,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.00378,"rms":0.01,"gap":77,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.805336,38.8241653,1.65]},"id":"nc73691321"},
- {"type":"Feature","properties":{"mag":0.6,"place":"9 km E of Floriston, California","time":1644565875067,"updated":1644633505134,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833707","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833707.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"nn","code":"00833707","ids":",nn00833707,","sources":",nn,","types":",origin,phase-data,","nst":15,"dmin":0.117,"rms":0.1659,"gap":63.02,"magType":"ml","type":"earthquake","title":"M 0.6 - 9 km E of Floriston, California"},"geometry":{"type":"Point","coordinates":[-119.9152,39.4042,8.5]},"id":"nn00833707"},
- {"type":"Feature","properties":{"mag":1.91,"place":"5km SE of Brentwood, CA","time":1644565703790,"updated":1644583631805,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691311","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691311.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"nc","code":"73691311","ids":",nc73691311,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":49,"dmin":0.04228,"rms":0.16,"gap":99,"magType":"md","type":"earthquake","title":"M 1.9 - 5km SE of Brentwood, CA"},"geometry":{"type":"Point","coordinates":[-121.6911667,37.891,16.08]},"id":"nc73691311"},
- {"type":"Feature","properties":{"mag":1.48,"place":"4km WNW of Byron, CA","time":1644565665310,"updated":1644587831209,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691306","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691306.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"nc","code":"73691306","ids":",nc73691306,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.04811,"rms":0.09,"gap":132,"magType":"md","type":"earthquake","title":"M 1.5 - 4km WNW of Byron, CA"},"geometry":{"type":"Point","coordinates":[-121.6833333,37.886,10.12]},"id":"nc73691306"},
- {"type":"Feature","properties":{"mag":0.87,"place":"8km NW of The Geysers, CA","time":1644565543600,"updated":1644565993069,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691301","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691301.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73691301","ids":",nc73691301,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.01065,"rms":0.02,"gap":53,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8160019,38.8330002,1.75]},"id":"nc73691301"},
- {"type":"Feature","properties":{"mag":1.18,"place":"3km W of Cobb, CA","time":1644565411710,"updated":1644891010972,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691296","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691296.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":21,"net":"nc","code":"73691296","ids":",nc73691296,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":42,"dmin":0.01096,"rms":0.03,"gap":50,"magType":"md","type":"earthquake","title":"M 1.2 - 3km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7628333,38.821,2.18]},"id":"nc73691296"},
- {"type":"Feature","properties":{"mag":2.03,"place":"4km W of Cobb, CA","time":1644565357550,"updated":1644889271881,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691291","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691291.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":63,"net":"nc","code":"73691291","ids":",nc73691291,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":76,"dmin":0.01087,"rms":0.07,"gap":45,"magType":"md","type":"earthquake","title":"M 2.0 - 4km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7643333,38.8205,2.15]},"id":"nc73691291"},
- {"type":"Feature","properties":{"mag":1.73,"place":"9 km SW of Milford, Utah","time":1644564435190,"updated":1644602713840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481557","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481557.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"uu","code":"60481557","ids":",uu60481557,","sources":",uu,","types":",origin,phase-data,","nst":17,"dmin":0.02404,"rms":0.11,"gap":126,"magType":"ml","type":"earthquake","title":"M 1.7 - 9 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0948333,38.3448333,6.43]},"id":"uu60481557"},
- {"type":"Feature","properties":{"mag":0.73,"place":"24km ENE of San Ardo, CA","time":1644564369500,"updated":1644615914094,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691286","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691286.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nc","code":"73691286","ids":",nc73691286,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":20,"dmin":0.03471,"rms":0.09,"gap":122,"magType":"md","type":"earthquake","title":"M 0.7 - 24km ENE of San Ardo, CA"},"geometry":{"type":"Point","coordinates":[-120.6386667,36.0643333,-0.13]},"id":"nc73691286"},
- {"type":"Feature","properties":{"mag":0.91,"place":"2km NE of The Geysers, CA","time":1644564021770,"updated":1644566472117,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691281","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691281.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":13,"net":"nc","code":"73691281","ids":",nc73691281,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.00833,"rms":0.02,"gap":151,"magType":"md","type":"earthquake","title":"M 0.9 - 2km NE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.745163,38.7883339,2.73]},"id":"nc73691281"},
- {"type":"Feature","properties":{"mag":1.32,"place":"3km ENE of The Geysers, CA","time":1644563727820,"updated":1644888490804,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691271","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691271.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"nc","code":"73691271","ids":",nc73691271,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":39,"dmin":0.008638,"rms":0.05,"gap":39,"magType":"md","type":"earthquake","title":"M 1.3 - 3km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7298333,38.79,1.81]},"id":"nc73691271"},
- {"type":"Feature","properties":{"mag":5.5,"place":"45 km E of Wewak, Papua New Guinea","time":1644563693372,"updated":1645124745502,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjy1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjy1.geojson","felt":7,"cdi":7.1,"mmi":5.019,"alert":"green","status":"reviewed","tsunami":0,"sig":470,"net":"us","code":"7000gjy1","ids":",us7000gjy1,","sources":",us,","types":",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,","nst":null,"dmin":8.134,"rms":0.74,"gap":29,"magType":"mww","type":"earthquake","title":"M 5.5 - 45 km E of Wewak, Papua New Guinea"},"geometry":{"type":"Point","coordinates":[144.0387,-3.5154,10]},"id":"us7000gjy1"},
- {"type":"Feature","properties":{"mag":0.74,"place":"6km NNW of The Geysers, CA","time":1644563514070,"updated":1644880212827,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691266","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691266.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nc","code":"73691266","ids":",nc73691266,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.009932,"rms":0.02,"gap":75,"magType":"md","type":"earthquake","title":"M 0.7 - 6km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7898333,38.8201667,1.75]},"id":"nc73691266"},
- {"type":"Feature","properties":{"mag":0.18,"place":"37 km NNE of Amboy, Washington","time":1644563505010,"updated":1644620555230,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815986","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815986.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61815986","ids":",uw61815986,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.005318,"rms":0.16,"gap":139,"magType":"ml","type":"earthquake","title":"M 0.2 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1815,46.19566666666667,4.3]},"id":"uw61815986"},
- {"type":"Feature","properties":{"mag":1.4,"place":"30 km SSE of Mendeltna, Alaska","time":1644563001910,"updated":1644563256196,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xkratd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xkratd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221xkratd","ids":",ak0221xkratd,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.99,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 30 km SSE of Mendeltna, Alaska"},"geometry":{"type":"Point","coordinates":[-146.292,61.7984,35]},"id":"ak0221xkratd"},
- {"type":"Feature","properties":{"mag":0.85,"place":"14km ENE of Ridgecrest, CA","time":1644562842320,"updated":1644764705723,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182800","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182800.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40182800","ids":",ci40182800,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.1142,"rms":0.18,"gap":149,"magType":"ml","type":"earthquake","title":"M 0.9 - 14km ENE of Ridgecrest, CA"},"geometry":{"type":"Point","coordinates":[-117.5376667,35.683,10.74]},"id":"ci40182800"},
- {"type":"Feature","properties":{"mag":1.87,"place":"Utah","time":1644562790160,"updated":1644601818820,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481552","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481552.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":54,"net":"uu","code":"60481552","ids":",uu60481552,","sources":",uu,","types":",origin,phase-data,","nst":21,"dmin":0.01854,"rms":0.19,"gap":89,"magType":"ml","type":"earthquake","title":"M 1.9 - Utah"},"geometry":{"type":"Point","coordinates":[-113.1066667,38.3533333,9.73]},"id":"uu60481552"},
- {"type":"Feature","properties":{"mag":1.86,"place":"15 km SSE of Sunnyside, Utah","time":1644562644400,"updated":1644601416170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481547","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481547.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":53,"net":"uu","code":"60481547","ids":",uu60481547,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.01145,"rms":0.08,"gap":196,"magType":"md","type":"earthquake","title":"M 1.9 - 15 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3103333,39.4236667,-1.62]},"id":"uu60481547"},
- {"type":"Feature","properties":{"mag":0.4,"place":"43 km ENE of Beatty, Nevada","time":1644562633097,"updated":1644633481888,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833676","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833676.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"nn","code":"00833676","ids":",nn00833676,","sources":",nn,","types":",origin,phase-data,","nst":12,"dmin":0.054,"rms":0.0858,"gap":161.44,"magType":"ml","type":"earthquake","title":"M 0.4 - 43 km ENE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2804,36.9965,5.8]},"id":"nn00833676"},
- {"type":"Feature","properties":{"mag":1.71,"place":"9 km SW of Milford, Utah","time":1644562181950,"updated":1644601321200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481542","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481542.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":45,"net":"uu","code":"60481542","ids":",uu60481542,","sources":",uu,","types":",origin,phase-data,","nst":21,"dmin":0.02633,"rms":0.14,"gap":85,"magType":"ml","type":"earthquake","title":"M 1.7 - 9 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0971667,38.3426667,6.2]},"id":"uu60481542"},
- {"type":"Feature","properties":{"mag":4.8,"place":"central Mid-Atlantic Ridge","time":1644562075225,"updated":1644563092040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjxy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjxy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gjxy","ids":",us7000gjxy,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":9.28,"rms":0.48,"gap":84,"magType":"mb","type":"earthquake","title":"M 4.8 - central Mid-Atlantic Ridge"},"geometry":{"type":"Point","coordinates":[-19.98,-0.4837,10]},"id":"us7000gjxy"},
- {"type":"Feature","properties":{"mag":0.69,"place":"17km WSW of Toms Place, CA","time":1644561971330,"updated":1644612553766,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691261","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691261.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"nc","code":"73691261","ids":",nc73691261,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.1012,"rms":0.03,"gap":206,"magType":"md","type":"earthquake","title":"M 0.7 - 17km WSW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8456667,37.4895,4.27]},"id":"nc73691261"},
- {"type":"Feature","properties":{"mag":1.35,"place":"8 km SW of Milford, Utah","time":1644561789100,"updated":1644600823490,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481537","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481537.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":28,"net":"uu","code":"60481537","ids":",uu60481537,","sources":",uu,","types":",origin,phase-data,","nst":14,"dmin":0.02193,"rms":0.07,"gap":106,"magType":"ml","type":"earthquake","title":"M 1.4 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0885,38.3473333,5.52]},"id":"uu60481537"},
- {"type":"Feature","properties":{"mag":1.77,"place":"7 km WSW of Fuig, Puerto Rico","time":1644561634220,"updated":1644566473910,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334193","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334193.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"pr","code":"71334193","ids":",pr71334193,","sources":",pr,","types":",origin,phase-data,","nst":7,"dmin":null,"rms":0.14,"gap":183,"magType":"md","type":"earthquake","title":"M 1.8 - 7 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9795,17.9695,8.22]},"id":"pr71334193"},
- {"type":"Feature","properties":{"mag":0.2,"place":"26 km SW of Mina, Nevada","time":1644561515391,"updated":1644633501476,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833706","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833706.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833706","ids":",nn00833706,","sources":",nn,","types":",origin,phase-data,","nst":7,"dmin":0.132,"rms":0.0898,"gap":268.65,"magType":"ml","type":"earthquake","title":"M 0.2 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3392,38.2297,7.3]},"id":"nn00833706"},
- {"type":"Feature","properties":{"mag":0.86,"place":"12km NNE of Borrego Springs, CA","time":1644561478710,"updated":1644764707735,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182792","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182792.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"ci","code":"40182792","ids":",ci40182792,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.03226,"rms":0.2,"gap":75,"magType":"ml","type":"earthquake","title":"M 0.9 - 12km NNE of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.3475,33.3565,11.27]},"id":"ci40182792"},
- {"type":"Feature","properties":{"mag":0.14,"place":"1km N of The Geysers, CA","time":1644561474890,"updated":1644879733775,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691256","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691256.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691256","ids":",nc73691256,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.0118,"rms":0.05,"gap":104,"magType":"md","type":"earthquake","title":"M 0.1 - 1km N of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7586667,38.7888333,1.95]},"id":"nc73691256"},
- {"type":"Feature","properties":{"mag":1.2,"place":"8 km E of Walker, California","time":1644561459911,"updated":1644633500703,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833705","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833705.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":22,"net":"nn","code":"00833705","ids":",nn00833705,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.048,"rms":0.1374,"gap":247.43,"magType":"ml","type":"earthquake","title":"M 1.2 - 8 km E of Walker, California"},"geometry":{"type":"Point","coordinates":[-119.3782,38.5124,5.5]},"id":"nn00833705"},
- {"type":"Feature","properties":{"mag":1.8,"place":"35 km SSW of Cantwell, Alaska","time":1644561214662,"updated":1644561603319,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xkcbnw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xkcbnw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221xkcbnw","ids":",ak0221xkcbnw,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.07,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 35 km SSW of Cantwell, Alaska"},"geometry":{"type":"Point","coordinates":[-149.3228,63.1218,0]},"id":"ak0221xkcbnw"},
- {"type":"Feature","properties":{"mag":1.4,"place":"10km ESE of Ojai, CA","time":1644561024090,"updated":1644782043208,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182784","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182784.geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"ci","code":"40182784","ids":",ci40182784,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":32,"dmin":0.01107,"rms":0.24,"gap":53,"magType":"ml","type":"earthquake","title":"M 1.4 - 10km ESE of Ojai, CA"},"geometry":{"type":"Point","coordinates":[-119.1368333,34.4258333,15.17]},"id":"ci40182784"},
- {"type":"Feature","properties":{"mag":0.83,"place":"22 km E of Honaunau-Napoopoo, Hawaii","time":1644560721290,"updated":1644620015710,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912517","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912517.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":11,"net":"hv","code":"72912517","ids":",hv72912517,","sources":",hv,","types":",origin,phase-data,","nst":20,"dmin":null,"rms":0.19,"gap":60,"magType":"md","type":"earthquake","title":"M 0.8 - 22 km E of Honaunau-Napoopoo, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.654166666667,19.4953333333333,3.81]},"id":"hv72912517"},
- {"type":"Feature","properties":{"mag":5.3,"place":"Ascension Island region","time":1644560653966,"updated":1644601679040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjxn","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjxn.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":432,"net":"us","code":"7000gjxn","ids":",us7000gjxn,","sources":",us,","types":",moment-tensor,origin,phase-data,","nst":null,"dmin":2.87,"rms":0.48,"gap":46,"magType":"mww","type":"earthquake","title":"M 5.3 - Ascension Island region"},"geometry":{"type":"Point","coordinates":[-13.0483,-10.5108,10]},"id":"us7000gjxn"},
- {"type":"Feature","properties":{"mag":-0.1,"place":"27 km SW of Mina, Nevada","time":1644560188988,"updated":1644633499796,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833704","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833704.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833704","ids":",nn00833704,","sources":",nn,","types":",origin,phase-data,","nst":7,"dmin":0.113,"rms":0.064,"gap":229.46,"magType":"ml","type":"earthquake","title":"M -0.1 - 27 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3612,38.2498,10.6]},"id":"nn00833704"},
- {"type":"Feature","properties":{"mag":1.9,"place":"16 km SSE of Sunnyside, Utah","time":1644559342860,"updated":1644600543290,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481532","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481532.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"uu","code":"60481532","ids":",uu60481532,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.01607,"rms":0.14,"gap":182,"magType":"md","type":"earthquake","title":"M 1.9 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3045,39.4221667,-2.25]},"id":"uu60481532"},
- {"type":"Feature","properties":{"mag":2.28,"place":"7 km ESE of La Parguera, Puerto Rico","time":1644559336560,"updated":1644562225400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334183","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334183.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":80,"net":"pr","code":"71334183","ids":",pr71334183,","sources":",pr,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.09,"gap":207,"magType":"md","type":"earthquake","title":"M 2.3 - 7 km ESE of La Parguera, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9831666666667,17.9548333333333,8.15]},"id":"pr71334183"},
- {"type":"Feature","properties":{"mag":0.88,"place":"8 km SW of Milford, Utah","time":1644559138000,"updated":1644600478360,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481527","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481527.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"uu","code":"60481527","ids":",uu60481527,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.02074,"rms":0.05,"gap":125,"magType":"md","type":"earthquake","title":"M 0.9 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.087,38.3488333,5.45]},"id":"uu60481527"},
- {"type":"Feature","properties":{"mag":0.98,"place":"6km NW of The Geysers, CA","time":1644559109880,"updated":1644565691194,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691251","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691251.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73691251","ids":",nc73691251,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.006045,"rms":0.02,"gap":40,"magType":"md","type":"earthquake","title":"M 1.0 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8043365,38.8193321,2.41]},"id":"nc73691251"},
- {"type":"Feature","properties":{"mag":0.33,"place":"38 km NNE of Amboy, Washington","time":1644558995180,"updated":1644562174280,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815976","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815976.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"uw","code":"61815976","ids":",uw61815976,","sources":",uw,","types":",origin,phase-data,","nst":15,"dmin":0.001698,"rms":0.13,"gap":133,"magType":"ml","type":"earthquake","title":"M 0.3 - 38 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18483333333333,46.20183333333333,4.93]},"id":"uw61815976"},
- {"type":"Feature","properties":{"mag":3.91,"place":"114 km N of Charlotte Amalie, U.S. Virgin Islands","time":1644558499820,"updated":1644561268235,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr2022042000","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2022042000.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":235,"net":"pr","code":"2022042000","ids":",pr2022042000,","sources":",pr,","types":",origin,phase-data,","nst":9,"dmin":1.4781,"rms":0.33,"gap":328,"magType":"md","type":"earthquake","title":"M 3.9 - 114 km N of Charlotte Amalie, U.S. Virgin Islands"},"geometry":{"type":"Point","coordinates":[-64.8001,19.3695,49]},"id":"pr2022042000"},
- {"type":"Feature","properties":{"mag":1.03,"place":"24km SW of Toms Place, CA","time":1644558383030,"updated":1644579733426,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691246","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691246.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"nc","code":"73691246","ids":",nc73691246,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.165,"rms":0.12,"gap":137,"magType":"md","type":"earthquake","title":"M 1.0 - 24km SW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.895,37.4333333,7.83]},"id":"nc73691246"},
- {"type":"Feature","properties":{"mag":0.31,"place":"37 km NNE of Amboy, Washington","time":1644558314810,"updated":1644561882930,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815971","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815971.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"uw","code":"61815971","ids":",uw61815971,","sources":",uw,","types":",origin,phase-data,","nst":14,"dmin":0.002109,"rms":0.11,"gap":57,"magType":"ml","type":"earthquake","title":"M 0.3 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.19333333333333,46.201,4.86]},"id":"uw61815971"},
- {"type":"Feature","properties":{"mag":-0.03,"place":"Washington","time":1644558196940,"updated":1644560310580,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815966","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815966.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61815966","ids":",uw61815966,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.001863,"rms":0.14,"gap":87,"magType":"ml","type":"earthquake","title":"M -0.0 - Washington"},"geometry":{"type":"Point","coordinates":[-122.18816666666666,46.2,4.73]},"id":"uw61815966"},
- {"type":"Feature","properties":{"mag":2.0300000000000002,"place":"37 km NNE of Amboy, Washington","time":1644558007330,"updated":1644559838460,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815956","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815956.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":63,"net":"uw","code":"61815956","ids":",uw61815956,","sources":",uw,","types":",origin,phase-data,","nst":46,"dmin":0.003034,"rms":0.19,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.0 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.1855,46.19716666666667,3.24]},"id":"uw61815956"},
- {"type":"Feature","properties":{"mag":1.58,"place":"16 km SSE of Sunnyside, Utah","time":1644557990530,"updated":1644599491120,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029954","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029954.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":38,"net":"uu","code":"60029954","ids":",uu60029954,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.0213,"rms":0.12,"gap":199,"magType":"md","type":"earthquake","title":"M 1.6 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.2991667,39.417,-3.17]},"id":"uu60029954"},
- {"type":"Feature","properties":{"mag":1.94,"place":"16 km SSE of Sunnyside, Utah","time":1644557947640,"updated":1644599457800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481517","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481517.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":58,"net":"uu","code":"60481517","ids":",uu60481517,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.01534,"rms":0.12,"gap":197,"magType":"md","type":"earthquake","title":"M 1.9 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3065,39.4188333,-2]},"id":"uu60481517"},
- {"type":"Feature","properties":{"mag":1.07,"place":"17 km SSE of Waynoka, Oklahoma","time":1644557582940,"updated":1644848305073,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxip","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxip.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ok","code":"2022cxip","ids":",ok2022cxip,","sources":",ok,","types":",origin,phase-data,","nst":33,"dmin":0.007198587392,"rms":0.15,"gap":118,"magType":"ml","type":"earthquake","title":"M 1.1 - 17 km SSE of Waynoka, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.79283333,36.446,8]},"id":"ok2022cxip"},
- {"type":"Feature","properties":{"mag":0.82,"place":"9 km SW of Milford, Utah","time":1644557406570,"updated":1644600847880,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481512","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481512.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"uu","code":"60481512","ids":",uu60481512,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.03104,"rms":0.07,"gap":127,"magType":"md","type":"earthquake","title":"M 0.8 - 9 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0878333,38.3381667,5.24]},"id":"uu60481512"},
- {"type":"Feature","properties":{"mag":2.7,"place":"4 km SW of Fuig, Puerto Rico","time":1644557382890,"updated":1644592780009,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334163","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334163.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"pr","code":"71334163","ids":",pr71334163,us7000gjwt,","sources":",pr,us,","types":",dyfi,origin,phase-data,","nst":38,"dmin":null,"rms":0.25,"gap":171,"magType":"md","type":"earthquake","title":"M 2.7 - 4 km SW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9485,17.9665,6.84]},"id":"pr71334163"},
- {"type":"Feature","properties":{"mag":0.11,"place":"37 km NNE of Amboy, Washington","time":1644557248760,"updated":1644560812830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815951","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815951.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"uw","code":"61815951","ids":",uw61815951,","sources":",uw,","types":",origin,phase-data,","nst":12,"dmin":0.005119,"rms":0.16,"gap":136,"magType":"ml","type":"earthquake","title":"M 0.1 - 37 km NNE of Amboy, Washington"},"geometry":{"type":"Point","coordinates":[-122.18416666666667,46.195166666666665,4.84]},"id":"uw61815951"},
- {"type":"Feature","properties":{"mag":0.53,"place":"8km NW of San Jacinto, CA","time":1644557179930,"updated":1644781551595,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182768","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182768.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40182768","ids":",ci40182768,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.04714,"rms":0.14,"gap":96,"magType":"ml","type":"earthquake","title":"M 0.5 - 8km NW of San Jacinto, CA"},"geometry":{"type":"Point","coordinates":[-117.0061667,33.8428333,6.75]},"id":"ci40182768"},
- {"type":"Feature","properties":{"mag":0.37,"place":"2km NNE of The Geysers, CA","time":1644556891170,"updated":1644557893222,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691241","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691241.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691241","ids":",nc73691241,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.01206,"rms":0.02,"gap":179,"magType":"md","type":"earthquake","title":"M 0.4 - 2km NNE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.74617,38.7948341,1.9]},"id":"nc73691241"},
- {"type":"Feature","properties":{"mag":1.24,"place":"14 km ESE of Drummond, Montana","time":1644556636150,"updated":1644593936860,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538174","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538174.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"mb","code":"80538174","ids":",mb80538174,","sources":",mb,","types":",origin,phase-data,","nst":15,"dmin":0.347,"rms":0.16,"gap":80,"magType":"ml","type":"earthquake","title":"M 1.2 - 14 km ESE of Drummond, Montana"},"geometry":{"type":"Point","coordinates":[-112.9805,46.6113333,10.81]},"id":"mb80538174"},
- {"type":"Feature","properties":{"mag":2.14,"place":"1 km ENE of Maria Antonia, Puerto Rico","time":1644556266850,"updated":1644556970800,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334153","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334153.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"pr","code":"71334153","ids":",pr71334153,","sources":",pr,","types":",origin,phase-data,","nst":13,"dmin":null,"rms":0.26,"gap":138,"magType":"md","type":"earthquake","title":"M 2.1 - 1 km ENE of Maria Antonia, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.874,17.9828333333333,8.9]},"id":"pr71334153"},
- {"type":"Feature","properties":{"mag":1.77,"place":"1km W of San Juan Bautista, CA","time":1644556189010,"updated":1644617891320,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691236","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691236.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"nc","code":"73691236","ids":",nc73691236,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":45,"dmin":0.048,"rms":0.12,"gap":42,"magType":"md","type":"earthquake","title":"M 1.8 - 1km W of San Juan Bautista, CA"},"geometry":{"type":"Point","coordinates":[-121.5531667,36.8478333,6.81]},"id":"nc73691236"},
- {"type":"Feature","properties":{"mag":0.71,"place":"10km SSW of Searles Valley, CA","time":1644555528010,"updated":1644764724899,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182760","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182760.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"ci","code":"40182760","ids":",ci40182760,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.1015,"rms":0.07,"gap":173,"magType":"ml","type":"earthquake","title":"M 0.7 - 10km SSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.464,35.6881667,4.87]},"id":"ci40182760"},
- {"type":"Feature","properties":{"mag":0.18,"place":"12km WNW of Toms Place, CA","time":1644555145710,"updated":1644566291099,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691231","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691231.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691231","ids":",nc73691231,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.01715,"rms":0.05,"gap":238,"magType":"md","type":"earthquake","title":"M 0.2 - 12km WNW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8095,37.5828333,4.96]},"id":"nc73691231"},
- {"type":"Feature","properties":{"mag":0.48,"place":"10km N of Idyllwild, CA","time":1644555036020,"updated":1644781157307,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182752","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182752.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40182752","ids":",ci40182752,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.04922,"rms":0.1,"gap":104,"magType":"ml","type":"earthquake","title":"M 0.5 - 10km N of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7383333,33.8308333,12.22]},"id":"ci40182752"},
- {"type":"Feature","properties":{"mag":4.8,"place":"South Sandwich Islands region","time":1644554886182,"updated":1645062553040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gldp","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gldp.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":354,"net":"us","code":"7000gldp","ids":",us7000gldp,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":8.661,"rms":0.63,"gap":141,"magType":"mb","type":"earthquake","title":"M 4.8 - South Sandwich Islands region"},"geometry":{"type":"Point","coordinates":[-25.4135,-60.5508,10]},"id":"us7000gldp"},
- {"type":"Feature","properties":{"mag":-0.4,"place":"46 km ESE of Beatty, Nevada","time":1644554720831,"updated":1644633489004,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833696","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833696.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833696","ids":",nn00833696,","sources":",nn,","types":",origin,phase-data,","nst":4,"dmin":0.054,"rms":0.1279,"gap":170.71,"magType":"ml","type":"earthquake","title":"M -0.4 - 46 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2551,36.8192,4.5]},"id":"nn00833696"},
- {"type":"Feature","properties":{"mag":0.31,"place":"5km WNW of Cobb, CA","time":1644554700220,"updated":1644907091562,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691226","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691226.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nc","code":"73691226","ids":",nc73691226,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.00563,"rms":0.03,"gap":66,"magType":"md","type":"earthquake","title":"M 0.3 - 5km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.777,38.8315,0.6]},"id":"nc73691226"},
- {"type":"Feature","properties":{"mag":1.28,"place":"5km SE of Brentwood, CA","time":1644554505170,"updated":1644624070886,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691221","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691221.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":25,"net":"nc","code":"73691221","ids":",nc73691221,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.03865,"rms":0.21,"gap":152,"magType":"md","type":"earthquake","title":"M 1.3 - 5km SE of Brentwood, CA"},"geometry":{"type":"Point","coordinates":[-121.6876667,37.895,16.6]},"id":"nc73691221"},
- {"type":"Feature","properties":{"mag":1.97,"place":"9 km SW of Milford, Utah","time":1644554387700,"updated":1644598808950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481507","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481507.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":60,"net":"uu","code":"60481507","ids":",uu60481507,","sources":",uu,","types":",origin,phase-data,","nst":26,"dmin":0.02876,"rms":0.19,"gap":85,"magType":"ml","type":"earthquake","title":"M 2.0 - 9 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0963333,38.3401667,7.2]},"id":"uu60481507"},
- {"type":"Feature","properties":{"mag":0.81,"place":"13km NNE of Thousand Palms, CA","time":1644554297570,"updated":1644853266609,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182744","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182744.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"ci","code":"40182744","ids":",ci40182744,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.07504,"rms":0.13,"gap":57,"magType":"ml","type":"earthquake","title":"M 0.8 - 13km NNE of Thousand Palms, CA"},"geometry":{"type":"Point","coordinates":[-116.3206667,33.9243333,8.75]},"id":"ci40182744"},
- {"type":"Feature","properties":{"mag":1.41,"place":"4km WNW of Byron, CA","time":1644554266750,"updated":1644590772489,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691216","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691216.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"nc","code":"73691216","ids":",nc73691216,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.05006,"rms":0.1,"gap":158,"magType":"md","type":"earthquake","title":"M 1.4 - 4km WNW of Byron, CA"},"geometry":{"type":"Point","coordinates":[-121.6781667,37.885,12.08]},"id":"nc73691216"},
- {"type":"Feature","properties":{"mag":0.71,"place":"2km ENE of The Geysers, CA","time":1644554231030,"updated":1644560951542,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691211","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691211.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":8,"net":"nc","code":"73691211","ids":",nc73691211,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.003121,"rms":0.02,"gap":185,"magType":"md","type":"earthquake","title":"M 0.7 - 2km ENE of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7344971,38.7858315,2.31]},"id":"nc73691211"},
- {"type":"Feature","properties":{"mag":1.02,"place":"10 km SW of Milford, Utah","time":1644553390620,"updated":1644598190960,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481502","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481502.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"uu","code":"60481502","ids":",uu60481502,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.03013,"rms":0.08,"gap":128,"magType":"md","type":"earthquake","title":"M 1.0 - 10 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.099,38.339,6.07]},"id":"uu60481502"},
- {"type":"Feature","properties":{"mag":1.21,"place":"4km NW of Byron, CA","time":1644553353830,"updated":1644589391470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691206","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691206.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"nc","code":"73691206","ids":",nc73691206,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.0485,"rms":0.11,"gap":164,"magType":"md","type":"earthquake","title":"M 1.2 - 4km NW of Byron, CA"},"geometry":{"type":"Point","coordinates":[-121.6736667,37.8878333,12.84]},"id":"nc73691206"},
- {"type":"Feature","properties":{"mag":-0.62,"place":"65 km WNW of Beluga, Alaska","time":1644552779610,"updated":1644611151850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049498","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049498.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"av","code":"91049498","ids":",av91049498,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.09,"gap":242,"magType":"ml","type":"earthquake","title":"M -0.6 - 65 km WNW of Beluga, Alaska"},"geometry":{"type":"Point","coordinates":[-152.256166666667,61.3161666666667,-2.47]},"id":"av91049498"},
- {"type":"Feature","properties":{"mag":0.2,"place":"66 km WNW of Beluga, Alaska","time":1644552754070,"updated":1644611152900,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91486106","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91486106.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"av","code":"91486106","ids":",av91486106,","sources":",av,","types":",origin,phase-data,","nst":8,"dmin":null,"rms":0.03,"gap":152,"magType":"ml","type":"earthquake","title":"M 0.2 - 66 km WNW of Beluga, Alaska"},"geometry":{"type":"Point","coordinates":[-152.258333333333,61.3143333333333,2.09]},"id":"av91486106"},
- {"type":"Feature","properties":{"mag":1.32,"place":"8 km SW of Milford, Utah","time":1644552645780,"updated":1644597908840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481497","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481497.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":27,"net":"uu","code":"60481497","ids":",uu60481497,","sources":",uu,","types":",origin,phase-data,","nst":10,"dmin":0.02079,"rms":0.07,"gap":125,"magType":"ml","type":"earthquake","title":"M 1.3 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0896667,38.3483333,5.24]},"id":"uu60481497"},
- {"type":"Feature","properties":{"mag":0.73,"place":"8 km NW of Wilson, Wyoming","time":1644552521040,"updated":1644597233520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538169","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538169.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"mb","code":"80538169","ids":",mb80538169,","sources":",mb,","types":",origin,phase-data,","nst":8,"dmin":0.061,"rms":0.09,"gap":148,"magType":"ml","type":"earthquake","title":"M 0.7 - 8 km NW of Wilson, Wyoming"},"geometry":{"type":"Point","coordinates":[-110.9548333,43.551,2.39]},"id":"mb80538169"},
- {"type":"Feature","properties":{"mag":0.77,"place":"2km SW of Cobb, CA","time":1644552430240,"updated":1644553813801,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691201","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691201.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":9,"net":"nc","code":"73691201","ids":",nc73691201,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.02769,"rms":0.02,"gap":126,"magType":"md","type":"earthquake","title":"M 0.8 - 2km SW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7401657,38.810833,2.29]},"id":"nc73691201"},
- {"type":"Feature","properties":{"mag":-0.3,"place":"48 km ESE of Beatty, Nevada","time":1644552362119,"updated":1644633488318,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833695","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833695.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833695","ids":",nn00833695,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.05,"rms":0.0773,"gap":321.51,"magType":"ml","type":"earthquake","title":"M -0.3 - 48 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2727,36.7157,5.5]},"id":"nn00833695"},
- {"type":"Feature","properties":{"mag":0.35,"place":"3km NNW of The Geysers, CA","time":1644552150530,"updated":1644559331379,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691196","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691196.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691196","ids":",nc73691196,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.01087,"rms":0.02,"gap":101,"magType":"md","type":"earthquake","title":"M 0.4 - 3km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7730026,38.803833,0.85]},"id":"nc73691196"},
- {"type":"Feature","properties":{"mag":0.44,"place":"22km ESE of Little Lake, CA","time":1644551888320,"updated":1644623859200,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182720","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182720.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":3,"net":"ci","code":"40182720","ids":",ci40182720,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.08535,"rms":0.08,"gap":83,"magType":"ml","type":"earthquake","title":"M 0.4 - 22km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6826667,35.8665,8.21]},"id":"ci40182720"},
- {"type":"Feature","properties":{"mag":1.5,"place":"73 km ESE of Denali National Park, Alaska","time":1644551754243,"updated":1644552001819,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xios4g","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xios4g.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221xios4g","ids":",ak0221xios4g,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.41,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 73 km ESE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-150.4327,63.2338,123.2]},"id":"ak0221xios4g"},
- {"type":"Feature","properties":{"mag":2.49,"place":"11 km SSW of Guánica, Puerto Rico","time":1644551501340,"updated":1644553986610,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334138","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334138.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":95,"net":"pr","code":"71334138","ids":",pr71334138,","sources":",pr,","types":",origin,phase-data,","nst":23,"dmin":null,"rms":0.19,"gap":243,"magType":"md","type":"earthquake","title":"M 2.5 - 11 km SSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9625,17.8778333333333,9.22]},"id":"pr71334138"},
- {"type":"Feature","properties":{"mag":0.32,"place":"22km ESE of Little Lake, CA","time":1644551486500,"updated":1644623651981,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182712","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182712.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":2,"net":"ci","code":"40182712","ids":",ci40182712,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":14,"dmin":0.08519,"rms":0.09,"gap":83,"magType":"ml","type":"earthquake","title":"M 0.3 - 22km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.682,35.8665,8.29]},"id":"ci40182712"},
- {"type":"Feature","properties":{"mag":1.1,"place":"31 km SE of Mina, Nevada","time":1644551332740,"updated":1644633478912,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833675","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833675.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"nn","code":"00833675","ids":",nn00833675,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.07,"rms":0.1538,"gap":111.55,"magType":"ml","type":"earthquake","title":"M 1.1 - 31 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.8816,38.1733,11]},"id":"nn00833675"},
- {"type":"Feature","properties":{"mag":2.18,"place":"10 km N of Lindsay, Oklahoma","time":1644551182760,"updated":1644551399951,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxfc","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxfc.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":73,"net":"ok","code":"2022cxfc","ids":",ok2022cxfc,","sources":",ok,","types":",origin,phase-data,","nst":40,"dmin":0.01673405431,"rms":0.4955753589,"gap":41.55119324,"magType":"ml","type":"earthquake","title":"M 2.2 - 10 km N of Lindsay, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.58265686,34.92658997,3.846759319]},"id":"ok2022cxfc"},
- {"type":"Feature","properties":{"mag":-0.3,"place":"49 km SSW of Rachel, Nevada","time":1644550766850,"updated":1644633487488,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833694","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833694.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833694","ids":",nn00833694,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.071,"rms":0.106,"gap":302.52,"magType":"ml","type":"earthquake","title":"M -0.3 - 49 km SSW of Rachel, Nevada"},"geometry":{"type":"Point","coordinates":[-115.9101,37.2209,5.8]},"id":"nn00833694"},
- {"type":"Feature","properties":{"mag":2.14,"place":"Puerto Rico region","time":1644550368030,"updated":1644552692620,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334128","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334128.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":70,"net":"pr","code":"71334128","ids":",pr71334128,","sources":",pr,","types":",origin,phase-data,","nst":14,"dmin":null,"rms":0.17,"gap":195,"magType":"md","type":"earthquake","title":"M 2.1 - Puerto Rico region"},"geometry":{"type":"Point","coordinates":[-66.8463333333333,17.952,11.76]},"id":"pr71334128"},
- {"type":"Feature","properties":{"mag":-0.2,"place":"25 km SW of Mina, Nevada","time":1644550144053,"updated":1644633499105,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833703","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833703.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833703","ids":",nn00833703,","sources":",nn,","types":",origin,phase-data,","nst":6,"dmin":0.132,"rms":0.0678,"gap":261.3,"magType":"ml","type":"earthquake","title":"M -0.2 - 25 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3374,38.2453,3.7]},"id":"nn00833703"},
- {"type":"Feature","properties":{"mag":-0.3,"place":"48 km ESE of Beatty, Nevada","time":1644550006509,"updated":1644633487055,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833693","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833693.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833693","ids":",nn00833693,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.045,"rms":0.1435,"gap":71.19,"magType":"ml","type":"earthquake","title":"M -0.3 - 48 km ESE of Beatty, Nevada"},"geometry":{"type":"Point","coordinates":[-116.2669,36.7162,6.6]},"id":"nn00833693"},
- {"type":"Feature","properties":{"mag":4.2,"place":"Chile-Bolivia border region","time":1644550002824,"updated":1644551113040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjwd","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjwd.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gjwd","ids":",us7000gjwd,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.588,"rms":0.86,"gap":45,"magType":"mb","type":"earthquake","title":"M 4.2 - Chile-Bolivia border region"},"geometry":{"type":"Point","coordinates":[-68.9174,-21.2956,120.44]},"id":"us7000gjwd"},
- {"type":"Feature","properties":{"mag":0.51,"place":"13km WNW of Anza, CA","time":1644549753470,"updated":1644623372460,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182704","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182704.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"ci","code":"40182704","ids":",ci40182704,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":33,"dmin":0.03682,"rms":0.12,"gap":45,"magType":"ml","type":"earthquake","title":"M 0.5 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8081667,33.5953333,7.08]},"id":"ci40182704"},
- {"type":"Feature","properties":{"mag":0.76,"place":"23km N of Borrego Springs, CA","time":1644549572650,"updated":1644857894993,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182696","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182696.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40182696","ids":",ci40182696,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.1264,"rms":0.2,"gap":86,"magType":"ml","type":"earthquake","title":"M 0.8 - 23km N of Borrego Springs, CA"},"geometry":{"type":"Point","coordinates":[-116.4031667,33.4618333,6.57]},"id":"ci40182696"},
- {"type":"Feature","properties":{"mag":1.84000003,"place":"7 km E of Pāhala, Hawaii","time":1644549364810,"updated":1644549552850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912347","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912347.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":52,"net":"hv","code":"72912347","ids":",hv72912347,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.129999995,"gap":155,"magType":"md","type":"earthquake","title":"M 1.8 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.406997680664,19.2049999237061,33.0499992370605]},"id":"hv72912347"},
- {"type":"Feature","properties":{"mag":1.79,"place":"16 km SSE of Sunnyside, Utah","time":1644549353100,"updated":1644597472850,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481487","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481487.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":49,"net":"uu","code":"60481487","ids":",uu60481487,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.02314,"rms":0.14,"gap":201,"magType":"md","type":"earthquake","title":"M 1.8 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.2966667,39.417,-3.1]},"id":"uu60481487"},
- {"type":"Feature","properties":{"mag":1.84,"place":"18km WSW of Toms Place, CA","time":1644549183970,"updated":1644607091175,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691191","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691191.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":52,"net":"nc","code":"73691191","ids":",nc73691191,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.1126,"rms":0.07,"gap":105,"magType":"md","type":"earthquake","title":"M 1.8 - 18km WSW of Toms Place, CA"},"geometry":{"type":"Point","coordinates":[-118.8486667,37.4783333,4.52]},"id":"nc73691191"},
- {"type":"Feature","properties":{"mag":1.73,"place":"9km W of Covelo, CA","time":1644549046450,"updated":1644886931526,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691186","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691186.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"nc","code":"73691186","ids":",nc73691186,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.09591,"rms":0.15,"gap":69,"magType":"md","type":"earthquake","title":"M 1.7 - 9km W of Covelo, CA"},"geometry":{"type":"Point","coordinates":[-123.3581667,39.7943333,7.08]},"id":"nc73691186"},
- {"type":"Feature","properties":{"mag":1.43,"place":"Rat Islands, Aleutian Islands, Alaska","time":1644548709960,"updated":1644617529560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049503","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049503.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"av","code":"91049503","ids":",av91049503,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.23,"gap":326,"magType":"ml","type":"earthquake","title":"M 1.4 - Rat Islands, Aleutian Islands, Alaska"},"geometry":{"type":"Point","coordinates":[178.345666666667,52.0486666666667,3.11]},"id":"av91049503"},
- {"type":"Feature","properties":{"mag":0.76,"place":"12 km E of Crowder, Oklahoma","time":1644548672679,"updated":1644848823031,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxds","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxds.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ok","code":"2022cxds","ids":",ok2022cxds,","sources":",ok,","types":",origin,phase-data,","nst":23,"dmin":0.1115781046,"rms":0.26,"gap":97,"magType":"ml","type":"earthquake","title":"M 0.8 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53266667,35.10333333,7.72]},"id":"ok2022cxds"},
- {"type":"Feature","properties":{"mag":1.23,"place":"12 km E of Crowder, Oklahoma","time":1644548417250,"updated":1644847168795,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxdo","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxdo.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":23,"net":"ok","code":"2022cxdo","ids":",ok2022cxdo,","sources":",ok,","types":",origin,phase-data,","nst":50,"dmin":0.112477928,"rms":0.27,"gap":98,"magType":"ml","type":"earthquake","title":"M 1.2 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.537,35.10383333,7.73]},"id":"ok2022cxdo"},
- {"type":"Feature","properties":{"mag":0.2,"place":"26 km SW of Mina, Nevada","time":1644547998859,"updated":1644633498380,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833702","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833702.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833702","ids":",nn00833702,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.12,"rms":0.1087,"gap":146.81,"magType":"ml","type":"earthquake","title":"M 0.2 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.352,38.2516,9.6]},"id":"nn00833702"},
- {"type":"Feature","properties":{"mag":2.2,"place":"6 km NW of Medford, Oklahoma","time":1644547918420,"updated":1644587273892,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxdh","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxdh.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":74,"net":"ok","code":"2022cxdh","ids":",ok2022cxdh,","sources":",ok,","types":",origin,phase-data,","nst":87,"dmin":0,"rms":0.2,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.2 - 6 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.78683333,36.8525,7.74]},"id":"ok2022cxdh"},
- {"type":"Feature","properties":{"mag":0.82,"place":"6km NW of The Geysers, CA","time":1644547591610,"updated":1644549132367,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691181","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691181.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":10,"net":"nc","code":"73691181","ids":",nc73691181,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.006971,"rms":0.02,"gap":48,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8013306,38.8219986,2.95]},"id":"nc73691181"},
- {"type":"Feature","properties":{"mag":0.24,"place":"6km NW of The Geysers, CA","time":1644547508430,"updated":1644603552837,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691176","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691176.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nc","code":"73691176","ids":",nc73691176,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.007735,"rms":0.03,"gap":49,"magType":"md","type":"earthquake","title":"M 0.2 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8003333,38.822,3.01]},"id":"nc73691176"},
- {"type":"Feature","properties":{"mag":1.07,"place":"22km ESE of Little Lake, CA","time":1644547439980,"updated":1644622919387,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182680","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182680.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40182680","ids":",ci40182680,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.07726,"rms":0.11,"gap":41,"magType":"ml","type":"earthquake","title":"M 1.1 - 22km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6848333,35.8503333,8.26]},"id":"ci40182680"},
- {"type":"Feature","properties":{"mag":2.3499999,"place":"3 km SSW of Pāhala, Hawaii","time":1644547249170,"updated":1644547579550,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912287","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912287.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":85,"net":"hv","code":"72912287","ids":",hv72912287,","sources":",hv,","types":",origin,phase-data,","nst":46,"dmin":null,"rms":0.119999997,"gap":97,"magType":"md","type":"earthquake","title":"M 2.3 - 3 km SSW of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.48616027832,19.1688327789307,35.8800010681152]},"id":"hv72912287"},
- {"type":"Feature","properties":{"mag":1.24,"place":"6 km SW of Dibble, Oklahoma","time":1644547043760,"updated":1644849398237,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxcv","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxcv.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"ok","code":"2022cxcv","ids":",ok2022cxcv,","sources":",ok,","types":",origin,phase-data,","nst":60,"dmin":0.09358163609,"rms":0.35,"gap":49,"magType":"ml","type":"earthquake","title":"M 1.2 - 6 km SW of Dibble, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.66916667,34.98966667,9.79]},"id":"ok2022cxcv"},
- {"type":"Feature","properties":{"mag":4.4,"place":"167 km SSW of Merizo Village, Guam","time":1644546772146,"updated":1645061702040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gle8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gle8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gle8","ids":",us7000gle8,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.865,"rms":0.66,"gap":266,"magType":"mb","type":"earthquake","title":"M 4.4 - 167 km SSW of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.3318,11.7879,10]},"id":"us7000gle8"},
- {"type":"Feature","properties":{"mag":4.6,"place":"178 km S of Merizo Village, Guam","time":1644546732504,"updated":1645061231040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gldi","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gldi.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gldi","ids":",us7000gldi,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.956,"rms":0.67,"gap":136,"magType":"mb","type":"earthquake","title":"M 4.6 - 178 km S of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.4172,11.6711,10]},"id":"us7000gldi"},
- {"type":"Feature","properties":{"mag":0.87,"place":"1km NNW of The Geysers, CA","time":1644546644620,"updated":1644552972718,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691171","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691171.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":12,"net":"nc","code":"73691171","ids":",nc73691171,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.01165,"rms":0.02,"gap":65,"magType":"md","type":"earthquake","title":"M 0.9 - 1km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7624969,38.7891655,1.79]},"id":"nc73691171"},
- {"type":"Feature","properties":{"mag":1.52,"place":"10km NW of Santa Paula, CA","time":1644546504620,"updated":1644622339840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182664","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182664.geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40182664","ids":",ci40182664,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":33,"dmin":0.01834,"rms":0.24,"gap":50,"magType":"ml","type":"earthquake","title":"M 1.5 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1223333,34.4235,13.72]},"id":"ci40182664"},
- {"type":"Feature","properties":{"mag":1.6,"place":"38 km ESE of Mina, Nevada","time":1644545972719,"updated":1644633477826,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833672","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833672.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"nn","code":"00833672","ids":",nn00833672,","sources":",nn,","types":",origin,phase-data,","nst":16,"dmin":0.124,"rms":0.1406,"gap":125.24,"magType":"ml","type":"earthquake","title":"M 1.6 - 38 km ESE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.7364,38.1984,8.7]},"id":"nn00833672"},
- {"type":"Feature","properties":{"mag":1.55,"place":"12km N of Tecate, B.C., MX","time":1644545773920,"updated":1644594841820,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182656","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182656.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"ci","code":"40182656","ids":",ci40182656,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.04686,"rms":0.15,"gap":72,"magType":"ml","type":"earthquake","title":"M 1.6 - 12km N of Tecate, B.C., MX"},"geometry":{"type":"Point","coordinates":[-116.6166667,32.6775,20.66]},"id":"ci40182656"},
- {"type":"Feature","properties":{"mag":1.53,"place":"8km N of Mojave, CA","time":1644545463730,"updated":1644550302590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182648","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182648.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":36,"net":"ci","code":"40182648","ids":",ci40182648,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":34,"dmin":0.1213,"rms":0.18,"gap":42,"magType":"ml","type":"earthquake","title":"M 1.5 - 8km N of Mojave, CA"},"geometry":{"type":"Point","coordinates":[-118.1595,35.1213333,4.38]},"id":"ci40182648"},
- {"type":"Feature","properties":{"mag":2.2,"place":"5 km E of Pāhala, Hawaii","time":1644545041220,"updated":1644547615040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912222","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912222.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":74,"net":"hv","code":"72912222","ids":",us7000gjw3,hv72912222,","sources":",us,hv,","types":",origin,phase-data,","nst":50,"dmin":null,"rms":0.129999995,"gap":137,"magType":"ml","type":"earthquake","title":"M 2.2 - 5 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.428161621094,19.2099990844727,32.7599983215332]},"id":"hv72912222"},
- {"type":"Feature","properties":{"mag":3.1,"place":"29 km SE of Lamoille, Nevada","time":1644544764028,"updated":1644633476907,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833670","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833670.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"nn","code":"00833670","ids":",us7000gjw0,nn00833670,","sources":",us,nn,","types":",origin,phase-data,","nst":11,"dmin":0.231,"rms":0.1679,"gap":64.34,"magType":"ml","type":"earthquake","title":"M 3.1 - 29 km SE of Lamoille, Nevada"},"geometry":{"type":"Point","coordinates":[-115.2667,40.5145,2.4]},"id":"nn00833670"},
- {"type":"Feature","properties":{"mag":0.85,"place":"5km WNW of Cobb, CA","time":1644544309770,"updated":1644545353941,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691161","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691161.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691161","ids":",nc73691161,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.005083,"rms":0.04,"gap":89,"magType":"md","type":"earthquake","title":"M 0.9 - 5km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7809982,38.8390007,4.36]},"id":"nc73691161"},
- {"type":"Feature","properties":{"mag":1.3,"place":"9 km SW of Milford, Utah","time":1644543457710,"updated":1644597193300,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481472","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481472.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"uu","code":"60481472","ids":",uu60481472,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.02406,"rms":0.09,"gap":126,"magType":"ml","type":"earthquake","title":"M 1.3 - 9 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0953333,38.3448333,5.33]},"id":"uu60481472"},
- {"type":"Feature","properties":{"mag":2.33,"place":"2 km SSW of Guánica, Puerto Rico","time":1644543299000,"updated":1644544126940,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334123","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334123.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":84,"net":"pr","code":"71334123","ids":",pr71334123,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.16,"gap":227,"magType":"md","type":"earthquake","title":"M 2.3 - 2 km SSW of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9146666666667,17.9498333333333,13.85]},"id":"pr71334123"},
- {"type":"Feature","properties":{"mag":1.4,"place":"51 km SSE of Denali National Park, Alaska","time":1644543183138,"updated":1644544018870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xhd381","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xhd381.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221xhd381","ids":",ak0221xhd381,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 51 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4476,63.0925,0]},"id":"ak0221xhd381"},
- {"type":"Feature","properties":{"mag":4.3,"place":"123 km S of Merizo Village, Guam","time":1644542980408,"updated":1645059962040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gld8","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gld8.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":284,"net":"us","code":"7000gld8","ids":",us7000gld8,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":1.453,"rms":1.17,"gap":289,"magType":"mb","type":"earthquake","title":"M 4.3 - 123 km S of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.6071,12.1497,10]},"id":"us7000gld8"},
- {"type":"Feature","properties":{"mag":0.99,"place":"8 km SW of Milford, Utah","time":1644542871410,"updated":1644596944410,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481467","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481467.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":15,"net":"uu","code":"60481467","ids":",uu60481467,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.01954,"rms":0.04,"gap":125,"magType":"md","type":"earthquake","title":"M 1.0 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0905,38.3495,5.59]},"id":"uu60481467"},
- {"type":"Feature","properties":{"mag":2.61,"place":"7 km NW of Medford, Oklahoma","time":1644542812000,"updated":1644587024994,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cxam","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cxam.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"ok","code":"2022cxam","ids":",ok2022cxam,us7000gjvv,","sources":",ok,us,","types":",dyfi,origin,phase-data,","nst":96,"dmin":0,"rms":0.2,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.6 - 7 km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.78716667,36.85333333,7.76]},"id":"ok2022cxam"},
- {"type":"Feature","properties":{"mag":4.6,"place":"south of the Kermadec Islands","time":1644542786960,"updated":1645059029040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gld9","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gld9.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":326,"net":"us","code":"7000gld9","ids":",us7000gld9,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":4.036,"rms":0.94,"gap":71,"magType":"mb","type":"earthquake","title":"M 4.6 - south of the Kermadec Islands"},"geometry":{"type":"Point","coordinates":[-179.6783,-33.0189,86.98]},"id":"us7000gld9"},
- {"type":"Feature","properties":{"mag":4.9,"place":"176 km S of Merizo Village, Guam","time":1644542751439,"updated":1644586969298,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjw2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjw2.geojson","felt":3,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":370,"net":"us","code":"7000gjw2","ids":",us7000gjw2,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.934,"rms":0.89,"gap":93,"magType":"mb","type":"earthquake","title":"M 4.9 - 176 km S of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.4477,11.6871,10]},"id":"us7000gjw2"},
- {"type":"Feature","properties":{"mag":1.94,"place":"10km NW of Santa Paula, CA","time":1644542648930,"updated":1644619982855,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182640","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182640.geojson","felt":4,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":59,"net":"ci","code":"40182640","ids":",ci40182640,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":53,"dmin":0.01654,"rms":0.28,"gap":52,"magType":"ml","type":"earthquake","title":"M 1.9 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1296667,34.4216667,14.99]},"id":"ci40182640"},
- {"type":"Feature","properties":{"mag":1.92,"place":"9 km ENE of Pāhala, Hawaii","time":1644542517670,"updated":1644542847990,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912177","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912177.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":57,"net":"hv","code":"72912177","ids":",hv72912177,","sources":",hv,","types":",origin,phase-data,","nst":37,"dmin":null,"rms":0.170000002,"gap":140,"magType":"ml","type":"earthquake","title":"M 1.9 - 9 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.398498535156,19.234167098999,30.0100002288818]},"id":"hv72912177"},
- {"type":"Feature","properties":{"mag":1.6,"place":"16 km SSE of Sunnyside, Utah","time":1644542372840,"updated":1644596818680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481462","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481462.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":39,"net":"uu","code":"60481462","ids":",uu60481462,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.016,"rms":0.1,"gap":197,"magType":"md","type":"earthquake","title":"M 1.6 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3048333,39.421,-2.14]},"id":"uu60481462"},
- {"type":"Feature","properties":{"mag":1.82,"place":"6 km E of Pāhala, Hawaii","time":1644542298370,"updated":1644542628400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912172","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912172.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":51,"net":"hv","code":"72912172","ids":",hv72912172,","sources":",hv,","types":",origin,phase-data,","nst":44,"dmin":null,"rms":0.119999997,"gap":145,"magType":"ml","type":"earthquake","title":"M 1.8 - 6 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.414993286133,19.2119998931885,34.3400001525879]},"id":"hv72912172"},
- {"type":"Feature","properties":{"mag":2.1,"place":"32 km SE of Mina, Nevada","time":1644542253313,"updated":1644633469054,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833667","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833667.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"nn","code":"00833667","ids":",nn00833667,","sources":",nn,","types":",origin,phase-data,","nst":19,"dmin":0.073,"rms":0.1576,"gap":105.38,"magType":"ml","type":"earthquake","title":"M 2.1 - 32 km SE of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-117.873,38.1648,8.5]},"id":"nn00833667"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644542197950,"updated":1644544273831,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691146","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691146.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691146","ids":",nc73691146,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.0001282,"rms":0.01,"gap":98,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8101654,38.8235016,1.24]},"id":"nc73691146"},
- {"type":"Feature","properties":{"mag":0.36,"place":"2km NNW of The Geysers, CA","time":1644541666370,"updated":1644543612757,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691141","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691141.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691141","ids":",nc73691141,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.006942,"rms":0.01,"gap":116,"magType":"md","type":"earthquake","title":"M 0.4 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7630005,38.7941666,3.96]},"id":"nc73691141"},
- {"type":"Feature","properties":{"mag":2.1,"place":"3 km WSW of Fuig, Puerto Rico","time":1644541569340,"updated":1644542345810,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334113","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334113.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"pr","code":"71334113","ids":",pr71334113,","sources":",pr,","types":",origin,phase-data,","nst":11,"dmin":null,"rms":0.1,"gap":183,"magType":"md","type":"earthquake","title":"M 2.1 - 3 km WSW of Fuig, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9466666666667,17.9706666666667,7.9]},"id":"pr71334113"},
- {"type":"Feature","properties":{"mag":4.4,"place":"127 km SE of Perryville, Alaska","time":1644541550699,"updated":1644555737884,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xh76wb","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xh76wb.geojson","felt":null,"cdi":null,"mmi":2.418,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"ak","code":"0221xh76wb","ids":",us7000gjvl,ak0221xh76wb,","sources":",us,ak,","types":",origin,phase-data,shakemap,","nst":null,"dmin":null,"rms":1.95,"gap":null,"magType":"ml","type":"earthquake","title":"M 4.4 - 127 km SE of Perryville, Alaska"},"geometry":{"type":"Point","coordinates":[-157.8415,55.0387,43.1]},"id":"ak0221xh76wb"},
- {"type":"Feature","properties":{"mag":1.9,"place":"14 km SW of Paul Smiths, New York","time":1644541337705,"updated":1644648368040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gk85","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gk85.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":56,"net":"us","code":"7000gk85","ids":",us7000gk85,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":0.3,"rms":0.35,"gap":68,"magType":"ml","type":"earthquake","title":"M 1.9 - 14 km SW of Paul Smiths, New York"},"geometry":{"type":"Point","coordinates":[-74.3896,44.3534,2.53]},"id":"us7000gk85"},
- {"type":"Feature","properties":{"mag":1.73,"place":"17 km SSE of Sunnyside, Utah","time":1644541124210,"updated":1644596693060,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481457","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481457.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":46,"net":"uu","code":"60481457","ids":",uu60481457,","sources":",uu,","types":",origin,phase-data,","nst":11,"dmin":0.03068,"rms":0.17,"gap":204,"magType":"ml","type":"earthquake","title":"M 1.7 - 17 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.2868333,39.4161667,-3.22]},"id":"uu60481457"},
- {"type":"Feature","properties":{"mag":1.5,"place":"17 km ENE of Coleville, California","time":1644541103568,"updated":1644633462975,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833663","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833663.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":35,"net":"nn","code":"00833663","ids":",nn00833663,","sources":",nn,","types":",origin,phase-data,","nst":23,"dmin":0.144,"rms":0.1647,"gap":79.99,"magType":"ml","type":"earthquake","title":"M 1.5 - 17 km ENE of Coleville, California"},"geometry":{"type":"Point","coordinates":[-119.3211,38.6148,5]},"id":"nn00833663"},
- {"type":"Feature","properties":{"mag":2,"place":"51 km SSE of Denali National Park, Alaska","time":1644540952590,"updated":1644541653931,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221xgwh6g","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221xgwh6g.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"ak","code":"0221xgwh6g","ids":",ak0221xgwh6g,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.0 - 51 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.4205,63.1026,0]},"id":"ak0221xgwh6g"},
- {"type":"Feature","properties":{"mag":1.17,"place":"7km NW of The Geysers, CA","time":1644540504190,"updated":1644548951347,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691136","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691136.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":21,"net":"nc","code":"73691136","ids":",nc73691136,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":24,"dmin":0.001266,"rms":0.02,"gap":38,"magType":"md","type":"earthquake","title":"M 1.2 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8111649,38.8243332,1.39]},"id":"nc73691136"},
- {"type":"Feature","properties":{"mag":1.49,"place":"10km E of Ojai, CA","time":1644540490610,"updated":1644619246743,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182608","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182608.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":34,"net":"ci","code":"40182608","ids":",ci40182608,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.004936,"rms":0.25,"gap":71,"magType":"ml","type":"earthquake","title":"M 1.5 - 10km E of Ojai, CA"},"geometry":{"type":"Point","coordinates":[-119.133,34.4336667,12.64]},"id":"ci40182608"},
- {"type":"Feature","properties":{"mag":0,"place":"15 km NNW of Sutcliffe, Nevada","time":1644540263847,"updated":1644633491992,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833701","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833701.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nn","code":"00833701","ids":",nn00833701,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.105,"rms":0.0147,"gap":191.19,"magType":"ml","type":"earthquake","title":"M 0.0 - 15 km NNW of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.646,40.0892,11]},"id":"nn00833701"},
- {"type":"Feature","properties":{"mag":0.56,"place":"57 km NW of Beluga, Alaska","time":1644540145750,"updated":1644611155050,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91485901","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91485901.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"av","code":"91485901","ids":",av91485901,","sources":",av,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.05,"gap":170,"magType":"ml","type":"earthquake","title":"M 0.6 - 57 km NW of Beluga, Alaska"},"geometry":{"type":"Point","coordinates":[-151.9015,61.4711666666667,6.52]},"id":"av91485901"},
- {"type":"Feature","properties":{"mag":2.64,"place":"10km NW of Santa Paula, CA","time":1644539746380,"updated":1644905608040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182600","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182600.geojson","felt":41,"cdi":4.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":126,"net":"ci","code":"40182600","ids":",ci40182600,us7000gjva,","sources":",ci,us,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":86,"dmin":0.01655,"rms":0.32,"gap":27,"magType":"ml","type":"earthquake","title":"M 2.6 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1346667,34.4205,16.29]},"id":"ci40182600"},
- {"type":"Feature","properties":{"mag":1.68,"place":"10km NNW of Santa Paula, CA","time":1644539704500,"updated":1644616665428,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391484","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391484.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":43,"net":"ci","code":"37391484","ids":",ci37391484,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":17,"dmin":0.0239,"rms":0.3,"gap":48,"magType":"ml","type":"earthquake","title":"M 1.7 - 10km NNW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.11,34.4295,12.39]},"id":"ci37391484"},
- {"type":"Feature","properties":{"mag":1.61,"place":"10km NW of Santa Paula, CA","time":1644539698810,"updated":1644616171377,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182592","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182592.geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"ci","code":"40182592","ids":",ci40182592,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.01088,"rms":0.26,"gap":49,"magType":"ml","type":"earthquake","title":"M 1.6 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1273333,34.43,13.33]},"id":"ci40182592"},
- {"type":"Feature","properties":{"mag":-0.27,"place":"7km NW of The Geysers, CA","time":1644539294220,"updated":1644874929036,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691126","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691126.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691126","ids":",nc73691126,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.004481,"rms":0.04,"gap":96,"magType":"md","type":"earthquake","title":"M -0.3 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8118333,38.8276667,0.72]},"id":"nc73691126"},
- {"type":"Feature","properties":{"mag":3.86,"place":"10km NW of Santa Paula, CA","time":1644539102020,"updated":1645036663608,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182560","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182560.geojson","felt":1302,"cdi":4.8,"mmi":3.843,"alert":null,"status":"reviewed","tsunami":1,"sig":709,"net":"ci","code":"40182560","ids":",ew1644539100,ci40182560,at00r746ho,us7000gjv8,","sources":",ew,ci,at,us,","types":",dyfi,focal-mechanism,impact-link,moment-tensor,nearby-cities,origin,phase-data,scitech-link,shake-alert,shakemap,","nst":114,"dmin":0.02016,"rms":0.3,"gap":22,"magType":"mw","type":"earthquake","title":"M 3.9 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1323333,34.4171667,18.74]},"id":"ci40182560"},
- {"type":"Feature","properties":{"mag":0.93,"place":"7km NW of The Geysers, CA","time":1644538878690,"updated":1644541634661,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691116","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691116.geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":13,"net":"nc","code":"73691116","ids":",nc73691116,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":22,"dmin":0.0009585,"rms":0.03,"gap":37,"magType":"md","type":"earthquake","title":"M 0.9 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8103333,38.8243332,1.46]},"id":"nc73691116"},
- {"type":"Feature","properties":{"mag":0.64,"place":"7km NW of The Geysers, CA","time":1644538751470,"updated":1644540972451,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691111","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691111.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":6,"net":"nc","code":"73691111","ids":",nc73691111,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.0005505,"rms":0.03,"gap":38,"magType":"md","type":"earthquake","title":"M 0.6 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8105011,38.8238335,1.43]},"id":"nc73691111"},
- {"type":"Feature","properties":{"mag":0.99,"place":"6km WNW of Cobb, CA","time":1644538715050,"updated":1644541318507,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691106","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691106.geojson","felt":2,"cdi":0,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":15,"net":"nc","code":"73691106","ids":",nc73691106,","sources":",nc,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.008873,"rms":0.03,"gap":153,"magType":"md","type":"earthquake","title":"M 1.0 - 6km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7819977,38.8503342,1.32]},"id":"nc73691106"},
- {"type":"Feature","properties":{"mag":0.49,"place":"7km NW of The Geysers, CA","time":1644538675250,"updated":1644539653304,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691101","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691101.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":4,"net":"nc","code":"73691101","ids":",nc73691101,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.009152,"rms":0.02,"gap":113,"magType":"md","type":"earthquake","title":"M 0.5 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8188324,38.8131676,2.47]},"id":"nc73691101"},
- {"type":"Feature","properties":{"mag":2.8,"place":"43 km NW of San Antonio, Puerto Rico","time":1644538555220,"updated":1644539741170,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334103","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334103.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"pr","code":"71334103","ids":",pr71334103,","sources":",pr,","types":",origin,phase-data,","nst":10,"dmin":null,"rms":0.26,"gap":324,"magType":"md","type":"earthquake","title":"M 2.8 - 43 km NW of San Antonio, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.3896666666667,18.7716666666667,9.6]},"id":"pr71334103"},
- {"type":"Feature","properties":{"mag":0.79,"place":"36 km NE of Prospect, Oregon","time":1644538145640,"updated":1644560948560,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815941","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815941.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":10,"net":"uw","code":"61815941","ids":",uw61815941,","sources":",uw,","types":",origin,phase-data,","nst":3,"dmin":0.03347,"rms":0.07,"gap":261,"magType":"md","type":"earthquake","title":"M 0.8 - 36 km NE of Prospect, Oregon"},"geometry":{"type":"Point","coordinates":[-122.15,42.967666666666666,4.22]},"id":"uw61815941"},
- {"type":"Feature","properties":{"mag":2.07,"place":"2 km S of Guánica, Puerto Rico","time":1644538056080,"updated":1644539951980,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334093","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334093.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":66,"net":"pr","code":"71334093","ids":",pr71334093,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.16,"gap":232,"magType":"md","type":"earthquake","title":"M 2.1 - 2 km S of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.9046666666667,17.9521666666667,10.44]},"id":"pr71334093"},
- {"type":"Feature","properties":{"mag":4.5,"place":"18 km ENE of Iwaki, Japan","time":1644537898487,"updated":1644539629040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjv7","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjv7.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":312,"net":"us","code":"7000gjv7","ids":",us7000gjv7,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.36,"rms":0.73,"gap":149,"magType":"mb","type":"earthquake","title":"M 4.5 - 18 km ENE of Iwaki, Japan"},"geometry":{"type":"Point","coordinates":[141.0558,37.1392,38.73]},"id":"us7000gjv7"},
- {"type":"Feature","properties":{"mag":3.4,"place":"258 km SE of Chiniak, Alaska","time":1644537770036,"updated":1644538306040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjv3","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjv3.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"7000gjv3","ids":",us7000gjv3,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.555,"rms":0.29,"gap":282,"magType":"ml","type":"earthquake","title":"M 3.4 - 258 km SE of Chiniak, Alaska"},"geometry":{"type":"Point","coordinates":[-148.7992,56.2856,10]},"id":"us7000gjv3"},
- {"type":"Feature","properties":{"mag":1.3,"place":"9km NNW of Santa Paula, CA","time":1644537674270,"updated":1644549831572,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182520","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182520.geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":26,"net":"ci","code":"40182520","ids":",ci40182520,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.02488,"rms":0.2,"gap":102,"magType":"ml","type":"earthquake","title":"M 1.3 - 9km NNW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1091667,34.4285,15.61]},"id":"ci40182520"},
- {"type":"Feature","properties":{"mag":2.01,"place":"2 km SSE of Boquerón, Puerto Rico","time":1644537585970,"updated":1644541812830,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334108","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334108.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":62,"net":"pr","code":"71334108","ids":",pr71334108,","sources":",pr,","types":",origin,phase-data,","nst":3,"dmin":null,"rms":0.15,"gap":325,"magType":"md","type":"earthquake","title":"M 2.0 - 2 km SSE of Boquerón, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-67.1636666666667,18.0078333333333,15.65]},"id":"pr71334108"},
- {"type":"Feature","properties":{"mag":0.56,"place":"21km ESE of Little Lake, CA","time":1644537555920,"updated":1644869950753,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182528","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182528.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"ci","code":"40182528","ids":",ci40182528,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":11,"dmin":0.04921,"rms":0.08,"gap":101,"magType":"ml","type":"earthquake","title":"M 0.6 - 21km ESE of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7121667,35.8328333,7.3]},"id":"ci40182528"},
- {"type":"Feature","properties":{"mag":2.00999999,"place":"2 km ENE of Pāhala, Hawaii","time":1644537257190,"updated":1644537456350,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912087","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912087.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":62,"net":"hv","code":"72912087","ids":",hv72912087,","sources":",hv,","types":",origin,phase-data,","nst":40,"dmin":null,"rms":0.119999997,"gap":107,"magType":"md","type":"earthquake","title":"M 2.0 - 2 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.457992553711,19.2145004272461,33.3300018310547]},"id":"hv72912087"},
- {"type":"Feature","properties":{"mag":1.7,"place":"137 km ESE of McCarthy, Alaska","time":1644537244107,"updated":1644537406625,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w71s56","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w71s56.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":44,"net":"ak","code":"0221w71s56","ids":",ak0221w71s56,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.7 - 137 km ESE of McCarthy, Alaska"},"geometry":{"type":"Point","coordinates":[-140.4004,61.2013,15]},"id":"ak0221w71s56"},
- {"type":"Feature","properties":{"mag":2.26,"place":"10km NW of Santa Paula, CA","time":1644537150250,"updated":1644868310310,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182512","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182512.geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":79,"net":"ci","code":"40182512","ids":",ci40182512,","sources":",ci,","types":",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":49,"dmin":0.0166,"rms":0.26,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.3 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1316667,34.421,15.61]},"id":"ci40182512"},
- {"type":"Feature","properties":{"mag":2.5,"place":"44 km NW of Elfin Cove, Alaska","time":1644536887815,"updated":1644976605804,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjv0","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjv0.geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"7000gjv0","ids":",us7000gjv0,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":0.616,"rms":0.63,"gap":158,"magType":"ml","type":"earthquake","title":"M 2.5 - 44 km NW of Elfin Cove, Alaska"},"geometry":{"type":"Point","coordinates":[-136.9233,58.456,1.29]},"id":"us7000gjv0"},
- {"type":"Feature","properties":{"mag":0.67,"place":"24 km SSE of West Yellowstone, Montana","time":1644536804690,"updated":1644596136520,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481442","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481442.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":7,"net":"uu","code":"60481442","ids":",uu60481442,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.1012,"rms":0.23,"gap":120,"magType":"md","type":"earthquake","title":"M 0.7 - 24 km SSE of West Yellowstone, Montana"},"geometry":{"type":"Point","coordinates":[-110.9768333,44.4575,7.36]},"id":"uu60481442"},
- {"type":"Feature","properties":{"mag":0.53,"place":"5 km SE of Mossyrock, Washington","time":1644536403950,"updated":1644561440740,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815936","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815936.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uw","code":"61815936","ids":",uw61815936,","sources":",uw,","types":",origin,phase-data,","nst":13,"dmin":0.1122,"rms":0.09,"gap":131,"magType":"ml","type":"earthquake","title":"M 0.5 - 5 km SE of Mossyrock, Washington"},"geometry":{"type":"Point","coordinates":[-122.4275,46.49933333333333,19.85]},"id":"uw61815936"},
- {"type":"Feature","properties":{"mag":0.84,"place":"5km NNW of The Geysers, CA","time":1644536384450,"updated":1644537918276,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691086","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691086.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691086","ids":",nc73691086,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.00293,"rms":0.01,"gap":114,"magType":"md","type":"earthquake","title":"M 0.8 - 5km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7776642,38.8149986,0.1]},"id":"nc73691086"},
- {"type":"Feature","properties":{"mag":0.36,"place":"6km WNW of Cobb, CA","time":1644536297170,"updated":1644537253100,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691081","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691081.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":2,"net":"nc","code":"73691081","ids":",nc73691081,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":7,"dmin":0.004944,"rms":0.01,"gap":113,"magType":"md","type":"earthquake","title":"M 0.4 - 6km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.7911682,38.8334999,2.12]},"id":"nc73691081"},
- {"type":"Feature","properties":{"mag":1.81,"place":"10 km WSW of Milford, Utah","time":1644536167040,"updated":1644595795400,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481432","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481432.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"uu","code":"60481432","ids":",uu60481432,","sources":",uu,","types":",origin,phase-data,","nst":15,"dmin":0.02331,"rms":0.18,"gap":129,"magType":"ml","type":"earthquake","title":"M 1.8 - 10 km WSW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.1133333,38.3513333,9.93]},"id":"uu60481432"},
- {"type":"Feature","properties":{"mag":1.9,"place":"41 km SE of Denali National Park, Alaska","time":1644536038357,"updated":1644536525140,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w6xeal","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w6xeal.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221w6xeal","ids":",ak0221w6xeal,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 41 km SE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0754,63.3041,0]},"id":"ak0221w6xeal"},
- {"type":"Feature","properties":{"mag":2.04,"place":"10km NW of Santa Paula, CA","time":1644535961990,"updated":1644867355962,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182480","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182480.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":64,"net":"ci","code":"40182480","ids":",ci40182480,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":42,"dmin":0.01417,"rms":0.24,"gap":43,"magType":"ml","type":"earthquake","title":"M 2.0 - 10km NW of Santa Paula, CA"},"geometry":{"type":"Point","coordinates":[-119.1285,34.4248333,14.84]},"id":"ci40182480"},
- {"type":"Feature","properties":{"mag":1.08,"place":"12km SW of Searles Valley, CA","time":1644535537080,"updated":1644866181839,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182464","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182464.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":18,"net":"ci","code":"40182464","ids":",ci40182464,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":21,"dmin":0.1236,"rms":0.14,"gap":91,"magType":"ml","type":"earthquake","title":"M 1.1 - 12km SW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5078333,35.7046667,7.29]},"id":"ci40182464"},
- {"type":"Feature","properties":{"mag":1.42,"place":"46km NE of Holtville, CA","time":1644535409720,"updated":1644865836804,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182472","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182472.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":31,"net":"ci","code":"40182472","ids":",ci40182472,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.09807,"rms":0.29,"gap":66,"magType":"ml","type":"quarry blast","title":"M 1.4 Quarry Blast - 46km NE of Holtville, CA"},"geometry":{"type":"Point","coordinates":[-115.0018333,33.0685,-0.2]},"id":"ci40182472"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km W of Cobb, CA","time":1644535234520,"updated":1644536235031,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691076","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691076.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691076","ids":",nc73691076,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01475,"rms":0.01,"gap":131,"magType":"md","type":"earthquake","title":"M 0.9 - 8km W of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8171692,38.8349991,1.25]},"id":"nc73691076"},
- {"type":"Feature","properties":{"mag":0.94,"place":"8 km SW of Milford, Utah","time":1644535081150,"updated":1644595115870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481427","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481427.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"uu","code":"60481427","ids":",uu60481427,","sources":",uu,","types":",origin,phase-data,","nst":9,"dmin":0.02033,"rms":0.04,"gap":125,"magType":"md","type":"earthquake","title":"M 0.9 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0866667,38.3493333,5.37]},"id":"uu60481427"},
- {"type":"Feature","properties":{"mag":2.22,"place":"4 km SSE of Pāhala, Hawaii","time":1644534609310,"updated":1644534939590,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912057","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912057.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":76,"net":"hv","code":"72912057","ids":",hv72912057,","sources":",hv,","types":",origin,phase-data,","nst":47,"dmin":null,"rms":0.100000001,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.2 - 4 km SSE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.468994140625,19.1650009155273,35.0900001525879]},"id":"hv72912057"},
- {"type":"Feature","properties":{"mag":1.11,"place":"8 km SW of Milford, Utah","time":1644534385350,"updated":1644594867110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481422","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481422.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"uu","code":"60481422","ids":",uu60481422,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.02174,"rms":0.03,"gap":189,"magType":"md","type":"earthquake","title":"M 1.1 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.09,38.3473333,5.86]},"id":"uu60481422"},
- {"type":"Feature","properties":{"mag":1.62,"place":"9 km SSE of Guánica, Puerto Rico","time":1644534099680,"updated":1644537428840,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/pr71334088","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71334088.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":40,"net":"pr","code":"71334088","ids":",pr71334088,","sources":",pr,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.08,"gap":296,"magType":"md","type":"earthquake","title":"M 1.6 - 9 km SSE of Guánica, Puerto Rico"},"geometry":{"type":"Point","coordinates":[-66.8813333333333,17.891,13.16]},"id":"pr71334088"},
- {"type":"Feature","properties":{"mag":1.81,"place":"24 km W of Volcano, Hawaii","time":1644533288470,"updated":1644533619650,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72912027","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72912027.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"hv","code":"72912027","ids":",hv72912027,","sources":",hv,","types":",origin,phase-data,","nst":34,"dmin":null,"rms":0.280000001,"gap":46,"magType":"ml","type":"earthquake","title":"M 1.8 - 24 km W of Volcano, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.462173461914,19.421667098999,1.97000002861023]},"id":"hv72912027"},
- {"type":"Feature","properties":{"mag":1.36,"place":"8 km NNW of Redmond, Utah","time":1644532458970,"updated":1644534853990,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029944","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029944.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":28,"net":"uu","code":"60029944","ids":",uu60029944,","sources":",uu,","types":",origin,phase-data,","nst":6,"dmin":0.1797,"rms":0.03,"gap":146,"magType":"md","type":"earthquake","title":"M 1.4 - 8 km NNW of Redmond, Utah"},"geometry":{"type":"Point","coordinates":[-111.9075,39.074,16.65]},"id":"uu60029944"},
- {"type":"Feature","properties":{"mag":0.54,"place":"7 km SW of Milford, Utah","time":1644532439950,"updated":1644535165150,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60029949","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60029949.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":4,"net":"uu","code":"60029949","ids":",uu60029949,","sources":",uu,","types":",origin,phase-data,","nst":4,"dmin":0.01558,"rms":0.02,"gap":241,"magType":"md","type":"earthquake","title":"M 0.5 - 7 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0788333,38.3586667,4.17]},"id":"uu60029949"},
- {"type":"Feature","properties":{"mag":1.55,"place":"7 km N of Redmond, Utah","time":1644532438870,"updated":1644534513680,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481402","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481402.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"uu","code":"60481402","ids":",uu60481402,","sources":",uu,","types":",origin,phase-data,","nst":8,"dmin":0.2037,"rms":0.18,"gap":120,"magType":"md","type":"earthquake","title":"M 1.6 - 7 km N of Redmond, Utah"},"geometry":{"type":"Point","coordinates":[-111.8636667,39.0705,16.81]},"id":"uu60481402"},
- {"type":"Feature","properties":{"mag":1.8,"place":"4 km E of Houston, Alaska","time":1644532182659,"updated":1644532398472,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w6b2m1","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w6b2m1.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221w6b2m1","ids":",ak0221w6b2m1,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.88,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 4 km E of Houston, Alaska"},"geometry":{"type":"Point","coordinates":[-149.7409,61.6349,30.3]},"id":"ak0221w6b2m1"},
- {"type":"Feature","properties":{"mag":-0.26,"place":"8km WNW of Cobb, CA","time":1644531738720,"updated":1644867959596,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691071","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691071.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691071","ids":",nc73691071,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.01223,"rms":0.04,"gap":50,"magType":"md","type":"earthquake","title":"M -0.3 - 8km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8076667,38.8355,2.2]},"id":"nc73691071"},
- {"type":"Feature","properties":{"mag":1.5,"place":"22 km ENE of Willow, Alaska","time":1644531417900,"updated":1644531577063,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w68bha","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w68bha.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":35,"net":"ak","code":"0221w68bha","ids":",ak0221w68bha,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.5 - 22 km ENE of Willow, Alaska"},"geometry":{"type":"Point","coordinates":[-149.6424,61.8317,47.5]},"id":"ak0221w68bha"},
- {"type":"Feature","properties":{"mag":1.01,"place":"9km S of Idyllwild, CA","time":1644531296130,"updated":1644865699120,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182384","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182384.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40182384","ids":",ci40182384,","sources":",ci,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":30,"dmin":0.04625,"rms":0.1,"gap":88,"magType":"ml","type":"earthquake","title":"M 1.0 - 9km S of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7283333,33.6605,13.96]},"id":"ci40182384"},
- {"type":"Feature","properties":{"mag":0.63,"place":"9km S of Idyllwild, CA","time":1644531219230,"updated":1644865166264,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182376","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182376.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40182376","ids":",ci40182376,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.04435,"rms":0.08,"gap":89,"magType":"ml","type":"earthquake","title":"M 0.6 - 9km S of Idyllwild, CA"},"geometry":{"type":"Point","coordinates":[-116.7261667,33.6611667,13.74]},"id":"ci40182376"},
- {"type":"Feature","properties":{"mag":0.84,"place":"7km NW of The Geysers, CA","time":1644531110660,"updated":1644533219679,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691066","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691066.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691066","ids":",nc73691066,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":13,"dmin":0.0005039,"rms":0.02,"gap":67,"magType":"md","type":"earthquake","title":"M 0.8 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8096695,38.8230019,1.38]},"id":"nc73691066"},
- {"type":"Feature","properties":{"mag":1.76,"place":"8 km SW of Milford, Utah","time":1644530690450,"updated":1644532109920,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481387","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481387.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":48,"net":"uu","code":"60481387","ids":",uu60481387,","sources":",uu,","types":",origin,phase-data,","nst":18,"dmin":0.02089,"rms":0.12,"gap":94,"magType":"ml","type":"earthquake","title":"M 1.8 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.0925,38.348,6.32]},"id":"uu60481387"},
- {"type":"Feature","properties":{"mag":0.71,"place":"65 km NE of Nikolski, Alaska","time":1644530543210,"updated":1644551115870,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049488","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049488.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"av","code":"91049488","ids":",av91049488,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.26,"gap":300,"magType":"ml","type":"earthquake","title":"M 0.7 - 65 km NE of Nikolski, Alaska"},"geometry":{"type":"Point","coordinates":[-168.207666666667,53.3731666666667,-0.01]},"id":"av91049488"},
- {"type":"Feature","properties":{"mag":1.45,"place":"5km ESE of Interlaken, CA","time":1644530325740,"updated":1644611651838,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691056","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691056.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":32,"net":"nc","code":"73691056","ids":",nc73691056,","sources":",nc,","types":",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,","nst":36,"dmin":0.02007,"rms":0.11,"gap":56,"magType":"md","type":"earthquake","title":"M 1.5 - 5km ESE of Interlaken, CA"},"geometry":{"type":"Point","coordinates":[-121.684,36.9403333,10.94]},"id":"nc73691056"},
- {"type":"Feature","properties":{"mag":0.85,"place":"8km NW of The Geysers, CA","time":1644530217320,"updated":1644530770429,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691051","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691051.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691051","ids":",nc73691051,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.006153,"rms":0.01,"gap":123,"magType":"md","type":"earthquake","title":"M 0.9 - 8km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8128357,38.8291664,2.08]},"id":"nc73691051"},
- {"type":"Feature","properties":{"mag":1.03,"place":"3km ENE of Glen Avon, CA","time":1644530028860,"updated":1644864969242,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182360","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182360.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"ci","code":"40182360","ids":",ci40182360,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":23,"dmin":0.0111,"rms":0.19,"gap":99,"magType":"ml","type":"quarry blast","title":"M 1.0 Quarry Blast - 3km ENE of Glen Avon, CA"},"geometry":{"type":"Point","coordinates":[-117.4506667,34.0205,-0.3]},"id":"ci40182360"},
- {"type":"Feature","properties":{"mag":0.97,"place":"22km E of Little Lake, CA","time":1644529583090,"updated":1644863512078,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182344","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182344.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":14,"net":"ci","code":"40182344","ids":",ci40182344,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.008798,"rms":0.07,"gap":64,"magType":"ml","type":"earthquake","title":"M 1.0 - 22km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.66,35.9438333,2.66]},"id":"ci40182344"},
- {"type":"Feature","properties":{"mag":1.6,"place":"54 km NE of Denali National Park, Alaska","time":1644529388711,"updated":1644529884407,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w5skec","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w5skec.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":39,"net":"ak","code":"0221w5skec","ids":",ak0221w5skec,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":1.17,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.6 - 54 km NE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0057,63.9127,0]},"id":"ak0221w5skec"},
- {"type":"Feature","properties":{"mag":1.47,"place":"34 km WSW of Adak, Alaska","time":1644529020370,"updated":1644531437640,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91485746","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91485746.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":33,"net":"av","code":"91485746","ids":",av91485746,","sources":",av,","types":",origin,phase-data,","nst":5,"dmin":null,"rms":0.09,"gap":279,"magType":"ml","type":"earthquake","title":"M 1.5 - 34 km WSW of Adak, Alaska"},"geometry":{"type":"Point","coordinates":[-177.073,51.7218333333333,4.76]},"id":"av91485746"},
- {"type":"Feature","properties":{"mag":1.01,"place":"68 km NE of Nikolski, Alaska","time":1644528967750,"updated":1644550812630,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049483","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049483.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":16,"net":"av","code":"91049483","ids":",av91049483,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.26,"gap":255,"magType":"ml","type":"earthquake","title":"M 1.0 - 68 km NE of Nikolski, Alaska"},"geometry":{"type":"Point","coordinates":[-168.157666666667,53.3915,2.73]},"id":"av91049483"},
- {"type":"Feature","properties":{"mag":-0.13,"place":"28km NNW of Searles Valley, CA","time":1644528860400,"updated":1644864396048,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182320","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182320.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40182320","ids":",ci40182320,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":5,"dmin":0.05697,"rms":0.12,"gap":214,"magType":"ml","type":"earthquake","title":"M -0.1 - 28km NNW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5581667,35.9805,5.78]},"id":"ci40182320"},
- {"type":"Feature","properties":{"mag":0.88,"place":"66 km NE of Nikolski, Alaska","time":1644528784730,"updated":1644550934110,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049478","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049478.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":12,"net":"av","code":"91049478","ids":",av91049478,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.23,"gap":295,"magType":"ml","type":"earthquake","title":"M 0.9 - 66 km NE of Nikolski, Alaska"},"geometry":{"type":"Point","coordinates":[-168.212833333333,53.3886666666667,-0.98]},"id":"av91049478"},
- {"type":"Feature","properties":{"mag":2.5,"place":"56 km S of Whites City, New Mexico","time":1644528661099,"updated":1644608307259,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022cwss","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022cwss.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"tx","code":"2022cwss","ids":",us7000gjte,tx2022cwss,","sources":",us,tx,","types":",origin,phase-data,","nst":24,"dmin":0.0486077253,"rms":0.3,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.5 - 56 km S of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.4438132,31.66640728,6.260107422]},"id":"tx2022cwss"},
- {"type":"Feature","properties":{"mag":-0.11,"place":"1km WNW of The Geysers, CA","time":1644528623980,"updated":1644865106014,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691041","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691041.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691041","ids":",nc73691041,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":18,"dmin":0.009809,"rms":0.03,"gap":88,"magType":"md","type":"earthquake","title":"M -0.1 - 1km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7683333,38.7803333,1.37]},"id":"nc73691041"},
- {"type":"Feature","properties":{"mag":0.91,"place":"69 km NE of Nikolski, Alaska","time":1644528493390,"updated":1644549649530,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/av91049468","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av91049468.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":13,"net":"av","code":"91049468","ids":",av91049468,","sources":",av,","types":",origin,phase-data,","nst":6,"dmin":null,"rms":0.33,"gap":232,"magType":"ml","type":"earthquake","title":"M 0.9 - 69 km NE of Nikolski, Alaska"},"geometry":{"type":"Point","coordinates":[-168.157333333333,53.4006666666667,0.73]},"id":"av91049468"},
- {"type":"Feature","properties":{"mag":2.5,"place":"59 km WNW of Anchor Point, Alaska","time":1644528339115,"updated":1644528762509,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w5oruy","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w5oruy.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":96,"net":"ak","code":"0221w5oruy","ids":",ak0221w5oruy,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.79,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 59 km WNW of Anchor Point, Alaska"},"geometry":{"type":"Point","coordinates":[-152.8686,59.8899,94.9]},"id":"ak0221w5oruy"},
- {"type":"Feature","properties":{"mag":1.05,"place":"7km NW of The Geysers, CA","time":1644528173740,"updated":1644529091274,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691036","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691036.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":17,"net":"nc","code":"73691036","ids":",nc73691036,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.008958,"rms":0.02,"gap":52,"magType":"md","type":"earthquake","title":"M 1.1 - 7km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8190002,38.8129997,2.82]},"id":"nc73691036"},
- {"type":"Feature","properties":{"mag":1.4,"place":"38 km NNE of Petersville, Alaska","time":1644528164013,"updated":1644528341496,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w5o53l","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w5o53l.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221w5o53l","ids":",ak0221w5o53l,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 38 km NNE of Petersville, Alaska"},"geometry":{"type":"Point","coordinates":[-150.554,62.8261,87.4]},"id":"ak0221w5o53l"},
- {"type":"Feature","properties":{"mag":0.17,"place":"5km WNW of The Geysers, CA","time":1644528039490,"updated":1644864616251,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691031","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691031.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73691031","ids":",nc73691031,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":31,"dmin":0.005376,"rms":0.04,"gap":79,"magType":"md","type":"earthquake","title":"M 0.2 - 5km WNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.8068333,38.7928333,3.12]},"id":"nc73691031"},
- {"type":"Feature","properties":{"mag":4.4,"place":"152 km SSW of Merizo Village, Guam","time":1644528007799,"updated":1644554021542,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjth","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjth.geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":298,"net":"us","code":"7000gjth","ids":",us7000gjth,","sources":",us,","types":",dyfi,origin,phase-data,","nst":null,"dmin":1.729,"rms":0.4,"gap":182,"magType":"mb","type":"earthquake","title":"M 4.4 - 152 km SSW of Merizo Village, Guam"},"geometry":{"type":"Point","coordinates":[144.3745,11.9187,10]},"id":"us7000gjth"},
- {"type":"Feature","properties":{"mag":0.76,"place":"18km E of Little Lake, CA","time":1644527794020,"updated":1644530973241,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182256","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182256.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40182256","ids":",ci40182256,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":12,"dmin":0.04951,"rms":0.07,"gap":61,"magType":"ml","type":"earthquake","title":"M 0.8 - 18km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.7026667,35.9223333,3.95]},"id":"ci40182256"},
- {"type":"Feature","properties":{"mag":1.4,"place":"38 km SE of Knik River, Alaska","time":1644526883369,"updated":1644527069495,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w5jlgw","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w5jlgw.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":30,"net":"ak","code":"0221w5jlgw","ids":",ak0221w5jlgw,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.75,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.4 - 38 km SE of Knik River, Alaska"},"geometry":{"type":"Point","coordinates":[-148.5097,61.176,36.8]},"id":"ak0221w5jlgw"},
- {"type":"Feature","properties":{"mag":0.84,"place":"6km NW of The Geysers, CA","time":1644526829460,"updated":1644530292384,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691021","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691021.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":11,"net":"nc","code":"73691021","ids":",nc73691021,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":10,"dmin":0.009532,"rms":0.01,"gap":64,"magType":"md","type":"earthquake","title":"M 0.8 - 6km NW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7946701,38.8175011,2.86]},"id":"nc73691021"},
- {"type":"Feature","properties":{"mag":0.7,"place":"26 km SW of Mina, Nevada","time":1644526226078,"updated":1644547163496,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833657","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833657.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":8,"net":"nn","code":"00833657","ids":",nn00833657,","sources":",nn,","types":",origin,phase-data,","nst":9,"dmin":0.116,"rms":0.1205,"gap":144.78,"magType":"ml","type":"earthquake","title":"M 0.7 - 26 km SW of Mina, Nevada"},"geometry":{"type":"Point","coordinates":[-118.3578,38.2554,9.9]},"id":"nn00833657"},
- {"type":"Feature","properties":{"mag":1.15,"place":"7km WNW of Cobb, CA","time":1644525895840,"updated":1644535813947,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73691006","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73691006.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":20,"net":"nc","code":"73691006","ids":",nc73691006,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":25,"dmin":0.008391,"rms":0.03,"gap":60,"magType":"md","type":"earthquake","title":"M 1.2 - 7km WNW of Cobb, CA"},"geometry":{"type":"Point","coordinates":[-122.8001633,38.8349991,2.07]},"id":"nc73691006"},
- {"type":"Feature","properties":{"mag":1.75,"place":"6 km ENE of Pāhala, Hawaii","time":1644525699030,"updated":1644526029470,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72911917","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72911917.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":47,"net":"hv","code":"72911917","ids":",hv72911917,","sources":",hv,","types":",origin,phase-data,","nst":33,"dmin":null,"rms":0.150000006,"gap":138,"magType":"ml","type":"earthquake","title":"M 1.8 - 6 km ENE of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.417831420898,19.2188339233398,31.5699996948242]},"id":"hv72911917"},
- {"type":"Feature","properties":{"mag":1.81,"place":"12 km E of Crowder, Oklahoma","time":1644525369480,"updated":1644525904813,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ok2022cwqx","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2022cwqx.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":50,"net":"ok","code":"2022cwqx","ids":",ok2022cwqx,","sources":",ok,","types":",origin,phase-data,","nst":58,"dmin":0.1034796938,"rms":0.21,"gap":54,"magType":"ml","type":"earthquake","title":"M 1.8 - 12 km E of Crowder, Oklahoma"},"geometry":{"type":"Point","coordinates":[-95.53816667,35.115,7.67]},"id":"ok2022cwqx"},
- {"type":"Feature","properties":{"mag":2.35,"place":"19 km NE of Stanley, Idaho","time":1644525094850,"updated":1644526178020,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/mb80538139","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb80538139.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":85,"net":"mb","code":"80538139","ids":",mb80538139,","sources":",mb,","types":",origin,phase-data,","nst":11,"dmin":0.833,"rms":0.22,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.4 - 19 km NE of Stanley, Idaho"},"geometry":{"type":"Point","coordinates":[-114.7833333,44.3516667,6.94]},"id":"mb80538139"},
- {"type":"Feature","properties":{"mag":1.64,"place":"6km SE of Bonita, CA","time":1644524627410,"updated":1644588694364,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182144","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182144.geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":42,"net":"ci","code":"40182144","ids":",ci40182144,","sources":",ci,","types":",dyfi,nearby-cities,origin,phase-data,scitech-link,","nst":29,"dmin":0.04543,"rms":0.19,"gap":126,"magType":"ml","type":"quarry blast","title":"M 1.6 Quarry Blast - 6km SE of Bonita, CA"},"geometry":{"type":"Point","coordinates":[-116.9798333,32.6253333,-0.36]},"id":"ci40182144"},
- {"type":"Feature","properties":{"mag":1.15,"place":"14km WSW of Searles Valley, CA","time":1644524309440,"updated":1644527638972,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182128","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182128.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":20,"net":"ci","code":"40182128","ids":",ci40182128,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":19,"dmin":0.08337,"rms":0.09,"gap":155,"magType":"ml","type":"earthquake","title":"M 1.2 - 14km WSW of Searles Valley, CA"},"geometry":{"type":"Point","coordinates":[-117.5546667,35.7398333,10.94]},"id":"ci40182128"},
- {"type":"Feature","properties":{"mag":4.2,"place":"144 km NNE of Laikit, Laikit II (Dimembe), Indonesia","time":1644524187851,"updated":1644528584040,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/us7000gjsr","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000gjsr.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":271,"net":"us","code":"7000gjsr","ids":",us7000gjsr,","sources":",us,","types":",origin,phase-data,","nst":null,"dmin":2.551,"rms":0.88,"gap":112,"magType":"mb","type":"earthquake","title":"M 4.2 - 144 km NNE of Laikit, Laikit II (Dimembe), Indonesia"},"geometry":{"type":"Point","coordinates":[125.6051,2.6308,60.27]},"id":"us7000gjsr"},
- {"type":"Feature","properties":{"mag":0.78,"place":"8km ENE of Coso Junction, CA","time":1644524105490,"updated":1644529882914,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci37391004","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37391004.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"37391004","ids":",ci37391004,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":16,"dmin":0.04855,"rms":0.1,"gap":72,"magType":"ml","type":"earthquake","title":"M 0.8 - 8km ENE of Coso Junction, CA"},"geometry":{"type":"Point","coordinates":[-117.864,36.0695,2.41]},"id":"ci37391004"},
- {"type":"Feature","properties":{"mag":-0.25,"place":"21km E of Little Lake, CA","time":1644524096220,"updated":1644529547854,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182120","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182120.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"ci","code":"40182120","ids":",ci40182120,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":3,"dmin":0.02345,"rms":0.01,"gap":252,"magType":"ml","type":"earthquake","title":"M -0.3 - 21km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.6706667,35.9311667,2.05]},"id":"ci40182120"},
- {"type":"Feature","properties":{"mag":0.3,"place":"18 km NNW of Sutcliffe, Nevada","time":1644523593586,"updated":1644547162669,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nn00833654","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00833654.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":1,"net":"nn","code":"00833654","ids":",nn00833654,","sources":",nn,","types":",origin,phase-data,","nst":3,"dmin":0.078,"rms":0.1481,"gap":191.49,"magType":"ml","type":"earthquake","title":"M 0.3 - 18 km NNW of Sutcliffe, Nevada"},"geometry":{"type":"Point","coordinates":[-119.6669,40.1106,16.3]},"id":"nn00833654"},
- {"type":"Feature","properties":{"mag":1.11,"place":"8 km WSW of Mossyrock, Washington","time":1644523521790,"updated":1644561626670,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uw61815906","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw61815906.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":19,"net":"uw","code":"61815906","ids":",uw61815906,","sources":",uw,","types":",origin,phase-data,","nst":11,"dmin":0.06817,"rms":0.16,"gap":185,"magType":"ml","type":"explosion","title":"M 1.1 Explosion - 8 km WSW of Mossyrock, Washington"},"geometry":{"type":"Point","coordinates":[-122.58316666666667,46.489333333333335,-0.75]},"id":"uw61815906"},
- {"type":"Feature","properties":{"mag":3.58,"place":"7 km E of Pāhala, Hawaii","time":1644523509900,"updated":1644738434647,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72911857","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72911857.geojson","felt":13,"cdi":3.4,"mmi":3.88,"alert":null,"status":"reviewed","tsunami":0,"sig":202,"net":"hv","code":"72911857","ids":",hv72911857,us7000gjsk,","sources":",hv,us,","types":",dyfi,origin,phase-data,shakemap,","nst":52,"dmin":null,"rms":0.12,"gap":148,"magType":"ml","type":"earthquake","title":"M 3.6 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.406166666667,19.2155,34.08]},"id":"hv72911857"},
- {"type":"Feature","properties":{"mag":0.78,"place":"22km E of Little Lake, CA","time":1644523431660,"updated":1644529536759,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182112","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182112.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":9,"net":"ci","code":"40182112","ids":",ci40182112,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":9,"dmin":0.01064,"rms":0.06,"gap":76,"magType":"ml","type":"earthquake","title":"M 0.8 - 22km E of Little Lake, CA"},"geometry":{"type":"Point","coordinates":[-117.663,35.945,2.67]},"id":"ci40182112"},
- {"type":"Feature","properties":{"mag":2.07,"place":"7 km E of Pāhala, Hawaii","time":1644523365610,"updated":1644524030149,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/hv72911852","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv72911852.geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":66,"net":"hv","code":"72911852","ids":",hv72911852,","sources":",hv,","types":",dyfi,origin,phase-data,","nst":41,"dmin":null,"rms":0.140000001,"gap":152,"magType":"ml","type":"earthquake","title":"M 2.1 - 7 km E of Pāhala, Hawaii"},"geometry":{"type":"Point","coordinates":[-155.410003662109,19.2056674957275,31.9500007629395]},"id":"hv72911852"},
- {"type":"Feature","properties":{"mag":1.9,"place":"51 km SSE of Denali National Park, Alaska","time":1644523281576,"updated":1644523543803,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w4y5q2","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w4y5q2.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":56,"net":"ak","code":"0221w4y5q2","ids":",ak0221w4y5q2,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.61,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.9 - 51 km SSE of Denali National Park, Alaska"},"geometry":{"type":"Point","coordinates":[-151.406,63.1016,4.9]},"id":"ak0221w4y5q2"},
- {"type":"Feature","properties":{"mag":0.13,"place":"14km ESE of Mammoth Lakes, CA","time":1644523007270,"updated":1644528731238,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73690996","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73690996.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":0,"net":"nc","code":"73690996","ids":",nc73690996,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":8,"dmin":0.01151,"rms":0.03,"gap":239,"magType":"md","type":"earthquake","title":"M 0.1 - 14km ESE of Mammoth Lakes, CA"},"geometry":{"type":"Point","coordinates":[-118.8413333,37.5838333,3.58]},"id":"nc73690996"},
- {"type":"Feature","properties":{"mag":1.26,"place":"8 km SW of Milford, Utah","time":1644522920300,"updated":1644524319950,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481337","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481337.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":24,"net":"uu","code":"60481337","ids":",uu60481337,","sources":",uu,","types":",origin,phase-data,","nst":12,"dmin":0.02108,"rms":0.07,"gap":126,"magType":"md","type":"earthquake","title":"M 1.3 - 8 km SW of Milford, Utah"},"geometry":{"type":"Point","coordinates":[-113.092,38.3478333,6.09]},"id":"uu60481337"},
- {"type":"Feature","properties":{"mag":0.61,"place":"13km WNW of Anza, CA","time":1644521742030,"updated":1644522900036,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ci40182080","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40182080.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":6,"net":"ci","code":"40182080","ids":",ci40182080,","sources":",ci,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":15,"dmin":0.03442,"rms":0.1,"gap":92,"magType":"ml","type":"earthquake","title":"M 0.6 - 13km WNW of Anza, CA"},"geometry":{"type":"Point","coordinates":[-116.8053333,33.5935,7.32]},"id":"ci40182080"},
- {"type":"Feature","properties":{"mag":1.56,"place":"16 km SSE of Sunnyside, Utah","time":1644521638900,"updated":1644524446000,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/uu60481332","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu60481332.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":37,"net":"uu","code":"60481332","ids":",uu60481332,","sources":",uu,","types":",origin,phase-data,","nst":7,"dmin":0.01331,"rms":0.12,"gap":196,"magType":"md","type":"earthquake","title":"M 1.6 - 16 km SSE of Sunnyside, Utah"},"geometry":{"type":"Point","coordinates":[-110.3101667,39.4175,-1.96]},"id":"uu60481332"},
- {"type":"Feature","properties":{"mag":2.1,"place":"60 km SSW of Whites City, New Mexico","time":1644521608620,"updated":1644609623919,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/tx2022cwov","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2022cwov.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":68,"net":"tx","code":"2022cwov","ids":",tx2022cwov,","sources":",tx,","types":",origin,phase-data,","nst":15,"dmin":0.05000082611,"rms":0.3,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.1 - 60 km SSW of Whites City, New Mexico"},"geometry":{"type":"Point","coordinates":[-104.556717,31.65363549,7.596923828000001]},"id":"tx2022cwov"},
- {"type":"Feature","properties":{"mag":0.59,"place":"2km NNW of The Geysers, CA","time":1644521358620,"updated":1644529272291,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/nc73690986","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73690986.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":5,"net":"nc","code":"73690986","ids":",nc73690986,","sources":",nc,","types":",nearby-cities,origin,phase-data,scitech-link,","nst":6,"dmin":0.009623,"rms":0.02,"gap":109,"magType":"md","type":"earthquake","title":"M 0.6 - 2km NNW of The Geysers, CA"},"geometry":{"type":"Point","coordinates":[-122.7603333,38.791,1.51]},"id":"nc73690986"},
- {"type":"Feature","properties":{"mag":1.8,"place":"55 km NW of Rampart, Alaska","time":1644521152969,"updated":1644521510505,"tz":null,"url":"https://earthquake.usgs.gov/earthquakes/eventpage/ak0221w4hxqz","detail":"https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak0221w4hxqz.geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"automatic","tsunami":0,"sig":50,"net":"ak","code":"0221w4hxqz","ids":",ak0221w4hxqz,","sources":",ak,","types":",origin,","nst":null,"dmin":null,"rms":0.42,"gap":null,"magType":"ml","type":"earthquake","title":"M 1.8 - 55 km NW of Rampart, Alaska"},"geometry":{"type":"Point","coordinates":[-151.0341,65.851,5.1]},"id":"ak0221w4hxqz"}],"bbox":[-179.6783,-60.5508,-3.47,179.9997,70.8194,595.46]}
diff --git a/packages/examples/src/assets/example.png b/packages/examples/src/assets/example.png
deleted file mode 100755
index 5351ba3c8..000000000
Binary files a/packages/examples/src/assets/example.png and /dev/null differ
diff --git a/packages/examples/src/assets/geojson/earthquakes.json b/packages/examples/src/assets/geojson/earthquakes.json
new file mode 100644
index 000000000..f43e49b64
--- /dev/null
+++ b/packages/examples/src/assets/geojson/earthquakes.json
@@ -0,0 +1,69464 @@
+{
+ "type": "FeatureCollection",
+ "metadata": {
+ "generated": 1732799817000,
+ "url": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_week.geojson",
+ "title": "USGS All Earthquakes, Past Week",
+ "status": 200,
+ "api": "1.14.1",
+ "count": 1959
+ },
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "60 km W of Cantwell, Alaska",
+ "time": 1732798066930,
+ "updated": 1732798233850,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024faxdxz9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024faxdxz9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024faxdxz9",
+ "ids": ",ak024faxdxz9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.77,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 60 km W of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.1611, 63.3718, 2.7] },
+ "id": "ak024faxdxz9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732797808700,
+ "updated": 1732799369672,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092051",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092051.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75092051",
+ "ids": ",nc75092051,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.006616,
+ "rms": 0.02,
+ "gap": 122,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.765830993652, 38.8246650695801, 1.9099999666214]
+ },
+ "id": "nc75092051"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "10 km NNW of Anza, CA",
+ "time": 1732797378620,
+ "updated": 1732797695335,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989408",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989408.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40989408",
+ "ids": ",ci40989408,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 67,
+ "dmin": 0.0435,
+ "rms": 0.17,
+ "gap": 23,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 10 km NNW of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7125, 33.6396667, 13.69]
+ },
+ "id": "ci40989408"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "9 km WNW of Cobb, CA",
+ "time": 1732796970200,
+ "updated": 1732798337664,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092046",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092046.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75092046",
+ "ids": ",nc75092046,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.008449,
+ "rms": 0.01,
+ "gap": 92,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 9 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.824668884277, 38.8386650085449, 2.16000008583069]
+ },
+ "id": "nc75092046"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "12 km SE of Coalinga, CA",
+ "time": 1732796712500,
+ "updated": 1732797739504,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092041",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092041.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75092041",
+ "ids": ",nc75092041,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.05811,
+ "rms": 0.02,
+ "gap": 92,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 12 km SE of Coalinga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.259002685547, 36.0666656494141, 4.46000003814697]
+ },
+ "id": "nc75092041"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "72 km WSW of Cantwell, Alaska",
+ "time": 1732795499128,
+ "updated": 1732795612214,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fax4r4o",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fax4r4o.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024fax4r4o",
+ "ids": ",ak024fax4r4o,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 72 km WSW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.2684, 63.1359, 96.7]
+ },
+ "id": "ak024fax4r4o"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.29,
+ "place": "3 km SE of Indios, Puerto Rico",
+ "time": 1732794774960,
+ "updated": 1732796365140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467103",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467103.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "pr",
+ "code": "71467103",
+ "ids": ",pr71467103,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.06988,
+ "rms": 0.09,
+ "gap": 207,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 3 km SE of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.795, 17.9686666666667, 6.97]
+ },
+ "id": "pr71467103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.37,
+ "place": "6 km NNW of Brawley, CA",
+ "time": 1732794743670,
+ "updated": 1732794990276,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989400",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989400.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "ci",
+ "code": "40989400",
+ "ids": ",ci40989400,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.02697,
+ "rms": 0.3,
+ "gap": 41,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 6 km NNW of Brawley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.5535, 33.0256667, 7.36]
+ },
+ "id": "ci40989400"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "4 km NE of Lake Henshaw, CA",
+ "time": 1732794666480,
+ "updated": 1732794866946,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989392",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989392.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40989392",
+ "ids": ",ci40989392,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.04136,
+ "rms": 0.15,
+ "gap": 33,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 4 km NE of Lake Henshaw, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.735, 33.2723333, 9.91]
+ },
+ "id": "ci40989392"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.13,
+ "place": "69 km NNE of San Juan, Puerto Rico",
+ "time": 1732794580660,
+ "updated": 1732798526660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467088",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467088.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 151,
+ "net": "pr",
+ "code": "71467088",
+ "ids": ",pr71467088,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.7757,
+ "rms": 0.28,
+ "gap": 254,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.1 - 69 km NNE of San Juan, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-65.9648333333333, 19.0806666666667, 24.03]
+ },
+ "id": "pr71467088"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "28 km SSW of Susitna, Alaska",
+ "time": 1732794472415,
+ "updated": 1732794591607,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fawsisp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fawsisp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024fawsisp",
+ "ids": ",ak024fawsisp,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 28 km SSW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6381, 61.2953, 34.2]
+ },
+ "id": "ak024fawsisp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.82,
+ "place": "2 km E of Magas Arriba, Puerto Rico",
+ "time": 1732793971800,
+ "updated": 1732795301730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467078",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467078.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 122,
+ "net": "pr",
+ "code": "71467078",
+ "ids": ",pr71467078,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.1082,
+ "rms": 0.27,
+ "gap": 155,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.8 - 2 km E of Magas Arriba, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.7438333333333, 18.0191666666667, 12.77]
+ },
+ "id": "pr71467078"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "52 km WNW of Happy Valley, Alaska",
+ "time": 1732793951981,
+ "updated": 1732794068421,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fawqpy6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fawqpy6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024fawqpy6",
+ "ids": ",ak024fawqpy6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 52 km WNW of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.6069, 60.1095, 85.5]
+ },
+ "id": "ak024fawqpy6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.29,
+ "place": "3 km N of Fontana, CA",
+ "time": 1732792483770,
+ "updated": 1732793135970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989376",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989376.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40989376",
+ "ids": ",ci40989376,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 65,
+ "dmin": 0.03268,
+ "rms": 0.17,
+ "gap": 30,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 3 km N of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4596667, 34.1273333, 9.18]
+ },
+ "id": "ci40989376"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.35,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732791226680,
+ "updated": 1732796838392,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092031",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092031.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "nc",
+ "code": "75092031",
+ "ids": ",nc75092031,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.002849,
+ "rms": 0.01,
+ "gap": 131,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.880996704102, 38.84033203125, 2.76999998092651]
+ },
+ "id": "nc75092031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "9 km NE of Healdsburg, CA",
+ "time": 1732791152380,
+ "updated": 1732795769288,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092026",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092026.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75092026",
+ "ids": ",nc75092026,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.05155,
+ "rms": 0.05,
+ "gap": 136,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 9 km NE of Healdsburg, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.803833007812, 38.6741676330566, 6.48999977111816]
+ },
+ "id": "nc75092026"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.44,
+ "place": "3 km WSW of Pāhala, Hawaii",
+ "time": 1732791031110,
+ "updated": 1732791205620,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544832",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544832.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "hv",
+ "code": "74544832",
+ "ids": ",hv74544832,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 60,
+ "dmin": 0.05127,
+ "rms": 0.129999995,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.4 - 3 km WSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.504837036133, 19.1871662139893, 30.5699996948242]
+ },
+ "id": "hv74544832"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.39,
+ "place": "15 km NNE of Red Bluff, CA",
+ "time": 1732790941010,
+ "updated": 1732794579040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092021",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092021.geojson",
+ "felt": 2,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 177,
+ "net": "nc",
+ "code": "75092021",
+ "ids": ",nc75092021,us7000nupi,",
+ "sources": ",nc,us,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 55,
+ "dmin": null,
+ "rms": 0.25,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.4 - 15 km NNE of Red Bluff, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.176002502441, 40.3014984130859, 21.8400001525879]
+ },
+ "id": "nc75092021"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "30 km W of Ashkāsham, Afghanistan",
+ "time": 1732790940101,
+ "updated": 1732796000303,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nupk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nupk.geojson",
+ "felt": 2,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 401,
+ "net": "us",
+ "code": "7000nupk",
+ "ids": ",us7000nupk,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 60,
+ "dmin": 2.151,
+ "rms": 0.98,
+ "gap": 77,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - 30 km W of Ashkāsham, Afghanistan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [71.1984, 36.6657, 215.713]
+ },
+ "id": "us7000nupk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "11 km NNW of Rancho Cucamonga, CA",
+ "time": 1732790802180,
+ "updated": 1732791072897,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989368",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989368.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40989368",
+ "ids": ",ci40989368,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.03477,
+ "rms": 0.14,
+ "gap": 77,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 11 km NNW of Rancho Cucamonga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6255, 34.2173333, 10.18]
+ },
+ "id": "ci40989368"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "4 km ENE of Beluga, Alaska",
+ "time": 1732790758405,
+ "updated": 1732790856071,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024faw6o80",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024faw6o80.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024faw6o80",
+ "ids": ",ak024faw6o80,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.61,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 4 km ENE of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0051, 61.1504, 43.8]
+ },
+ "id": "ak024faw6o80"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.0999999,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732790630430,
+ "updated": 1732790719650,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544817",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544817.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "hv",
+ "code": "74544817",
+ "ids": ",hv74544817,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.00866,
+ "rms": 0.209999993,
+ "gap": 144,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.238327026367, 19.3819999694824, 0.930000007152557]
+ },
+ "id": "hv74544817"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "9 km E of Borrego Springs, CA",
+ "time": 1732790125800,
+ "updated": 1732790405828,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989360",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989360.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40989360",
+ "ids": ",ci40989360,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.07725,
+ "rms": 0.19,
+ "gap": 102,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 9 km E of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.2806667, 33.2668333, 11.85]
+ },
+ "id": "ci40989360"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732789142650,
+ "updated": 1732793073976,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75092016",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75092016.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75092016",
+ "ids": ",nc75092016,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.0101,
+ "rms": 0.02,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.822334289551, 38.8201675415039, 2.3199999332428]
+ },
+ "id": "nc75092016"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5635496377944946,
+ "place": "34 km NNE of Amboy, Washington",
+ "time": 1732788691700,
+ "updated": 1732788800750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62062016",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62062016.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "uw",
+ "code": "62062016",
+ "ids": ",uw62062016,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": null,
+ "rms": 0.0700000003,
+ "gap": 123,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 34 km NNE of Amboy, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.33000183105469, 46.20750045776367, 14.3400001525879
+ ]
+ },
+ "id": "uw62062016"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732788124710,
+ "updated": 1732788297650,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544727",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544727.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 55,
+ "net": "hv",
+ "code": "74544727",
+ "ids": ",hv74544727,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.00822,
+ "rms": 0.150000006,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.242340087891, 19.3816661834717, 0.810000002384186]
+ },
+ "id": "hv74544727"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.04,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732788031610,
+ "updated": 1732788203060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544722",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544722.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 64,
+ "net": "hv",
+ "code": "74544722",
+ "ids": ",hv74544722,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.00548,
+ "rms": 0.170000002,
+ "gap": 93,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.246337890625, 19.3826675415039, 0.790000021457672]
+ },
+ "id": "hv74544722"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732787930360,
+ "updated": 1732788101370,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544712",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544712.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "hv",
+ "code": "74544712",
+ "ids": ",hv74544712,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.008246,
+ "rms": 0.159999996,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.243667602539, 19.3813323974609, 1.26999998092651]
+ },
+ "id": "hv74544712"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "12 km W of Fishhook, Alaska",
+ "time": 1732787846465,
+ "updated": 1732787968928,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024favnqqu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024favnqqu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024favnqqu",
+ "ids": ",ak024favnqqu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 12 km W of Fishhook, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.4753, 61.7617, 30.4]
+ },
+ "id": "ak024favnqqu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "33 km SSE of Funny River, Alaska",
+ "time": 1732787745530,
+ "updated": 1732787844104,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024favncs9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024favncs9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024favncs9",
+ "ids": ",ak024favncs9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.48,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 33 km SSE of Funny River, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4276, 60.2475, 39.9]
+ },
+ "id": "ak024favncs9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01999998,
+ "place": "10 km NE of Pāhala, Hawaii",
+ "time": 1732787518880,
+ "updated": 1732787625200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544702",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544702.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "hv",
+ "code": "74544702",
+ "ids": ",hv74544702,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 42,
+ "dmin": 0.03003,
+ "rms": 0.25,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 10 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.406326293945, 19.2665004730225, 29.2900009155273]
+ },
+ "id": "hv74544702"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "17 km E of Ridgecrest, CA",
+ "time": 1732786606890,
+ "updated": 1732786823922,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989352",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989352.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40989352",
+ "ids": ",ci40989352,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.03699,
+ "rms": 0.14,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 17 km E of Ridgecrest, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4836667, 35.6191667, 4.37]
+ },
+ "id": "ci40989352"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "62 km W of Nanwalek, Alaska",
+ "time": 1732785856348,
+ "updated": 1732786013261,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024favgnc2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024favgnc2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024favgnc2",
+ "ids": ",ak024favgnc2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 62 km W of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.0102, 59.3223, 96.7]
+ },
+ "id": "ak024favgnc2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "34 km W of Anchor Point, Alaska",
+ "time": 1732785089126,
+ "updated": 1732785214641,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024favdw0g",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024favdw0g.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024favdw0g",
+ "ids": ",ak024favdw0g,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.54,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 34 km W of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.4263, 59.8375, 65.2]
+ },
+ "id": "ak024favdw0g"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "17 km S of Malibu Beach, CA",
+ "time": 1732785025270,
+ "updated": 1732785314321,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989336",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989336.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ci",
+ "code": "40989336",
+ "ids": ",ci40989336,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 34,
+ "dmin": 0.1553,
+ "rms": 0.18,
+ "gap": 155,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 17 km S of Malibu Beach, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.689, 33.8836667, 11.71]
+ },
+ "id": "ci40989336"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.71,
+ "place": "17 km NNW of Petrolia, CA",
+ "time": 1732784676690,
+ "updated": 1732788568455,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091996",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091996.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 45,
+ "net": "nc",
+ "code": "75091996",
+ "ids": ",nc75091996,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.0651,
+ "rms": 0.07,
+ "gap": 278,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 17 km NNW of Petrolia, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-124.411003112793, 40.4425010681152, 22.4799995422363]
+ },
+ "id": "nc75091996"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.16000009,
+ "place": "12 km E of Pāhala, Hawaii",
+ "time": 1732783998140,
+ "updated": 1732784096610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544652",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544652.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "hv",
+ "code": "74544652",
+ "ids": ",hv74544652,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 39,
+ "dmin": 0.04078,
+ "rms": 0.159999996,
+ "gap": 175,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 12 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.359832763672, 19.2175006866455, 31.6000003814697]
+ },
+ "id": "hv74544652"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "5 km NNW of The Geysers, CA",
+ "time": 1732783972440,
+ "updated": 1732787671354,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091991",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091991.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75091991",
+ "ids": ",nc75091991,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.008617,
+ "rms": 0.01,
+ "gap": 87,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 5 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.790168762207, 38.8176651000977, 2.77999997138977]
+ },
+ "id": "nc75091991"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "28 km NW of Susitna, Alaska",
+ "time": 1732783868870,
+ "updated": 1732783958021,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fav0zhj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fav0zhj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024fav0zhj",
+ "ids": ",ak024fav0zhj,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 28 km NW of Susitna, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.9, 61.7212, 50.5] },
+ "id": "ak024fav0zhj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.88,
+ "place": "8 km E of Borrego Springs, CA",
+ "time": 1732783683320,
+ "updated": 1732783948209,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989320",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989320.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40989320",
+ "ids": ",ci40989320,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 46,
+ "dmin": 0.08081,
+ "rms": 0.21,
+ "gap": 52,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 8 km E of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.2858333, 33.2691667, 4.57]
+ },
+ "id": "ci40989320"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "2 km N of Loma Linda, CA",
+ "time": 1732783540240,
+ "updated": 1732783846714,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989312",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989312.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40989312",
+ "ids": ",ci40989312,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 55,
+ "dmin": 0.0436,
+ "rms": 0.19,
+ "gap": 25,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km N of Loma Linda, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.2585, 34.0666667, 14.32]
+ },
+ "id": "ci40989312"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "34 km ENE of Chase, Alaska",
+ "time": 1732783455433,
+ "updated": 1732783565511,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fauzhzb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fauzhzb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024fauzhzb",
+ "ids": ",ak024fauzhzb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 34 km ENE of Chase, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.4885, 62.5772, 48] },
+ "id": "ak024fauzhzb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "88 km NW of Yakutat, Alaska",
+ "time": 1732783057158,
+ "updated": 1732783192362,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fauy1n7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fauy1n7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024fauy1n7",
+ "ids": ",ak024fauy1n7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.13,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 88 km NW of Yakutat, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-140.8211, 60.1199, 22.4]
+ },
+ "id": "ak024fauy1n7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.2,
+ "place": "119 km SE of Yakutat, Alaska",
+ "time": 1732783030499,
+ "updated": 1732784065040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuny",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuny.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 158,
+ "net": "us",
+ "code": "7000nuny",
+ "ids": ",us7000nuny,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 1.35,
+ "rms": 0.9,
+ "gap": 145,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.2 - 119 km SE of Yakutat, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-137.9967, 58.9394, 10] },
+ "id": "us7000nuny"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "15 km W of Searles Valley, CA",
+ "time": 1732783003820,
+ "updated": 1732783239328,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989304",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989304.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40989304",
+ "ids": ",ci40989304,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.06149,
+ "rms": 0.17,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 15 km W of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.569, 35.7586667, 6.3]
+ },
+ "id": "ci40989304"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "31 km WNW of Hakui, Japan",
+ "time": 1732782666542,
+ "updated": 1732784482756,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nunw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nunw.geojson",
+ "felt": 1,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nunw",
+ "ids": ",us7000nunw,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 90,
+ "dmin": 1.474,
+ "rms": 1,
+ "gap": 55,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.5 - 31 km WNW of Hakui, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [136.4381, 36.946, 10] },
+ "id": "us7000nunw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "11 km SSE of Salcha, Alaska",
+ "time": 1732781222071,
+ "updated": 1732781351432,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024faurjgf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024faurjgf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024faurjgf",
+ "ids": ",ak024faurjgf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.91,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 11 km SSE of Salcha, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.8432, 64.4217, 12.9]
+ },
+ "id": "ak024faurjgf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.21,
+ "place": "0 km SSE of Honaunau-Napoopoo, Hawaii",
+ "time": 1732781213000,
+ "updated": 1732781386540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544627",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544627.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 75,
+ "net": "hv",
+ "code": "74544627",
+ "ids": ",hv74544627,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 0.1598,
+ "rms": 0.219999999,
+ "gap": 202,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 0 km SSE of Honaunau-Napoopoo, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.861663818359, 19.4488334655762, 8.0600004196167]
+ },
+ "id": "hv74544627"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "25 km SE of Susitna North, Alaska",
+ "time": 1732780731492,
+ "updated": 1732780866493,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fauh56l",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fauh56l.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024fauh56l",
+ "ids": ",ak024fauh56l,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.35,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 25 km SE of Susitna North, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.5068, 61.9931, 25.9]
+ },
+ "id": "ak024fauh56l"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "14 km NE of Julian, CA",
+ "time": 1732780217540,
+ "updated": 1732780473999,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989288",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989288.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40989288",
+ "ids": ",ci40989288,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 46,
+ "dmin": 0.08018,
+ "rms": 0.18,
+ "gap": 50,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 14 km NE of Julian, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4745, 33.1516667, 13.82]
+ },
+ "id": "ci40989288"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.5,
+ "place": "12 km SE of Canton, Mississippi",
+ "time": 1732780085767,
+ "updated": 1732781354040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nunr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nunr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 96,
+ "net": "us",
+ "code": "7000nunr",
+ "ids": ",us7000nunr,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.573,
+ "rms": 0.47,
+ "gap": 77,
+ "magType": "mb_lg",
+ "type": "earthquake",
+ "title": "M 2.5 - 12 km SE of Canton, Mississippi"
+ },
+ "geometry": { "type": "Point", "coordinates": [-89.949, 32.5305, 5] },
+ "id": "us7000nunr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "15 km N of Ocotillo, CA",
+ "time": 1732780032040,
+ "updated": 1732780250899,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989280",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989280.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "ci",
+ "code": "40989280",
+ "ids": ",ci40989280,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.02167,
+ "rms": 0.2,
+ "gap": 40,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 15 km N of Ocotillo, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.9868333, 32.871, 8.21]
+ },
+ "id": "ci40989280"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.6,
+ "place": "7 km SSE of Maria Antonia, Puerto Rico",
+ "time": 1732778815690,
+ "updated": 1732779744010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467073",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467073.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 104,
+ "net": "pr",
+ "code": "71467073",
+ "ids": ",pr71467073,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.05599,
+ "rms": 0.14,
+ "gap": 225,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.6 - 7 km SSE of Maria Antonia, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8525, 17.9181666666667, 11.67]
+ },
+ "id": "pr71467073"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01999998,
+ "place": "2 km SE of Pāhala, Hawaii",
+ "time": 1732778131320,
+ "updated": 1732778247800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544562",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544562.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "hv",
+ "code": "74544562",
+ "ids": ",hv74544562,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.03267,
+ "rms": 0.119999997,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 2 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.464660644531, 19.1881675720215, 31.5699996948242]
+ },
+ "id": "hv74544562"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "34 km N of Beluga, Alaska",
+ "time": 1732777758610,
+ "updated": 1732777873466,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fau6ko9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fau6ko9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024fau6ko9",
+ "ids": ",ak024fau6ko9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 34 km N of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.2063, 61.4485, 17.3]
+ },
+ "id": "ak024fau6ko9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.69,
+ "place": "15 km NNW of Piru, CA",
+ "time": 1732777406870,
+ "updated": 1732778067300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989272",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989272.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ci",
+ "code": "40989272",
+ "ids": ",ci40989272,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 57,
+ "dmin": 0.06308,
+ "rms": 0.25,
+ "gap": 30,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 15 km NNW of Piru, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8716667, 34.5303333, 9.07]
+ },
+ "id": "ci40989272"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.36,
+ "place": "67 km N of San Juan, Puerto Rico",
+ "time": 1732777074780,
+ "updated": 1732778129040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467063",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467063.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 174,
+ "net": "pr",
+ "code": "71467063",
+ "ids": ",pr71467063,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.7581,
+ "rms": 0.37,
+ "gap": 246,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.4 - 67 km N of San Juan, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-65.9946666666667, 19.0665, 25.35]
+ },
+ "id": "pr71467063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "6 km WSW of Susitna, Alaska",
+ "time": 1732776913310,
+ "updated": 1732777026316,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fatuzhf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fatuzhf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024fatuzhf",
+ "ids": ",ak024fatuzhf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km WSW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6116, 61.5145, 62.3]
+ },
+ "id": "ak024fatuzhf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.68,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732776720140,
+ "updated": 1732784968029,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091976",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091976.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75091976",
+ "ids": ",nc75091976,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.006107,
+ "rms": 0.01,
+ "gap": 72,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.797332763672, 38.8356666564941, 1.92999994754791]
+ },
+ "id": "nc75091976"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.95,
+ "place": "7 km SE of Maria Antonia, Puerto Rico",
+ "time": 1732776467810,
+ "updated": 1732777592240,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467053",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467053.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 134,
+ "net": "pr",
+ "code": "71467053",
+ "ids": ",pr71467053,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.05976,
+ "rms": 0.08,
+ "gap": 223,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.0 - 7 km SE of Maria Antonia, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8488333333333, 17.9225, 11.48]
+ },
+ "id": "pr71467053"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "42 km WNW of Huarmey, Peru",
+ "time": 1732776403522,
+ "updated": 1732783821040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nunb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nunb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000nunb",
+ "ids": ",us7000nunb,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 2.595,
+ "rms": 0.7,
+ "gap": 167,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 42 km WNW of Huarmey, Peru"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-78.5279, -9.976, 63.539]
+ },
+ "id": "us7000nunb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.79,
+ "place": "3 km W of Portola Valley, CA",
+ "time": 1732776330450,
+ "updated": 1732781367595,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091961",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091961.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "nc",
+ "code": "75091961",
+ "ids": ",nc75091961,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.06296,
+ "rms": 0.04,
+ "gap": 103,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 3 km W of Portola Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.265998840332, 37.3773345947266, 8.39999961853027]
+ },
+ "id": "nc75091961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732776252090,
+ "updated": 1732780171475,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091956",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091956.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75091956",
+ "ids": ",nc75091956,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.007586,
+ "rms": 0.02,
+ "gap": 133,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.844665527344, 38.8221664428711, 2.29999995231628]
+ },
+ "id": "nc75091956"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.3,
+ "place": "67 km N of San Juan, Puerto Rico",
+ "time": 1732776148140,
+ "updated": 1732776971680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467048",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467048.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 168,
+ "net": "pr",
+ "code": "71467048",
+ "ids": ",pr71467048,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.7581,
+ "rms": 0.21,
+ "gap": 259,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.3 - 67 km N of San Juan, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-65.9853333333333, 19.0655, 20.85]
+ },
+ "id": "pr71467048"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "8 km ESE of Valle Vista, CA",
+ "time": 1732775848310,
+ "updated": 1732776116551,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989256",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989256.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40989256",
+ "ids": ",ci40989256,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.08633,
+ "rms": 0.14,
+ "gap": 94,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km ESE of Valle Vista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8173333, 33.7188333, 16.75]
+ },
+ "id": "ci40989256"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732775230690,
+ "updated": 1732778369293,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091946",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091946.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75091946",
+ "ids": ",nc75091946,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.009102,
+ "rms": 0.01,
+ "gap": 103,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.800163269043, 38.8334999084473, 2.19000005722046]
+ },
+ "id": "nc75091946"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "46 km SSW of Cantwell, Alaska",
+ "time": 1732775164960,
+ "updated": 1732775288818,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fator2o",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fator2o.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024fator2o",
+ "ids": ",ak024fator2o,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 46 km SSW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.2584, 62.9986, 74.5]
+ },
+ "id": "ak024fator2o"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "12 km NE of Yucaipa, CA",
+ "time": 1732774221210,
+ "updated": 1732774855730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989232",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989232.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ci",
+ "code": "40989232",
+ "ids": ",ci40989232,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 69,
+ "dmin": 0.01975,
+ "rms": 0.17,
+ "gap": 61,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 12 km NE of Yucaipa, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9478333, 34.1106667, 9.41]
+ },
+ "id": "ci40989232"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.98000002,
+ "place": "11 km SE of Pāhala, Hawaii",
+ "time": 1732773953570,
+ "updated": 1732774052680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544522",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544522.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 60,
+ "net": "hv",
+ "code": "74544522",
+ "ids": ",hv74544522,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 52,
+ "dmin": 0.06641,
+ "rms": 0.159999996,
+ "gap": 182,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 11 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.39533996582, 19.1346664428711, 30.3700008392334]
+ },
+ "id": "hv74544522"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "12 km ESE of Coahoma, Texas",
+ "time": 1732773943307,
+ "updated": 1732792570697,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xjbc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xjbc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "tx",
+ "code": "2024xjbc",
+ "ids": ",tx2024xjbc,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 12 km ESE of Coahoma, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-101.185, 32.26, 7.9834] },
+ "id": "tx2024xjbc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.16,
+ "place": "26 km SW of Ocotillo Wells, CA",
+ "time": 1732773718000,
+ "updated": 1732774365430,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989224",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989224.geojson",
+ "felt": 1,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "ci",
+ "code": "40989224",
+ "ids": ",ci40989224,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 80,
+ "dmin": 0.0685,
+ "rms": 0.24,
+ "gap": 51,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 26 km SW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3306667, 32.985, 5.92]
+ },
+ "id": "ci40989224"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.15,
+ "place": "4 km NW of Aguanga, CA",
+ "time": 1732773214680,
+ "updated": 1732773492505,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989216",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989216.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "ci",
+ "code": "40989216",
+ "ids": ",ci40989216,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 52,
+ "dmin": 0.01714,
+ "rms": 0.19,
+ "gap": 26,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 4 km NW of Aguanga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8928333, 33.4745, 13.85]
+ },
+ "id": "ci40989216"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "35 km NW of Ninilchik, Alaska",
+ "time": 1732773134548,
+ "updated": 1732773260762,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fat8wtq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fat8wtq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024fat8wtq",
+ "ids": ",ak024fat8wtq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 35 km NW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.1969, 60.2356, 84.6]
+ },
+ "id": "ak024fat8wtq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "54 km S of Goldfield, Nevada",
+ "time": 1732771923930,
+ "updated": 1732772058381,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888059",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888059.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nn",
+ "code": "00888059",
+ "ids": ",nn00888059,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.233,
+ "rms": 0.2913,
+ "gap": 153.48000000000002,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 54 km S of Goldfield, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.3297, 37.2273, 1.5] },
+ "id": "nn00888059"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "18 km SSW of Mentone, Texas",
+ "time": 1732771643904,
+ "updated": 1732772072139,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xizv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xizv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xizv",
+ "ids": ",tx2024xizv,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 112,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 18 km SSW of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.678, 31.557, 10.8021]
+ },
+ "id": "tx2024xizv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.23000002,
+ "place": "4 km SSW of Pāhala, Hawaii",
+ "time": 1732771628000,
+ "updated": 1732771735190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544492",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544492.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "hv",
+ "code": "74544492",
+ "ids": ",hv74544492,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0.03025,
+ "rms": 0.159999996,
+ "gap": 111,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 4 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.491836547852, 19.1666660308838, 35.0099983215332]
+ },
+ "id": "hv74544492"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "53 km NNW of Indian Springs, Nevada",
+ "time": 1732771439017,
+ "updated": 1732771546271,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888058",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888058.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nn",
+ "code": "00888058",
+ "ids": ",nn00888058,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.058,
+ "rms": 0.4503,
+ "gap": 202.62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 53 km NNW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.9418, 37.0042, 0] },
+ "id": "nn00888058"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "51 km E of Fallon Station, Nevada",
+ "time": 1732771005980,
+ "updated": 1732771156741,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888057",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888057.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "nn",
+ "code": "00888057",
+ "ids": ",nn00888057,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.968,
+ "rms": 0.1761,
+ "gap": 282.40999999999997,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 51 km E of Fallon Station, Nevada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.1223, 39.4167, 14.3]
+ },
+ "id": "nn00888057"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.28,
+ "place": "8 km NNW of The Geysers, CA",
+ "time": 1732770775760,
+ "updated": 1732773568738,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091936",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091936.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "nc",
+ "code": "75091936",
+ "ids": ",nc75091936,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.009786,
+ "rms": 0.01,
+ "gap": 52,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 8 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.81566619873, 38.8321647644043, 1.74000000953674]
+ },
+ "id": "nc75091936"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.5,
+ "place": "243 km W of Bandon, Oregon",
+ "time": 1732770084519,
+ "updated": 1732771014040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000numu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000numu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 188,
+ "net": "us",
+ "code": "7000numu",
+ "ids": ",us7000numu,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 83,
+ "dmin": 1.783,
+ "rms": 0.63,
+ "gap": 212,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 3.5 - 243 km W of Bandon, Oregon"
+ },
+ "geometry": { "type": "Point", "coordinates": [-127.3778, 43.436, 10] },
+ "id": "us7000numu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "21 km W of Skwentna, Alaska",
+ "time": 1732770045526,
+ "updated": 1732770232838,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fasxu2h",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fasxu2h.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024fasxu2h",
+ "ids": ",ak024fasxu2h,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.65,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 21 km W of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.8059, 61.9966, 88.4]
+ },
+ "id": "ak024fasxu2h"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "9 km SSW of Louisa, Virginia",
+ "time": 1732768798239,
+ "updated": 1732771403355,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000numy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000numy.geojson",
+ "felt": 3,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "us",
+ "code": "7000numy",
+ "ids": ",us7000numy,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.131,
+ "rms": 1.26,
+ "gap": 98,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 9 km SSW of Louisa, Virginia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-78.0428, 37.9421, 7.843]
+ },
+ "id": "us7000numy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "20 km NW of Grapevine, CA",
+ "time": 1732768702660,
+ "updated": 1732768970933,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989200",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989200.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "ci",
+ "code": "40989200",
+ "ids": ",ci40989200,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.03716,
+ "rms": 0.21,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 20 km NW of Grapevine, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.0633333, 35.0918333, 13.34]
+ },
+ "id": "ci40989200"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.93,
+ "place": "50 km N of Brenas, Puerto Rico",
+ "time": 1732768615100,
+ "updated": 1732769562570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467043",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467043.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 132,
+ "net": "pr",
+ "code": "71467043",
+ "ids": ",pr71467043,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.4497,
+ "rms": 0.12,
+ "gap": 268,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.9 - 50 km N of Brenas, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.4193333333333, 18.9168333333333, 34.76]
+ },
+ "id": "pr71467043"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.29,
+ "place": "4 km SE of Maria Antonia, Puerto Rico",
+ "time": 1732768358990,
+ "updated": 1732769267410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467038",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467038.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "pr",
+ "code": "71467038",
+ "ids": ",pr71467038,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.02804,
+ "rms": 0.09,
+ "gap": 265,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 4 km SE of Maria Antonia, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8575, 17.9461666666667, 11.5]
+ },
+ "id": "pr71467038"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "10 km SSW of Halibut Cove, Alaska",
+ "time": 1732767036812,
+ "updated": 1732767166380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024faseiv5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024faseiv5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024faseiv5",
+ "ids": ",ak024faseiv5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.5,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 10 km SSW of Halibut Cove, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.3147, 59.5154, 47.1]
+ },
+ "id": "ak024faseiv5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "25 km SSW of Ocotillo Wells, CA",
+ "time": 1732766899860,
+ "updated": 1732767154636,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989176",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989176.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40989176",
+ "ids": ",ci40989176,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.148,
+ "rms": 0.18,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 25 km SSW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.2398333, 32.936, 8.9]
+ },
+ "id": "ci40989176"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "67 km NNE of Lake Minchumina, Alaska",
+ "time": 1732766878911,
+ "updated": 1732767032150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fasdxf7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fasdxf7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024fasdxf7",
+ "ids": ",ak024fasdxf7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.9,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 67 km NNE of Lake Minchumina, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.8811, 64.4552, 3.4] },
+ "id": "ak024fasdxf7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "25 km SW of Ocotillo Wells, CA",
+ "time": 1732765144640,
+ "updated": 1732765355448,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989168",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989168.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40989168",
+ "ids": ",ci40989168,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.07591,
+ "rms": 0.15,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 25 km SW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3218333, 32.9856667, 5.93]
+ },
+ "id": "ci40989168"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732765127000,
+ "updated": 1732772069544,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091926",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091926.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75091926",
+ "ids": ",nc75091926,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.007098,
+ "rms": 0.02,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778999328613, 38.7918319702148, 1.99000000953674]
+ },
+ "id": "nc75091926"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "46 km WSW of Cantwell, Alaska",
+ "time": 1732764576308,
+ "updated": 1732764683177,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024farx5tq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024farx5tq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024farx5tq",
+ "ids": ",ak024farx5tq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 2.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 46 km WSW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.8526, 63.3026, 80.5]
+ },
+ "id": "ak024farx5tq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.25999999,
+ "place": "5 km S of Pāhala, Hawaii",
+ "time": 1732764546110,
+ "updated": 1732764656120,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544377",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544377.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 79,
+ "net": "hv",
+ "code": "74544377",
+ "ids": ",hv74544377,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.02497,
+ "rms": 0.230000004,
+ "gap": 134,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 5 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.488494873047, 19.154167175293, 30.7299995422363]
+ },
+ "id": "hv74544377"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.25999999,
+ "place": "15 km ESE of Naalehu, Hawaii",
+ "time": 1732763021480,
+ "updated": 1732763125960,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544352",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544352.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 79,
+ "net": "hv",
+ "code": "74544352",
+ "ids": ",hv74544352,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.129,
+ "rms": 0.150000006,
+ "gap": 255,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 15 km ESE of Naalehu, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.444839477539, 19.0041675567627, 36.5499992370605]
+ },
+ "id": "hv74544352"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "32 km SE of Pedro Bay, Alaska",
+ "time": 1732762484350,
+ "updated": 1732763150358,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024farh8br",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024farh8br.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "ak",
+ "code": "024farh8br",
+ "ids": ",ak024farh8br,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.86,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 32 km SE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.6626, 59.6018, 24.9]
+ },
+ "id": "ak024farh8br"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "25 km E of Pedro Bay, Alaska",
+ "time": 1732762478282,
+ "updated": 1732764665040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024farh399",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024farh399.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024farh399",
+ "ids": ",us7000numf,ak024farh399,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.29,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 25 km E of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.6626, 59.8277, 141.5]
+ },
+ "id": "ak024farh399"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.37,
+ "place": "5 km SE of Maria Antonia, Puerto Rico",
+ "time": 1732761942770,
+ "updated": 1732762794810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467023",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467023.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 86,
+ "net": "pr",
+ "code": "71467023",
+ "ids": ",pr71467023,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.0372,
+ "rms": 0.08,
+ "gap": 215,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 5 km SE of Maria Antonia, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8561666666667, 17.9368333333333, 11.64]
+ },
+ "id": "pr71467023"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "5 km NNW of The Geysers, CA",
+ "time": 1732761509300,
+ "updated": 1732762636399,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091921",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091921.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75091921",
+ "ids": ",nc75091921,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.006196,
+ "rms": 0.02,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 5 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.797164916992, 38.8139991760254, 2.57999992370605]
+ },
+ "id": "nc75091921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "28 km NNW of Nellis Air Force Base, Nevada",
+ "time": 1732759983975,
+ "updated": 1732760116421,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888055",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888055.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nn",
+ "code": "00888055",
+ "ids": ",nn00888055,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.052,
+ "rms": 0.2051,
+ "gap": 219.95999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 28 km NNW of Nellis Air Force Base, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.206, 36.4705, 1.7] },
+ "id": "nn00888055"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "106 km E of Atka, Alaska",
+ "time": 1732759896491,
+ "updated": 1732775459367,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024far7vgy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024far7vgy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 3.107,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "ak",
+ "code": "024far7vgy",
+ "ids": ",ak024far7vgy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,shakemap,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 4.1 - 106 km E of Atka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-172.6643, 52.3618, 119.5]
+ },
+ "id": "ak024far7vgy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "199 km WNW of Bandon, Oregon",
+ "time": 1732758913865,
+ "updated": 1732761423040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000num8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000num8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "us",
+ "code": "7000num8",
+ "ids": ",us7000num8,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 51,
+ "dmin": 2.024,
+ "rms": 0.85,
+ "gap": 251,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 199 km WNW of Bandon, Oregon"
+ },
+ "geometry": { "type": "Point", "coordinates": [-126.8155, 43.5003, 10] },
+ "id": "us7000num8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "38 km ESE of Phek, India",
+ "time": 1732758778246,
+ "updated": 1732763985040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000numd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000numd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000numd",
+ "ids": ",us7000numd,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 4.256,
+ "rms": 0.68,
+ "gap": 108,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 38 km ESE of Phek, India"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [94.8224, 25.4805, 85.448]
+ },
+ "id": "us7000numd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "227 km W of Bandon, Oregon",
+ "time": 1732758751003,
+ "updated": 1732760742040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000num7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000num7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "7000num7",
+ "ids": ",us7000num7,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 136,
+ "dmin": 1.646,
+ "rms": 0.88,
+ "gap": 197,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 4.6 - 227 km W of Bandon, Oregon"
+ },
+ "geometry": { "type": "Point", "coordinates": [-127.167, 43.4644, 10] },
+ "id": "us7000num7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "55 km E of Denali National Park, Alaska",
+ "time": 1732757772000,
+ "updated": 1732757921643,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024faqrqqn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024faqrqqn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024faqrqqn",
+ "ids": ",ak024faqrqqn,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.6,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 55 km E of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.6113, 63.4783, 6.2] },
+ "id": "ak024faqrqqn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3499999,
+ "place": "12 km E of Pāhala, Hawaii",
+ "time": 1732757591110,
+ "updated": 1732757687750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544282",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544282.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 85,
+ "net": "hv",
+ "code": "74544282",
+ "ids": ",hv74544282,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 0.04093,
+ "rms": 0.109999999,
+ "gap": 217,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 12 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.364669799805, 19.2106666564941, 30.4899997711182]
+ },
+ "id": "hv74544282"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.37,
+ "place": "3 km SSE of Highland Park, CA",
+ "time": 1732757400190,
+ "updated": 1732757685028,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989144",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989144.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "ci",
+ "code": "40989144",
+ "ids": ",ci40989144,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.03368,
+ "rms": 0.15,
+ "gap": 46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 3 km SSE of Highland Park, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.183, 34.0928333, 10.91]
+ },
+ "id": "ci40989144"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "83 km WNW of Petersville, Alaska",
+ "time": 1732756687886,
+ "updated": 1732757184577,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024faqnvk7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024faqnvk7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024faqnvk7",
+ "ids": ",ak024faqnvk7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.81,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 83 km WNW of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2603, 62.7949, 100.7]
+ },
+ "id": "ak024faqnvk7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.92,
+ "place": "25 km SW of Ocotillo Wells, CA",
+ "time": 1732755662990,
+ "updated": 1732755885862,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989128",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989128.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "ci",
+ "code": "40989128",
+ "ids": ",ci40989128,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.07964,
+ "rms": 0.17,
+ "gap": 52,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 25 km SW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3173333, 32.9856667, 5.62]
+ },
+ "id": "ci40989128"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.14,
+ "place": "6 km SSW of Volcano, Hawaii",
+ "time": 1732753154590,
+ "updated": 1732765521025,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544237",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544237.geojson",
+ "felt": 5,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 153,
+ "net": "hv",
+ "code": "74544237",
+ "ids": ",hv74544237,us7000num2,",
+ "sources": ",hv,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 32,
+ "dmin": 0.004984,
+ "rms": 0.1,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.1 - 6 km SSW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.246833333333, 19.3881666666667, 1.82]
+ },
+ "id": "hv74544237"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "43 km E of Ollagüe, Chile",
+ "time": 1732752944534,
+ "updated": 1732754268040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nulz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nulz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "7000nulz",
+ "ids": ",us7000nulz,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 1.404,
+ "rms": 0.94,
+ "gap": 98,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 43 km E of Ollagüe, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.8414, -21.2725, 197.06]
+ },
+ "id": "us7000nulz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3,
+ "place": "35 km SE of Mina, Nevada",
+ "time": 1732752937896,
+ "updated": 1732762334261,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888048",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888048.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": 2.931,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 139,
+ "net": "nn",
+ "code": "00888048",
+ "ids": ",nn00888048,us7000nulx,",
+ "sources": ",nn,us,",
+ "types": ",dyfi,origin,phase-data,shakemap,",
+ "nst": 13,
+ "dmin": 0.13,
+ "rms": 0.2045,
+ "gap": 97.07,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.0 - 35 km SE of Mina, Nevada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.8159, 38.1755, 12.4]
+ },
+ "id": "nn00888048"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732752630236,
+ "updated": 1732786055897,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xipl",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xipl.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xipl",
+ "ids": ",tx2024xipl,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.382, 31.651, 6.0999]
+ },
+ "id": "tx2024xipl"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "10 km ENE of Fox, Alaska",
+ "time": 1732752357834,
+ "updated": 1732752479851,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024fapzrhj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024fapzrhj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024fapzrhj",
+ "ids": ",ak024fapzrhj,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.34,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 10 km ENE of Fox, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3995, 64.9863, 6.4] },
+ "id": "ak024fapzrhj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732751937530,
+ "updated": 1732754370406,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091891",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091891.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75091891",
+ "ids": ",nc75091891,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.0117,
+ "rms": 0,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.814163208008, 38.8346672058105, 1.00999999046326]
+ },
+ "id": "nc75091891"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "17 km WNW of Tetlin, Alaska",
+ "time": 1732751753405,
+ "updated": 1732751899997,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9gg3g7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9gg3g7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f9gg3g7",
+ "ids": ",ak024f9gg3g7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.53,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 17 km WNW of Tetlin, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-142.8668, 63.1731, 0.3] },
+ "id": "ak024f9gg3g7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "11 km WNW of Tatitlek, Alaska",
+ "time": 1732751675692,
+ "updated": 1732751806997,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9gfua9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9gfua9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f9gfua9",
+ "ids": ",ak024f9gfua9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 11 km WNW of Tatitlek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.8758, 60.9029, 21.2]
+ },
+ "id": "ak024f9gfua9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "8 km NW of Indian Springs, Nevada",
+ "time": 1732751591519,
+ "updated": 1732755645715,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888045",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888045.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "nn",
+ "code": "00888045",
+ "ids": ",nn00888045,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 34,
+ "dmin": 0.192,
+ "rms": 0.0949,
+ "gap": 143.07,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 8 km NW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.7261, 36.6312, 7.7] },
+ "id": "nn00888045"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732751533340,
+ "updated": 1732764868661,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091886",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091886.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75091886",
+ "ids": ",nc75091886,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.00724,
+ "rms": 0.03,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778663635254, 38.7928352355957, 2.74000000953674]
+ },
+ "id": "nc75091886"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "150 km W of Puerto, Chile",
+ "time": 1732750027577,
+ "updated": 1732751033040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000null",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000null.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "7000null",
+ "ids": ",us7000null,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 1.383,
+ "rms": 0.61,
+ "gap": 192,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 150 km W of Puerto, Chile"
+ },
+ "geometry": { "type": "Point", "coordinates": [-71.5886, -20.076, 10] },
+ "id": "us7000null"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.37,
+ "place": "64 km ENE of Pedro Bay, Alaska",
+ "time": 1732749074750,
+ "updated": 1732781686020,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381653",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381653.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381653",
+ "ids": ",av93381653,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01836,
+ "rms": 0.07,
+ "gap": 88,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 64 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.071666666667, 60.0395, 0.59]
+ },
+ "id": "av93381653"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732748856520,
+ "updated": 1732748954789,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091881",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091881.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75091881",
+ "ids": ",nc75091881,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.007027,
+ "rms": 0.01,
+ "gap": 113,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831336975098, 38.8448333740234, 1.38999998569489]
+ },
+ "id": "nc75091881"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732748770720,
+ "updated": 1732748869652,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091876",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091876.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75091876",
+ "ids": ",nc75091876,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.00894,
+ "rms": 0.02,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.799003601074, 38.8256683349609, 3]
+ },
+ "id": "nc75091876"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "25 km NNE of Four Mile Road, Alaska",
+ "time": 1732748685915,
+ "updated": 1732749028019,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9g5585",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9g5585.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f9g5585",
+ "ids": ",ak024f9g5585,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.75,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 25 km NNE of Four Mile Road, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.9765, 64.8192, 0] },
+ "id": "ak024f9g5585"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732748411590,
+ "updated": 1732748509822,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091866",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091866.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75091866",
+ "ids": ",nc75091866,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.007268,
+ "rms": 0.01,
+ "gap": 124,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831497192383, 38.8451652526855, 1.3400000333786]
+ },
+ "id": "nc75091866"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "3 km WSW of Anderson Springs, CA",
+ "time": 1732748255540,
+ "updated": 1732751238045,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091856",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091856.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75091856",
+ "ids": ",nc75091856,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.004142,
+ "rms": 0.01,
+ "gap": 231,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 3 km WSW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.723999023438, 38.7574996948242, 2.52999997138977]
+ },
+ "id": "nc75091856"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "10 km NNW of The Geysers, CA",
+ "time": 1732748233880,
+ "updated": 1732750634963,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091851",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091851.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75091851",
+ "ids": ",nc75091851,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.01818,
+ "rms": 0.03,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.832000732422, 38.8411674499512, 1.1599999666214]
+ },
+ "id": "nc75091851"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.54,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732748184580,
+ "updated": 1732750167908,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091846",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091846.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75091846",
+ "ids": ",nc75091846,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.01943,
+ "rms": 0.06,
+ "gap": 89,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.832832336426, 38.8424987792969, 0.730000019073486]
+ },
+ "id": "nc75091846"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.66,
+ "place": "25 km W of Sitka, Alaska",
+ "time": 1732747550700,
+ "updated": 1732781504990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027569",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027569.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027569",
+ "ids": ",av93027569,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01772,
+ "rms": 0.12,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 25 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.756666666667, 57.0533333333333, 6.56]
+ },
+ "id": "av93027569"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "7 km SSE of Ferry, Alaska",
+ "time": 1732747508419,
+ "updated": 1732749788296,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9fsf3x",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9fsf3x.geojson",
+ "felt": 2,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 75,
+ "net": "ak",
+ "code": "024f9fsf3x",
+ "ids": ",ak024f9fsf3x,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.71,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 7 km SSE of Ferry, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.0329, 63.9593, 0] },
+ "id": "ak024f9fsf3x"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.37,
+ "place": "24 km W of Sitka, Alaska",
+ "time": 1732747497770,
+ "updated": 1732781264750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027564",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027564.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "av",
+ "code": "93027564",
+ "ids": ",av93027564,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.0131,
+ "rms": 0.11,
+ "gap": 172,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 24 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.7325, 57.0408333333333, 7.59]
+ },
+ "id": "av93027564"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.55,
+ "place": "26 km W of Sitka, Alaska",
+ "time": 1732747458240,
+ "updated": 1732781112930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027559",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027559.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027559",
+ "ids": ",av93027559,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.0131,
+ "rms": 0.13,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 26 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.765333333333, 57.0546666666667, 5.83]
+ },
+ "id": "av93027559"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.61,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732747422070,
+ "updated": 1732748968767,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091836",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091836.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75091836",
+ "ids": ",nc75091836,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.006302,
+ "rms": 0.01,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831336975098, 38.8440017700195, 1.26999998092651]
+ },
+ "id": "nc75091836"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.17,
+ "place": "87 km NNW of Karluk, Alaska",
+ "time": 1732746970440,
+ "updated": 1732779360000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381633",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381633.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381633",
+ "ids": ",av93381633,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04251,
+ "rms": 0.11,
+ "gap": 143,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 87 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.983166666667, 58.3008333333333, 2.91]
+ },
+ "id": "av93381633"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "4 km NNE of Lake Henshaw, CA",
+ "time": 1732746887410,
+ "updated": 1732747566000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989072",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989072.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ci",
+ "code": "40989072",
+ "ids": ",ci40989072,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 53,
+ "dmin": 0.04024,
+ "rms": 0.19,
+ "gap": 23,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 4 km NNE of Lake Henshaw, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7396667, 33.273, 8.78]
+ },
+ "id": "ci40989072"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "14 km NNE of Four Mile Road, Alaska",
+ "time": 1732746313850,
+ "updated": 1732746435999,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9fo589",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9fo589.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f9fo589",
+ "ids": ",ak024f9fo589,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.93,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 14 km NNE of Four Mile Road, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.0557, 64.7287, 14.1]
+ },
+ "id": "ak024f9fo589"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.46,
+ "place": "3 km SSW of Highland Park, CA",
+ "time": 1732746282050,
+ "updated": 1732746519974,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989064",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989064.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "ci",
+ "code": "40989064",
+ "ids": ",ci40989064,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.06813,
+ "rms": 0.09,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 3 km SSW of Highland Park, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.214, 34.0985, 10.48]
+ },
+ "id": "ci40989064"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732746051591,
+ "updated": 1732785657957,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xilt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xilt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xilt",
+ "ids": ",tx2024xilt,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.29, 31.649, 8.4839] },
+ "id": "tx2024xilt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732745933576,
+ "updated": 1732787211187,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xilr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xilr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "tx",
+ "code": "2024xilr",
+ "ids": ",tx2024xilr,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.295, 31.657, 8.4839]
+ },
+ "id": "tx2024xilr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "37 km S of Silver Gate, Montana",
+ "time": 1732745890100,
+ "updated": 1732748396350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087366",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087366.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "uu",
+ "code": "80087366",
+ "ids": ",uu80087366,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1219,
+ "rms": 0.14,
+ "gap": 136,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 37 km S of Silver Gate, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.019833333333, 44.6665, 12.65]
+ },
+ "id": "uu80087366"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.8,
+ "place": "123 km E of Hicks Bay, New Zealand",
+ "time": 1732745036567,
+ "updated": 1732777512814,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nula",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nula.geojson",
+ "felt": 6,
+ "cdi": 7,
+ "mmi": 3.032,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 522,
+ "net": "us",
+ "code": "7000nula",
+ "ids": ",us7000nula,",
+ "sources": ",us,",
+ "types": ",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,",
+ "nst": 131,
+ "dmin": 1.111,
+ "rms": 1.22,
+ "gap": 51,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.8 - 123 km E of Hicks Bay, New Zealand"
+ },
+ "geometry": { "type": "Point", "coordinates": [179.6884, -37.7402, 19] },
+ "id": "us7000nula"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.02,
+ "place": "25 km W of Sitka, Alaska",
+ "time": 1732744728630,
+ "updated": 1732778736970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027554",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027554.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027554",
+ "ids": ",av93027554,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01514,
+ "rms": 0.13,
+ "gap": 152,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 25 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.756333333333, 57.061, 6.86]
+ },
+ "id": "av93027554"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.7,
+ "place": "0 km SSE of Batitang, Philippines",
+ "time": 1732744725213,
+ "updated": 1732779551929,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nul8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nul8.geojson",
+ "felt": 4,
+ "cdi": 3.6,
+ "mmi": 3.528,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 501,
+ "net": "us",
+ "code": "7000nul8",
+ "ids": ",us7000nul8,",
+ "sources": ",us,",
+ "types": ",dyfi,losspager,moment-tensor,origin,phase-data,shakemap,",
+ "nst": 127,
+ "dmin": 7.387,
+ "rms": 0.89,
+ "gap": 32,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.7 - 0 km SSE of Batitang, Philippines"
+ },
+ "geometry": { "type": "Point", "coordinates": [120.8057, 15.3961, 182] },
+ "id": "us7000nul8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.56,
+ "place": "24 km W of Sitka, Alaska",
+ "time": 1732744672030,
+ "updated": 1732778239640,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027549",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027549.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027549",
+ "ids": ",av93027549,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.012,
+ "rms": 0.11,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 24 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.731, 57.0451666666667, 7.89]
+ },
+ "id": "av93027549"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.28999996,
+ "place": "1 km S of Pāhala, Hawaii",
+ "time": 1732744431590,
+ "updated": 1732744548840,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544072",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544072.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "hv",
+ "code": "74544072",
+ "ids": ",hv74544072,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.03737,
+ "rms": 0.129999995,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 1 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.480499267578, 19.1886672973633, 30.9500007629395]
+ },
+ "id": "hv74544072"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.62,
+ "place": "17 km NW of Pinnacles, CA",
+ "time": 1732744137760,
+ "updated": 1732757069728,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091801",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091801.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "nc",
+ "code": "75091801",
+ "ids": ",nc75091801,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.03519,
+ "rms": 0.16,
+ "gap": 76,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 17 km NW of Pinnacles, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.281829833984, 36.6341667175293, 4.86999988555908]
+ },
+ "id": "nc75091801"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.64,
+ "place": "14 km E of Anza, CA",
+ "time": 1732744137650,
+ "updated": 1732745500409,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989040",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989040.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40989040",
+ "ids": ",ci40989040,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.07505,
+ "rms": 0.13,
+ "gap": 110,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 14 km E of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5243333, 33.5323333, 11.67]
+ },
+ "id": "ci40989040"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "43 km NW of Toyah, Texas",
+ "time": 1732743920712,
+ "updated": 1732792056642,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xiko",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xiko.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xiko",
+ "ids": ",tx2024xiko,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.3,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 43 km NW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.115, 31.591, 8.0481]
+ },
+ "id": "tx2024xiko"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "13 km NNW of Piru, CA",
+ "time": 1732742474190,
+ "updated": 1732744562200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989024",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989024.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ci",
+ "code": "40989024",
+ "ids": ",ci40989024,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.06893,
+ "rms": 0.25,
+ "gap": 42,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 13 km NNW of Piru, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8541667, 34.525, 8.43]
+ },
+ "id": "ci40989024"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "59 km SE of Cantwell, Alaska",
+ "time": 1732742416503,
+ "updated": 1732742525929,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9f1n8y",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9f1n8y.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f9f1n8y",
+ "ids": ",ak024f9f1n8y,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.03,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 59 km SE of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.1485, 63.0026, 8.4] },
+ "id": "ak024f9f1n8y"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.13000011,
+ "place": "4 km S of Honaunau-Napoopoo, Hawaii",
+ "time": 1732741476070,
+ "updated": 1732741597650,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74544022",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74544022.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "hv",
+ "code": "74544022",
+ "ids": ",hv74544022,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.153,
+ "rms": 0.209999993,
+ "gap": 219,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 4 km S of Honaunau-Napoopoo, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.863159179688, 19.4169998168945, 8.39000034332275]
+ },
+ "id": "hv74544022"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.6,
+ "place": "82 km S of Sand Point, Alaska",
+ "time": 1732740949902,
+ "updated": 1732757638165,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9ensij",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9ensij.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 1.83,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 199,
+ "net": "ak",
+ "code": "024f9ensij",
+ "ids": ",ak024f9ensij,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,shakemap,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.76,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.6 - 82 km S of Sand Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-160.3105, 54.6019, 30.7]
+ },
+ "id": "ak024f9ensij"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "9 km E of Ridgecrest, CA",
+ "time": 1732740606280,
+ "updated": 1732741028015,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ci",
+ "code": "40989000",
+ "ids": ",ci40989000,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.06898,
+ "rms": 0.14,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 9 km E of Ridgecrest, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.5795, 35.633, 8.03] },
+ "id": "ci40989000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "25 km SW of Maricopa, CA",
+ "time": 1732740433110,
+ "updated": 1732741618392,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40989008",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40989008.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40989008",
+ "ids": ",ci40989008,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.05794,
+ "rms": 0.18,
+ "gap": 95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 25 km SW of Maricopa, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.613, 34.9135, 8.4] },
+ "id": "ci40989008"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.35,
+ "place": "74 km SSW of Pilot Point, Alaska",
+ "time": 1732740276070,
+ "updated": 1732777939100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027544",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027544.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027544",
+ "ids": ",av93027544,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.0271,
+ "rms": 0.22,
+ "gap": 273,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 74 km SSW of Pilot Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-158.069666666667, 56.9456666666667, -0.12]
+ },
+ "id": "av93027544"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "51 km S of Denali National Park, Alaska",
+ "time": 1732739803153,
+ "updated": 1732739936781,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9ejp5n",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9ejp5n.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f9ejp5n",
+ "ids": ",ak024f9ejp5n,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.02,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 51 km S of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.6969, 63.0792, 20] },
+ "id": "ak024f9ejp5n"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "109 km SSW of Tsengel, Mongolia",
+ "time": 1732739680723,
+ "updated": 1732740751040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuku",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuku.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 400,
+ "net": "us",
+ "code": "7000nuku",
+ "ids": ",us7000nuku,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 49,
+ "dmin": 4.279,
+ "rms": 0.74,
+ "gap": 41,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - 109 km SSW of Tsengel, Mongolia"
+ },
+ "geometry": { "type": "Point", "coordinates": [100.1068, 48.6418, 10] },
+ "id": "us7000nuku"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "126 km WNW of Tumxuk, China",
+ "time": 1732739500876,
+ "updated": 1732788338898,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuks",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuks.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nuks",
+ "ids": ",us7000nuks,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 91,
+ "dmin": 1.735,
+ "rms": 0.94,
+ "gap": 109,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.5 - 126 km WNW of Tumxuk, China"
+ },
+ "geometry": { "type": "Point", "coordinates": [77.735, 40.3887, 10] },
+ "id": "us7000nuks"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.44,
+ "place": "5 km WNW of San Juan Bautista, CA",
+ "time": 1732738744630,
+ "updated": 1732748967767,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091776",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091776.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "nc",
+ "code": "75091776",
+ "ids": ",nc75091776,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.05554,
+ "rms": 0.1,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km WNW of San Juan Bautista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.589836120605, 36.8546676635742, 6.69999980926514]
+ },
+ "id": "nc75091776"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.02,
+ "place": "23 km W of Sitka, Alaska",
+ "time": 1732738548050,
+ "updated": 1732777229810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381523",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381523.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381523",
+ "ids": ",av93381523,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.00698,
+ "rms": 0.12,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 23 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.712833333333, 57.0505, 5.16]
+ },
+ "id": "av93381523"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "30 km WNW of Cantwell, Alaska",
+ "time": 1732738419309,
+ "updated": 1732739047222,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9eere2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9eere2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f9eere2",
+ "ids": ",ak024f9eere2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 30 km WNW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.4961, 63.5115, 90.4]
+ },
+ "id": "ak024f9eere2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.36,
+ "place": "83 km N of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732738398190,
+ "updated": 1732739457270,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467018",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467018.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 174,
+ "net": "pr",
+ "code": "71467018",
+ "ids": ",pr71467018,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.6822,
+ "rms": 0.28,
+ "gap": 276,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.4 - 83 km N of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-64.7986666666667, 19.0846666666667, 19.89]
+ },
+ "id": "pr71467018"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.12,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732738278270,
+ "updated": 1732776707380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381508",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381508.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381508",
+ "ids": ",av93381508,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.07551,
+ "rms": 0.12,
+ "gap": 128,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2925, 61.3238333333333, 1.73]
+ },
+ "id": "av93381508"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "111 km S of Chuathbaluk, Alaska",
+ "time": 1732737929415,
+ "updated": 1732741977040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9ed0wd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9ed0wd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "ak",
+ "code": "024f9ed0wd",
+ "ids": ",us7000nukm,ak024f9ed0wd,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.87,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 111 km S of Chuathbaluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-158.9239, 60.5803, 0] },
+ "id": "ak024f9ed0wd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.81,
+ "place": "4 km SSE of Home Gardens, CA",
+ "time": 1732737905720,
+ "updated": 1732739289260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988960",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988960.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ci",
+ "code": "40988960",
+ "ids": ",ci40988960,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 68,
+ "dmin": 0.05471,
+ "rms": 0.21,
+ "gap": 42,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.8 Quarry Blast - 4 km SSE of Home Gardens, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4983333, 33.8495, -0.24]
+ },
+ "id": "ci40988960"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "16 km NNE of Apple Valley, CA",
+ "time": 1732737835230,
+ "updated": 1732775361725,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988952",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988952.geojson",
+ "felt": 1,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ci",
+ "code": "40988952",
+ "ids": ",ci40988952,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.1871,
+ "rms": 0.17,
+ "gap": 34,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.5 Quarry Blast - 16 km NNE of Apple Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1215, 34.6351667, -1.17]
+ },
+ "id": "ci40988952"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.22,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732737085380,
+ "updated": 1732776069250,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381478",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381478.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93381478",
+ "ids": ",av93381478,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.07785,
+ "rms": 0.08,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.291166666667, 61.3261666666667, 1.39]
+ },
+ "id": "av93381478"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.3,
+ "place": "45 km W of Kalifornsky, Alaska",
+ "time": 1732737064515,
+ "updated": 1732737203471,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9e1fwz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9e1fwz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f9e1fwz",
+ "ids": ",ak024f9e1fwz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.49,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 45 km W of Kalifornsky, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.1189, 60.4659, 155] },
+ "id": "ak024f9e1fwz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.21,
+ "place": "9 km E of Alum Rock, CA",
+ "time": 1732735916480,
+ "updated": 1732745368344,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091766",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091766.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "nc",
+ "code": "75091766",
+ "ids": ",nc75091766,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.07631,
+ "rms": 0.04,
+ "gap": 120,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 9 km E of Alum Rock, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.729331970215, 37.3740005493164, 7.69000005722046]
+ },
+ "id": "nc75091766"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.16,
+ "place": "13 km SE of Olancha, CA",
+ "time": 1732735818010,
+ "updated": 1732736824104,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988912",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988912.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "ci",
+ "code": "40988912",
+ "ids": ",ci40988912,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.09128,
+ "rms": 0.15,
+ "gap": 64,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 13 km SE of Olancha, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.8918333, 36.204, 3.94]
+ },
+ "id": "ci40988912"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "23 km WSW of Anchorage, Alaska",
+ "time": 1732735435110,
+ "updated": 1732751961154,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9dvi5z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9dvi5z.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "ak",
+ "code": "024f9dvi5z",
+ "ids": ",ak024f9dvi5z,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 23 km WSW of Anchorage, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.3209, 61.1487, 17.5]
+ },
+ "id": "ak024f9dvi5z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "62 km NE of Nikolski, Alaska",
+ "time": 1732735335940,
+ "updated": 1732776291390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027534",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027534.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027534",
+ "ids": ",av93027534,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.05108,
+ "rms": 0.2,
+ "gap": 298,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 62 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.2455, 53.3661666666667, 5.36]
+ },
+ "id": "av93027534"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.88,
+ "place": "1 km SW of Pāhala, Hawaii",
+ "time": 1732735279120,
+ "updated": 1732735368490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543842",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543842.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74543842",
+ "ids": ",hv74543842,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.04765,
+ "rms": 0.209999993,
+ "gap": 115,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 1 km SW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.488327026367, 19.1963329315186, 28.7399997711182]
+ },
+ "id": "hv74543842"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.72,
+ "place": "4 km S of Highland Park, CA",
+ "time": 1732735141330,
+ "updated": 1732737912050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988888",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988888.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "ci",
+ "code": "40988888",
+ "ids": ",ci40988888,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 63,
+ "dmin": 0.01898,
+ "rms": 0.18,
+ "gap": 30,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 4 km S of Highland Park, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.1968333, 34.0831667, 11.09]
+ },
+ "id": "ci40988888"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.65,
+ "place": "84 km W of Salamatof, Alaska",
+ "time": 1732734546390,
+ "updated": 1732775616930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381433",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381433.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381433",
+ "ids": ",av93381433,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.0575,
+ "rms": 0.06,
+ "gap": 263,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 84 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.87, 60.6383333333333, 12.12]
+ },
+ "id": "av93381433"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.70000005,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732734423640,
+ "updated": 1732734506170,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543822",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543822.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "hv",
+ "code": "74543822",
+ "ids": ",hv74543822,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.007518,
+ "rms": 0.170000002,
+ "gap": 72,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.239166259766, 19.3810005187988, 2.13000011444092]
+ },
+ "id": "hv74543822"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.02,
+ "place": "22 km NE of Lima, Montana",
+ "time": 1732734312070,
+ "updated": 1732747396460,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067123",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067123.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "mb",
+ "code": "90067123",
+ "ids": ",mb90067123,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.1826,
+ "rms": 0.17,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 22 km NE of Lima, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.383666666667, 44.7758333333333, 9.63]
+ },
+ "id": "mb90067123"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.32,
+ "place": "22 km NE of Lima, Montana",
+ "time": 1732734283800,
+ "updated": 1732746568000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067103",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067103.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 83,
+ "net": "mb",
+ "code": "90067103",
+ "ids": ",mb90067103,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 0.1834,
+ "rms": 0.2,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 22 km NE of Lima, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.379833333333, 44.7765, 11.31]
+ },
+ "id": "mb90067103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.11,
+ "place": "3 km SSW of Pāhala, Hawaii",
+ "time": 1732734197390,
+ "updated": 1732734370490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543817",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543817.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "hv",
+ "code": "74543817",
+ "ids": ",hv74543817,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 55,
+ "dmin": 0.03879,
+ "rms": 0.129999995,
+ "gap": 83,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 3 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.494659423828, 19.1791667938232, 30.2600002288818]
+ },
+ "id": "hv74543817"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732733674920,
+ "updated": 1732736839433,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091751",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091751.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75091751",
+ "ids": ",nc75091751,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.005394,
+ "rms": 0.01,
+ "gap": 111,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831497192383, 38.8429985046387, 1.29999995231628]
+ },
+ "id": "nc75091751"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.04,
+ "place": "15 km S of Volcano, Hawaii",
+ "time": 1732733163690,
+ "updated": 1732733336900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543777",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543777.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 64,
+ "net": "hv",
+ "code": "74543777",
+ "ids": ",hv74543777,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 50,
+ "dmin": 0.03586,
+ "rms": 0.209999993,
+ "gap": 103,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 15 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.254501342773, 19.3034992218018, 1.13999998569489]
+ },
+ "id": "hv74543777"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "5 km NW of Cobb, CA",
+ "time": 1732733003360,
+ "updated": 1732740570817,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091731",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091731.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75091731",
+ "ids": ",nc75091731,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.01058,
+ "rms": 0.03,
+ "gap": 192,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km NW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.764999389648, 38.848331451416, 0.839999973773956]
+ },
+ "id": "nc75091731"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "134 km SSE of McCarthy, Alaska",
+ "time": 1732732893203,
+ "updated": 1732733051035,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9ddvrc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9ddvrc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f9ddvrc",
+ "ids": ",ak024f9ddvrc,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.72,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 134 km SSE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.8648, 60.3387, 0] },
+ "id": "ak024f9ddvrc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732732846730,
+ "updated": 1732738769613,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091726",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091726.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75091726",
+ "ids": ",nc75091726,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.006073,
+ "rms": 0.02,
+ "gap": 96,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.780502319336, 38.7949981689453, 3.35999989509583]
+ },
+ "id": "nc75091726"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732732804250,
+ "updated": 1732737269474,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091721",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091721.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75091721",
+ "ids": ",nc75091721,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.005271,
+ "rms": 0.01,
+ "gap": 76,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.781669616699, 38.795166015625, 3.60999989509583]
+ },
+ "id": "nc75091721"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.07,
+ "place": "67 km WNW of Beluga, Alaska",
+ "time": 1732732358110,
+ "updated": 1732775420900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381423",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381423.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381423",
+ "ids": ",av93381423,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.0826,
+ "rms": 0.09,
+ "gap": 128,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 67 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.274, 61.3265, 0.99] },
+ "id": "av93381423"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.1,
+ "place": "12 km E of Point Possession, Alaska",
+ "time": 1732732000027,
+ "updated": 1732757888310,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9daoi1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9daoi1.geojson",
+ "felt": 7,
+ "cdi": 2.7,
+ "mmi": 2.086,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 150,
+ "net": "ak",
+ "code": "024f9daoi1",
+ "ids": ",ak024f9daoi1,us7000nuk0,",
+ "sources": ",ak,us,",
+ "types": ",dyfi,origin,phase-data,shakemap,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.73,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.1 - 12 km E of Point Possession, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4624, 60.9327, 55.9]
+ },
+ "id": "ak024f9daoi1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.22,
+ "place": "15 km SSW of Olancha, CA",
+ "time": 1732731985080,
+ "updated": 1732733196378,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988824",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988824.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "ci",
+ "code": "40988824",
+ "ids": ",ci40988824,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.1758,
+ "rms": 0.14,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 15 km SSW of Olancha, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.067, 36.1553333, 3.47]
+ },
+ "id": "ci40988824"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "25 km SW of Bodfish, CA",
+ "time": 1732731128240,
+ "updated": 1732733204690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988800",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988800.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40988800",
+ "ids": ",ci40988800,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.1169,
+ "rms": 0.14,
+ "gap": 91,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 25 km SW of Bodfish, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.6545, 35.4018333, 4.58]
+ },
+ "id": "ci40988800"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "8 km NNW of Indian Springs, Nevada",
+ "time": 1732730860586,
+ "updated": 1732745142740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888033",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888033.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nn",
+ "code": "00888033",
+ "ids": ",nn00888033,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.193,
+ "rms": 0.1466,
+ "gap": 163.67999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 8 km NNW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.7234, 36.6369, 6.1] },
+ "id": "nn00888033"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "15 km WNW of Virginia City, Nevada",
+ "time": 1732730768359,
+ "updated": 1732750636224,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888044",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888044.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nn",
+ "code": "00888044",
+ "ids": ",nn00888044,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.039,
+ "rms": 0.1437,
+ "gap": 231.84999999999997,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 15 km WNW of Virginia City, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.8176, 39.3594, 3.2] },
+ "id": "nn00888044"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "11 km NE of Salcedo, Philippines",
+ "time": 1732730699170,
+ "updated": 1732745205066,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nujz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nujz.geojson",
+ "felt": 1,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "7000nujz",
+ "ids": ",us7000nujz,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 94,
+ "dmin": 4.132,
+ "rms": 0.59,
+ "gap": 111,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 11 km NE of Salcedo, Philippines"
+ },
+ "geometry": { "type": "Point", "coordinates": [125.7403, 11.2248, 35] },
+ "id": "us7000nujz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.72,
+ "place": "50 km W of Nikolski, Alaska",
+ "time": 1732730548610,
+ "updated": 1732774983810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381388",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381388.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "av",
+ "code": "93381388",
+ "ids": ",av93381388,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.1285,
+ "rms": 0.29,
+ "gap": 171,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 50 km W of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-169.604833333333, 52.8931666666667, -1.72]
+ },
+ "id": "av93381388"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "8 km ENE of Milpitas, CA",
+ "time": 1732729766310,
+ "updated": 1732731137825,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091681",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091681.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "nc",
+ "code": "75091681",
+ "ids": ",nc75091681,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.0257,
+ "rms": 0.07,
+ "gap": 36,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 8 km ENE of Milpitas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.830833435059, 37.474666595459, 6.80999994277954]
+ },
+ "id": "nc75091681"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "4 km S of West Yellowstone, Montana",
+ "time": 1732729408980,
+ "updated": 1732732765390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087331",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087331.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "uu",
+ "code": "80087331",
+ "ids": ",uu80087331,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1109,
+ "rms": 0.14,
+ "gap": 159,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 4 km S of West Yellowstone, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.103, 44.6178333333333, 9.74]
+ },
+ "id": "uu80087331"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "2 km SW of Volcano, Hawaii",
+ "time": 1732728878440,
+ "updated": 1732728963190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543677",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543677.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74543677",
+ "ids": ",hv74543677,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.02006,
+ "rms": 0.180000007,
+ "gap": 226,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 2 km SW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.251159667969, 19.4311676025391, 4.94999980926514]
+ },
+ "id": "hv74543677"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.48000002,
+ "place": "6 km SSW of Volcano, Hawaii",
+ "time": 1732728867830,
+ "updated": 1732729034250,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543682",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543682.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 95,
+ "net": "hv",
+ "code": "74543682",
+ "ids": ",hv74543682,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.003512,
+ "rms": 0.230000004,
+ "gap": 137,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 6 km SSW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.248672485352, 19.3880004882812, 0.740000009536743]
+ },
+ "id": "hv74543682"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1500001,
+ "place": "3 km S of Pāhala, Hawaii",
+ "time": 1732728745040,
+ "updated": 1732728835490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543667",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543667.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 71,
+ "net": "hv",
+ "code": "74543667",
+ "ids": ",hv74543667,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.01727,
+ "rms": 0.140000001,
+ "gap": 133,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 3 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.474502563477, 19.1681671142578, 32.1399993896484]
+ },
+ "id": "hv74543667"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "15 km SSW of Khorugh, Tajikistan",
+ "time": 1732728662553,
+ "updated": 1732730575040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuj7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuj7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "7000nuj7",
+ "ids": ",us7000nuj7,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 118,
+ "dmin": 1.939,
+ "rms": 0.61,
+ "gap": 82,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.7 - 15 km SSW of Khorugh, Tajikistan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [71.5185, 37.3551, 112.55]
+ },
+ "id": "us7000nuj7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "4 km ESE of Hollister, CA",
+ "time": 1732728503890,
+ "updated": 1732728601392,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091676",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091676.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75091676",
+ "ids": ",nc75091676,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.1124,
+ "rms": 0.03,
+ "gap": 198,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km ESE of Hollister, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.358497619629, 36.8455009460449, 5.17999982833862]
+ },
+ "id": "nc75091676"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.99,
+ "place": "75 km W of Salamatof, Alaska",
+ "time": 1732728499330,
+ "updated": 1732774054560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381348",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381348.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 61,
+ "net": "av",
+ "code": "93381348",
+ "ids": ",av93381348,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.03562,
+ "rms": 0.25,
+ "gap": 308,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 75 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.676, 60.5231666666667, 2.71]
+ },
+ "id": "av93381348"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "73 km WSW of Nanwalek, Alaska",
+ "time": 1732728257680,
+ "updated": 1732736043040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9cors8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9cors8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f9cors8",
+ "ids": ",us7000nuj6,ak024f9cors8,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.27,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 73 km WSW of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.0911, 59.0878, 67.7]
+ },
+ "id": "ak024f9cors8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "15 km N of Balmorhea, Texas",
+ "time": 1732728173347,
+ "updated": 1732789835429,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xibx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xibx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "tx",
+ "code": "2024xibx",
+ "ids": ",tx2024xibx,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 15 km N of Balmorhea, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-103.719, 31.121, 8.689] },
+ "id": "tx2024xibx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.63,
+ "place": "8 km ENE of Milpitas, CA",
+ "time": 1732728038900,
+ "updated": 1732728136101,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091661",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091661.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "nc",
+ "code": "75091661",
+ "ids": ",nc75091661,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.02677,
+ "rms": 0.04,
+ "gap": 75,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 8 km ENE of Milpitas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.832336425781, 37.4758338928223, 6.94999980926514]
+ },
+ "id": "nc75091661"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "2 km NNW of The Geysers, CA",
+ "time": 1732727788610,
+ "updated": 1732727886095,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091656",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091656.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75091656",
+ "ids": ",nc75091656,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.01376,
+ "rms": 0.03,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.769500732422, 38.7891654968262, 1.85000002384186]
+ },
+ "id": "nc75091656"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.46,
+ "place": "5 km E of Santa Rosa, CA",
+ "time": 1732727712700,
+ "updated": 1732729774653,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091651",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091651.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "nc",
+ "code": "75091651",
+ "ids": ",nc75091651,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.0718,
+ "rms": 0.11,
+ "gap": 70,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 5 km E of Santa Rosa, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.651000976562, 38.4604988098145, 2.04999995231628]
+ },
+ "id": "nc75091651"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1500001,
+ "place": "1 km S of Pāhala, Hawaii",
+ "time": 1732726594200,
+ "updated": 1732726711690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543632",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543632.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 71,
+ "net": "hv",
+ "code": "74543632",
+ "ids": ",hv74543632,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 48,
+ "dmin": 0.03671,
+ "rms": 0.129999995,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 1 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.480667114258, 19.1878337860107, 31.75]
+ },
+ "id": "hv74543632"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "46 km SE of Glacier View, Alaska",
+ "time": 1732726581696,
+ "updated": 1732726700559,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9ca7eh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9ca7eh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f9ca7eh",
+ "ids": ",ak024f9ca7eh,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.97,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 46 km SE of Glacier View, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.1338, 61.4709, 108.3]
+ },
+ "id": "ak024f9ca7eh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "79 km W of San Antonio de los Cobres, Argentina",
+ "time": 1732725890007,
+ "updated": 1732738023040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuj2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuj2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000nuj2",
+ "ids": ",us7000nuj2,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 26,
+ "dmin": 2.503,
+ "rms": 0.89,
+ "gap": 101,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 79 km W of San Antonio de los Cobres, Argentina"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.0919, -24.1106, 175.353]
+ },
+ "id": "us7000nuj2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.14,
+ "place": "16 km E of Ocotillo Wells, CA",
+ "time": 1732724058580,
+ "updated": 1732729748729,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988648",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988648.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "ci",
+ "code": "40988648",
+ "ids": ",ci40988648,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.02152,
+ "rms": 0.17,
+ "gap": 61,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 16 km E of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.963, 33.1558333, 9.2]
+ },
+ "id": "ci40988648"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "30 km SSW of Denali National Park, Alaska",
+ "time": 1732724039773,
+ "updated": 1732724156360,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9c12jt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9c12jt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f9c12jt",
+ "ids": ",ak024f9c12jt,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.99,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 30 km SSW of Denali National Park, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.9202, 63.2791, 26.2]
+ },
+ "id": "ak024f9c12jt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.2,
+ "place": "Scotia Sea",
+ "time": 1732723158111,
+ "updated": 1732724089040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuix",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuix.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 416,
+ "net": "us",
+ "code": "7000nuix",
+ "ids": ",us7000nuix,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 74,
+ "dmin": 8.495,
+ "rms": 0.51,
+ "gap": 56,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.2 - Scotia Sea"
+ },
+ "geometry": { "type": "Point", "coordinates": [-47.6045, -60.2725, 10] },
+ "id": "us7000nuix"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.02,
+ "place": "4 km ENE of Heber, CA",
+ "time": 1732723089080,
+ "updated": 1732729244819,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988624",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988624.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "ci",
+ "code": "40988624",
+ "ids": ",ci40988624,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.07113,
+ "rms": 0.23,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 4 km ENE of Heber, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.4978333, 32.7485, 16.43]
+ },
+ "id": "ci40988624"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.95,
+ "place": "6 km SSE of Pāhala, Hawaii",
+ "time": 1732722914250,
+ "updated": 1732723088670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543557",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543557.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "hv",
+ "code": "74543557",
+ "ids": ",hv74543557,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 51,
+ "dmin": 0.006433,
+ "rms": 0.140000001,
+ "gap": 166,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km SSE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.465835571289, 19.1499996185303, 31.3600006103516]
+ },
+ "id": "hv74543557"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "14 km NNW of Chickaloon, Alaska",
+ "time": 1732722811513,
+ "updated": 1732722910131,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9bo5en",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9bo5en.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f9bo5en",
+ "ids": ",ak024f9bo5en,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.67,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 14 km NNW of Chickaloon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.5505, 61.9168, 18.7]
+ },
+ "id": "ak024f9bo5en"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1500000000000001,
+ "place": "30 km S of Morton, Washington",
+ "time": 1732722719670,
+ "updated": 1732723846320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061671",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061671.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "uw",
+ "code": "62061671",
+ "ids": ",uw62061671,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.01372,
+ "rms": 0.09,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 30 km S of Morton, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.21033333333334, 46.28783333333333, 3.59]
+ },
+ "id": "uw62061671"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "5 km NNW of The Geysers, CA",
+ "time": 1732722575000,
+ "updated": 1732723634957,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091616",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091616.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75091616",
+ "ids": ",nc75091616,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.00614,
+ "rms": 0.02,
+ "gap": 47,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.796836853027, 38.8139991760254, 2.97000002861023]
+ },
+ "id": "nc75091616"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "60 km WNW of Mohr, Iran",
+ "time": 1732722375567,
+ "updated": 1732724249040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuiu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuiu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nuiu",
+ "ids": ",us7000nuiu,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 86,
+ "dmin": 4.474,
+ "rms": 0.58,
+ "gap": 62,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 60 km WNW of Mohr, Iran"
+ },
+ "geometry": { "type": "Point", "coordinates": [52.3069, 27.7484, 10] },
+ "id": "us7000nuiu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "65 km SSW of Sola, Vanuatu",
+ "time": 1732722361820,
+ "updated": 1732724872040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuir",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuir.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nuir",
+ "ids": ",us7000nuir,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 38,
+ "dmin": 1.015,
+ "rms": 0.6,
+ "gap": 126,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 65 km SSW of Sola, Vanuatu"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [167.3887, -14.4419, 183.737]
+ },
+ "id": "us7000nuir"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "50 km E of Port Alsworth, Alaska",
+ "time": 1732721878618,
+ "updated": 1732722008572,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9bks1h",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9bks1h.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "ak",
+ "code": "024f9bks1h",
+ "ids": ",ak024f9bks1h,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 50 km E of Port Alsworth, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.3983, 60.2044, 158.8]
+ },
+ "id": "ak024f9bks1h"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "31 km W of Hakui, Japan",
+ "time": 1732721573599,
+ "updated": 1732724549040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuis",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuis.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000nuis",
+ "ids": ",us7000nuis,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 49,
+ "dmin": 1.466,
+ "rms": 0.66,
+ "gap": 53,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.3 - 31 km W of Hakui, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [136.4369, 36.9112, 10] },
+ "id": "us7000nuis"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "13 km ENE of Hualien City, Taiwan",
+ "time": 1732721543626,
+ "updated": 1732737402307,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuil",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuil.geojson",
+ "felt": 9,
+ "cdi": 3.1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 328,
+ "net": "us",
+ "code": "7000nuil",
+ "ids": ",us7000nuil,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 57,
+ "dmin": 0.729,
+ "rms": 0.82,
+ "gap": 68,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.6 - 13 km ENE of Hualien City, Taiwan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [121.7273, 24.0113, 43.625]
+ },
+ "id": "us7000nuil"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.0999999,
+ "place": "13 km ENE of Pāhala, Hawaii",
+ "time": 1732721178800,
+ "updated": 1732721293280,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543517",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543517.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "hv",
+ "code": "74543517",
+ "ids": ",hv74543517,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.03832,
+ "rms": 0.170000002,
+ "gap": 154,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 13 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.357162475586, 19.2334995269775, 28.1100006103516]
+ },
+ "id": "hv74543517"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.63,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732719897270,
+ "updated": 1732721238653,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091551",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091551.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75091551",
+ "ids": ",nc75091551,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.00511,
+ "rms": 0.01,
+ "gap": 112,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831832885742, 38.8428344726562, 1.36000001430511]
+ },
+ "id": "nc75091551"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.11,
+ "place": "6 km SSW of Volcano, Hawaii",
+ "time": 1732719630530,
+ "updated": 1732719803790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543482",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543482.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "hv",
+ "code": "74543482",
+ "ids": ",hv74543482,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.002807,
+ "rms": 0.370000005,
+ "gap": 46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km SSW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.248336791992, 19.3854999542236, 1.80999994277954]
+ },
+ "id": "hv74543482"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "9 km ENE of Milpitas, CA",
+ "time": 1732719234110,
+ "updated": 1732720636590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091531",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091531.geojson",
+ "felt": 1,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "nc",
+ "code": "75091531",
+ "ids": ",nc75091531,",
+ "sources": ",nc,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 34,
+ "dmin": 0.02519,
+ "rms": 0.06,
+ "gap": 42,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 9 km ENE of Milpitas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.829330444336, 37.4739990234375, 6.84999990463257]
+ },
+ "id": "nc75091531"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "70 km WNW of Nikiski, Alaska",
+ "time": 1732718800718,
+ "updated": 1732772433090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9b18hz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9b18hz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f9b18hz",
+ "ids": ",av93381218,ak024f9b18hz,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 70 km WNW of Nikiski, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.4815, 60.9274, 20] },
+ "id": "ak024f9b18hz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.85,
+ "place": "56 km NE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732718542990,
+ "updated": 1732719668100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71467003",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71467003.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 125,
+ "net": "pr",
+ "code": "71467003",
+ "ids": ",pr71467003,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 3,
+ "dmin": 0.349,
+ "rms": 0.21,
+ "gap": 322,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.9 - 56 km NE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-64.4803333333333, 18.7446666666667, 13.84]
+ },
+ "id": "pr71467003"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "11 km SE of Fredonia, Arizona",
+ "time": 1732718224720,
+ "updated": 1732720191550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087326",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087326.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "uu",
+ "code": "80087326",
+ "ids": ",uu80087326,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1773,
+ "rms": 0.1,
+ "gap": 116,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 11 km SE of Fredonia, Arizona"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.425333333333, 36.878, 19.73]
+ },
+ "id": "uu80087326"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "27 km SW of Nanwalek, Alaska",
+ "time": 1732717797042,
+ "updated": 1732717878393,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9axml4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9axml4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f9axml4",
+ "ids": ",ak024f9axml4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 27 km SW of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.3031, 59.2028, 63.6]
+ },
+ "id": "ak024f9axml4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "26 km SE of Chickaloon, Alaska",
+ "time": 1732717792266,
+ "updated": 1732717892036,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9axm7u",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9axm7u.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f9axm7u",
+ "ids": ",ak024f9axm7u,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 26 km SE of Chickaloon, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.0601, 61.6555, 6.2] },
+ "id": "ak024f9axm7u"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.13,
+ "place": "4 km W of Cobb, CA",
+ "time": 1732717629110,
+ "updated": 1732718535347,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091511",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091511.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "nc",
+ "code": "75091511",
+ "ids": ",nc75091511,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.01224,
+ "rms": 0.02,
+ "gap": 180,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km W of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.765830993652, 38.8171653747559, 1.94000005722046]
+ },
+ "id": "nc75091511"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.34,
+ "place": "6 km ENE of La Parguera, Puerto Rico",
+ "time": 1732717186440,
+ "updated": 1732720059470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466993",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466993.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 84,
+ "net": "pr",
+ "code": "71466993",
+ "ids": ",pr71466993,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.06084,
+ "rms": 0.08,
+ "gap": 204,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 6 km ENE of La Parguera, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9851666666667, 17.9928333333333, 10.7]
+ },
+ "id": "pr71466993"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.59,
+ "place": "10 km ENE of Borrego Springs, CA",
+ "time": 1732717182710,
+ "updated": 1732719014570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988504",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988504.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ci",
+ "code": "40988504",
+ "ids": ",ci40988504,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 73,
+ "dmin": 0.09085,
+ "rms": 0.21,
+ "gap": 30,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 10 km ENE of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.27, 33.2861667, 4.72]
+ },
+ "id": "ci40988504"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.39,
+ "place": "77 km NW of Ninilchik, Alaska",
+ "time": 1732716897030,
+ "updated": 1732772793890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381198",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381198.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381198",
+ "ids": ",av93381198,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.03448,
+ "rms": 0.04,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 77 km NW of Ninilchik, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.7685, 60.486, 0.61] },
+ "id": "av93381198"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "35 km SE of Pedro Bay, Alaska",
+ "time": 1732716291628,
+ "updated": 1732716426092,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9as99m",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9as99m.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f9as99m",
+ "ids": ",ak024f9as99m,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.68,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 35 km SE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.6853, 59.5513, 121.1]
+ },
+ "id": "ak024f9as99m"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.48,
+ "place": "7 km NW of Little Lake, CA",
+ "time": 1732716223970,
+ "updated": 1732726869406,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690604",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690604.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "37690604",
+ "ids": ",ci37690604,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.05404,
+ "rms": 0.07,
+ "gap": 90,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 7 km NW of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.9505, 35.9843333, 5.78]
+ },
+ "id": "ci37690604"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.65,
+ "place": "6 km S of Coso Junction, CA",
+ "time": 1732716194180,
+ "updated": 1732726608169,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988472",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988472.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40988472",
+ "ids": ",ci40988472,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.05326,
+ "rms": 0.1,
+ "gap": 91,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 6 km S of Coso Junction, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.9515, 35.9881667, 4.99]
+ },
+ "id": "ci40988472"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.05,
+ "place": "59 km WNW of Tyonek, Alaska",
+ "time": 1732715723440,
+ "updated": 1732771698730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381163",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381163.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381163",
+ "ids": ",av93381163,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.04864,
+ "rms": 0.14,
+ "gap": 102,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 59 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2195, 61.1783333333333, 7.28]
+ },
+ "id": "av93381163"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.38,
+ "place": "13 km SE of Anza, CA",
+ "time": 1732715600150,
+ "updated": 1732721027034,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988448",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988448.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ci",
+ "code": "40988448",
+ "ids": ",ci40988448,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.03421,
+ "rms": 0.11,
+ "gap": 77,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 13 km SE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5706667, 33.4728333, 10.87]
+ },
+ "id": "ci40988448"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "14 km ESE of Lincoln, Montana",
+ "time": 1732715597830,
+ "updated": 1732719396060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067063",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067063.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "mb",
+ "code": "90067063",
+ "ids": ",mb90067063,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.05084,
+ "rms": 0.06,
+ "gap": 113,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 14 km ESE of Lincoln, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.520833333333, 46.885, 10.1]
+ },
+ "id": "mb90067063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.68,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732715558270,
+ "updated": 1732717040161,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091501",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091501.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75091501",
+ "ids": ",nc75091501,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.006643,
+ "rms": 0.03,
+ "gap": 100,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.843330383301, 38.8216667175293, 1.99000000953674]
+ },
+ "id": "nc75091501"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "22 km WSW of Aleneva, Alaska",
+ "time": 1732714993110,
+ "updated": 1732717797040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9af3is",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9af3is.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f9af3is",
+ "ids": ",us7000nui2,ak024f9af3is,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.3,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 22 km WSW of Aleneva, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.2759, 57.9944, 69.7]
+ },
+ "id": "ak024f9af3is"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "1 km E of Mullan, Idaho",
+ "time": 1732714704500,
+ "updated": 1732721250310,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067078",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067078.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "mb",
+ "code": "90067078",
+ "ids": ",mb90067078,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.4299,
+ "rms": 0.09,
+ "gap": 119,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 1 km E of Mullan, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.7785, 47.4691666666667, 0.02]
+ },
+ "id": "mb90067078"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.79,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732714385690,
+ "updated": 1732716569103,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091496",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091496.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75091496",
+ "ids": ",nc75091496,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.007506,
+ "rms": 0.02,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778335571289, 38.792667388916, 1.52999997138977]
+ },
+ "id": "nc75091496"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.62,
+ "place": "13 km SSE of Manton, CA",
+ "time": 1732714330030,
+ "updated": 1732715667989,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091491",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091491.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "nc",
+ "code": "75091491",
+ "ids": ",nc75091491,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.07398,
+ "rms": 0.05,
+ "gap": 174,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 13 km SSE of Manton, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.778167724609, 40.3183326721191, 10.4499998092651]
+ },
+ "id": "nc75091491"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "57 km W of Tyonek, Alaska",
+ "time": 1732714319011,
+ "updated": 1732771110990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9acmkd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9acmkd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ak",
+ "code": "024f9acmkd",
+ "ids": ",av93381148,ak024f9acmkd,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.48,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 57 km W of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.1859, 61.1504, 26.5]
+ },
+ "id": "ak024f9acmkd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "1 km E of Mullan, Idaho",
+ "time": 1732713879660,
+ "updated": 1732720883680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067073",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067073.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "mb",
+ "code": "90067073",
+ "ids": ",mb90067073,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.4316,
+ "rms": 0.1,
+ "gap": 119,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 1 km E of Mullan, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.780333333333, 47.4711666666667, 0.02]
+ },
+ "id": "mb90067073"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "46 km NNW of Valdez, Alaska",
+ "time": 1732713835991,
+ "updated": 1732713934610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9aawlr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9aawlr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f9aawlr",
+ "ids": ",ak024f9aawlr,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.54,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 46 km NNW of Valdez, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.6761, 61.5201, 30.6]
+ },
+ "id": "ak024f9aawlr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "8 km SSE of Livengood, Alaska",
+ "time": 1732713313124,
+ "updated": 1732713485334,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f9a93kg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f9a93kg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f9a93kg",
+ "ids": ",ak024f9a93kg,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.39,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 8 km SSE of Livengood, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.498, 65.4531, 1.7] },
+ "id": "ak024f9a93kg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "13 km ENE of Ridgecrest, CA",
+ "time": 1732713199380,
+ "updated": 1732719005612,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988432",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988432.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40988432",
+ "ids": ",ci40988432,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.09488,
+ "rms": 0.14,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 13 km ENE of Ridgecrest, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.54, 35.6591667, 8.63]
+ },
+ "id": "ci40988432"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.21,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732712580740,
+ "updated": 1732716680630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087321",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087321.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "uu",
+ "code": "80087321",
+ "ids": ",uu80087321,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.04828,
+ "rms": 0.09,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.2 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.992833333333, 44.8066666666667, 8.87]
+ },
+ "id": "uu80087321"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.55,
+ "place": "12 km ESE of Anza, CA",
+ "time": 1732712486150,
+ "updated": 1732719007610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988424",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988424.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40988424",
+ "ids": ",ci40988424,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.04511,
+ "rms": 0.11,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 12 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.555, 33.5166667, 13.46]
+ },
+ "id": "ci40988424"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.45,
+ "place": "7 km ENE of Anza, CA",
+ "time": 1732712171120,
+ "updated": 1732719024971,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988416",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988416.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "ci",
+ "code": "40988416",
+ "ids": ",ci40988416,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.0184,
+ "rms": 0.11,
+ "gap": 61,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 7 km ENE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6103333, 33.5841667, 13.19]
+ },
+ "id": "ci40988416"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "6 km SSE of Santa Clarita, CA",
+ "time": 1732711913550,
+ "updated": 1732726198144,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988408",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988408.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40988408",
+ "ids": ",ci40988408,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.06954,
+ "rms": 0.22,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km SSE of Santa Clarita, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.4816667, 34.362, 10.95]
+ },
+ "id": "ci40988408"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "29 km WNW of Moirāng, India",
+ "time": 1732711808555,
+ "updated": 1732721028490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuhz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuhz.geojson",
+ "felt": 2,
+ "cdi": 4,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 285,
+ "net": "us",
+ "code": "7000nuhz",
+ "ids": ",us7000nuhz,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 26,
+ "dmin": 3.615,
+ "rms": 0.69,
+ "gap": 76,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 29 km WNW of Moirāng, India"
+ },
+ "geometry": { "type": "Point", "coordinates": [93.5059, 24.595, 73.784] },
+ "id": "us7000nuhz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "12 km NW of The Geysers, CA",
+ "time": 1732711723020,
+ "updated": 1732713738758,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091476",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091476.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75091476",
+ "ids": ",nc75091476,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.008064,
+ "rms": 0.02,
+ "gap": 69,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 12 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.876167297363, 38.8325004577637, 2.83999991416931]
+ },
+ "id": "nc75091476"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -1.21,
+ "place": "63 km ENE of Pedro Bay, Alaska",
+ "time": 1732711166910,
+ "updated": 1732770628680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381103",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381103.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381103",
+ "ids": ",av93381103,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01903,
+ "rms": 0.07,
+ "gap": 95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.2 - 63 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.080333333333, 60.0403333333333, 0.77]
+ },
+ "id": "av93381103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "36 km NNW of Toyah, Texas",
+ "time": 1732710989583,
+ "updated": 1732715772463,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xhsn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xhsn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xhsn",
+ "ids": ",tx2024xhsn,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 36 km NNW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.975, 31.608, 6.6254]
+ },
+ "id": "tx2024xhsn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "18 km SW of Ester, Alaska",
+ "time": 1732710813753,
+ "updated": 1732710914597,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f99rkfz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f99rkfz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f99rkfz",
+ "ids": ",ak024f99rkfz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.44,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 18 km SW of Ester, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.2392, 64.7084, 17.3]
+ },
+ "id": "ak024f99rkfz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "19 km SSE of Tubajon, Philippines",
+ "time": 1732710794118,
+ "updated": 1732712631673,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuhy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuhy.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 370,
+ "net": "us",
+ "code": "7000nuhy",
+ "ids": ",us7000nuhy,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 94,
+ "dmin": 3.072,
+ "rms": 0.84,
+ "gap": 72,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 19 km SSE of Tubajon, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [125.6071, 10.1617, 117.804]
+ },
+ "id": "us7000nuhy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.11,
+ "place": "64 km WNW of Tyonek, Alaska",
+ "time": 1732710345440,
+ "updated": 1732769985250,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381088",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381088.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381088",
+ "ids": ",av93381088,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.04631,
+ "rms": 0.09,
+ "gap": 172,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 64 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.248166666667, 61.2763333333333, 2.04]
+ },
+ "id": "av93381088"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "54 km SE of Pope-Vannoy Landing, Alaska",
+ "time": 1732710078151,
+ "updated": 1732710221426,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f99oynb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f99oynb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f99oynb",
+ "ids": ",ak024f99oynb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.4,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 54 km SE of Pope-Vannoy Landing, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-153.7483, 59.2439, 111] },
+ "id": "ak024f99oynb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.23,
+ "place": "8 km NW of The Geysers, CA",
+ "time": 1732709917760,
+ "updated": 1732711035452,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091456",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091456.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75091456",
+ "ids": ",nc75091456,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.01653,
+ "rms": 0.07,
+ "gap": 141,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.2 - 8 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831497192383, 38.8223342895508, 5.1399998664856]
+ },
+ "id": "nc75091456"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "108 km WSW of Constitución, Chile",
+ "time": 1732709390292,
+ "updated": 1732710785040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuhu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuhu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "7000nuhu",
+ "ids": ",us7000nuhu,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 1.715,
+ "rms": 0.47,
+ "gap": 218,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - 108 km WSW of Constitución, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.5244, -35.6951, 19.723]
+ },
+ "id": "us7000nuhu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.44,
+ "place": "21 km W of Sitka, Alaska",
+ "time": 1732709130620,
+ "updated": 1732770588350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027529",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027529.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027529",
+ "ids": ",av93027529,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01334,
+ "rms": 0.24,
+ "gap": 168,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 21 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.677166666667, 57.0683333333333, 7.45]
+ },
+ "id": "av93027529"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.3,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732708402460,
+ "updated": 1732769317130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381058",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381058.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381058",
+ "ids": ",av93381058,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.06514,
+ "rms": 0.06,
+ "gap": 141,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2765, 61.3048333333333, 1.14]
+ },
+ "id": "av93381058"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.78,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732708221090,
+ "updated": 1732716825510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087311",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087311.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "uu",
+ "code": "80087311",
+ "ids": ",uu80087311,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.04344,
+ "rms": 0.09,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.9925, 44.8016666666667, 9.06]
+ },
+ "id": "uu80087311"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732708179000,
+ "updated": 1732718009580,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087306",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087306.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "uu",
+ "code": "80087306",
+ "ids": ",uu80087306,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.04188,
+ "rms": 0.11,
+ "gap": 119,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.990333333333, 44.7996666666667, 9.37]
+ },
+ "id": "uu80087306"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.14,
+ "place": "64 km SW of Nikolski, Alaska",
+ "time": 1732707822330,
+ "updated": 1732768885000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027524",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027524.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "av",
+ "code": "93027524",
+ "ids": ",av93027524,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.2449,
+ "rms": 0.24,
+ "gap": 274,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 64 km SW of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-169.574166666667, 52.5595, 14.71]
+ },
+ "id": "av93027524"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.68,
+ "place": "8 km ESE of Julian, CA",
+ "time": 1732707379750,
+ "updated": 1732728803624,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988360",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988360.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40988360",
+ "ids": ",ci40988360,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.06963,
+ "rms": 0.16,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km ESE of Julian, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5226667, 33.051, 16.25]
+ },
+ "id": "ci40988360"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.86,
+ "place": "62 km ENE of Pedro Bay, Alaska",
+ "time": 1732706829020,
+ "updated": 1732769136190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381043",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381043.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93381043",
+ "ids": ",av93381043,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.02902,
+ "rms": 0.23,
+ "gap": 116,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 62 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.095833333333, 60.0333333333333, 0.84]
+ },
+ "id": "av93381043"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.66,
+ "place": "17 km S of Potala Pastillo, Puerto Rico",
+ "time": 1732706500900,
+ "updated": 1732707499460,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466973",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466973.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 109,
+ "net": "pr",
+ "code": "71466973",
+ "ids": ",pr71466973,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.2214,
+ "rms": 0.26,
+ "gap": 220,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.7 - 17 km S of Potala Pastillo, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.5288333333333, 17.8328333333333, 12.26]
+ },
+ "id": "pr71466973"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "7 km S of Salcha, Alaska",
+ "time": 1732706466707,
+ "updated": 1732706582504,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f993i5q",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f993i5q.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ak",
+ "code": "024f993i5q",
+ "ids": ",ak024f993i5q,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.84,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 7 km S of Salcha, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.8847, 64.4585, 11.3]
+ },
+ "id": "ak024f993i5q"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "56 km S of Whites City, New Mexico",
+ "time": 1732706277878,
+ "updated": 1732714514352,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xhpw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xhpw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xhpw",
+ "ids": ",tx2024xhpw,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 57,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 56 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.368, 31.669, 7.6379]
+ },
+ "id": "tx2024xhpw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "1 km of The Geysers, CA",
+ "time": 1732706235460,
+ "updated": 1732708635151,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091421",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091421.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75091421",
+ "ids": ",nc75091421,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.01627,
+ "rms": 0.02,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 1 km of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.759498596191, 38.7843322753906, 2.26999998092651]
+ },
+ "id": "nc75091421"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "65 km ENE of Pedro Bay, Alaska",
+ "time": 1732706108636,
+ "updated": 1732706321428,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f99280p",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f99280p.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f99280p",
+ "ids": ",ak024f99280p,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 65 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.0604, 60.0535, 97.3]
+ },
+ "id": "ak024f99280p"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.23,
+ "place": "18 km NNE of Isabela, Puerto Rico",
+ "time": 1732705530520,
+ "updated": 1732708168820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466968",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466968.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "pr",
+ "code": "71466968",
+ "ids": ",pr71466968,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.2438,
+ "rms": 0.2,
+ "gap": 248,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 18 km NNE of Isabela, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.932, 18.6431666666667, 17.9]
+ },
+ "id": "pr71466968"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75,
+ "place": "11 km E of Pāhala, Hawaii",
+ "time": 1732704798190,
+ "updated": 1732704894540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543222",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543222.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "hv",
+ "code": "74543222",
+ "ids": ",hv74543222,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.05182,
+ "rms": 0.119999997,
+ "gap": 191,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 11 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.370498657227, 19.1921672821045, 31.0699996948242]
+ },
+ "id": "hv74543222"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "5 km WNW of Mammoth Lakes, CA",
+ "time": 1732703968370,
+ "updated": 1732707443012,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091401",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091401.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75091401",
+ "ids": ",nc75091401,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.007322,
+ "rms": 0.04,
+ "gap": 105,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 5 km WNW of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.037498474121, 37.6398315429688, -1.01999998092651]
+ },
+ "id": "nc75091401"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "12 km SSW of Smith Valley, Nevada",
+ "time": 1732703915378,
+ "updated": 1732727024154,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888028",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888028.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nn",
+ "code": "00888028",
+ "ids": ",nn00888028,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.282,
+ "rms": 0.1503,
+ "gap": 74.35,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 12 km SSW of Smith Valley, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.3776, 38.6772, 9.3] },
+ "id": "nn00888028"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84000003,
+ "place": "6 km SSW of Volcano, Hawaii",
+ "time": 1732703892770,
+ "updated": 1732704070010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543212",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543212.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74543212",
+ "ids": ",hv74543212,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.005329,
+ "rms": 0.25999999,
+ "gap": 48,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km SSW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.252838134766, 19.3906669616699, 1.37999999523163]
+ },
+ "id": "hv74543212"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "2 km WSW of Anderson Springs, CA",
+ "time": 1732703824540,
+ "updated": 1732706836940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091396",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091396.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75091396",
+ "ids": ",nc75091396,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.009816,
+ "rms": 0.18,
+ "gap": 127,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 2 km WSW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.71183013916, 38.7685012817383, 2.22000002861023]
+ },
+ "id": "nc75091396"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.51,
+ "place": "75 km ENE of Honomu, Hawaii",
+ "time": 1732703376450,
+ "updated": 1732789904908,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543202",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543202.geojson",
+ "felt": 3,
+ "cdi": 3.1,
+ "mmi": 1.338,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 190,
+ "net": "hv",
+ "code": "74543202",
+ "ids": ",hv74543202,us7000nugh,",
+ "sources": ",hv,us,",
+ "types": ",dyfi,origin,phase-data,shakemap,",
+ "nst": 66,
+ "dmin": 0.6753,
+ "rms": 0.13,
+ "gap": 304,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.5 - 75 km ENE of Honomu, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.422333333333, 20.0678333333333, 32.25]
+ },
+ "id": "hv74543202"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "3 km W of Lucien, Oklahoma",
+ "time": 1732703336880,
+ "updated": 1732712836894,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xhog",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xhog.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "ok",
+ "code": "2024xhog",
+ "ids": ",ok2024xhog,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 81,
+ "dmin": 0.06928640364,
+ "rms": 0.23,
+ "gap": 28,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 3 km W of Lucien, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.49516667, 36.26966667, 6.9]
+ },
+ "id": "ok2024xhog"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.89,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732703299520,
+ "updated": 1732703395192,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091386",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091386.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "nc",
+ "code": "75091386",
+ "ids": ",nc75091386,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01383,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.041496276855, 37.6331672668457, -1.28999996185303]
+ },
+ "id": "nc75091386"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732703274710,
+ "updated": 1732706238879,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091381",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091381.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nc",
+ "code": "75091381",
+ "ids": ",nc75091381,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.00517,
+ "rms": 0.03,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.83032989502, 38.8418350219727, 1.02999997138977]
+ },
+ "id": "nc75091381"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.72,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732703267760,
+ "updated": 1732705767819,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091376",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091376.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "nc",
+ "code": "75091376",
+ "ids": ",nc75091376,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.008579,
+ "rms": 0.04,
+ "gap": 121,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.04133605957, 37.634334564209, -0.959999978542328]
+ },
+ "id": "nc75091376"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.21,
+ "place": "34 km of Alder Springs, CA",
+ "time": 1732702992160,
+ "updated": 1732705171743,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091361",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091361.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 75,
+ "net": "nc",
+ "code": "75091361",
+ "ids": ",nc75091361,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": 56,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 34 km of Alder Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.824668884277, 39.945499420166, -0.689999997615814]
+ },
+ "id": "nc75091361"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "17 km ESE of Anza, CA",
+ "time": 1732702884310,
+ "updated": 1732719080840,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988352",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988352.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40988352",
+ "ids": ",ci40988352,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 75,
+ "dmin": 0.06867,
+ "rms": 0.21,
+ "gap": 35,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 17 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5238333, 33.474, 11.93]
+ },
+ "id": "ci40988352"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "26 km SE of Gakona, Alaska",
+ "time": 1732702852819,
+ "updated": 1732768181740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f98hye9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f98hye9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024f98hye9",
+ "ids": ",av93027519,ak024f98hye9,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.64,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 26 km SE of Gakona, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-144.9081, 62.1483, 25.2]
+ },
+ "id": "ak024f98hye9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "6 km N of Simms, Montana",
+ "time": 1732702823020,
+ "updated": 1732722284910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067083",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067083.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "mb",
+ "code": "90067083",
+ "ids": ",mb90067083,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.5116,
+ "rms": 0.17,
+ "gap": 239,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 6 km N of Simms, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.924666666667, 47.554, 15.75]
+ },
+ "id": "mb90067083"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.26,
+ "place": "24 km SW of Ocotillo Wells, CA",
+ "time": 1732702450990,
+ "updated": 1732719143830,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988344",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988344.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40988344",
+ "ids": ",ci40988344,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 59,
+ "dmin": 0.07112,
+ "rms": 0.21,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 24 km SW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.343, 33.0146667, 10.47]
+ },
+ "id": "ci40988344"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.39,
+ "place": "67 km W of Tyonek, Alaska",
+ "time": 1732702414280,
+ "updated": 1732767940500,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93381003",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93381003.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "av",
+ "code": "93381003",
+ "ids": ",av93381003,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1752,
+ "rms": 0.17,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 67 km W of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.377833333333, 61.022, 10.85]
+ },
+ "id": "av93381003"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.37,
+ "place": "9 km S of Idyllwild, CA",
+ "time": 1732702343960,
+ "updated": 1732719071538,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988336",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988336.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ci",
+ "code": "40988336",
+ "ids": ",ci40988336,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.05491,
+ "rms": 0.1,
+ "gap": 98,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 9 km S of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7013333, 33.6571667, 17.17]
+ },
+ "id": "ci40988336"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "62 km WNW of Happy Valley, Alaska",
+ "time": 1732701985403,
+ "updated": 1732702176740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f98ew91",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f98ew91.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f98ew91",
+ "ids": ",ak024f98ew91,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.9,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 62 km WNW of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.8051, 60.0974, 116.4]
+ },
+ "id": "ak024f98ew91"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "3 km WSW of Anderson Springs, CA",
+ "time": 1732701908650,
+ "updated": 1732704567677,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091346",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091346.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "nc",
+ "code": "75091346",
+ "ids": ",nc75091346,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.008095,
+ "rms": 0.02,
+ "gap": 118,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 3 km WSW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.714668273926, 38.7601661682129, 1.76999998092651]
+ },
+ "id": "nc75091346"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.19,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732701701290,
+ "updated": 1732767352790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380983",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380983.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93380983",
+ "ids": ",av93380983,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06988,
+ "rms": 0.07,
+ "gap": 121,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.272, 61.3093333333333, -0.81]
+ },
+ "id": "av93380983"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.27,
+ "place": "14 km WNW of Round Valley, CA",
+ "time": 1732701690620,
+ "updated": 1732703969606,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091341",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091341.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "nc",
+ "code": "75091341",
+ "ids": ",nc75091341,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.1924,
+ "rms": 0.05,
+ "gap": 179,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 14 km WNW of Round Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.749336242676, 37.4488334655762, 2.50999999046326]
+ },
+ "id": "nc75091341"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.76,
+ "place": "6 km NW of Stanley, Idaho",
+ "time": 1732701399450,
+ "updated": 1732720054890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067068",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067068.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "mb",
+ "code": "90067068",
+ "ids": ",mb90067068,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1853,
+ "rms": 0.16,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km NW of Stanley, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.99, 44.2601666666667, 1.99]
+ },
+ "id": "mb90067068"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.77999997,
+ "place": "7 km NNE of Pāhala, Hawaii",
+ "time": 1732701342060,
+ "updated": 1732701439310,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543152",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543152.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74543152",
+ "ids": ",hv74543152,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.04573,
+ "rms": 0.100000001,
+ "gap": 97,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 7 km NNE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.438995361328, 19.2611675262451, 31.3500003814697]
+ },
+ "id": "hv74543152"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "6 km WNW of Mammoth Lakes, CA",
+ "time": 1732700627380,
+ "updated": 1732700725058,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091326",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091326.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75091326",
+ "ids": ",nc75091326,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01285,
+ "rms": 0.03,
+ "gap": 88,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km WNW of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.043502807617, 37.6370010375977, -1.4099999666214]
+ },
+ "id": "nc75091326"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "28 km S of Malaga, New Mexico",
+ "time": 1732700559085,
+ "updated": 1732706070642,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xhmt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xhmt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xhmt",
+ "ids": ",tx2024xhmt,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 34,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 28 km S of Malaga, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.018, 31.972, 7.7661]
+ },
+ "id": "tx2024xhmt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.52,
+ "place": "14 km WNW of Anza, CA",
+ "time": 1732700419230,
+ "updated": 1732719147860,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988328",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988328.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "40988328",
+ "ids": ",ci40988328,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.04978,
+ "rms": 0.15,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 14 km WNW of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8135, 33.5891667, 4.83]
+ },
+ "id": "ci40988328"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.15,
+ "place": "9 km SSW of Idyllwild, CA",
+ "time": 1732699607750,
+ "updated": 1732739886766,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988320",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988320.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "ci",
+ "code": "40988320",
+ "ids": ",ci40988320,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.05603,
+ "rms": 0.18,
+ "gap": 100,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 9 km SSW of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.741, 33.6596667, 14.95]
+ },
+ "id": "ci40988320"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732699461720,
+ "updated": 1732699559751,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091316",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091316.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75091316",
+ "ids": ",nc75091316,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01469,
+ "rms": 0.05,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.043998718262, 37.6341667175293, -1.42999994754791]
+ },
+ "id": "nc75091316"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "19 km NNE of Fishhook, Alaska",
+ "time": 1732699461424,
+ "updated": 1732699564996,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f97xb8e",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f97xb8e.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f97xb8e",
+ "ids": ",ak024f97xb8e,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.57,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 19 km NNE of Fishhook, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.0663, 61.896, 6.3] },
+ "id": "ak024f97xb8e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732699412220,
+ "updated": 1732699509804,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091306",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091306.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75091306",
+ "ids": ",nc75091306,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01468,
+ "rms": 0.05,
+ "gap": 128,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.043830871582, 37.6339988708496, -1.69000005722046]
+ },
+ "id": "nc75091306"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "84 km ESE of Maneadero, B.C., MX",
+ "time": 1732699364980,
+ "updated": 1732738836452,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988312",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988312.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "ci",
+ "code": "40988312",
+ "ids": ",ci40988312,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.1678,
+ "rms": 0.16,
+ "gap": 82,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 84 km ESE of Maneadero, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.6981667, 31.5428333, 10.75]
+ },
+ "id": "ci40988312"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.23000002,
+ "place": "4 km SSW of Pāhala, Hawaii",
+ "time": 1732699177920,
+ "updated": 1732699280590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543137",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543137.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "hv",
+ "code": "74543137",
+ "ids": ",hv74543137,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.03065,
+ "rms": 0.129999995,
+ "gap": 120,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 4 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.493667602539, 19.1625003814697, 32.7000007629395]
+ },
+ "id": "hv74543137"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "1 km SSW of Healy, Alaska",
+ "time": 1732699171626,
+ "updated": 1732699310250,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f97w9fu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f97w9fu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f97w9fu",
+ "ids": ",ak024f97w9fu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.79,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 1 km SSW of Healy, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.9832, 63.8422, 24.4]
+ },
+ "id": "ak024f97w9fu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732698663900,
+ "updated": 1732698759720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091271",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091271.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75091271",
+ "ids": ",nc75091271,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01577,
+ "rms": 0.07,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.045669555664, 37.6341667175293, -2.55999994277954]
+ },
+ "id": "nc75091271"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.46,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732698576760,
+ "updated": 1732698674787,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091266",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091266.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75091266",
+ "ids": ",nc75091266,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.01382,
+ "rms": 0.03,
+ "gap": 93,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.043830871582, 37.6355018615723, -1.99000000953674]
+ },
+ "id": "nc75091266"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "73 km WSW of Karluk, Alaska",
+ "time": 1732698534188,
+ "updated": 1732698664107,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f97tyay",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f97tyay.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f97tyay",
+ "ids": ",ak024f97tyay,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.77,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 73 km WSW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.5756, 57.3049, 93.4]
+ },
+ "id": "ak024f97tyay"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.41,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732698459060,
+ "updated": 1732698555752,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091256",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091256.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "nc",
+ "code": "75091256",
+ "ids": ",nc75091256,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.01241,
+ "rms": 0.01,
+ "gap": 83,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.041000366211, 37.6348342895508, -0.910000026226044]
+ },
+ "id": "nc75091256"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.19000006,
+ "place": "13 km ENE of Pāhala, Hawaii",
+ "time": 1732698356090,
+ "updated": 1732698467590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543112",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543112.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "hv",
+ "code": "74543112",
+ "ids": ",hv74543112,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 57,
+ "dmin": 0.03916,
+ "rms": 0.150000006,
+ "gap": 136,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 13 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.367660522461, 19.2648334503174, 30.0400009155273]
+ },
+ "id": "hv74543112"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "8 km NNW of Rancho Cucamonga, CA",
+ "time": 1732698316560,
+ "updated": 1732730928451,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988304",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988304.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40988304",
+ "ids": ",ci40988304,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.06878,
+ "rms": 0.16,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 8 km NNW of Rancho Cucamonga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5993333, 34.1905, 6.23]
+ },
+ "id": "ci40988304"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01,
+ "place": "9 km NE of Healdsburg, CA",
+ "time": 1732698205970,
+ "updated": 1732698386450,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091246",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091246.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "nc",
+ "code": "75091246",
+ "ids": ",nc75091246,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,",
+ "nst": 49,
+ "dmin": 0.05405,
+ "rms": 0.07,
+ "gap": 40,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 9 km NE of Healdsburg, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.807662963867, 38.6736679077148, 5.8600001335144]
+ },
+ "id": "nc75091246"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.58,
+ "place": "9 km NE of Healdsburg, CA",
+ "time": 1732698076110,
+ "updated": 1732698175566,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091236",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091236.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "nc",
+ "code": "75091236",
+ "ids": ",nc75091236,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.05476,
+ "rms": 0.05,
+ "gap": 99,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 9 km NE of Healdsburg, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.805335998535, 38.6708335876465, 7.34000015258789]
+ },
+ "id": "nc75091236"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5,
+ "place": "42 km ENE of Bacolod, Philippines",
+ "time": 1732697950742,
+ "updated": 1732700221603,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nug7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nug7.geojson",
+ "felt": 2,
+ "cdi": 3.8,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 385,
+ "net": "us",
+ "code": "7000nug7",
+ "ids": ",us7000nug7,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 62,
+ "dmin": 2.28,
+ "rms": 1.2,
+ "gap": 73,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.0 - 42 km ENE of Bacolod, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [126.6251, 9.1146, 59.188]
+ },
+ "id": "us7000nug7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "3 km WSW of Anderson Springs, CA",
+ "time": 1732697810120,
+ "updated": 1732697905004,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091221",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091221.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75091221",
+ "ids": ",nc75091221,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.007849,
+ "rms": 0.03,
+ "gap": 116,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 3 km WSW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.714836120605, 38.7611656188965, 1.19000005722046]
+ },
+ "id": "nc75091221"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.35,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732697742340,
+ "updated": 1732702167410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091201",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091201.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "nc",
+ "code": "75091201",
+ "ids": ",nc75091201,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.02012,
+ "rms": 0.31,
+ "gap": 136,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778999328613, 38.7879981994629, 10.8199996948242]
+ },
+ "id": "nc75091201"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.67,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732697738460,
+ "updated": 1732758075244,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091226",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091226.geojson",
+ "felt": 91,
+ "cdi": 3.4,
+ "mmi": 4.549,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 238,
+ "net": "nc",
+ "code": "75091226",
+ "ids": ",ew1732697750,nc75091216,nc75091226,us7000nufz,",
+ "sources": ",ew,nc,nc,us,",
+ "types": ",associate,disassociate,dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,shake-alert,shakemap,",
+ "nst": 35,
+ "dmin": 0.01284,
+ "rms": 0.06,
+ "gap": 55,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.7 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.041166666667, 37.6343333333333, -0.84]
+ },
+ "id": "nc75091226"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.67,
+ "place": "5 km WNW of Mammoth Lakes, CA",
+ "time": 1732697701750,
+ "updated": 1732702769482,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091206",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091206.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 43,
+ "net": "nc",
+ "code": "75091206",
+ "ids": ",nc75091206,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.009832,
+ "rms": 0.04,
+ "gap": 136,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 5 km WNW of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.039329528809, 37.6373329162598, -1.03999996185303]
+ },
+ "id": "nc75091206"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.47,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732697675610,
+ "updated": 1732700538209,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091186",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091186.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "nc",
+ "code": "75091186",
+ "ids": ",nc75091186,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.01262,
+ "rms": 0.04,
+ "gap": 85,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.041999816895, 37.6355018615723, -1.01999998092651]
+ },
+ "id": "nc75091186"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.44,
+ "place": "3 km SW of Anderson Springs, CA",
+ "time": 1732697661820,
+ "updated": 1732701136284,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091196",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091196.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "nc",
+ "code": "75091196",
+ "ids": ",nc75091196,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 62,
+ "dmin": 0.01095,
+ "rms": 0.08,
+ "gap": 39,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 3 km SW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.713668823242, 38.7550010681152, 1.35000002384186]
+ },
+ "id": "nc75091196"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.35,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732697647170,
+ "updated": 1732699935140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091181",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091181.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "nc",
+ "code": "75091181",
+ "ids": ",nc75091181,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.01075,
+ "rms": 0.04,
+ "gap": 61,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.040000915527, 37.6365013122559, -0.860000014305115]
+ },
+ "id": "nc75091181"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.98,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732697640080,
+ "updated": 1732701135284,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091191",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091191.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 60,
+ "net": "nc",
+ "code": "75091191",
+ "ids": ",nc75091191,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.01437,
+ "rms": 0.24,
+ "gap": 67,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.043663024902, 37.634334564209, -2.83999991416931]
+ },
+ "id": "nc75091191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732697540350,
+ "updated": 1732699337072,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091176",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091176.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75091176",
+ "ids": ",nc75091176,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.01144,
+ "rms": 0.02,
+ "gap": 89,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.04133605957, 37.636833190918, -1.49000000953674]
+ },
+ "id": "nc75091176"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732697524620,
+ "updated": 1732698735999,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091171",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091171.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "nc",
+ "code": "75091171",
+ "ids": ",nc75091171,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.01106,
+ "rms": 0.04,
+ "gap": 61,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.040168762207, 37.6361656188965, -0.970000028610229]
+ },
+ "id": "nc75091171"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.24,
+ "place": "5 km WNW of Mammoth Lakes, CA",
+ "time": 1732697478430,
+ "updated": 1732698571069,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091166",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091166.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "nc",
+ "code": "75091166",
+ "ids": ",nc75091166,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.04263,
+ "rms": 0.07,
+ "gap": 154,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 5 km WNW of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.038497924805, 37.6373329162598, -0.379999995231628]
+ },
+ "id": "nc75091166"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.29,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732697474640,
+ "updated": 1732698570979,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091161",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091161.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "nc",
+ "code": "75091161",
+ "ids": ",nc75091161,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.013,
+ "rms": 0.07,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.042999267578, 37.6360015869141, -1.54999995231628]
+ },
+ "id": "nc75091161"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.27,
+ "place": "5 km WNW of Mammoth Lakes, CA",
+ "time": 1732697380070,
+ "updated": 1732698568979,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091146",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091146.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 79,
+ "net": "nc",
+ "code": "75091146",
+ "ids": ",nc75091146,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.008599,
+ "rms": 0.05,
+ "gap": 57,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 5 km WNW of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.038665771484, 37.6388320922852, -0.790000021457672]
+ },
+ "id": "nc75091146"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.79,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732697346150,
+ "updated": 1732721867168,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091151.geojson",
+ "felt": 5,
+ "cdi": 3.3,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "nc",
+ "code": "75091151",
+ "ids": ",nc75091151,",
+ "sources": ",nc,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.01118,
+ "rms": 0.07,
+ "gap": 123,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.8 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.04467010498, 37.6348342895508, -2.75]
+ },
+ "id": "nc75091151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732697027140,
+ "updated": 1732698566978,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091126",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091126.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nc",
+ "code": "75091126",
+ "ids": ",nc75091126,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.01358,
+ "rms": 0.04,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.041664123535, 37.6336669921875, -1.01999998092651]
+ },
+ "id": "nc75091126"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.42,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732695793410,
+ "updated": 1732695967410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543047",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543047.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 90,
+ "net": "hv",
+ "code": "74543047",
+ "ids": ",hv74543047,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 52,
+ "dmin": 0.01125,
+ "rms": 0.340000004,
+ "gap": 56,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.4 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.238327026367, 19.3846664428711, 1.21000003814697]
+ },
+ "id": "hv74543047"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "23 km S of Petersville, Alaska",
+ "time": 1732695694742,
+ "updated": 1732695830845,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f97b9ia",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f97b9ia.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f97b9ia",
+ "ids": ",ak024f97b9ia,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 23 km S of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.7281, 62.2887, 57.9]
+ },
+ "id": "ak024f97b9ia"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "64 km S of Calama, Chile",
+ "time": 1732695569729,
+ "updated": 1732718104040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nufp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nufp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000nufp",
+ "ids": ",us7000nufp,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 26,
+ "dmin": 0.651,
+ "rms": 0.89,
+ "gap": 82,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 64 km S of Calama, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.8795, -23.0384, 107.497]
+ },
+ "id": "us7000nufp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "11 km W of Forsan, Texas",
+ "time": 1732695509450,
+ "updated": 1732711122114,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xhka",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xhka.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "tx",
+ "code": "2024xhka",
+ "ids": ",tx2024xhka,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 11 km W of Forsan, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-101.483, 32.097, 8.7646]
+ },
+ "id": "tx2024xhka"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "8 km NE of Moreno Valley, CA",
+ "time": 1732695046090,
+ "updated": 1732719150610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988288",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988288.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40988288",
+ "ids": ",ci40988288,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 52,
+ "dmin": 0.02551,
+ "rms": 0.18,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 8 km NE of Moreno Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1681667, 33.9726667, 13.43]
+ },
+ "id": "ci40988288"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.57,
+ "place": "102 km NNE of Punta Cana, Dominican Republic",
+ "time": 1732694974360,
+ "updated": 1732696928992,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024332000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024332000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 196,
+ "net": "pr",
+ "code": "2024332000",
+ "ids": ",pr2024332000,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 1.6135,
+ "rms": 0.47,
+ "gap": 337,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.6 - 102 km NNE of Punta Cana, Dominican Republic"
+ },
+ "geometry": { "type": "Point", "coordinates": [-68.0701, 19.4543, 70] },
+ "id": "pr2024332000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732694799100,
+ "updated": 1732695736677,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091101",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091101.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75091101",
+ "ids": ",nc75091101,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.00152,
+ "rms": 0.02,
+ "gap": 69,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.808502197266, 38.8224983215332, 3.05999994277954]
+ },
+ "id": "nc75091101"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.76999998,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732694489510,
+ "updated": 1732694582090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74543017",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74543017.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74543017",
+ "ids": ",hv74543017,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.01312,
+ "rms": 0.140000001,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.23649597168, 19.3861675262451, 1.92999994754791]
+ },
+ "id": "hv74543017"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.56,
+ "place": "10 km N of Borrego Springs, CA",
+ "time": 1732694376930,
+ "updated": 1732719154420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988280",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988280.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "ci",
+ "code": "40988280",
+ "ids": ",ci40988280,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 79,
+ "dmin": 0.0218,
+ "rms": 0.19,
+ "gap": 24,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 10 km N of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3596667, 33.3476667, 13.16]
+ },
+ "id": "ci40988280"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "5 km NW of Harding-Birch Lakes, Alaska",
+ "time": 1732693658403,
+ "updated": 1732693932002,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f96vewm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f96vewm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f96vewm",
+ "ids": ",ak024f96vewm,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.34,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 5 km NW of Harding-Birch Lakes, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.6787, 64.4078, 10.1]
+ },
+ "id": "ak024f96vewm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.43,
+ "place": "4 km SSE of Long Beach, CA",
+ "time": 1732692471370,
+ "updated": 1732731941645,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690612",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690612.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "ci",
+ "code": "37690612",
+ "ids": ",ci37690612,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.04809,
+ "rms": 0.35,
+ "gap": 119,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 4 km SSE of Long Beach, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.1463333, 33.7701667, 10.39]
+ },
+ "id": "ci37690612"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.77,
+ "place": "20 km NE of Nipomo, CA",
+ "time": 1732692439650,
+ "updated": 1732745472189,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988272",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988272.geojson",
+ "felt": 4,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 119,
+ "net": "ci",
+ "code": "40988272",
+ "ids": ",ci40988272,nc75091091,us7000nufl,",
+ "sources": ",ci,nc,us,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 44,
+ "dmin": 0.1827,
+ "rms": 0.27,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 20 km NE of Nipomo, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.3311667, 35.1845, -0.39]
+ },
+ "id": "ci40988272"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.66,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732691267220,
+ "updated": 1732694971591,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091066",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091066.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 42,
+ "net": "nc",
+ "code": "75091066",
+ "ids": ",nc75091066,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.01159,
+ "rms": 0.04,
+ "gap": 146,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.041000366211, 37.6361656188965, -1.00999999046326]
+ },
+ "id": "nc75091066"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.19,
+ "place": "88 km W of Adak, Alaska",
+ "time": 1732691144890,
+ "updated": 1732756158140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027514",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027514.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93027514",
+ "ids": ",av93027514,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.05118,
+ "rms": 0.07,
+ "gap": 176,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 88 km W of Adak, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-177.922166666667, 51.8661666666667, 7.58]
+ },
+ "id": "av93027514"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "4 km SSW of San Juan Bautista, CA",
+ "time": 1732690992360,
+ "updated": 1732693938487,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091061",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091061.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "nc",
+ "code": "75091061",
+ "ids": ",nc75091061,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.03186,
+ "rms": 0.15,
+ "gap": 47,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 4 km SSW of San Juan Bautista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.542663574219, 36.8083343505859, 5.40000009536743]
+ },
+ "id": "nc75091061"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.79999995,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732690803460,
+ "updated": 1732690927560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542952",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542952.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "hv",
+ "code": "74542952",
+ "ids": ",hv74542952,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.007835,
+ "rms": 0.170000002,
+ "gap": 69,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.242004394531, 19.3813323974609, 1.74000000953674]
+ },
+ "id": "hv74542952"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "5 km SW of Mojave, CA",
+ "time": 1732690416110,
+ "updated": 1732728901790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988248",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988248.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "ci",
+ "code": "40988248",
+ "ids": ",ci40988248,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.1243,
+ "rms": 0.17,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 5 km SW of Mojave, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.2161667, 35.0261667, 3.54]
+ },
+ "id": "ci40988248"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.77,
+ "place": "69 km W of Salamatof, Alaska",
+ "time": 1732690408000,
+ "updated": 1732755766320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380828",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380828.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380828",
+ "ids": ",av93380828,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.07137,
+ "rms": 0.08,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 69 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.577, 60.5458333333333, 12.71]
+ },
+ "id": "av93380828"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732690287350,
+ "updated": 1732692136297,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091036",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091036.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75091036",
+ "ids": ",nc75091036,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.01087,
+ "rms": 0.02,
+ "gap": 102,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.040336608887, 37.6366653442383, -2.30999994277954]
+ },
+ "id": "nc75091036"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.79,
+ "place": "12 km NNE of Trabuco Canyon, CA",
+ "time": 1732689990240,
+ "updated": 1732719115619,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988240",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988240.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40988240",
+ "ids": ",ci40988240,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.0419,
+ "rms": 0.21,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 12 km NNE of Trabuco Canyon, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.527, 33.7625, 7.58] },
+ "id": "ci40988240"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "12 km NE of Pāhala, Hawaii",
+ "time": 1732689932750,
+ "updated": 1732690047560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542927",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542927.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "hv",
+ "code": "74542927",
+ "ids": ",hv74542927,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 48,
+ "dmin": 0.0474,
+ "rms": 0.140000001,
+ "gap": 76,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 12 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.407501220703, 19.2905006408691, 28.4599990844727]
+ },
+ "id": "hv74542927"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.58,
+ "place": "5 km W of Mammoth Lakes, CA",
+ "time": 1732689462980,
+ "updated": 1732691371207,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091016",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091016.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "nc",
+ "code": "75091016",
+ "ids": ",nc75091016,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.01077,
+ "rms": 0.03,
+ "gap": 155,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 5 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.040336608887, 37.636833190918, -1.13999998569489]
+ },
+ "id": "nc75091016"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.68,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732689143180,
+ "updated": 1732690338097,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75091011",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75091011.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75091011",
+ "ids": ",nc75091011,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.02019,
+ "rms": 0.16,
+ "gap": 213,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.860832214355, 38.824333190918, 7.26999998092651]
+ },
+ "id": "nc75091011"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "27 km WNW of Susitna, Alaska",
+ "time": 1732688962065,
+ "updated": 1732689100178,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f96631q",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f96631q.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f96631q",
+ "ids": ",ak024f96631q,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.09,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 27 km WNW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0069, 61.6044, 60.6]
+ },
+ "id": "ak024f96631q"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.95000005,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732688960930,
+ "updated": 1732689133150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542902",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542902.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 59,
+ "net": "hv",
+ "code": "74542902",
+ "ids": ",hv74542902,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.006185,
+ "rms": 0.189999998,
+ "gap": 103,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.244995117188, 19.3871669769287, 0.850000023841858]
+ },
+ "id": "hv74542902"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "65 km NNE of Petersville, Alaska",
+ "time": 1732688374620,
+ "updated": 1732688494797,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f963yuu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f963yuu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f963yuu",
+ "ids": ",ak024f963yuu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.18,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 65 km NNE of Petersville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.4511, 63.0704, 108] },
+ "id": "ak024f963yuu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "56 km E of Big Pine, California",
+ "time": 1732688091262,
+ "updated": 1732749535917,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888041",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888041.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nn",
+ "code": "00888041",
+ "ids": ",nn00888041,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 3,
+ "dmin": 0.008,
+ "rms": 0.1122,
+ "gap": 330.46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 56 km E of Big Pine, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.656, 37.2325, 10.8] },
+ "id": "nn00888041"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "72 km E of Port Alsworth, Alaska",
+ "time": 1732688005784,
+ "updated": 1732688152108,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f962nvm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f962nvm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f962nvm",
+ "ids": ",ak024f962nvm,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.25,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 72 km E of Port Alsworth, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-153.0192, 60.1498, 113] },
+ "id": "ak024f962nvm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "4 km SE of Pinnacles, CA",
+ "time": 1732687861740,
+ "updated": 1732734571198,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090981",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090981.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090981",
+ "ids": ",nc75090981,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.06746,
+ "rms": 0.19,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km SE of Pinnacles, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.1085, 36.5091666666667, 6.19]
+ },
+ "id": "nc75090981"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.27,
+ "place": "73 km NE of Nikolski, Alaska",
+ "time": 1732687824380,
+ "updated": 1732755243900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380788",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380788.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93380788",
+ "ids": ",av93380788,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.02268,
+ "rms": 0.28,
+ "gap": 94,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 73 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.112, 53.4231666666667, 2.03]
+ },
+ "id": "av93380788"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.16000009,
+ "place": "6 km SSE of Pāhala, Hawaii",
+ "time": 1732687385420,
+ "updated": 1732687489690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542872",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542872.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "hv",
+ "code": "74542872",
+ "ids": ",hv74542872,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.00691,
+ "rms": 0.129999995,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 6 km SSE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.462829589844, 19.1485004425049, 31.1200008392334]
+ },
+ "id": "hv74542872"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732686881690,
+ "updated": 1732687052600,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542852",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542852.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "hv",
+ "code": "74542852",
+ "ids": ",hv74542852,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 0.009553,
+ "rms": 0.209999993,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.235168457031, 19.3816661834717, 2.00999999046326]
+ },
+ "id": "hv74542852"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.29,
+ "place": "9 km E of Petrolia, CA",
+ "time": 1732686751090,
+ "updated": 1732687770901,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090971",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090971.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "nc",
+ "code": "75090971",
+ "ids": ",nc75090971,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.0561,
+ "rms": 0.08,
+ "gap": 112,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 9 km E of Petrolia, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-124.182502746582, 40.3484992980957, 29.3099994659424]
+ },
+ "id": "nc75090971"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "12 km NNE of Ocotillo Wells, CA",
+ "time": 1732686685840,
+ "updated": 1732720641751,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690596",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690596.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "37690596",
+ "ids": ",ci37690596,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.08236,
+ "rms": 0.2,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 12 km NNE of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0748333, 33.245, 6.26]
+ },
+ "id": "ci37690596"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "12 km NNE of Ocotillo Wells, CA",
+ "time": 1732686679990,
+ "updated": 1732720125948,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988192",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988192.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40988192",
+ "ids": ",ci40988192,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.08241,
+ "rms": 0.17,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 12 km NNE of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0738333, 33.2431667, 6.85]
+ },
+ "id": "ci40988192"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.49,
+ "place": "13 km ESE of Anza, CA",
+ "time": 1732686245980,
+ "updated": 1732727758949,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988184",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988184.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "40988184",
+ "ids": ",ci40988184,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.05088,
+ "rms": 0.13,
+ "gap": 108,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 13 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.546, 33.5143333, 11.92]
+ },
+ "id": "ci40988184"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "6 km NNW of The Geysers, CA",
+ "time": 1732686189710,
+ "updated": 1732687770816,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090966",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090966.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090966",
+ "ids": ",nc75090966,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.009918,
+ "rms": 0.02,
+ "gap": 109,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.797996520996, 38.8203315734863, 3.59999990463257]
+ },
+ "id": "nc75090966"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.3,
+ "place": "12 km S of Soda Springs, California",
+ "time": 1732686143138,
+ "updated": 1732749350900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888040",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888040.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00888040",
+ "ids": ",nn00888040,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 3,
+ "dmin": 0.15,
+ "rms": 0.0394,
+ "gap": 251.36,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 12 km S of Soda Springs, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-120.3941, 39.2134, 0] },
+ "id": "nn00888040"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.46,
+ "place": "6 km W of Fuig, Puerto Rico",
+ "time": 1732685936600,
+ "updated": 1732686556170,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466948",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466948.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 93,
+ "net": "pr",
+ "code": "71466948",
+ "ids": ",pr71466948,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.06344,
+ "rms": 0.13,
+ "gap": 154,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 6 km W of Fuig, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-66.98, 17.9865, 9.61] },
+ "id": "pr71466948"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "2 km S of Salcha, Alaska",
+ "time": 1732685911559,
+ "updated": 1732686555605,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f95mlmb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f95mlmb.geojson",
+ "felt": 3,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "ak",
+ "code": "024f95mlmb",
+ "ids": ",ak024f95mlmb,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 2 km S of Salcha, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.895, 64.4996, 5.8] },
+ "id": "ak024f95mlmb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.3,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732685374833,
+ "updated": 1732754967570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f95koff",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f95koff.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f95koff",
+ "ids": ",av93380758,ak024f95koff,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.1,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2769, 61.3016, 3.2] },
+ "id": "ak024f95koff"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.71,
+ "place": "5 km NW of Fontana, CA",
+ "time": 1732685361520,
+ "updated": 1732727329849,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988176",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988176.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40988176",
+ "ids": ",ci40988176,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.04371,
+ "rms": 0.18,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 5 km NW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4893333, 34.1355, 2.81]
+ },
+ "id": "ci40988176"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "28 km SSW of Trapper Creek, Alaska",
+ "time": 1732685106030,
+ "updated": 1732685262034,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f95jrcb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f95jrcb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f95jrcb",
+ "ids": ",ak024f95jrcb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.25,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 28 km SSW of Trapper Creek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.506, 62.0921, 30] },
+ "id": "ak024f95jrcb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.94,
+ "place": "5 km NW of Fontana, CA",
+ "time": 1732684800160,
+ "updated": 1732719217440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988168",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988168.geojson",
+ "felt": 26,
+ "cdi": 2.5,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 64,
+ "net": "ci",
+ "code": "40988168",
+ "ids": ",ci40988168,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 119,
+ "dmin": 0.03881,
+ "rms": 0.23,
+ "gap": 15,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 5 km NW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4953333, 34.135, 2.53]
+ },
+ "id": "ci40988168"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75999999,
+ "place": "14 km SSE of Volcano, Hawaii",
+ "time": 1732684094590,
+ "updated": 1732684194610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542792",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542792.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74542792",
+ "ids": ",hv74542792,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 0.0477,
+ "rms": 0.310000002,
+ "gap": 87,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 14 km SSE of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.170166015625, 19.3314990997314, 0.829999983310699]
+ },
+ "id": "hv74542792"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "36 km SSW of Cantwell, Alaska",
+ "time": 1732684062855,
+ "updated": 1732684197872,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f95fzal",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f95fzal.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f95fzal",
+ "ids": ",ak024f95fzal,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.64,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 36 km SSW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.3351, 63.1127, 86.6]
+ },
+ "id": "ak024f95fzal"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.19,
+ "place": "85 km NW of Karluk, Alaska",
+ "time": 1732683981270,
+ "updated": 1732754681180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380743",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380743.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380743",
+ "ids": ",av93380743,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.04507,
+ "rms": 0.07,
+ "gap": 80,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 85 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.348166666667, 58.1663333333333, -1.56]
+ },
+ "id": "av93380743"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.52,
+ "place": "9 km N of Cobb, CA",
+ "time": 1732683524400,
+ "updated": 1732685370543,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090951",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090951.geojson",
+ "felt": 2,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75090951",
+ "ids": ",nc75090951,",
+ "sources": ",nc,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.05878,
+ "rms": 0.07,
+ "gap": 164,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 9 km N of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.741668701172, 38.9008331298828, 4.05000019073486]
+ },
+ "id": "nc75090951"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "25 km SW of Ocotillo Wells, CA",
+ "time": 1732682588400,
+ "updated": 1732719212088,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988152",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988152.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40988152",
+ "ids": ",ci40988152,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.08271,
+ "rms": 0.18,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 25 km SW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3126667, 32.9795, 9.74]
+ },
+ "id": "ci40988152"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "23 km NNW of Susitna, Alaska",
+ "time": 1732682520087,
+ "updated": 1732682629420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f951yg8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f951yg8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f951yg8",
+ "ids": ",ak024f951yg8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.73,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 23 km NNW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6697, 61.7393, 31.2]
+ },
+ "id": "ak024f951yg8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "1 km N of The Geysers, CA",
+ "time": 1732681385610,
+ "updated": 1732682535225,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090936",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090936.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090936",
+ "ids": ",nc75090936,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.0151,
+ "rms": 0.21,
+ "gap": 77,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 1 km N of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.756500244141, 38.7840003967285, 3.3199999332428]
+ },
+ "id": "nc75090936"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3499999,
+ "place": "6 km SSE of Pāhala, Hawaii",
+ "time": 1732680960880,
+ "updated": 1732681065050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542737",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542737.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 85,
+ "net": "hv",
+ "code": "74542737",
+ "ids": ",hv74542737,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.00837,
+ "rms": 0.140000001,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 6 km SSE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.462173461914, 19.1469993591309, 31.8400001525879]
+ },
+ "id": "hv74542737"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.55,
+ "place": "30 km NW of Stanley, Idaho",
+ "time": 1732680326190,
+ "updated": 1732723234160,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067088",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067088.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "mb",
+ "code": "90067088",
+ "ids": ",mb90067088,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.3976,
+ "rms": 0.11,
+ "gap": 72,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 30 km NW of Stanley, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.201833333333, 44.4111666666667, 3.18]
+ },
+ "id": "mb90067088"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.04,
+ "place": "4 km NNW of Jobos, Puerto Rico",
+ "time": 1732680260820,
+ "updated": 1732681698630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466943",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466943.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 64,
+ "net": "pr",
+ "code": "71466943",
+ "ids": ",pr71466943,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.06856,
+ "rms": 0.24,
+ "gap": 172,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 4 km NNW of Jobos, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.1738333333333, 17.9908333333333, 9.74]
+ },
+ "id": "pr71466943"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "61 km S of Whites City, New Mexico",
+ "time": 1732680216228,
+ "updated": 1732792462679,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xhbo",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xhbo.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024xhbo",
+ "ids": ",tx2024xhbo,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 61 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.352, 31.617, 7.2278]
+ },
+ "id": "tx2024xhbo"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.14,
+ "place": "61 km SE of Pedro Bay, Alaska",
+ "time": 1732679826480,
+ "updated": 1732754244160,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380688",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380688.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380688",
+ "ids": ",av93380688,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.007023,
+ "rms": 0.11,
+ "gap": 133,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 61 km SE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.435666666667, 59.3573333333333, -0.6]
+ },
+ "id": "av93380688"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "25 km NNW of Willow, Alaska",
+ "time": 1732678694754,
+ "updated": 1732678790801,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f94fp43",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f94fp43.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f94fp43",
+ "ids": ",ak024f94fp43,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.18,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 25 km NNW of Willow, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.2714, 61.9457, 19.6]
+ },
+ "id": "ak024f94fp43"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "48 km WNW of Ninilchik, Alaska",
+ "time": 1732678494981,
+ "updated": 1732678629766,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f94excq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f94excq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f94excq",
+ "ids": ",ak024f94excq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.87,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 48 km WNW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.5026, 60.1795, 59.4]
+ },
+ "id": "ak024f94excq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.31,
+ "place": "11 km ENE of Ridgecrest, CA",
+ "time": 1732678336480,
+ "updated": 1732728571844,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988120",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988120.geojson",
+ "felt": 2,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 83,
+ "net": "ci",
+ "code": "40988120",
+ "ids": ",ci40988120,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.07999,
+ "rms": 0.13,
+ "gap": 40,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 11 km ENE of Ridgecrest, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5636667, 35.6481667, 4.9]
+ },
+ "id": "ci40988120"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "33 km NNE of Petersville, Alaska",
+ "time": 1732678221282,
+ "updated": 1732678353259,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f94dzw0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f94dzw0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f94dzw0",
+ "ids": ",ak024f94dzw0,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 33 km NNE of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4995, 62.7661, 79.1]
+ },
+ "id": "ak024f94dzw0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.24,
+ "place": "22 km SW of Lamont, CA",
+ "time": 1732677721920,
+ "updated": 1732726945618,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988104",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988104.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "ci",
+ "code": "40988104",
+ "ids": ",ci40988104,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 53,
+ "dmin": 0.0566,
+ "rms": 0.26,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 22 km SW of Lamont, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.0835, 35.1153333, 11.6]
+ },
+ "id": "ci40988104"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "6 km WNW of Cobb, CA",
+ "time": 1732677505300,
+ "updated": 1732678635791,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090921",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090921.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75090921",
+ "ids": ",nc75090921,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.003527,
+ "rms": 0.02,
+ "gap": 73,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.2 - 6 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.793998718262, 38.8363342285156, 2.04999995231628]
+ },
+ "id": "nc75090921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.98,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732677389620,
+ "updated": 1732729976660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542657",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542657.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 60,
+ "net": "hv",
+ "code": "74542657",
+ "ids": ",hv74542657,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.007232,
+ "rms": 0.1,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.243666666667, 19.386, 1.76]
+ },
+ "id": "hv74542657"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "15 km NNE of Hermleigh, Texas",
+ "time": 1732677071343,
+ "updated": 1732711593082,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgzw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgzw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024xgzw",
+ "ids": ",tx2024xgzw,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 15 km NNE of Hermleigh, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-100.677, 32.753, 6.6162]
+ },
+ "id": "tx2024xgzw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "13 km NW of The Geysers, CA",
+ "time": 1732677006610,
+ "updated": 1732678169734,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090916",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090916.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090916",
+ "ids": ",nc75090916,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.005753,
+ "rms": 0.03,
+ "gap": 85,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 13 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.876998901367, 38.8409996032715, 2.44000005722046]
+ },
+ "id": "nc75090916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "7 km NW of Hizan, Turkey",
+ "time": 1732676203930,
+ "updated": 1732760143040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuek",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuek.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "7000nuek",
+ "ids": ",us7000nuek,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.376,
+ "rms": 0.44,
+ "gap": 108,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 7 km NW of Hizan, Turkey"
+ },
+ "geometry": { "type": "Point", "coordinates": [42.3461, 38.2662, 10] },
+ "id": "us7000nuek"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "51 km SW of Cantwell, Alaska",
+ "time": 1732676108885,
+ "updated": 1732676226963,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f93xw88",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f93xw88.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f93xw88",
+ "ids": ",ak024f93xw88,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.49,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 51 km SW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.6878, 63.0689, 80.1]
+ },
+ "id": "ak024f93xw88"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "5 km SSE of Salcha, Alaska",
+ "time": 1732676060797,
+ "updated": 1732676874990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f93xpfj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f93xpfj.geojson",
+ "felt": 0,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f93xpfj",
+ "ids": ",ak024f93xpfj,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.83,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 5 km SSE of Salcha, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.8767, 64.4726, 0] },
+ "id": "ak024f93xpfj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "6 km SSE of Salcha, Alaska",
+ "time": 1732676040597,
+ "updated": 1732676147868,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f93xnvf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f93xnvf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f93xnvf",
+ "ids": ",ak024f93xnvf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.89,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 6 km SSE of Salcha, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.8726, 64.4691, 10.8]
+ },
+ "id": "ak024f93xnvf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "16 km NNE of Balmorhea, Texas",
+ "time": 1732676003848,
+ "updated": 1732713610291,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgzg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgzg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "tx",
+ "code": "2024xgzg",
+ "ids": ",tx2024xgzg,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 51,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 16 km NNE of Balmorhea, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.693, 31.129, 4.9463]
+ },
+ "id": "tx2024xgzg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "12 km NNW of Hizan, Turkey",
+ "time": 1732675808110,
+ "updated": 1732757917040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuee",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuee.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "7000nuee",
+ "ids": ",us7000nuee,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.354,
+ "rms": 0.66,
+ "gap": 55,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 12 km NNW of Hizan, Turkey"
+ },
+ "geometry": { "type": "Point", "coordinates": [42.3901, 38.3349, 10] },
+ "id": "us7000nuee"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "12 km ENE of Coachella, CA",
+ "time": 1732675422140,
+ "updated": 1732726059377,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988096",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988096.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40988096",
+ "ids": ",ci40988096,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.08343,
+ "rms": 0.15,
+ "gap": 99,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 12 km ENE of Coachella, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0566667, 33.7325, 2.46]
+ },
+ "id": "ci40988096"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.77999997,
+ "place": "11 km NE of Pāhala, Hawaii",
+ "time": 1732675358820,
+ "updated": 1732675485420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542627",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542627.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74542627",
+ "ids": ",hv74542627,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 0.02378,
+ "rms": 0.119999997,
+ "gap": 115,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 11 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.389495849609, 19.2601661682129, 28.8899993896484]
+ },
+ "id": "hv74542627"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "27 km ENE of Beluga, Alaska",
+ "time": 1732674947923,
+ "updated": 1732675074111,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f93tox4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f93tox4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f93tox4",
+ "ids": ",ak024f93tox4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 27 km ENE of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6116, 61.2251, 17.2]
+ },
+ "id": "ak024f93tox4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.47,
+ "place": "19 km ESE of Anza, CA",
+ "time": 1732674364190,
+ "updated": 1732719245406,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988088",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988088.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "ci",
+ "code": "40988088",
+ "ids": ",ci40988088,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.102,
+ "rms": 0.11,
+ "gap": 123,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 19 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4801667, 33.4938333, 12.85]
+ },
+ "id": "ci40988088"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.91,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732674128130,
+ "updated": 1732675339390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090911",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090911.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75090911",
+ "ids": ",nc75090911,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.0154,
+ "rms": 0.02,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.769332885742, 38.787166595459, 2.08999991416931]
+ },
+ "id": "nc75090911"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.43,
+ "place": "4 km NNW of The Geysers, CA",
+ "time": 1732673791660,
+ "updated": 1732674742317,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090906",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090906.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75090906",
+ "ids": ",nc75090906,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 5,
+ "dmin": 0.003417,
+ "rms": 0.01,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 4 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.77783203125, 38.8106651306152, 0.340000003576279]
+ },
+ "id": "nc75090906"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732673682770,
+ "updated": 1732717731560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087291",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087291.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "uu",
+ "code": "80087291",
+ "ids": ",uu80087291,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.04056,
+ "rms": 0.1,
+ "gap": 118,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.9905, 44.7983333333333, 9.12]
+ },
+ "id": "uu80087291"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "26 km NE of Beluga, Alaska",
+ "time": 1732672999844,
+ "updated": 1732673104429,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f93mru8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f93mru8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f93mru8",
+ "ids": ",ak024f93mru8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.25,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 26 km NE of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.7266, 61.2996, 55.2]
+ },
+ "id": "ak024f93mru8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1099999,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732672891640,
+ "updated": 1732672981160,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542547",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542547.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "hv",
+ "code": "74542547",
+ "ids": ",hv74542547,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.006288,
+ "rms": 0.200000003,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.244995117188, 19.3834991455078, 1.88999998569489]
+ },
+ "id": "hv74542547"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "17 km ESE of Anza, CA",
+ "time": 1732672813420,
+ "updated": 1732719247756,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988080",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988080.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40988080",
+ "ids": ",ci40988080,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.07785,
+ "rms": 0.13,
+ "gap": 91,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 17 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5108333, 33.4795, 12.74]
+ },
+ "id": "ci40988080"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.45,
+ "place": "12 km W of Akutan, Alaska",
+ "time": 1732672727490,
+ "updated": 1732751340870,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380593",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380593.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "av",
+ "code": "93380593",
+ "ids": ",av93380593,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01631,
+ "rms": 0.2,
+ "gap": 93,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 12 km W of Akutan, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-165.970333333333, 54.1488333333333, 2.18]
+ },
+ "id": "av93380593"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732671375440,
+ "updated": 1732671547410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542522",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542522.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74542522",
+ "ids": ",hv74542522,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.006765,
+ "rms": 0.239999995,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.242340087891, 19.3801670074463, 2.17000007629395]
+ },
+ "id": "hv74542522"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.88,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732671334930,
+ "updated": 1732671507580,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542517",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542517.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74542517",
+ "ids": ",hv74542517,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.007019,
+ "rms": 0.159999996,
+ "gap": 161,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.238494873047, 19.3803329467773, 1.1599999666214]
+ },
+ "id": "hv74542517"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.02,
+ "place": "15 km ENE of Pāhala, Hawaii",
+ "time": 1732671152570,
+ "updated": 1732671326100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542512",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542512.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "hv",
+ "code": "74542512",
+ "ids": ",hv74542512,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 57,
+ "dmin": 0.05268,
+ "rms": 0.129999995,
+ "gap": 148,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 15 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.345001220703, 19.2553329467773, 29.9899997711182]
+ },
+ "id": "hv74542512"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "8 km SW of Point Possession, Alaska",
+ "time": 1732670524185,
+ "updated": 1732670649747,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f935dmq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f935dmq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f935dmq",
+ "ids": ",ak024f935dmq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.72,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 8 km SW of Point Possession, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.796, 60.8724, 33.5] },
+ "id": "ak024f935dmq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.56,
+ "place": "63 km SSW of Ugashik, Alaska",
+ "time": 1732670371460,
+ "updated": 1732753053610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027509",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027509.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "av",
+ "code": "93027509",
+ "ids": ",av93027509,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.1853,
+ "rms": 0.07,
+ "gap": 327,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 63 km SSW of Ugashik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-157.790833333333, 56.989, 9.99]
+ },
+ "id": "av93027509"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.18,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732669055920,
+ "updated": 1732750944010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380548",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380548.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380548",
+ "ids": ",av93380548,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.07251,
+ "rms": 0.15,
+ "gap": 127,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.295333333333, 61.3211666666667, -0.2]
+ },
+ "id": "av93380548"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "29 km WSW of Ackerly, Texas",
+ "time": 1732668647540,
+ "updated": 1732715788466,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgvc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgvc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "tx",
+ "code": "2024xgvc",
+ "ids": ",tx2024xgvc,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 29 km WSW of Ackerly, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-102.023, 32.458, 8.8135]
+ },
+ "id": "tx2024xgvc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "62 km S of Kingston, Nevada",
+ "time": 1732667925430,
+ "updated": 1732669318960,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888015",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888015.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "nn",
+ "code": "00888015",
+ "ids": ",nn00888015,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.726,
+ "rms": 0.2578,
+ "gap": 181.5,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 1.7 Explosion - 62 km S of Kingston, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.1358, 38.647, 9] },
+ "id": "nn00888015"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "47 km SE of Denali National Park, Alaska",
+ "time": 1732667795727,
+ "updated": 1732667952974,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f92n0hg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f92n0hg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f92n0hg",
+ "ids": ",ak024f92n0hg,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.72,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 47 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.044, 63.2485, 0] },
+ "id": "ak024f92n0hg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732667664960,
+ "updated": 1732669035632,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090896",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090896.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090896",
+ "ids": ",nc75090896,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.007722,
+ "rms": 0.04,
+ "gap": 115,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831497192383, 38.8456649780273, 0.839999973773956]
+ },
+ "id": "nc75090896"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "22 km SSE of Denali National Park, Alaska",
+ "time": 1732667486423,
+ "updated": 1732667657217,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f92lx84",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f92lx84.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f92lx84",
+ "ids": ",ak024f92lx84,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.01,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 22 km SSE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.5185, 63.3637, 0] },
+ "id": "ak024f92lx84"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "34 km NNW of Mentone, Texas",
+ "time": 1732667165967,
+ "updated": 1732714790487,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xguj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xguj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "tx",
+ "code": "2024xguj",
+ "ids": ",tx2024xguj,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 34 km NNW of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.789, 31.974, 7.1893]
+ },
+ "id": "tx2024xguj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84,
+ "place": "5 km NW of Boron, CA",
+ "time": 1732666635110,
+ "updated": 1732725588060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988056",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988056.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "ci",
+ "code": "40988056",
+ "ids": ",ci40988056,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.09738,
+ "rms": 0.19,
+ "gap": 71,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.8 Quarry Blast - 5 km NW of Boron, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6825, 35.0313333, -0.82]
+ },
+ "id": "ci40988056"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732666382587,
+ "updated": 1732715030403,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgty",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgty.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xgty",
+ "ids": ",tx2024xgty,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.454, 31.653, 6.6638]
+ },
+ "id": "tx2024xgty"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "3 km NNW of Fritz Creek, Alaska",
+ "time": 1732666336726,
+ "updated": 1732667568040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f92htuc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f92htuc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f92htuc",
+ "ids": ",us7000nudx,ak024f92htuc,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.66,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 3 km NNW of Fritz Creek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.3146, 59.7656, 50.9]
+ },
+ "id": "ak024f92htuc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "19 km NW of Mariposa, Peru",
+ "time": 1732665938239,
+ "updated": 1732673927040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nue0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nue0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "7000nue0",
+ "ids": ",us7000nue0,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 59,
+ "dmin": 2.02,
+ "rms": 0.52,
+ "gap": 72,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 19 km NW of Mariposa, Peru"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.9008, -11.3039, 113.266]
+ },
+ "id": "us7000nue0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "35 km NNW of Mentone, Texas",
+ "time": 1732665872745,
+ "updated": 1732716930519,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgts",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgts.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024xgts",
+ "ids": ",tx2024xgts,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 26,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 35 km NNW of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.788, 31.977, 7.5867]
+ },
+ "id": "tx2024xgts"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.6,
+ "place": "35 km NNW of Mentone, Texas",
+ "time": 1732665810016,
+ "updated": 1732666997040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgtr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgtr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 104,
+ "net": "tx",
+ "code": "2024xgtr",
+ "ids": ",us7000nudv,tx2024xgtr,",
+ "sources": ",us,tx,",
+ "types": ",origin,phase-data,",
+ "nst": 39,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.6 - 35 km NNW of Mentone, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-103.79, 31.983, 7.4841] },
+ "id": "tx2024xgtr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.31,
+ "place": "37 km W of Chignik Lake, Alaska",
+ "time": 1732665643360,
+ "updated": 1732750486880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027504",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027504.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93027504",
+ "ids": ",av93027504,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.08005,
+ "rms": 0.15,
+ "gap": 283,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 37 km W of Chignik Lake, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-159.363166666667, 56.2453333333333, 6.41]
+ },
+ "id": "av93027504"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.55,
+ "place": "3 km E of Truckee, CA",
+ "time": 1732665217570,
+ "updated": 1732741755228,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090886",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090886.geojson",
+ "felt": 3,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 101,
+ "net": "nc",
+ "code": "75090886",
+ "ids": ",nc75090886,nn00888011,",
+ "sources": ",nc,nn,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.0932,
+ "rms": 0.03,
+ "gap": 168,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.6 - 3 km E of Truckee, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.143669128418, 39.3348350524902, 5.67000007629395]
+ },
+ "id": "nc75090886"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732664728450,
+ "updated": 1732667368436,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090876",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090876.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75090876",
+ "ids": ",nc75090876,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.008878,
+ "rms": 0.04,
+ "gap": 123,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.828330993652, 38.8466682434082, 0.740000009536743]
+ },
+ "id": "nc75090876"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "51 km N of Chignik, Alaska",
+ "time": 1732664690527,
+ "updated": 1732664762001,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7sudrw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7sudrw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7sudrw",
+ "ids": ",ak024f7sudrw,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.16,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 51 km N of Chignik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-158.2963, 56.7528, 77.6]
+ },
+ "id": "ak024f7sudrw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "15 km SE of Anza, CA",
+ "time": 1732664523870,
+ "updated": 1732723328143,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40988040",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40988040.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40988040",
+ "ids": ",ci40988040,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.04635,
+ "rms": 0.14,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 15 km SE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.566, 33.4595, 11.61]
+ },
+ "id": "ci40988040"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "27 km SE of Susitna North, Alaska",
+ "time": 1732663535286,
+ "updated": 1732663649300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7sq9zs",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7sq9zs.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7sq9zs",
+ "ids": ",ak024f7sq9zs,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 27 km SE of Susitna North, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.5497, 61.9601, 32.6]
+ },
+ "id": "ak024f7sq9zs"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "66 km W of Salamatof, Alaska",
+ "time": 1732662835453,
+ "updated": 1732662971454,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7snqyh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7snqyh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f7snqyh",
+ "ids": ",ak024f7snqyh,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.45,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 66 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.5188, 60.6819, 96.7]
+ },
+ "id": "ak024f7snqyh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.96,
+ "place": "2 km ENE of Prattville, CA",
+ "time": 1732661916400,
+ "updated": 1732664370082,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090851",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090851.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 59,
+ "net": "nc",
+ "code": "75090851",
+ "ids": ",nc75090851,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.2022,
+ "rms": 0.03,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 2 km ENE of Prattville, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.138999938965, 40.2156677246094, 8.06999969482422]
+ },
+ "id": "nc75090851"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.64,
+ "place": "65 km W of Salamatof, Alaska",
+ "time": 1732661648290,
+ "updated": 1732740630260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380393",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380393.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380393",
+ "ids": ",av93380393,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.05483,
+ "rms": 0.05,
+ "gap": 158,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 65 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.5185, 60.5678333333333, 11.52]
+ },
+ "id": "av93380393"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.38,
+ "place": "82 km NNW of Karluk, Alaska",
+ "time": 1732661576840,
+ "updated": 1732740772030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380388",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380388.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380388",
+ "ids": ",av93380388,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.06111,
+ "rms": 0.09,
+ "gap": 147,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 82 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.9715, 58.2591666666667, 3.21]
+ },
+ "id": "av93380388"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "6 km SSW of The Geysers, CA",
+ "time": 1732661532550,
+ "updated": 1732661627289,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090841",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090841.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090841",
+ "ids": ",nc75090841,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04901,
+ "rms": 0.03,
+ "gap": 195,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 6 km SSW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.773330688477, 38.7220001220703, 9.81999969482422]
+ },
+ "id": "nc75090841"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.4,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732661512220,
+ "updated": 1732661607088,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090836",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090836.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "nc",
+ "code": "75090836",
+ "ids": ",nc75090836,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01396,
+ "rms": 0.02,
+ "gap": 106,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.771331787109, 38.7879981994629, 2.96000003814697]
+ },
+ "id": "nc75090836"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.36,
+ "place": "1 km NNW of The Geysers, CA",
+ "time": 1732661450300,
+ "updated": 1732663768146,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090826",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090826.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 86,
+ "net": "nc",
+ "code": "75090826",
+ "ids": ",nc75090826,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 62,
+ "dmin": 0.01521,
+ "rms": 0.07,
+ "gap": 41,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 1 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.765830993652, 38.7861671447754, 2.76999998092651]
+ },
+ "id": "nc75090826"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "2 km NNW of The Geysers, CA",
+ "time": 1732661372150,
+ "updated": 1732663768011,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090821",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090821.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75090821",
+ "ids": ",nc75090821,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.01359,
+ "rms": 0.02,
+ "gap": 77,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.767166137695, 38.7883338928223, 2.35999989509583]
+ },
+ "id": "nc75090821"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.78,
+ "place": "6 km WNW of Cobb, CA",
+ "time": 1732660449120,
+ "updated": 1732660546907,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090816",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090816.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090816",
+ "ids": ",nc75090816,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.0118,
+ "rms": 0.03,
+ "gap": 83,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.78783416748, 38.8236656188965, 0.600000023841858]
+ },
+ "id": "nc75090816"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.45,
+ "place": "5 km NE of Rancho San Diego, CA",
+ "time": 1732660234520,
+ "updated": 1732721632672,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987984",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987984.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "ci",
+ "code": "40987984",
+ "ids": ",ci40987984,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.05764,
+ "rms": 0.24,
+ "gap": 91,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.5 Quarry Blast - 5 km NE of Rancho San Diego, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8936667, 32.7761667, -0.35]
+ },
+ "id": "ci40987984"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "2 km NNW of The Geysers, CA",
+ "time": 1732659840830,
+ "updated": 1732661240715,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090811",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090811.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090811",
+ "ids": ",nc75090811,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.01265,
+ "rms": 0.02,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.76782989502, 38.789665222168, 1.08000004291534]
+ },
+ "id": "nc75090811"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.36,
+ "place": "7 km S of Volcano, Hawaii",
+ "time": 1732659582200,
+ "updated": 1732671360930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542357",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542357.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 86,
+ "net": "hv",
+ "code": "74542357",
+ "ids": ",hv74542357,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 29,
+ "dmin": 0.007511,
+ "rms": 0.09,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.4 - 7 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.234166666667, 19.378, 2.15]
+ },
+ "id": "hv74542357"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.64,
+ "place": "20 km W of Sitka, Alaska",
+ "time": 1732659191350,
+ "updated": 1732741269440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380348",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380348.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "av",
+ "code": "93380348",
+ "ids": ",av93380348,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02635,
+ "rms": 0.08,
+ "gap": 171,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 20 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.661, 57.0448333333333, 7.29]
+ },
+ "id": "av93380348"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.15,
+ "place": "36 km NNW of San Antonio, Puerto Rico",
+ "time": 1732658180450,
+ "updated": 1732660325210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466928",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466928.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 153,
+ "net": "pr",
+ "code": "71466928",
+ "ids": ",pr71466928,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.3427,
+ "rms": 0.14,
+ "gap": 304,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.2 - 36 km NNW of San Antonio, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.2883333333333, 18.7678333333333, 8.57]
+ },
+ "id": "pr71466928"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0,
+ "place": "9 km NNW of Anza, CA",
+ "time": 1732657335620,
+ "updated": 1732665115476,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690556",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690556.geojson",
+ "felt": 2,
+ "cdi": 3.1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ci",
+ "code": "37690556",
+ "ids": ",ci37690556,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.07481,
+ "rms": 0.05,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 9 km NNW of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6938333, 33.631, 11.94]
+ },
+ "id": "ci37690556"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "13 km ENE of Coachella, CA",
+ "time": 1732657335090,
+ "updated": 1732659061765,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987928",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987928.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40987928",
+ "ids": ",ci40987928,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.08221,
+ "rms": 0.18,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 13 km ENE of Coachella, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0513333, 33.7301667, 3.11]
+ },
+ "id": "ci40987928"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.04,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732657326130,
+ "updated": 1732740076760,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380318",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380318.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380318",
+ "ids": ",av93380318,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.07161,
+ "rms": 0.13,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.258, 61.3168333333333, 1.2]
+ },
+ "id": "av93380318"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.69,
+ "place": "5 km ENE of Butte, Montana",
+ "time": 1732657084910,
+ "updated": 1732658727010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067038",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067038.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "mb",
+ "code": "90067038",
+ "ids": ",mb90067038,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.06687,
+ "rms": 0.15,
+ "gap": 92,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.7 Quarry Blast - 5 km ENE of Butte, Montana"
+ },
+ "geometry": { "type": "Point", "coordinates": [-112.461, 46.016, -2] },
+ "id": "mb90067038"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "22 km S of Nelchina, Alaska",
+ "time": 1732657060349,
+ "updated": 1732657540884,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7rlzrm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7rlzrm.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "ak",
+ "code": "024f7rlzrm",
+ "ids": ",ak024f7rlzrm,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.81,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 22 km S of Nelchina, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.733, 61.7951, 20] },
+ "id": "ak024f7rlzrm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "30 km SSW of Mina, Nevada",
+ "time": 1732656800657,
+ "updated": 1732658044036,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887999",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887999.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "nn",
+ "code": "00887999",
+ "ids": ",nn00887999,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.208,
+ "rms": 0.1515,
+ "gap": 70.64000000000001,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 30 km SSW of Mina, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-118.238, 38.138, 9] },
+ "id": "nn00887999"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "35 km NNW of Mentone, Texas",
+ "time": 1732656753360,
+ "updated": 1732717092513,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgoq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgoq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xgoq",
+ "ids": ",tx2024xgoq,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 35 km NNW of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.784, 31.979, 7.3816]
+ },
+ "id": "tx2024xgoq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.25,
+ "place": "3 km WSW of Puerto Real, Puerto Rico",
+ "time": 1732656651110,
+ "updated": 1732662265040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466913",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466913.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 162,
+ "net": "pr",
+ "code": "71466913",
+ "ids": ",us7000nuc6,pr71466913,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.07674,
+ "rms": 0.14,
+ "gap": 237,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.3 - 3 km WSW of Puerto Real, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.2221666666667, 18.0615, 13.89]
+ },
+ "id": "pr71466913"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "29 km N of San Martín, Argentina",
+ "time": 1732656587810,
+ "updated": 1732751364040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuc5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuc5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "7000nuc5",
+ "ids": ",us7000nuc5,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 30,
+ "dmin": 0.397,
+ "rms": 1.14,
+ "gap": 125,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 29 km N of San Martín, Argentina"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.5414, -31.1664, 104.396]
+ },
+ "id": "us7000nuc5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.8,
+ "place": "Rat Islands, Aleutian Islands, Alaska",
+ "time": 1732656497809,
+ "updated": 1732675172040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nue7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nue7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 222,
+ "net": "us",
+ "code": "7000nue7",
+ "ids": ",ak024f7rk0sb,us7000nue7,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,",
+ "nst": 50,
+ "dmin": 1.345,
+ "rms": 0.84,
+ "gap": 250,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 3.8 - Rat Islands, Aleutian Islands, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [179.8455, 50.0803, 35] },
+ "id": "us7000nue7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "5 km NNW of Fontana, CA",
+ "time": 1732656148940,
+ "updated": 1732656964533,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987888",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987888.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "ci",
+ "code": "40987888",
+ "ids": ",ci40987888,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.04658,
+ "rms": 0.11,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km NNW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4863333, 34.1371667, 3.2]
+ },
+ "id": "ci40987888"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.26,
+ "place": "3 km WSW of Indios, Puerto Rico",
+ "time": 1732655859410,
+ "updated": 1732657536940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 79,
+ "net": "pr",
+ "code": "71466903",
+ "ids": ",pr71466903,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.02766,
+ "rms": 0.05,
+ "gap": 181,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 3 km WSW of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8511666666667, 17.9821666666667, 14.26]
+ },
+ "id": "pr71466903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "12 km ENE of Coachella, CA",
+ "time": 1732655390960,
+ "updated": 1732656324252,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987880",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987880.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40987880",
+ "ids": ",ci40987880,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.08081,
+ "rms": 0.18,
+ "gap": 107,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 12 km ENE of Coachella, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0541667, 33.7293333, 2.9]
+ },
+ "id": "ci40987880"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.4,
+ "place": "154 km SSW of Severo-Kuril’sk, Russia",
+ "time": 1732654908770,
+ "updated": 1732741522769,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuc0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuc0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 4.105,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 449,
+ "net": "us",
+ "code": "7000nuc0",
+ "ids": ",us7000nuc0,",
+ "sources": ",us,",
+ "types": ",losspager,moment-tensor,origin,phase-data,shakemap,",
+ "nst": 119,
+ "dmin": 4.01,
+ "rms": 0.85,
+ "gap": 49,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.4 - 154 km SSW of Severo-Kuril’sk, Russia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [155.4911, 49.3507, 56.648]
+ },
+ "id": "us7000nuc0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "7 km WNW of Cantwell, Alaska",
+ "time": 1732654297427,
+ "updated": 1732654477455,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7r3jym",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7r3jym.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7r3jym",
+ "ids": ",ak024f7r3jym,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.73,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 7 km WNW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.0808, 63.4194, 83.1]
+ },
+ "id": "ak024f7r3jym"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "54 km WNW of Happy Valley, Alaska",
+ "time": 1732654184632,
+ "updated": 1732654257796,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7r3533",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7r3533.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7r3533",
+ "ids": ",ak024f7r3533,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 54 km WNW of Happy Valley, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.6872, 60.0584, 78] },
+ "id": "ak024f7r3533"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.51,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732654084330,
+ "updated": 1732656137231,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090791",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090791.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75090791",
+ "ids": ",nc75090791,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.01436,
+ "rms": 0.01,
+ "gap": 165,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.852996826172, 38.8261680603027, 2.51999998092651]
+ },
+ "id": "nc75090791"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.94,
+ "place": "63 km ENE of Pedro Bay, Alaska",
+ "time": 1732653946900,
+ "updated": 1732739634580,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380238",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380238.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380238",
+ "ids": ",av93380238,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01606,
+ "rms": 0.19,
+ "gap": 108,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 63 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.0865, 60.0461666666667, -1.19]
+ },
+ "id": "av93380238"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "19 km SSW of Susitna North, Alaska",
+ "time": 1732653921554,
+ "updated": 1732654029357,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7r28f9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7r28f9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7r28f9",
+ "ids": ",ak024f7r28f9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.56,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 19 km SSW of Susitna North, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.9671, 61.995, 32.7] },
+ "id": "ak024f7r28f9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.16,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732653512720,
+ "updated": 1732739328080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380218",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380218.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93380218",
+ "ids": ",av93380218,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02755,
+ "rms": 0.07,
+ "gap": 158,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.659833333333, 57.0556666666667, 6.95]
+ },
+ "id": "av93380218"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732653419440,
+ "updated": 1732655376032,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090781",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090781.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090781",
+ "ids": ",nc75090781,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.006444,
+ "rms": 0.01,
+ "gap": 119,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.842002868652, 38.8196678161621, 2.02999997138977]
+ },
+ "id": "nc75090781"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "2 km NNE of The Geysers, CA",
+ "time": 1732653054760,
+ "updated": 1732654338915,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090776",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090776.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090776",
+ "ids": ",nc75090776,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.007542,
+ "rms": 0.02,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NNE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.750335693359, 38.7988319396973, 1.41999995708466]
+ },
+ "id": "nc75090776"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.05999994,
+ "place": "7 km NE of Pāhala, Hawaii",
+ "time": 1732652654420,
+ "updated": 1732652768340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542227",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542227.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 65,
+ "net": "hv",
+ "code": "74542227",
+ "ids": ",hv74542227,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.03239,
+ "rms": 0.170000002,
+ "gap": 89,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 7 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.429504394531, 19.2491664886475, 32.2299995422363]
+ },
+ "id": "hv74542227"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.09,
+ "place": "5 km NW of Fontana, CA",
+ "time": 1732652495370,
+ "updated": 1732685410571,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987824",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987824.geojson",
+ "felt": 20,
+ "cdi": 3.3,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ci",
+ "code": "40987824",
+ "ids": ",ci40987824,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 80,
+ "dmin": 0.041,
+ "rms": 0.2,
+ "gap": 19,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 5 km NW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4925, 34.1348333, 2.77]
+ },
+ "id": "ci40987824"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "53 km S of Whites City, New Mexico",
+ "time": 1732652300338,
+ "updated": 1732714271349,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgme",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgme.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xgme",
+ "ids": ",tx2024xgme,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 53 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.484, 31.702, 6.0999]
+ },
+ "id": "tx2024xgme"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.46,
+ "place": "7 km SSW of The Silos, Montana",
+ "time": 1732651953530,
+ "updated": 1732653815340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067013",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067013.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "mb",
+ "code": "90067013",
+ "ids": ",mb90067013,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.3169,
+ "rms": 0.11,
+ "gap": 95,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.5 Quarry Blast - 7 km SSW of The Silos, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.622833333333, 46.3246666666667, -2]
+ },
+ "id": "mb90067013"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.39,
+ "place": "3 km W of Cobb, CA",
+ "time": 1732651891470,
+ "updated": 1732651987134,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090771",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090771.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "nc",
+ "code": "75090771",
+ "ids": ",nc75090771,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01526,
+ "rms": 0.01,
+ "gap": 126,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 3 km W of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.75700378418, 38.8190002441406, 1.20000004768372]
+ },
+ "id": "nc75090771"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "5 km WSW of Stanley, Idaho",
+ "time": 1732651714730,
+ "updated": 1732655121390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067023",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067023.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "mb",
+ "code": "90067023",
+ "ids": ",mb90067023,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1454,
+ "rms": 0.21,
+ "gap": 73,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km WSW of Stanley, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.0035, 44.1978333333333, 4.18]
+ },
+ "id": "mb90067023"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "11 km ENE of Fox, Alaska",
+ "time": 1732651606936,
+ "updated": 1732651711661,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7qtxh1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7qtxh1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7qtxh1",
+ "ids": ",ak024f7qtxh1,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.99,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 11 km ENE of Fox, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3943, 64.9883, 2.8] },
+ "id": "ak024f7qtxh1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732651581510,
+ "updated": 1732652970744,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090761",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090761.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090761",
+ "ids": ",nc75090761,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.002746,
+ "rms": 0.02,
+ "gap": 72,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.828163146973, 38.8115005493164, 1.39999997615814]
+ },
+ "id": "nc75090761"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.57,
+ "place": "15 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732651337020,
+ "updated": 1732654158810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087271",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087271.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "uu",
+ "code": "80087271",
+ "ids": ",uu80087271,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.04231,
+ "rms": 0.16,
+ "gap": 120,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 15 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.9935, 44.8006666666667, 7.88]
+ },
+ "id": "uu80087271"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "8 km WSW of Hoback, Wyoming",
+ "time": 1732651331710,
+ "updated": 1732654126810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067008",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067008.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "mb",
+ "code": "90067008",
+ "ids": ",mb90067008,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.2289,
+ "rms": 0.1,
+ "gap": 230,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km WSW of Hoback, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.886, 43.2521666666667, 7.63]
+ },
+ "id": "mb90067008"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "58 km NNE of Petersville, Alaska",
+ "time": 1732651283771,
+ "updated": 1732651456295,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7qst3t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7qst3t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f7qst3t",
+ "ids": ",ak024f7qst3t,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.66,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 58 km NNE of Petersville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.5079, 63.004, 91.2] },
+ "id": "ak024f7qst3t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732650999730,
+ "updated": 1732651097056,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090756",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090756.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090756",
+ "ids": ",nc75090756,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.00926,
+ "rms": 0.01,
+ "gap": 66,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.809997558594, 38.8326683044434, 2.24000000953674]
+ },
+ "id": "nc75090756"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "26 km SSW of Westbrook, Texas",
+ "time": 1732650274725,
+ "updated": 1732718687068,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgle",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgle.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xgle",
+ "ids": ",tx2024xgle,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.2,
+ "rms": 0.1,
+ "gap": 85,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 26 km SSW of Westbrook, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-101.088, 32.129, 5.8838]
+ },
+ "id": "tx2024xgle"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.12,
+ "place": "4 km SSW of Pearblossom, CA",
+ "time": 1732649831240,
+ "updated": 1732650554621,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690540",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690540.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "ci",
+ "code": "37690540",
+ "ids": ",ci37690540,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 5,
+ "dmin": 0.03141,
+ "rms": 0.04,
+ "gap": 165,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 4 km SSW of Pearblossom, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.9326667, 34.4741667, 7.32]
+ },
+ "id": "ci37690540"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "49 km W of Salamatof, Alaska",
+ "time": 1732648870317,
+ "updated": 1732648956307,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7qbms7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7qbms7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f7qbms7",
+ "ids": ",ak024f7qbms7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.39,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 49 km W of Salamatof, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2098, 60.694, 86.4] },
+ "id": "ak024f7qbms7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "60 km S of Kingston, Nevada",
+ "time": 1732648650982,
+ "updated": 1732661368845,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888009",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888009.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nn",
+ "code": "00888009",
+ "ids": ",nn00888009,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.518,
+ "rms": 0.1345,
+ "gap": 153.55,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 1.1 Explosion - 60 km S of Kingston, Nevada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1368, 38.6644, 12.5]
+ },
+ "id": "nn00888009"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "35 km NNW of Mentone, Texas",
+ "time": 1732648470613,
+ "updated": 1732715590447,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgkd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgkd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xgkd",
+ "ids": ",tx2024xgkd,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 35 km NNW of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.787, 31.979, 6.8689]
+ },
+ "id": "tx2024xgkd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.39,
+ "place": "18 km SSE of Rio Dell, CA",
+ "time": 1732648448730,
+ "updated": 1732649670374,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090746",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090746.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 88,
+ "net": "nc",
+ "code": "75090746",
+ "ids": ",nc75090746,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.06481,
+ "rms": 0.11,
+ "gap": 58,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 18 km SSE of Rio Dell, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.983665466309, 40.371166229248, 29.1700000762939]
+ },
+ "id": "nc75090746"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.54,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732648040830,
+ "updated": 1732649669373,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090741",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090741.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75090741",
+ "ids": ",nc75090741,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.004631,
+ "rms": 0.07,
+ "gap": 97,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.814331054688, 38.8201675415039, 5.19000005722046]
+ },
+ "id": "nc75090741"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.96000004,
+ "place": "5 km SE of Pāhala, Hawaii",
+ "time": 1732647415820,
+ "updated": 1732647510810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542112",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542112.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 59,
+ "net": "hv",
+ "code": "74542112",
+ "ids": ",hv74542112,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.01348,
+ "rms": 0.100000001,
+ "gap": 168,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 5 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.450668334961, 19.1634998321533, 33.5499992370605]
+ },
+ "id": "hv74542112"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732647093520,
+ "updated": 1732648641280,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090736",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090736.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090736",
+ "ids": ",nc75090736,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.005925,
+ "rms": 0.01,
+ "gap": 85,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.802833557129, 38.8251647949219, 2.60999989509583]
+ },
+ "id": "nc75090736"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.19000006,
+ "place": "11 km ENE of Pāhala, Hawaii",
+ "time": 1732646800070,
+ "updated": 1732646900340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74542087",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74542087.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "hv",
+ "code": "74542087",
+ "ids": ",hv74542087,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.0229,
+ "rms": 0.109999999,
+ "gap": 154,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 11 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.375839233398, 19.2271671295166, 30.7700004577637]
+ },
+ "id": "hv74542087"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "20 km W of Sitka, Alaska",
+ "time": 1732646244310,
+ "updated": 1732737483390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380113",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380113.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "av",
+ "code": "93380113",
+ "ids": ",av93380113,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02584,
+ "rms": 0.22,
+ "gap": 157,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 20 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.6645, 57.0551666666667, 7.21]
+ },
+ "id": "av93380113"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.41,
+ "place": "14 km E of Milford, Utah",
+ "time": 1732645939230,
+ "updated": 1732649644820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087266",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087266.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "uu",
+ "code": "80087266",
+ "ids": ",uu80087266,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.03656,
+ "rms": 0.11,
+ "gap": 212,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 14 km E of Milford, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.847333333333, 38.3843333333333, 8.45]
+ },
+ "id": "uu80087266"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "28 km E of Alum Rock, CA",
+ "time": 1732645757540,
+ "updated": 1732650439454,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090731",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090731.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75090731",
+ "ids": ",nc75090731,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.0274,
+ "rms": 0.07,
+ "gap": 63,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 28 km E of Alum Rock, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.527333333333, 37.447, 7.86]
+ },
+ "id": "nc75090731"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.01,
+ "place": "60 km SE of Pedro Bay, Alaska",
+ "time": 1732645706280,
+ "updated": 1732737926510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027499",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027499.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027499",
+ "ids": ",av93027499,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.00534,
+ "rms": 0.09,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 60 km SE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.436, 59.3596666666667, -0.63]
+ },
+ "id": "av93027499"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732645565290,
+ "updated": 1732648170218,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090726",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090726.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090726",
+ "ids": ",nc75090726,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.008508,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.777168273926, 38.7918319702148, 1.66999995708466]
+ },
+ "id": "nc75090726"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "16 km N of Borrego Springs, CA",
+ "time": 1732645479450,
+ "updated": 1732647635553,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987696",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987696.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40987696",
+ "ids": ",ci40987696,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.1281,
+ "rms": 0.16,
+ "gap": 109,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 16 km N of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3996667, 33.3958333, 10.82]
+ },
+ "id": "ci40987696"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732645247310,
+ "updated": 1732647437132,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090721",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090721.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090721",
+ "ids": ",nc75090721,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.001852,
+ "rms": 0.01,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.807998657227, 38.8224983215332, 2.80999994277954]
+ },
+ "id": "nc75090721"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.27,
+ "place": "5 km W of Cobb, CA",
+ "time": 1732644740290,
+ "updated": 1732646236987,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090711",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090711.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "nc",
+ "code": "75090711",
+ "ids": ",nc75090711,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.00683,
+ "rms": 0.02,
+ "gap": 52,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 5 km W of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.782165527344, 38.8199996948242, 1.44000005722046]
+ },
+ "id": "nc75090711"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.58,
+ "place": "5 km NE of Petrolia, CA",
+ "time": 1732644733280,
+ "updated": 1732645769934,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090706",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090706.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "nc",
+ "code": "75090706",
+ "ids": ",nc75090706,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 5,
+ "dmin": 0.05408,
+ "rms": 0.02,
+ "gap": 152,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 5 km NE of Petrolia, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-124.251502990723, 40.3641662597656, 5.65000009536743]
+ },
+ "id": "nc75090706"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "54 km S of Whites City, New Mexico",
+ "time": 1732644181257,
+ "updated": 1732714848391,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xght",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xght.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xght",
+ "ids": ",tx2024xght,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 54 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.36, 31.686, 7.843] },
+ "id": "tx2024xght"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "6 km ESE of Califon, New Jersey",
+ "time": 1732643875434,
+ "updated": 1732769958657,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nubb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nubb.geojson",
+ "felt": 11,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "us",
+ "code": "7000nubb",
+ "ids": ",us7000nubb,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.014,
+ "rms": 0.18,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km ESE of Califon, New Jersey"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.7686, 40.6914, 4.514]
+ },
+ "id": "us7000nubb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.52,
+ "place": "28 km S of Morton, Washington",
+ "time": 1732643441710,
+ "updated": 1732654071870,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061516",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061516.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "uw",
+ "code": "62061516",
+ "ids": ",uw62061516,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.03376,
+ "rms": 0.1,
+ "gap": 237,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 28 km S of Morton, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.23016666666666, 46.308, 2.08]
+ },
+ "id": "uw62061516"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "6 km NW of The Geysers, CA",
+ "time": 1732643054570,
+ "updated": 1732645040835,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090701",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090701.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "nc",
+ "code": "75090701",
+ "ids": ",nc75090701,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.008838,
+ "rms": 0.02,
+ "gap": 58,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 6 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.818168640137, 38.8068351745605, 2.97000002861023]
+ },
+ "id": "nc75090701"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "18 km ENE of Little Lake, CA",
+ "time": 1732642605580,
+ "updated": 1732644194722,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987640",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987640.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40987640",
+ "ids": ",ci40987640,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.02508,
+ "rms": 0.14,
+ "gap": 104,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 18 km ENE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7348333, 36.0206667, 1.8]
+ },
+ "id": "ci40987640"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.64,
+ "place": "16 km ESE of Boonville, CA",
+ "time": 1732642489500,
+ "updated": 1732644569776,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090696",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090696.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "nc",
+ "code": "75090696",
+ "ids": ",nc75090696,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.0327,
+ "rms": 0.05,
+ "gap": 87,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 16 km ESE of Boonville, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.186668395996, 38.9728317260742, 3.65000009536743]
+ },
+ "id": "nc75090696"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "36 km WNW of Hakui, Japan",
+ "time": 1732641587379,
+ "updated": 1732643164040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nub4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nub4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "7000nub4",
+ "ids": ",us7000nub4,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 99,
+ "dmin": 1.516,
+ "rms": 0.8,
+ "gap": 57,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 4.9 - 36 km WNW of Hakui, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [136.4128, 37.0257, 10] },
+ "id": "us7000nub4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732640763540,
+ "updated": 1732736639530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93380028",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93380028.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "av",
+ "code": "93380028",
+ "ids": ",av93380028,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03185,
+ "rms": 0.1,
+ "gap": 168,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.6515, 57.0483333333333, 6.79]
+ },
+ "id": "av93380028"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "16 km E of Hebgen Lake Estates, Montana",
+ "time": 1732640085450,
+ "updated": 1732641318790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80001723",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80001723.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "uu",
+ "code": "80001723",
+ "ids": ",uu80001723,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.03696,
+ "rms": 0.17,
+ "gap": 126,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 16 km E of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.988166666667, 44.794, 8.82]
+ },
+ "id": "uu80001723"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.63,
+ "place": "15 km E of Hebgen Lake Estates, Montana",
+ "time": 1732640058880,
+ "updated": 1732640899370,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087261",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087261.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "uu",
+ "code": "80087261",
+ "ids": ",uu80087261,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.03822,
+ "rms": 0.17,
+ "gap": 117,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 15 km E of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.993666666667, 44.7965, 9.57]
+ },
+ "id": "uu80087261"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "85 km NW of Karluk, Alaska",
+ "time": 1732639974155,
+ "updated": 1732735318590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7oq2jw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7oq2jw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ak",
+ "code": "024f7oq2jw",
+ "ids": ",av93380013,ak024f7oq2jw,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 85 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.3019, 58.192, 2.3] },
+ "id": "ak024f7oq2jw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.63,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732639524940,
+ "updated": 1732644130000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40987584",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40987584.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "ci",
+ "code": "40987584",
+ "ids": ",ci40987584,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 63,
+ "dmin": 0.07115,
+ "rms": 0.16,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1506667, 34.265, 4.55]
+ },
+ "id": "ci40987584"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "6 km ESE of Valle Vista, CA",
+ "time": 1732639042340,
+ "updated": 1732646913634,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800911",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800911.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "40800911",
+ "ids": ",ci40800911,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.08343,
+ "rms": 0.12,
+ "gap": 170,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 6 km ESE of Valle Vista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8321667, 33.7206667, 15.91]
+ },
+ "id": "ci40800911"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.36,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732638583110,
+ "updated": 1732734861440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379988",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379988.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379988",
+ "ids": ",av93379988,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.07469,
+ "rms": 0.06,
+ "gap": 125,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.257666666667, 61.3211666666667, 1.25]
+ },
+ "id": "av93379988"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "7 km NE of Pāhala, Hawaii",
+ "time": 1732638343340,
+ "updated": 1732652275980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541997",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541997.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "hv",
+ "code": "74541997",
+ "ids": ",hv74541997,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0.04075,
+ "rms": 0.11,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 7 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.4375, 19.2528333333333, 31.56]
+ },
+ "id": "hv74541997"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.23,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732638133790,
+ "updated": 1732734338990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379978",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379978.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "av",
+ "code": "93379978",
+ "ids": ",av93379978,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02894,
+ "rms": 0.09,
+ "gap": 155,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.653833333333, 57.0583333333333, 6.79]
+ },
+ "id": "av93379978"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.31,
+ "place": "64 km WNW of Tyonek, Alaska",
+ "time": 1732637982180,
+ "updated": 1732734062680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027479",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027479.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027479",
+ "ids": ",av93027479,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.04759,
+ "rms": 0.08,
+ "gap": 108,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 64 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.249833333333, 61.2783333333333, 3.03]
+ },
+ "id": "av93027479"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.41,
+ "place": "65 km WNW of Tyonek, Alaska",
+ "time": 1732637978750,
+ "updated": 1732733525210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379973",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379973.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379973",
+ "ids": ",av93379973,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.05625,
+ "rms": 0.1,
+ "gap": 203,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 65 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2635, 61.2858333333333, 0.57]
+ },
+ "id": "av93379973"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "22 km SSE of Twentynine Palms, CA",
+ "time": 1732637048200,
+ "updated": 1732647391920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800879",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800879.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ci",
+ "code": "40800879",
+ "ids": ",ci40800879,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 40,
+ "dmin": 0.04701,
+ "rms": 0.15,
+ "gap": 50,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 22 km SSE of Twentynine Palms, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.993, 33.9536667, 8.07]
+ },
+ "id": "ci40800879"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "13 km SSW of Searles Valley, CA",
+ "time": 1732636676120,
+ "updated": 1732641699012,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800871",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800871.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40800871",
+ "ids": ",ci40800871,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.03376,
+ "rms": 0.12,
+ "gap": 111,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 13 km SSW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4651667, 35.6648333, 8.83]
+ },
+ "id": "ci40800871"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "71 km NE of Nikolski, Alaska",
+ "time": 1732635382200,
+ "updated": 1732695282440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027474",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027474.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "av",
+ "code": "93027474",
+ "ids": ",av93027474,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02709,
+ "rms": 0.05,
+ "gap": 269,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 71 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.2025, 53.4423333333333, 3.17]
+ },
+ "id": "av93027474"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "164 km SSE of Lata, Solomon Islands",
+ "time": 1732635269567,
+ "updated": 1732643807040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu9j",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu9j.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nu9j",
+ "ids": ",us7000nu9j,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 3.461,
+ "rms": 0.81,
+ "gap": 143,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 164 km SSE of Lata, Solomon Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [166.5218, -12.029, 138.042]
+ },
+ "id": "us7000nu9j"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.57,
+ "place": "64 km ENE of Pedro Bay, Alaska",
+ "time": 1732635176080,
+ "updated": 1732693916110,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379918",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379918.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379918",
+ "ids": ",av93379918,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01446,
+ "rms": 0.16,
+ "gap": 90,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 64 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.076666666667, 60.0445, 0.62]
+ },
+ "id": "av93379918"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.61,
+ "place": "8 km NE of Montecito, CA",
+ "time": 1732635108270,
+ "updated": 1732657289087,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800863",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800863.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "ci",
+ "code": "40800863",
+ "ids": ",ci40800863,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.07142,
+ "rms": 0.21,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 8 km NE of Montecito, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.564, 34.4846667, 9.17]
+ },
+ "id": "ci40800863"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "9 km WNW of Hebgen Lake Estates, Montana",
+ "time": 1732634778400,
+ "updated": 1732636348230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087256",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087256.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "uu",
+ "code": "80087256",
+ "ids": ",uu80087256,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.08889,
+ "rms": 0.17,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 9 km WNW of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.301666666667, 44.7983333333333, 11.41]
+ },
+ "id": "uu80087256"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.09,
+ "place": "70 km WNW of Tyonek, Alaska",
+ "time": 1732634629890,
+ "updated": 1732693514190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379903",
+ "ids": ",av93379903,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.04128,
+ "rms": 0.18,
+ "gap": 118,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 70 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.363166666667, 61.3, 2.23]
+ },
+ "id": "av93379903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.16,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732634061670,
+ "updated": 1732693187610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379898",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379898.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379898",
+ "ids": ",av93379898,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06958,
+ "rms": 0.11,
+ "gap": 122,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2625, 61.3116666666667, 1.6]
+ },
+ "id": "av93379898"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.51,
+ "place": "7 km SE of Lake Pillsbury, CA",
+ "time": 1732634008160,
+ "updated": 1732657468272,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090676",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090676.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "nc",
+ "code": "75090676",
+ "ids": ",nc75090676,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.05058,
+ "rms": 0.19,
+ "gap": 42,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 7 km SE of Lake Pillsbury, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.887333333333, 39.382, 7.67]
+ },
+ "id": "nc75090676"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "5 km SW of Anderson Springs, CA",
+ "time": 1732633704700,
+ "updated": 1732635136690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090666",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090666.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090666",
+ "ids": ",nc75090666,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.02847,
+ "rms": 0.13,
+ "gap": 150,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km SW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.713500976562, 38.7345008850098, -0.730000019073486]
+ },
+ "id": "nc75090666"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "53 km S of Whites City, New Mexico",
+ "time": 1732633441444,
+ "updated": 1732648519184,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xgbv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xgbv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xgbv",
+ "ids": ",tx2024xgbv,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 30,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 53 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.363, 31.695, 7.4329]
+ },
+ "id": "tx2024xgbv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "14 km SSE of Mammoth Lakes, CA",
+ "time": 1732633430950,
+ "updated": 1732634539630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090661",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090661.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75090661",
+ "ids": ",nc75090661,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.05575,
+ "rms": 0.04,
+ "gap": 168,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 14 km SSE of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.874336242676, 37.5473327636719, 5.05999994277954]
+ },
+ "id": "nc75090661"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.74,
+ "place": "4 km SW of Anderson Springs, CA",
+ "time": 1732633148080,
+ "updated": 1732642443040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090656",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090656.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 116,
+ "net": "nc",
+ "code": "75090656",
+ "ids": ",nc75090656,us7000nu9e,",
+ "sources": ",nc,us,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 61,
+ "dmin": 0.01555,
+ "rms": 0.07,
+ "gap": 28,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.7 - 4 km SW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.71849822998, 38.7468338012695, 1.41999995708466]
+ },
+ "id": "nc75090656"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "38 km WNW of Hakui, Japan",
+ "time": 1732632771262,
+ "updated": 1732633817040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu9d",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu9d.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "7000nu9d",
+ "ids": ",us7000nu9d,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 94,
+ "dmin": 1.535,
+ "rms": 0.68,
+ "gap": 51,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 4.9 - 38 km WNW of Hakui, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [136.3613, 36.9528, 5.404]
+ },
+ "id": "us7000nu9d"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "48 km ENE of Stratford, New Zealand",
+ "time": 1732632407627,
+ "updated": 1732719025782,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu9b",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu9b.geojson",
+ "felt": 3,
+ "cdi": 2.7,
+ "mmi": 2.685,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 370,
+ "net": "us",
+ "code": "7000nu9b",
+ "ids": ",us7000nu9b,",
+ "sources": ",us,",
+ "types": ",dyfi,losspager,origin,phase-data,shakemap,",
+ "nst": 60,
+ "dmin": 0.62,
+ "rms": 0.78,
+ "gap": 44,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 48 km ENE of Stratford, New Zealand"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [174.7776, -39.1308, 211.559]
+ },
+ "id": "us7000nu9b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "35 km NE of Pedro Bay, Alaska",
+ "time": 1732631668394,
+ "updated": 1732643957161,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7nf9sh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7nf9sh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "ak",
+ "code": "024f7nf9sh",
+ "ids": ",us7000nu98,ak024f7nf9sh,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 35 km NE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.6508, 60.0058, 157.7]
+ },
+ "id": "ak024f7nf9sh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "16 km S of Volcano, Hawaii",
+ "time": 1732631176330,
+ "updated": 1732631348230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541907",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541907.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74541907",
+ "ids": ",hv74541907,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 45,
+ "dmin": 0.02231,
+ "rms": 0.170000002,
+ "gap": 142,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 16 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.207504272461, 19.296667098999, 0.400000005960464]
+ },
+ "id": "hv74541907"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.35,
+ "place": "25 km N of Ivanof Bay, Alaska",
+ "time": 1732630632600,
+ "updated": 1732692870130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027469",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027469.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027469",
+ "ids": ",av93027469,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.04916,
+ "rms": 0.1,
+ "gap": 111,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 25 km N of Ivanof Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-159.485166666667, 56.1295, 7.36]
+ },
+ "id": "av93027469"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "39 km W of Hakui, Japan",
+ "time": 1732630430353,
+ "updated": 1732631730040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu95",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu95.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nu95",
+ "ids": ",us7000nu95,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 1.537,
+ "rms": 0.82,
+ "gap": 54,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 39 km W of Hakui, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [136.3469, 36.9141, 6.766]
+ },
+ "id": "us7000nu95"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.14,
+ "place": "97 km NW of Aleneva, Alaska",
+ "time": 1732629800960,
+ "updated": 1732691550190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379818",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379818.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379818",
+ "ids": ",av93379818,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.06776,
+ "rms": 0.17,
+ "gap": 330,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 97 km NW of Aleneva, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.217833333333, 58.603, 6.74]
+ },
+ "id": "av93379818"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.01,
+ "place": "11 km E of Ronan, Montana",
+ "time": 1732628942240,
+ "updated": 1732654473400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067018",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067018.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "mb",
+ "code": "90067018",
+ "ids": ",mb90067018,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04312,
+ "rms": 0.04,
+ "gap": 166,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 11 km E of Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.9455, 47.5328333333333, 17.12]
+ },
+ "id": "mb90067018"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 6.1,
+ "place": "42 km WNW of Hakui, Japan",
+ "time": 1732628823695,
+ "updated": 1732797073735,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu90",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu90.geojson",
+ "felt": 53,
+ "cdi": 6.5,
+ "mmi": 5.778,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 607,
+ "net": "us",
+ "code": "7000nu90",
+ "ids": ",us7000nu90,",
+ "sources": ",us,",
+ "types": ",dyfi,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",
+ "nst": 276,
+ "dmin": 1.571,
+ "rms": 0.8,
+ "gap": 15,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 6.1 - 42 km WNW of Hakui, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [136.3492, 37.0484, 10] },
+ "id": "us7000nu90"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01,
+ "place": "72 km W of Adak, Alaska",
+ "time": 1732628756830,
+ "updated": 1732690568770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379778",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379778.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "av",
+ "code": "93379778",
+ "ids": ",av93379778,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.09005,
+ "rms": 0.1,
+ "gap": 159,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 72 km W of Adak, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-177.686833333333, 51.8566666666667, 3.4]
+ },
+ "id": "av93379778"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.63,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732628583390,
+ "updated": 1732689830330,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379773",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379773.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379773",
+ "ids": ",av93379773,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.09383,
+ "rms": 0.11,
+ "gap": 135,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.281666666667, 61.3418333333333, 0.23]
+ },
+ "id": "av93379773"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.78999996,
+ "place": "14 km SSE of Fern Forest, Hawaii",
+ "time": 1732628406070,
+ "updated": 1732628503600,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541817",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541817.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74541817",
+ "ids": ",hv74541817,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.04121,
+ "rms": 0.270000011,
+ "gap": 165,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 14 km SSE of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.071334838867, 19.3541660308838, 3.28999996185303]
+ },
+ "id": "hv74541817"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.17,
+ "place": "27 km S of Morton, Washington",
+ "time": 1732628232240,
+ "updated": 1732653762490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061466",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061466.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "uw",
+ "code": "62061466",
+ "ids": ",uw62061466,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.03465,
+ "rms": 0.1,
+ "gap": 103,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 27 km S of Morton, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.2215, 46.30983333333333, 3.56]
+ },
+ "id": "uw62061466"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.22,
+ "place": "65 km WNW of Beluga, Alaska",
+ "time": 1732628087340,
+ "updated": 1732689368130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379763",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379763.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379763",
+ "ids": ",av93379763,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06241,
+ "rms": 0.06,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 65 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.249333333333, 61.308, 2.24]
+ },
+ "id": "av93379763"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.41,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732628064580,
+ "updated": 1732631191520,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80001718",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80001718.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "uu",
+ "code": "80001718",
+ "ids": ",uu80001718,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.04655,
+ "rms": 0.07,
+ "gap": 169,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.987, 44.8038333333333, 9.6]
+ },
+ "id": "uu80001718"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.04,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732628060000,
+ "updated": 1732631120610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087246",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087246.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "uu",
+ "code": "80087246",
+ "ids": ",uu80087246,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.04887,
+ "rms": 0.08,
+ "gap": 172,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.0 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.987333333333, 44.8063333333333, 9.11]
+ },
+ "id": "uu80087246"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "13 km SW of Searles Valley, CA",
+ "time": 1732627824100,
+ "updated": 1732633243086,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800807",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800807.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40800807",
+ "ids": ",ci40800807,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.06855,
+ "rms": 0.13,
+ "gap": 110,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 13 km SW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5051667, 35.6825, 4.31]
+ },
+ "id": "ci40800807"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.3,
+ "place": "45 km E of Beatty, Nevada",
+ "time": 1732627263037,
+ "updated": 1732645386913,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887979",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887979.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nn",
+ "code": "00887979",
+ "ids": ",nn00887979,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 30,
+ "dmin": 0.042,
+ "rms": 0.1182,
+ "gap": 68.07,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 45 km E of Beatty, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.2626, 36.8326, 4.8] },
+ "id": "nn00887979"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "10 km N of Borrego Springs, CA",
+ "time": 1732627091920,
+ "updated": 1732633257097,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800791",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800791.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40800791",
+ "ids": ",ci40800791,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.01997,
+ "rms": 0.21,
+ "gap": 118,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km N of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.36, 33.3458333, 13.67]
+ },
+ "id": "ci40800791"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.79,
+ "place": "61 km ENE of Pedro Bay, Alaska",
+ "time": 1732626908220,
+ "updated": 1732689056550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379758",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379758.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379758",
+ "ids": ",av93379758,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03791,
+ "rms": 0.17,
+ "gap": 126,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 61 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.102833333333, 60.0153333333333, 4.72]
+ },
+ "id": "av93379758"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "69 km N of Petersville, Alaska",
+ "time": 1732626828188,
+ "updated": 1732626996318,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7mpeci",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7mpeci.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7mpeci",
+ "ids": ",ak024f7mpeci,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.15,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 69 km N of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6659, 63.1156, 125.8]
+ },
+ "id": "ak024f7mpeci"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "5 km NW of Fontana, CA",
+ "time": 1732626093390,
+ "updated": 1732641393508,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800783",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800783.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40800783",
+ "ids": ",ci40800783,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.04058,
+ "rms": 0.17,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km NW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4938333, 34.1368333, 3.46]
+ },
+ "id": "ci40800783"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "38 km ENE of Pilar, Philippines",
+ "time": 1732626075110,
+ "updated": 1732636259040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu8w",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu8w.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nu8w",
+ "ids": ",us7000nu8w,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 57,
+ "dmin": 3.043,
+ "rms": 0.56,
+ "gap": 104,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 38 km ENE of Pilar, Philippines"
+ },
+ "geometry": { "type": "Point", "coordinates": [126.4195, 10.0163, 9.37] },
+ "id": "us7000nu8w"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732625933440,
+ "updated": 1732627636795,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090646",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090646.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75090646",
+ "ids": ",nc75090646,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.007625,
+ "rms": 0.03,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831336975098, 38.8455009460449, 1.1599999666214]
+ },
+ "id": "nc75090646"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "42 km ENE of Pilar, Philippines",
+ "time": 1732625832019,
+ "updated": 1732627404040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu8v",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu8v.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nu8v",
+ "ids": ",us7000nu8v,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 3.044,
+ "rms": 0.63,
+ "gap": 104,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 42 km ENE of Pilar, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [126.4571, 10.0065, 6.501]
+ },
+ "id": "us7000nu8v"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "39 km W of Anchor Point, Alaska",
+ "time": 1732625459215,
+ "updated": 1732625592616,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7mbx35",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7mbx35.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f7mbx35",
+ "ids": ",ak024f7mbx35,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 39 km W of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.5258, 59.8129, 84.7]
+ },
+ "id": "ak024f7mbx35"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "54 km S of Whites City, New Mexico",
+ "time": 1732625362571,
+ "updated": 1732627378228,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xfxk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xfxk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "tx",
+ "code": "2024xfxk",
+ "ids": ",tx2024xfxk,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 54 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.357, 31.684, 8.0811]
+ },
+ "id": "tx2024xfxk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "13 km W of Boulder Creek, CA",
+ "time": 1732625165170,
+ "updated": 1732626567669,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090636",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090636.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75090636",
+ "ids": ",nc75090636,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.1062,
+ "rms": 0.03,
+ "gap": 174,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 13 km W of Boulder Creek, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.268836975098, 37.1123352050781, 12.4899997711182]
+ },
+ "id": "nc75090636"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.63,
+ "place": "65 km WNW of Beluga, Alaska",
+ "time": 1732624550470,
+ "updated": 1732687549180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379728",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379728.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379728",
+ "ids": ",av93379728,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.05985,
+ "rms": 0.07,
+ "gap": 141,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 65 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.245333333333, 61.3063333333333, 3.15]
+ },
+ "id": "av93379728"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -1,
+ "place": "77 km NW of Ninilchik, Alaska",
+ "time": 1732624472250,
+ "updated": 1732687178360,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379733",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379733.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379733",
+ "ids": ",av93379733,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.02323,
+ "rms": 0.09,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.0 - 77 km NW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.740666666667, 60.4911666666667, 0.62]
+ },
+ "id": "av93379733"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.80999994,
+ "place": "7 km SSW of Volcano, Hawaii",
+ "time": 1732624465650,
+ "updated": 1732624540970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541722",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541722.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "hv",
+ "code": "74541722",
+ "ids": ",hv74541722,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.005757,
+ "rms": 0.270000011,
+ "gap": 93,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 7 km SSW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.255340576172, 19.3811664581299, 1.14999997615814]
+ },
+ "id": "hv74541722"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.82,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732624396310,
+ "updated": 1732624567440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541717",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541717.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 51,
+ "net": "hv",
+ "code": "74541717",
+ "ids": ",hv74541717,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.008726,
+ "rms": 0.239999995,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.242172241211, 19.386833190918, 1.97000002861023]
+ },
+ "id": "hv74541717"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "22 km NW of Ovalle, Chile",
+ "time": 1732624389199,
+ "updated": 1732645327906,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu8n",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu8n.geojson",
+ "felt": 5,
+ "cdi": 3.8,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 402,
+ "net": "us",
+ "code": "7000nu8n",
+ "ids": ",us7000nu8n,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.328,
+ "rms": 0.79,
+ "gap": 112,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.1 - 22 km NW of Ovalle, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-71.3548, -30.4512, 51.195]
+ },
+ "id": "us7000nu8n"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.08,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732624254960,
+ "updated": 1732644340200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541712",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541712.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "hv",
+ "code": "74541712",
+ "ids": ",hv74541712,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.008985,
+ "rms": 0.11,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.242166666667, 19.383, 1.11]
+ },
+ "id": "hv74541712"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "13 km SW of Moose Creek, Alaska",
+ "time": 1732624249642,
+ "updated": 1732624362118,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7m7m10",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7m7m10.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f7m7m10",
+ "ids": ",ak024f7m7m10,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.29,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 13 km SW of Moose Creek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3205, 64.6156, 22] },
+ "id": "ak024f7m7m10"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.17,
+ "place": "75 km NW of Karluk, Alaska",
+ "time": 1732624245350,
+ "updated": 1732688905760,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379723",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379723.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379723",
+ "ids": ",av93379723,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.03556,
+ "rms": 0.15,
+ "gap": 137,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 75 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.2155, 58.1116666666667, 4.09]
+ },
+ "id": "av93379723"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "26 km SW of Egegik, Alaska",
+ "time": 1732624224146,
+ "updated": 1732624706997,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7m7jwf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7m7jwf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f7m7jwf",
+ "ids": ",ak024f7m7jwf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 26 km SW of Egegik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-157.6527, 58.0287, 84.8]
+ },
+ "id": "ak024f7m7jwf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89,
+ "place": "6 km NW of Fontana, CA",
+ "time": 1732624179260,
+ "updated": 1732653071586,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800775",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800775.geojson",
+ "felt": 5,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ci",
+ "code": "40800775",
+ "ids": ",ci40800775,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 97,
+ "dmin": 0.03851,
+ "rms": 0.22,
+ "gap": 18,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 6 km NW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4966667, 34.1371667, 3.7]
+ },
+ "id": "ci40800775"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.06,
+ "place": "11 km NE of Ashford, Washington",
+ "time": 1732623406880,
+ "updated": 1732653398050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061456",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061456.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "uw",
+ "code": "62061456",
+ "ids": ",uw62061456,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.01665,
+ "rms": 0.08,
+ "gap": 137,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 11 km NE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.92516666666667, 46.838166666666666, 11.1]
+ },
+ "id": "uw62061456"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "11 km NE of Dutch Harbor, Alaska",
+ "time": 1732623188720,
+ "updated": 1732688544050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379703",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379703.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "av",
+ "code": "93379703",
+ "ids": ",av93379703,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.1248,
+ "rms": 0.25,
+ "gap": 141,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 11 km NE of Dutch Harbor, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-166.414666666667, 53.9578333333333, 10.64]
+ },
+ "id": "av93379703"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.94,
+ "place": "6 km N of Smiths Ferry, Idaho",
+ "time": 1732622892850,
+ "updated": 1732636956880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066993",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066993.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "mb",
+ "code": "90066993",
+ "ids": ",mb90066993,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.3593,
+ "rms": 0.25,
+ "gap": 109,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 6 km N of Smiths Ferry, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.088833333333, 44.3625, 4.32]
+ },
+ "id": "mb90066993"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "59 km W of Petersville, Alaska",
+ "time": 1732622725321,
+ "updated": 1732622927478,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7m278z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7m278z.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f7m278z",
+ "ids": ",ak024f7m278z,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 59 km W of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.9296, 62.4969, 108.6]
+ },
+ "id": "ak024f7m278z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.05,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732622649390,
+ "updated": 1732687981210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379688",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379688.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379688",
+ "ids": ",av93379688,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.08474,
+ "rms": 0.08,
+ "gap": 56,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.2975, 58.186, 3.54] },
+ "id": "av93379688"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732622626880,
+ "updated": 1732624638438,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090616",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090616.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090616",
+ "ids": ",nc75090616,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.02524,
+ "rms": 0.02,
+ "gap": 114,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.832336425781, 38.8440017700195, 0.259999990463257]
+ },
+ "id": "nc75090616"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.23,
+ "place": "12 km NE of Ashford, Washington",
+ "time": 1732622333290,
+ "updated": 1732653133610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061446",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061446.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "uw",
+ "code": "62061446",
+ "ids": ",uw62061446,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.01489,
+ "rms": 0.07,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 12 km NE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.9275, 46.84433333333333, 10.79]
+ },
+ "id": "uw62061446"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75,
+ "place": "13 km NE of Ashford, Washington",
+ "time": 1732622036920,
+ "updated": 1732652478920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061441",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061441.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "uw",
+ "code": "62061441",
+ "ids": ",uw62061441,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 0.02051,
+ "rms": 0.1,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 13 km NE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.92083333333333, 46.84883333333333, 10.56]
+ },
+ "id": "uw62061441"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "15 km W of Imperial, CA",
+ "time": 1732621990360,
+ "updated": 1732649112880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800767",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800767.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "ci",
+ "code": "40800767",
+ "ids": ",ci40800767,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 43,
+ "dmin": 0.02247,
+ "rms": 0.22,
+ "gap": 31,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 15 km W of Imperial, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.7286667, 32.828, 7.51]
+ },
+ "id": "ci40800767"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "47 km N of Valdez, Alaska",
+ "time": 1732621343993,
+ "updated": 1732621468249,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7lonc1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7lonc1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ak",
+ "code": "024f7lonc1",
+ "ids": ",ak024f7lonc1,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 47 km N of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.4113, 61.5566, 39] },
+ "id": "ak024f7lonc1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.38,
+ "place": "64 km WNW of Beluga, Alaska",
+ "time": 1732621245710,
+ "updated": 1732681762260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379678",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379678.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379678",
+ "ids": ",av93379678,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.05641,
+ "rms": 0.08,
+ "gap": 117,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 64 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.245833333333, 61.3008333333333, 1.18]
+ },
+ "id": "av93379678"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.46,
+ "place": "17 km NNE of Ashford, Washington",
+ "time": 1732620593110,
+ "updated": 1732651934210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061436",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061436.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "uw",
+ "code": "62061436",
+ "ids": ",uw62061436,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.002427,
+ "rms": 0.11,
+ "gap": 84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 17 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.94783333333334, 46.9025, 5.99]
+ },
+ "id": "uw62061436"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "43 km SSE of Nelchina, Alaska",
+ "time": 1732620464763,
+ "updated": 1732620542461,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7lliwc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7lliwc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f7lliwc",
+ "ids": ",ak024f7lliwc,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.79,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 43 km SSE of Nelchina, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.3385, 61.6577, 37.6]
+ },
+ "id": "ak024f7lliwc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.63,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732619689040,
+ "updated": 1732682065660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379663",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379663.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "av",
+ "code": "93379663",
+ "ids": ",av93379663,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03245,
+ "rms": 0.09,
+ "gap": 168,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.650666666667, 57.0493333333333, 6.9]
+ },
+ "id": "av93379663"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.97,
+ "place": "9 km WNW of Cobb, CA",
+ "time": 1732618920100,
+ "updated": 1732620435923,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090601",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090601.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75090601",
+ "ids": ",nc75090601,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.009902,
+ "rms": 0.04,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 9 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.822830200195, 38.8380012512207, 1.21000003814697]
+ },
+ "id": "nc75090601"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732618857500,
+ "updated": 1732619837855,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090596",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090596.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090596",
+ "ids": ",nc75090596,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.0008329,
+ "rms": 0.02,
+ "gap": 109,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.836502075195, 38.8383331298828, 1.87999999523163]
+ },
+ "id": "nc75090596"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.09,
+ "place": "9 km WNW of Cobb, CA",
+ "time": 1732618737210,
+ "updated": 1732619235768,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090591",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090591.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "nc",
+ "code": "75090591",
+ "ids": ",nc75090591,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 42,
+ "dmin": 0.01085,
+ "rms": 0.04,
+ "gap": 47,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 9 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.821662902832, 38.8375015258789, 1.85000002384186]
+ },
+ "id": "nc75090591"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "40 km NNE of Petersville, Alaska",
+ "time": 1732618651649,
+ "updated": 1732618760383,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7l6hrg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7l6hrg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7l6hrg",
+ "ids": ",ak024f7l6hrg,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.21,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 40 km NNE of Petersville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.4617, 62.827, 39.6] },
+ "id": "ak024f7l6hrg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "13 km NE of Ashford, Washington",
+ "time": 1732618623670,
+ "updated": 1732651529720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061431",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061431.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "uw",
+ "code": "62061431",
+ "ids": ",uw62061431,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.02521,
+ "rms": 0.08,
+ "gap": 90,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 13 km NE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.92916666666666, 46.863, 7.85]
+ },
+ "id": "uw62061431"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "10 km SW of Moose Creek, Alaska",
+ "time": 1732618437854,
+ "updated": 1732618545732,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7l5ox5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7l5ox5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7l5ox5",
+ "ids": ",ak024f7l5ox5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 10 km SW of Moose Creek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.2934, 64.6386, 17.4]
+ },
+ "id": "ak024f7l5ox5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "19 km NNW of Meadow Lakes, Alaska",
+ "time": 1732617970686,
+ "updated": 1732618064539,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7l439o",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7l439o.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f7l439o",
+ "ids": ",ak024f7l439o,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.15,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 19 km NNW of Meadow Lakes, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.6744, 61.7948, 57.9]
+ },
+ "id": "ak024f7l439o"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "27 km WSW of Hawthorne, Nevada",
+ "time": 1732617676793,
+ "updated": 1732641886951,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887977",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887977.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "nn",
+ "code": "00887977",
+ "ids": ",nn00887977,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.12,
+ "rms": 0.143,
+ "gap": 85.75000000000003,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 27 km WSW of Hawthorne, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-118.9065, 38.4115, 9.6] },
+ "id": "nn00887977"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "44 km SE of Pedro Bay, Alaska",
+ "time": 1732617666192,
+ "updated": 1732617805043,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7l30cb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7l30cb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f7l30cb",
+ "ids": ",ak024f7l30cb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.89,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 44 km SE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.5466, 59.504, 119.1]
+ },
+ "id": "ak024f7l30cb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "7 km E of Temecula, CA",
+ "time": 1732617548600,
+ "updated": 1732633331130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800759",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800759.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40800759",
+ "ids": ",ci40800759,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 43,
+ "dmin": 0.0136,
+ "rms": 0.17,
+ "gap": 35,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km E of Temecula, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.0726667, 33.5026667, 9.47]
+ },
+ "id": "ci40800759"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.69,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732616961900,
+ "updated": 1732618039627,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090581",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090581.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75090581",
+ "ids": ",nc75090581,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.007217,
+ "rms": 0.02,
+ "gap": 123,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.830833435059, 38.8448333740234, 0.860000014305115]
+ },
+ "id": "nc75090581"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "38 km S of Ollagüe, Chile",
+ "time": 1732616842726,
+ "updated": 1732622821040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu8a",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu8a.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "7000nu8a",
+ "ids": ",us7000nu8a,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 26,
+ "dmin": 1,
+ "rms": 0.76,
+ "gap": 68,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 38 km S of Ollagüe, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.1957, -21.5647, 118.458]
+ },
+ "id": "us7000nu8a"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "27 km S of Susitna, Alaska",
+ "time": 1732616688619,
+ "updated": 1732616880946,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7kzgfx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7kzgfx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7kzgfx",
+ "ids": ",ak024f7kzgfx,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 27 km S of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.5955, 61.2978, 60.6]
+ },
+ "id": "ak024f7kzgfx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "64 km ENE of Pedro Bay, Alaska",
+ "time": 1732616148607,
+ "updated": 1732622222040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7kxizw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7kxizw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f7kxizw",
+ "ids": ",us7000nu85,ak024f7kxizw,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 64 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.0108, 59.955, 122.6]
+ },
+ "id": "ak024f7kxizw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.81,
+ "place": "5 km SSE of Otra Banda, Dominican Republic",
+ "time": 1732616006650,
+ "updated": 1732622543040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024331002",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024331002.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 223,
+ "net": "pr",
+ "code": "2024331002",
+ "ids": ",us7000nu84,pr2024331002,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.2859,
+ "rms": 0.2,
+ "gap": 174,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 5 km SSE of Otra Banda, Dominican Republic"
+ },
+ "geometry": { "type": "Point", "coordinates": [-68.6526, 18.6043, 115] },
+ "id": "pr2024331002"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.89,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732615398430,
+ "updated": 1732680144950,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379578",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379578.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "av",
+ "code": "93379578",
+ "ids": ",av93379578,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02875,
+ "rms": 0.15,
+ "gap": 164,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.6585, 57.0515, 7.43]
+ },
+ "id": "av93379578"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.59,
+ "place": "16 km ENE of Hebgen Lake Estates, Montana",
+ "time": 1732615234710,
+ "updated": 1732632170770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087241",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087241.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "uu",
+ "code": "80087241",
+ "ids": ",uu80087241,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.042,
+ "rms": 0.2,
+ "gap": 165,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 16 km ENE of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.9855, 44.7986666666667, 8.18]
+ },
+ "id": "uu80087241"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.51,
+ "place": "14 km ESE of Pāhala, Hawaii",
+ "time": 1732614764870,
+ "updated": 1732652502100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541617",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541617.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "hv",
+ "code": "74541617",
+ "ids": ",hv74541617,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 30,
+ "dmin": 0.106,
+ "rms": 0.12,
+ "gap": 197,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 14 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.362666666667, 19.1361666666667, 30.19]
+ },
+ "id": "hv74541617"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732613593070,
+ "updated": 1732679034770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379558",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379558.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "av",
+ "code": "93379558",
+ "ids": ",av93379558,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02527,
+ "rms": 0.11,
+ "gap": 161,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.657166666667, 57.0633333333333, 6.85]
+ },
+ "id": "av93379558"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.42,
+ "place": "23 km ENE of Dutch Harbor, Alaska",
+ "time": 1732613214670,
+ "updated": 1732679647610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027459",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027459.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "av",
+ "code": "93027459",
+ "ids": ",av93027459,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.1638,
+ "rms": 0.14,
+ "gap": 331,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 23 km ENE of Dutch Harbor, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-166.245333333333, 54.002, 20.98]
+ },
+ "id": "av93027459"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732612892410,
+ "updated": 1732613837118,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090571",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090571.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "nc",
+ "code": "75090571",
+ "ids": ",nc75090571,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.007061,
+ "rms": 0.03,
+ "gap": 104,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.842666625977, 38.8193321228027, 2.46000003814697]
+ },
+ "id": "nc75090571"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.14,
+ "place": "1 km NE of Palomas, Puerto Rico",
+ "time": 1732612770870,
+ "updated": 1732617288930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466883",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466883.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "pr",
+ "code": "71466883",
+ "ids": ",pr71466883,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.05024,
+ "rms": 0.08,
+ "gap": 116,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 1 km NE of Palomas, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8606666666667, 18.0223333333333, 14.02]
+ },
+ "id": "pr71466883"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "55 km WSW of Ollagüe, Chile",
+ "time": 1732612554159,
+ "updated": 1732621582040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu80",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu80.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "7000nu80",
+ "ids": ",us7000nu80,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.6,
+ "rms": 0.15,
+ "gap": 83,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - 55 km WSW of Ollagüe, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.7622, -21.3939, 125.605]
+ },
+ "id": "us7000nu80"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.43,
+ "place": "6 km SW of Ponderosa Pines, Montana",
+ "time": 1732611400750,
+ "updated": 1732656391910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90067033",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90067033.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "mb",
+ "code": "90067033",
+ "ids": ",mb90067033,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.2192,
+ "rms": 0.05,
+ "gap": 159,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 6 km SW of Ponderosa Pines, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.424333333333, 45.9883333333333, 4.89]
+ },
+ "id": "mb90067033"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.39,
+ "place": "7 km NW of Aguanga, CA",
+ "time": 1732611145520,
+ "updated": 1732633294700,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800751",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800751.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ci",
+ "code": "40800751",
+ "ids": ",ci40800751,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.01165,
+ "rms": 0.18,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 7 km NW of Aguanga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9241667, 33.4865, 5.99]
+ },
+ "id": "ci40800751"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "46 km NNW of Beluga, Alaska",
+ "time": 1732611084681,
+ "updated": 1732611166576,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7jybr1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7jybr1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f7jybr1",
+ "ids": ",ak024f7jybr1,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.57,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 46 km NNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.4677, 61.5124, 80.9]
+ },
+ "id": "ak024f7jybr1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.56,
+ "place": "16 km SW of Pistol River, Oregon",
+ "time": 1732610480340,
+ "updated": 1732650410400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061416",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061416.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "uw",
+ "code": "62061416",
+ "ids": ",uw62061416,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1532,
+ "rms": 0.2,
+ "gap": 254,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 16 km SW of Pistol River, Oregon"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-124.53933333333333, 42.17966666666667, -0.48]
+ },
+ "id": "uw62061416"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "2 km W of Ponderosa Pines, Montana",
+ "time": 1732610105490,
+ "updated": 1732636489800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066988",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066988.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "mb",
+ "code": "90066988",
+ "ids": ",mb90066988,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.1716,
+ "rms": 0.07,
+ "gap": 153,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km W of Ponderosa Pines, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.393833333333, 46.0343333333333, 14.55]
+ },
+ "id": "mb90066988"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "34 km N of Skwentna, Alaska",
+ "time": 1732609987930,
+ "updated": 1732610109897,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7jufjd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7jufjd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7jufjd",
+ "ids": ",ak024f7jufjd,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.32,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 34 km N of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.4563, 62.2994, 78.1]
+ },
+ "id": "ak024f7jufjd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.92999995,
+ "place": "25 km W of Volcano, Hawaii",
+ "time": 1732609492470,
+ "updated": 1732609604730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541557",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541557.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "hv",
+ "code": "74541557",
+ "ids": ",hv74541557,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.05218,
+ "rms": 0.200000003,
+ "gap": 56,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 25 km W of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.472671508789, 19.4796657562256, 3.24000000953674]
+ },
+ "id": "hv74541557"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.15,
+ "place": "14 km ESE of Lincoln, Montana",
+ "time": 1732609287250,
+ "updated": 1732636123120,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066983",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066983.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "mb",
+ "code": "90066983",
+ "ids": ",mb90066983,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.04889,
+ "rms": 0.08,
+ "gap": 97,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 14 km ESE of Lincoln, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.517666666667, 46.8848333333333, 9.41]
+ },
+ "id": "mb90066983"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.54,
+ "place": "16 km E of Hebgen Lake Estates, Montana",
+ "time": 1732609190520,
+ "updated": 1732631496820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087236",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087236.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "uu",
+ "code": "80087236",
+ "ids": ",uu80087236,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.03786,
+ "rms": 0.16,
+ "gap": 116,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 16 km E of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.989, 44.7951666666667, 8.35]
+ },
+ "id": "uu80087236"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.14,
+ "place": "5 km NW of Cobb, CA",
+ "time": 1732609090160,
+ "updated": 1732610535763,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090566",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090566.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "nc",
+ "code": "75090566",
+ "ids": ",nc75090566,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.01334,
+ "rms": 0.03,
+ "gap": 174,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km NW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.763664245605, 38.8515014648438, 0.759999990463257]
+ },
+ "id": "nc75090566"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.82,
+ "place": "15 km E of Hebgen Lake Estates, Montana",
+ "time": 1732609017270,
+ "updated": 1732630385880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087231",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087231.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "uu",
+ "code": "80087231",
+ "ids": ",uu80087231,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.03817,
+ "rms": 0.17,
+ "gap": 117,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 15 km E of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.993, 44.7963333333333, 8.76]
+ },
+ "id": "uu80087231"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.22,
+ "place": "9 km NW of Delta, B.C., MX",
+ "time": 1732608763780,
+ "updated": 1732642155050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800735",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800735.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 76,
+ "net": "ci",
+ "code": "40800735",
+ "ids": ",ci40800735,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.0349,
+ "rms": 0.3,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 9 km NW of Delta, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.2695, 32.4016667, 6.3]
+ },
+ "id": "ci40800735"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "9 km WNW of Cobb, CA",
+ "time": 1732608751390,
+ "updated": 1732609937688,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090561",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090561.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75090561",
+ "ids": ",nc75090561,",
+ "sources": ",nc,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.009725,
+ "rms": 0.01,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 9 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.823165893555, 38.8400001525879, 2.09999990463257]
+ },
+ "id": "nc75090561"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.3,
+ "place": "51 km ESE of Beatty, Nevada",
+ "time": 1732608686924,
+ "updated": 1732660999919,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888008",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888008.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00888008",
+ "ids": ",nn00888008,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.055,
+ "rms": 0.0849,
+ "gap": 188.89999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 51 km ESE of Beatty, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.2719, 36.6549, 6.2] },
+ "id": "nn00888008"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "127 km WNW of Bhamo, Myanmar",
+ "time": 1732608205941,
+ "updated": 1732610915040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu7y",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu7y.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "7000nu7y",
+ "ids": ",us7000nu7y,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 3.765,
+ "rms": 0.74,
+ "gap": 111,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 127 km WNW of Bhamo, Myanmar"
+ },
+ "geometry": { "type": "Point", "coordinates": [96.1358, 24.8161, 10] },
+ "id": "us7000nu7y"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.17,
+ "place": "8 km NW of Delta, B.C., MX",
+ "time": 1732608060980,
+ "updated": 1732638952275,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800727",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800727.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "ci",
+ "code": "40800727",
+ "ids": ",ci40800727,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.04258,
+ "rms": 0.33,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 8 km NW of Delta, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.2591667, 32.4018333, 5.38]
+ },
+ "id": "ci40800727"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.06,
+ "place": "8 km NW of Delta, B.C., MX",
+ "time": 1732608048050,
+ "updated": 1732639426320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800719",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800719.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 65,
+ "net": "ci",
+ "code": "40800719",
+ "ids": ",ci40800719,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.039,
+ "rms": 0.3,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 8 km NW of Delta, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.2623333, 32.4046667, 10.77]
+ },
+ "id": "ci40800719"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "35 km S of Virginia City, Montana",
+ "time": 1732608011870,
+ "updated": 1732635605820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066978",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066978.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "mb",
+ "code": "90066978",
+ "ids": ",mb90066978,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.158,
+ "rms": 0.11,
+ "gap": 108,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 35 km S of Virginia City, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.9105, 44.9785, 4.75]
+ },
+ "id": "mb90066978"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.51,
+ "place": "131 km NNE of Vieques, Puerto Rico",
+ "time": 1732607954530,
+ "updated": 1732609496921,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024331001",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024331001.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 190,
+ "net": "pr",
+ "code": "2024331001",
+ "ids": ",pr2024331001,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 1.2311,
+ "rms": 0.19,
+ "gap": 260,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.5 - 131 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.3885, 19.5341, 75] },
+ "id": "pr2024331001"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "59 km NE of Masohi, Indonesia",
+ "time": 1732607704656,
+ "updated": 1732608776040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu7t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu7t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 400,
+ "net": "us",
+ "code": "7000nu7t",
+ "ids": ",us7000nu7t,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 1.675,
+ "rms": 0.9,
+ "gap": 61,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - 59 km NE of Masohi, Indonesia"
+ },
+ "geometry": { "type": "Point", "coordinates": [129.3536, -2.9292, 10] },
+ "id": "us7000nu7t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.5,
+ "place": "120 km S of Akhiok, Alaska",
+ "time": 1732607504622,
+ "updated": 1732609356040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7jcxni",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7jcxni.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 188,
+ "net": "ak",
+ "code": "024f7jcxni",
+ "ids": ",us7000nu7r,ak024f7jcxni,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.48,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.5 - 120 km S of Akhiok, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.8085, 55.8855, 21.6]
+ },
+ "id": "ak024f7jcxni"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "37 km WSW of Petersville, Alaska",
+ "time": 1732606022850,
+ "updated": 1732606172355,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7j7p8t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7j7p8t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7j7p8t",
+ "ids": ",ak024f7j7p8t,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 37 km WSW of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.4756, 62.4082, 78.4]
+ },
+ "id": "ak024f7j7p8t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "21 km NNE of Sutton-Alpine, Alaska",
+ "time": 1732606001462,
+ "updated": 1732606095749,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7j7kia",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7j7kia.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f7j7kia",
+ "ids": ",ak024f7j7kia,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 21 km NNE of Sutton-Alpine, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.6753, 61.9631, 37.8]
+ },
+ "id": "ak024f7j7kia"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.53,
+ "place": "2 km E of Hayward, CA",
+ "time": 1732605788720,
+ "updated": 1732606935367,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090546",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090546.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75090546",
+ "ids": ",nc75090546,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.0819,
+ "rms": 0.21,
+ "gap": 62,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 2 km E of Hayward, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.056167602539, 37.6456680297852, 5.48000001907349]
+ },
+ "id": "nc75090546"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "112 km SSW of Chirilagua, El Salvador",
+ "time": 1732605659700,
+ "updated": 1732615811040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu7i",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu7i.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000nu7i",
+ "ids": ",us7000nu7i,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 1.222,
+ "rms": 0.89,
+ "gap": 172,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 112 km SSW of Chirilagua, El Salvador"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-88.4324, 12.2437, 20.144]
+ },
+ "id": "us7000nu7i"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "33 km WNW of Ninilchik, Alaska",
+ "time": 1732605576950,
+ "updated": 1732605665007,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7j625b",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7j625b.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f7j625b",
+ "ids": ",ak024f7j625b,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.4,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 33 km WNW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2547, 60.1221, 68.5]
+ },
+ "id": "ak024f7j625b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "26 km WSW of Anchorage, Alaska",
+ "time": 1732605482776,
+ "updated": 1732605610625,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7j5rsk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7j5rsk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7j5rsk",
+ "ids": ",ak024f7j5rsk,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 26 km WSW of Anchorage, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.3166, 61.0968, 16.6]
+ },
+ "id": "ak024f7j5rsk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "22 km NW of Indian Springs, Nevada",
+ "time": 1732605055888,
+ "updated": 1732641333356,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887975",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887975.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nn",
+ "code": "00887975",
+ "ids": ",nn00887975,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.11,
+ "rms": 0.1459,
+ "gap": 249.50000000000006,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 22 km NW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.8435, 36.7158, 3.3] },
+ "id": "nn00887975"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.7,
+ "place": "123 km NNE of Vieques, Puerto Rico",
+ "time": 1732604765090,
+ "updated": 1732690738040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024331000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024331000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 211,
+ "net": "pr",
+ "code": "2024331000",
+ "ids": ",us7000nu7m,pr2024331000,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 1.184,
+ "rms": 0.44,
+ "gap": 241,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.7 - 123 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.4561, 19.4788, 83] },
+ "id": "pr2024331000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.07,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732604460020,
+ "updated": 1732677317140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379413",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379413.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379413",
+ "ids": ",av93379413,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.07122,
+ "rms": 0.06,
+ "gap": 123,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.256833333333, 61.3168333333333, 1.24]
+ },
+ "id": "av93379413"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.38,
+ "place": "65 km WNW of Beluga, Alaska",
+ "time": 1732604445120,
+ "updated": 1732676975530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379403",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379403.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379403",
+ "ids": ",av93379403,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06933,
+ "rms": 0.06,
+ "gap": 123,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 65 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2555, 61.3148333333333, 1.75]
+ },
+ "id": "av93379403"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "44 km WNW of Clam Gulch, Alaska",
+ "time": 1732604146747,
+ "updated": 1732604303276,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7isd2q",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7isd2q.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7isd2q",
+ "ids": ",ak024f7isd2q,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 44 km WNW of Clam Gulch, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.1086, 60.4116, 86.4]
+ },
+ "id": "ak024f7isd2q"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "5 km SE of Floriston, California",
+ "time": 1732604048418,
+ "updated": 1732660628693,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00888007",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00888007.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nn",
+ "code": "00888007",
+ "ids": ",nn00888007,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.086,
+ "rms": 0.0658,
+ "gap": 173.55,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 5 km SE of Floriston, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.9761, 39.3642, 6.7] },
+ "id": "nn00888007"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "29 km SSE of Minto, Alaska",
+ "time": 1732604017242,
+ "updated": 1732604124605,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7irwws",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7irwws.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f7irwws",
+ "ids": ",ak024f7irwws,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.88,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 29 km SSE of Minto, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.1676, 64.8937, 1] },
+ "id": "ak024f7irwws"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "63 km W of Tyonek, Alaska",
+ "time": 1732603320603,
+ "updated": 1732676061490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7iph7g",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7iph7g.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f7iph7g",
+ "ids": ",av93379378,ak024f7iph7g,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.21,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 63 km W of Tyonek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.3082, 61.1148, 8.8] },
+ "id": "ak024f7iph7g"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.71,
+ "place": "22 km W of Volcano, Hawaii",
+ "time": 1732603198090,
+ "updated": 1732643155290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541487",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541487.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "hv",
+ "code": "74541487",
+ "ids": ",hv74541487,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.05615,
+ "rms": 0.17,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 22 km W of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.441333333333, 19.4723333333333, 4.22]
+ },
+ "id": "hv74541487"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.31,
+ "place": "11 km SSE of Arroyo, Puerto Rico",
+ "time": 1732603103180,
+ "updated": 1732603586000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466858",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466858.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 82,
+ "net": "pr",
+ "code": "71466858",
+ "ids": ",pr71466858,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1211,
+ "rms": 0.12,
+ "gap": 260,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 11 km SSE of Arroyo, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.0258333333333, 17.8716666666667, 12.82]
+ },
+ "id": "pr71466858"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "55 km S of Whites City, New Mexico",
+ "time": 1732602892433,
+ "updated": 1732791000534,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xfla",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xfla.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024xfla",
+ "ids": ",tx2024xfla,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 64,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 55 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.428, 31.676, 7.561] },
+ "id": "tx2024xfla"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.6,
+ "place": "86 km NW of Karluk, Alaska",
+ "time": 1732602887680,
+ "updated": 1732675227410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379368",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379368.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379368",
+ "ids": ",av93379368,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.03814,
+ "rms": 0.08,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 86 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.363333333333, 58.1768333333333, 2.38]
+ },
+ "id": "av93379368"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732602107430,
+ "updated": 1732603035920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090541",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090541.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090541",
+ "ids": ",nc75090541,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.01263,
+ "rms": 0,
+ "gap": 92,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.81600189209, 38.8351669311523, 1.88999998569489]
+ },
+ "id": "nc75090541"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "17 km SSE of Anchorage, Alaska",
+ "time": 1732601815269,
+ "updated": 1732601914413,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7ik0t2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7ik0t2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7ik0t2",
+ "ids": ",ak024f7ik0t2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 17 km SSE of Anchorage, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.7894, 61.0723, 37.1]
+ },
+ "id": "ak024f7ik0t2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "6 km W of Fuig, Puerto Rico",
+ "time": 1732600706550,
+ "updated": 1732601088550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466853",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466853.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "pr",
+ "code": "71466853",
+ "ids": ",pr71466853,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.06327,
+ "rms": 0.03,
+ "gap": 166,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km W of Fuig, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9746666666667, 17.9796666666667, 5.44]
+ },
+ "id": "pr71466853"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.36,
+ "place": "74 km NW of Karluk, Alaska",
+ "time": 1732600599630,
+ "updated": 1732675302880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379338",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379338.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379338",
+ "ids": ",av93379338,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.1026,
+ "rms": 0.04,
+ "gap": 272,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 74 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.4425, 57.9791666666667, 12.61]
+ },
+ "id": "av93379338"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.29999995,
+ "place": "5 km SSW of Pāhala, Hawaii",
+ "time": 1732599545740,
+ "updated": 1732599650100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541457",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541457.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "hv",
+ "code": "74541457",
+ "ids": ",hv74541457,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.03391,
+ "rms": 0.219999999,
+ "gap": 208,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 5 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.497833251953, 19.1585006713867, 31.2000007629395]
+ },
+ "id": "hv74541457"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "8 km NNW of The Geysers, CA",
+ "time": 1732599363650,
+ "updated": 1732601369747,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090536",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090536.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75090536",
+ "ids": ",nc75090536,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.01041,
+ "rms": 0.01,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.819831848145, 38.8305015563965, 1.9099999666214]
+ },
+ "id": "nc75090536"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "65 km ENE of Fallon Station, Nevada",
+ "time": 1732599250899,
+ "updated": 1732650517224,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887987",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887987.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nn",
+ "code": "00887987",
+ "ids": ",nn00887987,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.13,
+ "rms": 0.0827,
+ "gap": 181.84000000000003,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 65 km ENE of Fallon Station, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-118.031, 39.6782, 15.3] },
+ "id": "nn00887987"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "Fiji region",
+ "time": 1732599060440,
+ "updated": 1732600089040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu7a",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu7a.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "7000nu7a",
+ "ids": ",us7000nu7a,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 4.492,
+ "rms": 0.56,
+ "gap": 133,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - Fiji region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.6943, -21.042, 571.926]
+ },
+ "id": "us7000nu7a"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "2 km ENE of Beaumont, CA",
+ "time": 1732598963060,
+ "updated": 1732643145157,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800679",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800679.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40800679",
+ "ids": ",ci40800679,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.02456,
+ "rms": 0.14,
+ "gap": 110,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 2 km ENE of Beaumont, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9553333, 33.9341667, 12.18]
+ },
+ "id": "ci40800679"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "63 km SSW of Whites City, New Mexico",
+ "time": 1732598752546,
+ "updated": 1732732967484,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xfiu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xfiu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024xfiu",
+ "ids": ",tx2024xfiu,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 63 km SSW of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.534, 31.622, 6.8433]
+ },
+ "id": "tx2024xfiu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.84,
+ "place": "22 km WSW of Unalaska, Alaska",
+ "time": 1732598445210,
+ "updated": 1732672831900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379303",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379303.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "av",
+ "code": "93379303",
+ "ids": ",av93379303,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01722,
+ "rms": 0.19,
+ "gap": 198,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 22 km WSW of Unalaska, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-166.849, 53.7926666666667, 4.73]
+ },
+ "id": "av93379303"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "2 km of The Geysers, CA",
+ "time": 1732598312860,
+ "updated": 1732600038597,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090526",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090526.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75090526",
+ "ids": ",nc75090526,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.004467,
+ "rms": 0.01,
+ "gap": 75,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 2 km of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.763336181641, 38.7971649169922, 2.15000009536743]
+ },
+ "id": "nc75090526"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732598216180,
+ "updated": 1732599435528,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090521",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090521.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "nc",
+ "code": "75090521",
+ "ids": ",nc75090521,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.0117,
+ "rms": 0.04,
+ "gap": 43,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.786163330078, 38.8241653442383, 0.400000005960464]
+ },
+ "id": "nc75090521"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.44,
+ "place": "6 km WNW of Cobb, CA",
+ "time": 1732597606260,
+ "updated": 1732598838459,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090516",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090516.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75090516",
+ "ids": ",nc75090516,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.002134,
+ "rms": 0.01,
+ "gap": 77,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 6 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.791000366211, 38.8363342285156, 1.61000001430511]
+ },
+ "id": "nc75090516"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.5,
+ "place": "18 km NW of Susitna, Alaska",
+ "time": 1732597604196,
+ "updated": 1732597700279,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7hwf5k",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7hwf5k.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 96,
+ "net": "ak",
+ "code": "024f7hwf5k",
+ "ids": ",ak024f7hwf5k,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.62,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.5 - 18 km NW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.7951, 61.6471, 59.4]
+ },
+ "id": "ak024f7hwf5k"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.24,
+ "place": "21 km W of Sitka, Alaska",
+ "time": 1732597069350,
+ "updated": 1732670953330,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379283",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379283.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93379283",
+ "ids": ",av93379283,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01563,
+ "rms": 0.11,
+ "gap": 260,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 21 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.683333333333, 57.0593333333333, 7.65]
+ },
+ "id": "av93379283"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "11 km NNW of Four Mile Road, Alaska",
+ "time": 1732596649373,
+ "updated": 1732596742971,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7hkfhl",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7hkfhl.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f7hkfhl",
+ "ids": ",ak024f7hkfhl,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.53,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 11 km NNW of Four Mile Road, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.2491, 64.6922, 16.5]
+ },
+ "id": "ak024f7hkfhl"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.3,
+ "place": "61 km SE of Ōfunato, Japan",
+ "time": 1732595480443,
+ "updated": 1732751043377,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu6z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu6z.geojson",
+ "felt": 1,
+ "cdi": 4.8,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 433,
+ "net": "us",
+ "code": "7000nu6z",
+ "ids": ",us7000nu6z,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 91,
+ "dmin": 2.3,
+ "rms": 0.57,
+ "gap": 93,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.3 - 61 km SE of Ōfunato, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [142.197, 38.659, 35] },
+ "id": "us7000nu6z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.65,
+ "place": "85 km NNW of Karluk, Alaska",
+ "time": 1732595381910,
+ "updated": 1732670642840,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027449",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027449.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027449",
+ "ids": ",av93027449,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.03156,
+ "rms": 0.02,
+ "gap": 241,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 85 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.009666666667, 58.2823333333333, 2.89]
+ },
+ "id": "av93027449"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.6,
+ "place": "85 km NNW of Karluk, Alaska",
+ "time": 1732595351850,
+ "updated": 1732670526230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379253",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379253.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379253",
+ "ids": ",av93379253,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03986,
+ "rms": 0.1,
+ "gap": 147,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 85 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.993166666667, 58.2815, 4.93]
+ },
+ "id": "av93379253"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "36 km NW of Valdez, Alaska",
+ "time": 1732595261226,
+ "updated": 1732595344825,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7hfhe2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7hfhe2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7hfhe2",
+ "ids": ",ak024f7hfhe2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 36 km NW of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.749, 61.3958, 33.7] },
+ "id": "ak024f7hfhe2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.08,
+ "place": "7 km N of Llano, CA",
+ "time": 1732595121480,
+ "updated": 1732633395190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800663",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800663.geojson",
+ "felt": 1,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "ci",
+ "code": "40800663",
+ "ids": ",ci40800663,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 65,
+ "dmin": 0.06423,
+ "rms": 0.19,
+ "gap": 31,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 7 km N of Llano, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7921667, 34.5561667, 8.59]
+ },
+ "id": "ci40800663"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.14,
+ "place": "38 km NNE of Amboy, Washington",
+ "time": 1732594653380,
+ "updated": 1732649583350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061371",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061371.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "uw",
+ "code": "62061371",
+ "ids": ",uw62061371,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.008283,
+ "rms": 0.1,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 38 km NNE of Amboy, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.17516666666667, 46.20433333333333, 7.66]
+ },
+ "id": "uw62061371"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.16,
+ "place": "51 km SW of Adak, Alaska",
+ "time": 1732594633040,
+ "updated": 1732670305160,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379248",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379248.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "av",
+ "code": "93379248",
+ "ids": ",av93379248,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.2573,
+ "rms": 0.13,
+ "gap": 241,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 51 km SW of Adak, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-177.110333333333, 51.5166666666667, 16.97]
+ },
+ "id": "av93379248"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732594261510,
+ "updated": 1732596139133,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090501",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090501.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75090501",
+ "ids": ",nc75090501,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.01167,
+ "rms": 0.01,
+ "gap": 105,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.828330993652, 38.8126678466797, 1.24000000953674]
+ },
+ "id": "nc75090501"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.26,
+ "place": "4 km NE of Ukiah, CA",
+ "time": 1732594248010,
+ "updated": 1732650869503,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090506",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090506.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "nc",
+ "code": "75090506",
+ "ids": ",nc75090506,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.09429,
+ "rms": 0.08,
+ "gap": 45,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 4 km NE of Ukiah, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.186166666667, 39.1755, 8]
+ },
+ "id": "nc75090506"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.57,
+ "place": "13 km SW of Searles Valley, CA",
+ "time": 1732593806410,
+ "updated": 1732633330490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800647",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800647.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40800647",
+ "ids": ",ci40800647,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.08363,
+ "rms": 0.15,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 13 km SW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5198333, 35.6946667, 10.55]
+ },
+ "id": "ci40800647"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "52 km ESE of Denali Park, Alaska",
+ "time": 1732591974654,
+ "updated": 1732592092705,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7gv5eh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7gv5eh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7gv5eh",
+ "ids": ",ak024f7gv5eh,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.55,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 52 km ESE of Denali Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.8929, 63.594, 9.6] },
+ "id": "ak024f7gv5eh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "7 km NW of Fishhook, Alaska",
+ "time": 1732591861048,
+ "updated": 1732591971109,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7gupdu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7gupdu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f7gupdu",
+ "ids": ",ak024f7gupdu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 7 km NW of Fishhook, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.3209, 61.8019, 25.9]
+ },
+ "id": "ak024f7gupdu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732591821000,
+ "updated": 1732670018830,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379208",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379208.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "av",
+ "code": "93379208",
+ "ids": ",av93379208,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02592,
+ "rms": 0.07,
+ "gap": 152,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-135.66, 57.0585, 6.99] },
+ "id": "av93379208"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "50 km ENE of Pedro Bay, Alaska",
+ "time": 1732591666927,
+ "updated": 1732591843267,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7gu284",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7gu284.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f7gu284",
+ "ids": ",ak024f7gu284,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 50 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.2797, 59.9613, 167.3]
+ },
+ "id": "ak024f7gu284"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.54,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732590593720,
+ "updated": 1732591637589,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090481",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090481.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75090481",
+ "ids": ",nc75090481,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.005274,
+ "rms": 0.02,
+ "gap": 87,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.83032989502, 38.8419990539551, 1.26999998092651]
+ },
+ "id": "nc75090481"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.71000004,
+ "place": "14 km S of Fern Forest, Hawaii",
+ "time": 1732590257380,
+ "updated": 1732590399800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541382",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541382.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 45,
+ "net": "hv",
+ "code": "74541382",
+ "ids": ",hv74541382,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.04809,
+ "rms": 0.389999986,
+ "gap": 124,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 14 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.141830444336, 19.3326663970947, -0.699999988079071]
+ },
+ "id": "hv74541382"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "8 km SSE of San Juan Bautista, CA",
+ "time": 1732588822420,
+ "updated": 1732590568476,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090476",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090476.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75090476",
+ "ids": ",nc75090476,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.03262,
+ "rms": 0.06,
+ "gap": 137,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 8 km SSE of San Juan Bautista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.493667602539, 36.7868347167969, 3.32999992370605]
+ },
+ "id": "nc75090476"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "6 km E of Big Lake, Alaska",
+ "time": 1732588071534,
+ "updated": 1732588171611,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7g8mz5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7g8mz5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f7g8mz5",
+ "ids": ",ak024f7g8mz5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.46,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km E of Big Lake, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.8413, 61.5314, 34.2]
+ },
+ "id": "ak024f7g8mz5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.92999995,
+ "place": "7 km ESE of Pāhala, Hawaii",
+ "time": 1732587671000,
+ "updated": 1732587767800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541357",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541357.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "hv",
+ "code": "74541357",
+ "ids": ",hv74541357,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 0.04876,
+ "rms": 0.109999999,
+ "gap": 174,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 7 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.40950012207, 19.1898326873779, 34.7299995422363]
+ },
+ "id": "hv74541357"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.45,
+ "place": "17 km W of Imperial, CA",
+ "time": 1732587327110,
+ "updated": 1732739235497,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800583",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800583.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "ci",
+ "code": "40800583",
+ "ids": ",ci40800583,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.02932,
+ "rms": 0.28,
+ "gap": 55,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 17 km W of Imperial, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.747, 32.8256667, 4.22]
+ },
+ "id": "ci40800583"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.7,
+ "place": "14 km W of Imperial, CA",
+ "time": 1732587298690,
+ "updated": 1732748489040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800575",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800575.geojson",
+ "felt": 1,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 112,
+ "net": "ci",
+ "code": "40800575",
+ "ids": ",ci40800575,us7000nu6c,",
+ "sources": ",ci,us,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 54,
+ "dmin": 0.01558,
+ "rms": 0.3,
+ "gap": 33,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.7 - 14 km W of Imperial, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.7233333, 32.8355, 11.55]
+ },
+ "id": "ci40800575"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "0 km WNW of Anderson Springs, CA",
+ "time": 1732586735850,
+ "updated": 1732587738151,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090466",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090466.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090466",
+ "ids": ",nc75090466,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.007592,
+ "rms": 0.12,
+ "gap": 185,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 0 km WNW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.695999145508, 38.775333404541, 16.4899997711182]
+ },
+ "id": "nc75090466"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.55,
+ "place": "6 km SSW of Morongo Valley, CA",
+ "time": 1732586626130,
+ "updated": 1732633362520,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800567",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800567.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40800567",
+ "ids": ",ci40800567,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.04657,
+ "rms": 0.17,
+ "gap": 110,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 6 km SSW of Morongo Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6113333, 34.0031667, 8.85]
+ },
+ "id": "ci40800567"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.54,
+ "place": "2 km E of Magas Arriba, Puerto Rico",
+ "time": 1732586200900,
+ "updated": 1732586711240,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466843",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466843.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 99,
+ "net": "pr",
+ "code": "71466843",
+ "ids": ",pr71466843,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1335,
+ "rms": 0.14,
+ "gap": 175,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 2 km E of Magas Arriba, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.7453333333333, 18.0148333333333, 12.34]
+ },
+ "id": "pr71466843"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "Fiji region",
+ "time": 1732586084746,
+ "updated": 1732688441040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu6a",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu6a.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "7000nu6a",
+ "ids": ",us7000nu6a,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 77,
+ "dmin": 4.185,
+ "rms": 0.73,
+ "gap": 40,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - Fiji region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.6958, -20.6006, 604.31]
+ },
+ "id": "us7000nu6a"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "34 km S of Virginia City, Montana",
+ "time": 1732585225140,
+ "updated": 1732635189010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066973",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066973.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "mb",
+ "code": "90066973",
+ "ids": ",mb90066973,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1528,
+ "rms": 0.2,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 34 km S of Virginia City, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.902833333333, 44.983, 0.78]
+ },
+ "id": "mb90066973"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "79 km W of San Antonio de los Cobres, Argentina",
+ "time": 1732584927489,
+ "updated": 1732687647040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu68",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu68.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "7000nu68",
+ "ids": ",us7000nu68,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 1.651,
+ "rms": 0.51,
+ "gap": 121,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - 79 km W of San Antonio de los Cobres, Argentina"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.0973, -24.2783, 188.635]
+ },
+ "id": "us7000nu68"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "25 km NW of Stanley, Idaho",
+ "time": 1732584420370,
+ "updated": 1732634616510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066968",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066968.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "mb",
+ "code": "90066968",
+ "ids": ",mb90066968,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.3515,
+ "rms": 0.18,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 25 km NW of Stanley, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.187, 44.3586666666667, 5.09]
+ },
+ "id": "mb90066968"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "6 km N of Sutcliffe, Nevada",
+ "time": 1732584356873,
+ "updated": 1732650149499,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887986",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887986.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nn",
+ "code": "00887986",
+ "ids": ",nn00887986,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 3,
+ "dmin": 0.182,
+ "rms": 0.0153,
+ "gap": 182.35000000000002,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 6 km N of Sutcliffe, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.6047, 40.012, 10.7] },
+ "id": "nn00887986"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.07,
+ "place": "83 km NNW of Karluk, Alaska",
+ "time": 1732583677050,
+ "updated": 1732669195090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027444",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027444.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027444",
+ "ids": ",av93027444,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.0565,
+ "rms": 0.26,
+ "gap": 84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 83 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.104166666667, 58.2346666666667, 35.59]
+ },
+ "id": "av93027444"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "61 km W of Tyonek, Alaska",
+ "time": 1732583428627,
+ "updated": 1732583558222,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7fjifi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7fjifi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f7fjifi",
+ "ids": ",ak024f7fjifi,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.76,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 61 km W of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2549, 60.9766, 104.4]
+ },
+ "id": "ak024f7fjifi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "35 km WSW of Anchor Point, Alaska",
+ "time": 1732583006931,
+ "updated": 1732583205136,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7fi0ad",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7fi0ad.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f7fi0ad",
+ "ids": ",ak024f7fi0ad,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 35 km WSW of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.3988, 59.6309, 69.4]
+ },
+ "id": "ak024f7fi0ad"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "183 km SE of Perryville, Alaska",
+ "time": 1732582849391,
+ "updated": 1732686756040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7fhevf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7fhevf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "ak",
+ "code": "024f7fhevf",
+ "ids": ",us7000nu66,ak024f7fhevf,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.37,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 183 km SE of Perryville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-157.0013, 54.7975, 40.9]
+ },
+ "id": "ak024f7fhevf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "6 km WSW of Gilroy, CA",
+ "time": 1732582838350,
+ "updated": 1732585337860,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090456",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090456.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75090456",
+ "ids": ",nc75090456,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 5,
+ "dmin": 0.03989,
+ "rms": 0.02,
+ "gap": 88,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km WSW of Gilroy, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.622001647949, 36.9791679382324, 6.19999980926514]
+ },
+ "id": "nc75090456"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732582831100,
+ "updated": 1732584735795,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090451",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090451.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090451",
+ "ids": ",nc75090451,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.01211,
+ "rms": 0.01,
+ "gap": 51,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.807334899902, 38.835334777832, 2.22000002861023]
+ },
+ "id": "nc75090451"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "13 km SSW of Mammoth Lakes, CA",
+ "time": 1732582735860,
+ "updated": 1732584137734,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090446",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090446.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75090446",
+ "ids": ",nc75090446,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.07944,
+ "rms": 0.04,
+ "gap": 115,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 13 km SSW of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.018669128418, 37.5248336791992, 1.21000003814697]
+ },
+ "id": "nc75090446"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "6 km WNW of Cobb, CA",
+ "time": 1732582170010,
+ "updated": 1732583535666,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090441",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090441.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75090441",
+ "ids": ",nc75090441,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.002828,
+ "rms": 0.01,
+ "gap": 73,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.788833618164, 38.8358345031738, 1.87999999523163]
+ },
+ "id": "nc75090441"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732581861990,
+ "updated": 1732583371645,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090436",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090436.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090436",
+ "ids": ",nc75090436,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.008687,
+ "rms": 0.03,
+ "gap": 121,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.764999389648, 38.8226661682129, 1.77999997138977]
+ },
+ "id": "nc75090436"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.83,
+ "place": "65 km ENE of Pedro Bay, Alaska",
+ "time": 1732581522500,
+ "updated": 1732667959500,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93379053",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93379053.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93379053",
+ "ids": ",av93379053,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01367,
+ "rms": 0.09,
+ "gap": 95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 65 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.050166666667, 60.0455, -0.52]
+ },
+ "id": "av93379053"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.45,
+ "place": "20 km NNE of Barstow, CA",
+ "time": 1732580895870,
+ "updated": 1732638463450,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800551",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800551.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "ci",
+ "code": "40800551",
+ "ids": ",ci40800551,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.1941,
+ "rms": 0.13,
+ "gap": 46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.5 - 20 km NNE of Barstow, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9058333, 35.0545, 1.67]
+ },
+ "id": "ci40800551"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "23 km ENE of Ashford, Washington",
+ "time": 1732580740110,
+ "updated": 1732648639440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061356",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061356.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "uw",
+ "code": "62061356",
+ "ids": ",uw62061356,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.02273,
+ "rms": 0.07,
+ "gap": 70,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 23 km ENE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.75983333333333, 46.85066666666667, 2.04]
+ },
+ "id": "uw62061356"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.51,
+ "place": "5 km NW of Boron, CA",
+ "time": 1732580722330,
+ "updated": 1732721392123,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800543",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800543.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ci",
+ "code": "40800543",
+ "ids": ",ci40800543,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.09965,
+ "rms": 0.17,
+ "gap": 51,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.5 Quarry Blast - 5 km NW of Boron, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6796667, 35.0333333, -0.82]
+ },
+ "id": "ci40800543"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "8 km NNE of Borrego Springs, CA",
+ "time": 1732579809000,
+ "updated": 1732633400290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800527",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800527.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40800527",
+ "ids": ",ci40800527,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 46,
+ "dmin": 0.009551,
+ "rms": 0.18,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 8 km NNE of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3563333, 33.3236667, 6.5]
+ },
+ "id": "ci40800527"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "70 km N of Petersville, Alaska",
+ "time": 1732579672072,
+ "updated": 1732581166040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f7exhhp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f7exhhp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ak",
+ "code": "024f7exhhp",
+ "ids": ",us7000nu61,ak024f7exhhp,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.46,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 70 km N of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.5388, 63.1212, 115.9]
+ },
+ "id": "ak024f7exhhp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "92 km SSW of Ocós, Guatemala",
+ "time": 1732578988129,
+ "updated": 1732579948040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu5z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu5z.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "7000nu5z",
+ "ids": ",us7000nu5z,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 56,
+ "dmin": 1.742,
+ "rms": 0.94,
+ "gap": 144,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 4.7 - 92 km SSW of Ocós, Guatemala"
+ },
+ "geometry": { "type": "Point", "coordinates": [-92.616, 13.7815, 11.23] },
+ "id": "us7000nu5z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.03,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732578341870,
+ "updated": 1732579771221,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090426",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090426.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "nc",
+ "code": "75090426",
+ "ids": ",nc75090426,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.008039,
+ "rms": 0.02,
+ "gap": 48,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.798332214355, 38.8333320617676, 2.34999990463257]
+ },
+ "id": "nc75090426"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "17 km NNW of Karluk, Alaska",
+ "time": 1732577751587,
+ "updated": 1732577881610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f6593x2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f6593x2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f6593x2",
+ "ids": ",ak024f6593x2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.22,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 17 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.6016, 57.7078, 52.8]
+ },
+ "id": "ak024f6593x2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "15 km SW of Thatcher, Utah",
+ "time": 1732577594000,
+ "updated": 1732578655060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087226",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087226.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "uu",
+ "code": "80087226",
+ "ids": ",uu80087226,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.08774,
+ "rms": 0.18,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 15 km SW of Thatcher, Utah"
+ },
+ "geometry": { "type": "Point", "coordinates": [-112.4165, 41.588, 1.71] },
+ "id": "uu80087226"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.52,
+ "place": "83 km NW of Karluk, Alaska",
+ "time": 1732577475820,
+ "updated": 1732595438090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378998",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378998.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378998",
+ "ids": ",av93378998,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.04164,
+ "rms": 0.08,
+ "gap": 168,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 83 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.298666666667, 58.1715, 0.77]
+ },
+ "id": "av93378998"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "6 km S of Redlands, CA",
+ "time": 1732577141120,
+ "updated": 1732633384421,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800503",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800503.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40800503",
+ "ids": ",ci40800503,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.07575,
+ "rms": 0.17,
+ "gap": 85,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km S of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1946667, 34.0026667, 10.22]
+ },
+ "id": "ci40800503"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "16 km SW of Thatcher, Utah",
+ "time": 1732576527470,
+ "updated": 1732578356690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087216",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087216.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "uu",
+ "code": "80087216",
+ "ids": ",uu80087216,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.09247,
+ "rms": 0.17,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 16 km SW of Thatcher, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.420833333333, 41.582, 2.96]
+ },
+ "id": "uu80087216"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.48,
+ "place": "33 km S of Mossyrock, Washington",
+ "time": 1732576255240,
+ "updated": 1732595184490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061351",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061351.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "uw",
+ "code": "62061351",
+ "ids": ",uw62061351,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.06691,
+ "rms": 0.13,
+ "gap": 150,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 33 km S of Mossyrock, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.43133333333333, 46.233666666666664, 7.73]
+ },
+ "id": "uw62061351"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "4 km S of Mojave, CA",
+ "time": 1732576074000,
+ "updated": 1732733992280,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800487",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800487.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "ci",
+ "code": "40800487",
+ "ids": ",ci40800487,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.1356,
+ "rms": 0.23,
+ "gap": 192,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.5 Quarry Blast - 4 km S of Mojave, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.1785, 35.0123333, -0.87]
+ },
+ "id": "ci40800487"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.87,
+ "place": "2 km WSW of Colwood, Canada",
+ "time": 1732576050370,
+ "updated": 1732598668700,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061346",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061346.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "uw",
+ "code": "62061346",
+ "ids": ",uw62061346,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1255,
+ "rms": 0.08,
+ "gap": 107,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 2 km WSW of Colwood, Canada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.5125, 48.4255, 10.15]
+ },
+ "id": "uw62061346"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.54,
+ "place": "12 km W of Chilliwack, Canada",
+ "time": 1732575210990,
+ "updated": 1732597846670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061341",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061341.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "uw",
+ "code": "62061341",
+ "ids": ",uw62061341,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.108,
+ "rms": 0.13,
+ "gap": 297,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 1.5 Explosion - 12 km W of Chilliwack, Canada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.12133333333334, 49.156333333333336, -0.45]
+ },
+ "id": "uw62061341"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.7,
+ "place": "161 km W of Ferndale, California",
+ "time": 1732574315910,
+ "updated": 1732577172617,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu5p",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu5p.geojson",
+ "felt": 1,
+ "cdi": 3.1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 112,
+ "net": "us",
+ "code": "7000nu5p",
+ "ids": ",us7000nu5p,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 21,
+ "dmin": 1.567,
+ "rms": 0.66,
+ "gap": 272,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.7 - 161 km W of Ferndale, California"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-126.1719, 40.4926, 15.268]
+ },
+ "id": "us7000nu5p"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.42,
+ "place": "28 km S of Ennis, Montana",
+ "time": 1732574235540,
+ "updated": 1732574981700,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "mb",
+ "code": "90066903",
+ "ids": ",mb90066903,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.1223,
+ "rms": 0.2,
+ "gap": 110,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.4 Quarry Blast - 28 km S of Ennis, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.709333333333, 45.0946666666667, -2]
+ },
+ "id": "mb90066903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.15,
+ "place": "3 km SSW of Indios, Puerto Rico",
+ "time": 1732574169480,
+ "updated": 1732575954550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466838",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466838.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 71,
+ "net": "pr",
+ "code": "71466838",
+ "ids": ",pr71466838,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.04519,
+ "rms": 0.18,
+ "gap": 204,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 3 km SSW of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.834, 17.9613333333333, 11.53]
+ },
+ "id": "pr71466838"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "60 km WNW of Toyah, Texas",
+ "time": 1732573514862,
+ "updated": 1732627947268,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xeuw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xeuw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xeuw",
+ "ids": ",tx2024xeuw,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 86,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 60 km WNW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.334, 31.607, 8.2019]
+ },
+ "id": "tx2024xeuw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.04,
+ "place": "22 km W of Petrolia, CA",
+ "time": 1732573357230,
+ "updated": 1732574536708,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090411",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090411.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 64,
+ "net": "nc",
+ "code": "75090411",
+ "ids": ",nc75090411,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.1448,
+ "rms": 0.09,
+ "gap": 297,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 22 km W of Petrolia, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-124.526832580566, 40.2553329467773, 14.6000003814697]
+ },
+ "id": "nc75090411"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.05,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732573321950,
+ "updated": 1732574536617,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090406",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090406.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75090406",
+ "ids": ",nc75090406,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.006641,
+ "rms": 0.03,
+ "gap": 121,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.766166687012, 38.8245010375977, 2.13000011444092]
+ },
+ "id": "nc75090406"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "63 km NW of Petersville, Alaska",
+ "time": 1732572714858,
+ "updated": 1732572840667,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f64ijdp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f64ijdp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f64ijdp",
+ "ids": ",ak024f64ijdp,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.1,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 63 km NW of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.5403, 62.9472, 35.4]
+ },
+ "id": "ak024f64ijdp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.99000001,
+ "place": "11 km ENE of Pāhala, Hawaii",
+ "time": 1732572328380,
+ "updated": 1732572503260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74541187",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74541187.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 61,
+ "net": "hv",
+ "code": "74541187",
+ "ids": ",hv74541187,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.01705,
+ "rms": 0.140000001,
+ "gap": 144,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 11 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.379837036133, 19.2409992218018, 29.7299995422363]
+ },
+ "id": "hv74541187"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.45,
+ "place": "6 km E of Vandenberg Village, CA",
+ "time": 1732572110590,
+ "updated": 1732572647297,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800423",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800423.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "ci",
+ "code": "40800423",
+ "ids": ",ci40800423,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.04419,
+ "rms": 0.3,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km E of Vandenberg Village, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.3963333, 34.7055, 3.21]
+ },
+ "id": "ci40800423"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "81 km W of Ovalle, Chile",
+ "time": 1732571972084,
+ "updated": 1732577113040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu5i",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu5i.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "7000nu5i",
+ "ids": ",us7000nu5i,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.389,
+ "rms": 0.83,
+ "gap": 174,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.1 - 81 km W of Ovalle, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-72.0447, -30.5092, 18.751]
+ },
+ "id": "us7000nu5i"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "57 km WNW of Ninilchik, Alaska",
+ "time": 1732571666952,
+ "updated": 1732571772439,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f6469ev",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f6469ev.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f6469ev",
+ "ids": ",ak024f6469ev,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 57 km WNW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.5979, 60.2752, 95.8]
+ },
+ "id": "ak024f6469ev"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.05,
+ "place": "8 km NNW of The Geysers, CA",
+ "time": 1732571632140,
+ "updated": 1732573168470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090396",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090396.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75090396",
+ "ids": ",nc75090396,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.01139,
+ "rms": 0.01,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.816833496094, 38.8334999084473, 1.89999997615814]
+ },
+ "id": "nc75090396"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "15 km E of Little Lake, CA",
+ "time": 1732570868550,
+ "updated": 1732736939566,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800383",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800383.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "ci",
+ "code": "40800383",
+ "ids": ",ci40800383,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.06739,
+ "rms": 0.12,
+ "gap": 52,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 15 km E of Little Lake, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.741, 35.9235, 8.93] },
+ "id": "ci40800383"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "31 km SSE of Skwentna, Alaska",
+ "time": 1732570418084,
+ "updated": 1732570529297,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f641s8g",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f641s8g.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f641s8g",
+ "ids": ",ak024f641s8g,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 31 km SSE of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.2091, 61.7253, 65.9]
+ },
+ "id": "ak024f641s8g"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.35,
+ "place": "65 km ENE of Pedro Bay, Alaska",
+ "time": 1732570109500,
+ "updated": 1732593830840,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378943",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378943.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378943",
+ "ids": ",av93378943,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01214,
+ "rms": 0.08,
+ "gap": 156,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 65 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.058666666667, 60.0455, 1.32]
+ },
+ "id": "av93378943"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "11 km ESE of North Shore, CA",
+ "time": 1732569850690,
+ "updated": 1732642514881,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690532",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690532.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ci",
+ "code": "37690532",
+ "ids": ",ci37690532,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.03656,
+ "rms": 0.19,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 11 km ESE of North Shore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.8265, 33.5001667, 8.34]
+ },
+ "id": "ci37690532"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "11 km ESE of North Shore, CA",
+ "time": 1732569820650,
+ "updated": 1732640644940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800343",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800343.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ci",
+ "code": "40800343",
+ "ids": ",ci40800343,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 61,
+ "dmin": 0.03684,
+ "rms": 0.19,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 11 km ESE of North Shore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.8265, 33.5008333, 7.9]
+ },
+ "id": "ci40800343"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "11 km NE of Dutch Harbor, Alaska",
+ "time": 1732569772450,
+ "updated": 1732593654940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378938",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378938.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "av",
+ "code": "93378938",
+ "ids": ",av93378938,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.131,
+ "rms": 0.31,
+ "gap": 135,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 11 km NE of Dutch Harbor, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-166.414, 53.9645, 9.5] },
+ "id": "av93378938"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.65,
+ "place": "11 km ESE of North Shore, CA",
+ "time": 1732569490460,
+ "updated": 1732570465738,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800335",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800335.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 42,
+ "net": "ci",
+ "code": "40800335",
+ "ids": ",ci40800335,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 48,
+ "dmin": 0.03658,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 11 km ESE of North Shore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.8268333, 33.5008333, 7.45]
+ },
+ "id": "ci40800335"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.52,
+ "place": "6 km E of Butte, Montana",
+ "time": 1732569473600,
+ "updated": 1732571832900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066878",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066878.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "mb",
+ "code": "90066878",
+ "ids": ",mb90066878,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.07248,
+ "rms": 0.08,
+ "gap": 136,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.5 Quarry Blast - 6 km E of Butte, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.452666666667, 46.0113333333333, -2]
+ },
+ "id": "mb90066878"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "56 km S of Kingston, Nevada",
+ "time": 1732569452436,
+ "updated": 1732574663946,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887943",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887943.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "nn",
+ "code": "00887943",
+ "ids": ",nn00887943,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.825,
+ "rms": 0.199,
+ "gap": 165.70999999999998,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 1.7 Explosion - 56 km S of Kingston, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.0199, 38.7012, 0.2] },
+ "id": "nn00887943"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.64,
+ "place": "11 km ESE of North Shore, CA",
+ "time": 1732569207790,
+ "updated": 1732651067605,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800327",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800327.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "ci",
+ "code": "40800327",
+ "ids": ",ci40800327,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 43,
+ "dmin": 0.03902,
+ "rms": 0.18,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 11 km ESE of North Shore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.8251667, 33.5035, 7.74]
+ },
+ "id": "ci40800327"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732569091160,
+ "updated": 1732569190560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090391",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090391.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090391",
+ "ids": ",nc75090391,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.01226,
+ "rms": 0.03,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.773498535156, 38.7883338928223, 1.08000004291534]
+ },
+ "id": "nc75090391"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732569054180,
+ "updated": 1732640615652,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800319",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800319.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40800319",
+ "ids": ",ci40800319,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.06799,
+ "rms": 0.16,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1473333, 34.2625, 5.88]
+ },
+ "id": "ci40800319"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.54,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732569040380,
+ "updated": 1732571669316,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090386",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090386.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75090386",
+ "ids": ",nc75090386,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.014,
+ "rms": 0.03,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.771835327148, 38.7869987487793, 0.509999990463257]
+ },
+ "id": "nc75090386"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.82,
+ "place": "4 km SSW of Port Ludlow, Washington",
+ "time": 1732569002160,
+ "updated": 1732596278710,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061301",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061301.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 51,
+ "net": "uw",
+ "code": "62061301",
+ "ids": ",uw62061301,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.08824,
+ "rms": 0.31,
+ "gap": 89,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 1.8 Explosion - 4 km SSW of Port Ludlow, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.69766666666666, 47.889, -0.03]
+ },
+ "id": "uw62061301"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.78,
+ "place": "10 km ESE of North Shore, CA",
+ "time": 1732568974630,
+ "updated": 1732575704040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800303",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800303.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 119,
+ "net": "ci",
+ "code": "40800303",
+ "ids": ",ci40800303,us7000nu4c,",
+ "sources": ",ci,us,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 73,
+ "dmin": 0.03231,
+ "rms": 0.18,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 10 km ESE of North Shore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.8306667, 33.4975, 8.72]
+ },
+ "id": "ci40800303"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.64,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732568858140,
+ "updated": 1732570339161,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090366",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090366.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "nc",
+ "code": "75090366",
+ "ids": ",nc75090366,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.01315,
+ "rms": 0.03,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.772834777832, 38.7873344421387, 1.01999998092651]
+ },
+ "id": "nc75090366"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "18 km WNW of Port Alsworth, Alaska",
+ "time": 1732568684705,
+ "updated": 1732568769132,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f63vkza",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f63vkza.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f63vkza",
+ "ids": ",ak024f63vkza,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.27,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 18 km WNW of Port Alsworth, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-154.6382, 60.244, 14.8] },
+ "id": "ak024f63vkza"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "48 km SE of Denali National Park, Alaska",
+ "time": 1732568452704,
+ "updated": 1732568633265,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f63uqr3",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f63uqr3.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f63uqr3",
+ "ids": ",ak024f63uqr3,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.91,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 48 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.924, 63.2924, 0] },
+ "id": "ak024f63uqr3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "37 km ESE of Nabesna, Alaska",
+ "time": 1732568292685,
+ "updated": 1732568438748,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f63lnkk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f63lnkk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f63lnkk",
+ "ids": ",ak024f63lnkk,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.4,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 37 km ESE of Nabesna, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-142.3408, 62.2512, 4.6] },
+ "id": "ak024f63lnkk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.72,
+ "place": "63 km N of Chignik Lagoon, Alaska",
+ "time": 1732566966860,
+ "updated": 1732593258070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027439",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027439.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027439",
+ "ids": ",av93027439,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.0843,
+ "rms": 0.17,
+ "gap": 284,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 63 km N of Chignik Lagoon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-158.379833333333, 56.8703333333333, 5.82]
+ },
+ "id": "av93027439"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "49 km SSE of Nelchina, Alaska",
+ "time": 1732566889780,
+ "updated": 1732566982140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f63gl8y",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f63gl8y.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ak",
+ "code": "024f63gl8y",
+ "ids": ",ak024f63gl8y,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 49 km SSE of Nelchina, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.4207, 61.5821, 34.8]
+ },
+ "id": "ak024f63gl8y"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "51 km S of Whites City, New Mexico",
+ "time": 1732566312578,
+ "updated": 1732790405486,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xeqz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xeqz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xeqz",
+ "ids": ",tx2024xeqz,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 51 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.289, 31.713, 7.7405]
+ },
+ "id": "tx2024xeqz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732565900256,
+ "updated": 1732792956750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xeqs",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xeqs.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024xeqs",
+ "ids": ",tx2024xeqs,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 87,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.293, 31.653, 7.8943]
+ },
+ "id": "tx2024xeqs"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "11 km of Healdsburg, CA",
+ "time": 1732565831940,
+ "updated": 1732565930249,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090356",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090356.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75090356",
+ "ids": ",nc75090356,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.0966,
+ "rms": 0.17,
+ "gap": 225,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 11 km of Healdsburg, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.896331787109, 38.7071647644043, 1.61000001430511]
+ },
+ "id": "nc75090356"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732565736230,
+ "updated": 1732568236915,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090351",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090351.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090351",
+ "ids": ",nc75090351,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.005793,
+ "rms": 0.03,
+ "gap": 111,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.830665588379, 38.8429985046387, 1.30999994277954]
+ },
+ "id": "nc75090351"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.15,
+ "place": "11 km ESE of North Shore, CA",
+ "time": 1732565682570,
+ "updated": 1732568500780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800255",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800255.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 153,
+ "net": "ci",
+ "code": "40800255",
+ "ids": ",ci40800255,us7000nu3m,",
+ "sources": ",ci,us,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 79,
+ "dmin": 0.03415,
+ "rms": 0.21,
+ "gap": 35,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.2 - 11 km ESE of North Shore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.828, 33.4968333, 9.4]
+ },
+ "id": "ci40800255"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.29,
+ "place": "62 km N of Chignik Lagoon, Alaska",
+ "time": 1732565429580,
+ "updated": 1732592851130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027434",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027434.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027434",
+ "ids": ",av93027434,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.07712,
+ "rms": 0.15,
+ "gap": 258,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 62 km N of Chignik Lagoon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-158.370833333333, 56.8613333333333, 10.43]
+ },
+ "id": "av93027434"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "8 km SW of Wrightwood, CA",
+ "time": 1732565155560,
+ "updated": 1732640969462,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800247",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800247.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40800247",
+ "ids": ",ci40800247,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.06724,
+ "rms": 0.15,
+ "gap": 87,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km SW of Wrightwood, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6908333, 34.3006667, 4.03]
+ },
+ "id": "ci40800247"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "11 km SE of Katie, Oklahoma",
+ "time": 1732564834539,
+ "updated": 1732627345743,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xeqc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xeqc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ok",
+ "code": "2024xeqc",
+ "ids": ",ok2024xeqc,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.09988040006,
+ "rms": 0.62,
+ "gap": 76,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.3 Quarry Blast - 11 km SE of Katie, Oklahoma"
+ },
+ "geometry": { "type": "Point", "coordinates": [-97.251, 34.51283333, 0] },
+ "id": "ok2024xeqc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732564779460,
+ "updated": 1732564875100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090336",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090336.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75090336",
+ "ids": ",nc75090336,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.006585,
+ "rms": 0.02,
+ "gap": 118,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.766830444336, 38.824333190918, 2.30999994277954]
+ },
+ "id": "nc75090336"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.29,
+ "place": "11 km ESE of North Shore, CA",
+ "time": 1732564678760,
+ "updated": 1732642697108,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800239",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800239.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40800239",
+ "ids": ",ci40800239,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.04095,
+ "rms": 0.23,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 11 km ESE of North Shore, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.8235, 33.505, 7.4] },
+ "id": "ci40800239"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.26,
+ "place": "7 km NNW of Smiths Ferry, Idaho",
+ "time": 1732564539040,
+ "updated": 1732572259880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066828",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066828.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 79,
+ "net": "mb",
+ "code": "90066828",
+ "ids": ",mb90066828,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.3532,
+ "rms": 0.16,
+ "gap": 85,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 7 km NNW of Smiths Ferry, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.107, 44.3638333333333, 10.52]
+ },
+ "id": "mb90066828"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "41 km SE of Denali National Park, Alaska",
+ "time": 1732563978232,
+ "updated": 1732564095535,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f62xnsv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f62xnsv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f62xnsv",
+ "ids": ",ak024f62xnsv,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.68,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 41 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.1406, 63.2703, 7.5] },
+ "id": "ak024f62xnsv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "136 km SE of Sarangani, Philippines",
+ "time": 1732562295936,
+ "updated": 1732565853040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu3k",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu3k.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "7000nu3k",
+ "ids": ",us7000nu3k,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 2.711,
+ "rms": 1.06,
+ "gap": 106,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 136 km SE of Sarangani, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [126.1971, 4.4112, 78.065]
+ },
+ "id": "us7000nu3k"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.92,
+ "place": "13 km NNE of Brooktrails, CA",
+ "time": 1732562162510,
+ "updated": 1732563567354,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090331",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090331.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "nc",
+ "code": "75090331",
+ "ids": ",nc75090331,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.0889,
+ "rms": 0.1,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 13 km NNE of Brooktrails, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.368667602539, 39.5613327026367, 6.17000007629395]
+ },
+ "id": "nc75090331"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "3 km NNW of The Geysers, CA",
+ "time": 1732562121860,
+ "updated": 1732563137305,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090326",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090326.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090326",
+ "ids": ",nc75090326,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.011,
+ "rms": 0.01,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 3 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.773330688477, 38.7978324890137, 1.30999994277954]
+ },
+ "id": "nc75090326"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "9 km NE of Desert Hot Springs, CA",
+ "time": 1732561096800,
+ "updated": 1732566474956,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800191",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800191.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "ci",
+ "code": "40800191",
+ "ids": ",ci40800191,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.06672,
+ "rms": 0.11,
+ "gap": 56,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 9 km NE of Desert Hot Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4278333, 34.0103333, 7.69]
+ },
+ "id": "ci40800191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "22 km NW of Zharkent, Kazakhstan",
+ "time": 1732560137251,
+ "updated": 1732580569897,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu3e",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu3e.geojson",
+ "felt": 6,
+ "cdi": 3.5,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 314,
+ "net": "us",
+ "code": "7000nu3e",
+ "ids": ",us7000nu3e,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 86,
+ "dmin": 1.02,
+ "rms": 0.63,
+ "gap": 41,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.5 - 22 km NW of Zharkent, Kazakhstan"
+ },
+ "geometry": { "type": "Point", "coordinates": [79.8225, 44.318, 44.479] },
+ "id": "us7000nu3e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.21,
+ "place": "16 km SSE of Ocotillo Wells, CA",
+ "time": 1732559403700,
+ "updated": 1732658358397,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800151.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "ci",
+ "code": "40800151",
+ "ids": ",ci40800151,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.1504,
+ "rms": 0.16,
+ "gap": 60,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.2 Quarry Blast - 16 km SSE of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0826667, 33.0033333, -0.1]
+ },
+ "id": "ci40800151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.33,
+ "place": "11 km ENE of Palomar Observatory, CA",
+ "time": 1732558891000,
+ "updated": 1732567285497,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800135",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800135.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ci",
+ "code": "40800135",
+ "ids": ",ci40800135,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.0983,
+ "rms": 0.27,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 11 km ENE of Palomar Observatory, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7556667, 33.3943333, 1.64]
+ },
+ "id": "ci40800135"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.5,
+ "place": "97 km E of Chignik, Alaska",
+ "time": 1732558813389,
+ "updated": 1732570478040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f626n7e",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f626n7e.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 96,
+ "net": "ak",
+ "code": "024f626n7e",
+ "ids": ",us7000nu3c,ak024f626n7e,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.5 - 97 km E of Chignik, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-156.849, 56.4167, 26.1] },
+ "id": "ak024f626n7e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "36 km E of Rampart, Alaska",
+ "time": 1732558282798,
+ "updated": 1732558503628,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f624qhv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f624qhv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f624qhv",
+ "ids": ",ak024f624qhv,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.69,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 36 km E of Rampart, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.3786, 65.5223, 0] },
+ "id": "ak024f624qhv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "20 km SE of Chickaloon, Alaska",
+ "time": 1732558065928,
+ "updated": 1732558217861,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f623xf8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f623xf8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f623xf8",
+ "ids": ",ak024f623xf8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.57,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 20 km SE of Chickaloon, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.1696, 61.681, 25.5] },
+ "id": "ak024f623xf8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.95000005,
+ "place": "12 km ESE of Pāhala, Hawaii",
+ "time": 1732557774890,
+ "updated": 1732557870750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540917",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540917.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 59,
+ "net": "hv",
+ "code": "74540917",
+ "ids": ",hv74540917,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 38,
+ "dmin": 0.08872,
+ "rms": 0.119999997,
+ "gap": 198,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 12 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.36833190918, 19.1518325805664, 29.3600006103516]
+ },
+ "id": "hv74540917"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.22,
+ "place": "9 km NNE of Point Sur, CA",
+ "time": 1732556803790,
+ "updated": 1732560737037,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090316",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090316.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "nc",
+ "code": "75090316",
+ "ids": ",nc75090316,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.123,
+ "rms": 0.03,
+ "gap": 203,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 9 km NNE of Point Sur, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.880666666667, 36.3853333333333, 16.21]
+ },
+ "id": "nc75090316"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "34 km NW of Toyah, Texas",
+ "time": 1732555626532,
+ "updated": 1732560397974,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xelb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xelb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xelb",
+ "ids": ",tx2024xelb,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 34 km NW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.015, 31.562, 7.4585]
+ },
+ "id": "tx2024xelb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732555382880,
+ "updated": 1732566664587,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xekx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xekx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "tx",
+ "code": "2024xekx",
+ "ids": ",tx2024xekx,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.457, 31.66, 6.0999] },
+ "id": "tx2024xekx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "7 km NW of Doğanşehir, Turkey",
+ "time": 1732555205329,
+ "updated": 1732568176127,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nu33",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nu33.geojson",
+ "felt": 0,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "7000nu33",
+ "ids": ",us7000nu33,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 75,
+ "dmin": 0.508,
+ "rms": 0.65,
+ "gap": 61,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.4 - 7 km NW of Doğanşehir, Turkey"
+ },
+ "geometry": { "type": "Point", "coordinates": [37.8078, 38.1316, 10] },
+ "id": "us7000nu33"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732554979700,
+ "updated": 1732557570678,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090306",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090306.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090306",
+ "ids": ",nc75090306,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.01218,
+ "rms": 0.03,
+ "gap": 83,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.851669311523, 38.8128318786621, 1.17999994754791]
+ },
+ "id": "nc75090306"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.88,
+ "place": "6 km SE of Lytle Creek, CA",
+ "time": 1732554437230,
+ "updated": 1732556465455,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800047",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800047.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40800047",
+ "ids": ",ci40800047,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.02087,
+ "rms": 0.16,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km SE of Lytle Creek, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4648333, 34.219, 8.89]
+ },
+ "id": "ci40800047"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.72,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732554073510,
+ "updated": 1732657954329,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690548",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690548.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "ci",
+ "code": "37690548",
+ "ids": ",ci37690548,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 55,
+ "dmin": 0.073,
+ "rms": 0.22,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1536667, 34.2661667, 4.52]
+ },
+ "id": "ci37690548"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.69,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732554069730,
+ "updated": 1732657543480,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800039",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800039.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ci",
+ "code": "40800039",
+ "ids": ",ci40800039,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 69,
+ "dmin": 0.07266,
+ "rms": 0.14,
+ "gap": 24,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1503333, 34.2666667, 4.8]
+ },
+ "id": "ci40800039"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732554023350,
+ "updated": 1732656845860,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40800031",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40800031.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ci",
+ "code": "40800031",
+ "ids": ",ci40800031,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 61,
+ "dmin": 0.07055,
+ "rms": 0.14,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1508333, 34.2643333, 5.21]
+ },
+ "id": "ci40800031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.51,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732553710430,
+ "updated": 1732553804524,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090296",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090296.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75090296",
+ "ids": ",nc75090296,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01011,
+ "rms": 0,
+ "gap": 116,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.801002502441, 38.8326683044434, 1.54999995231628]
+ },
+ "id": "nc75090296"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732553701040,
+ "updated": 1732553799517,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090291",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090291.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75090291",
+ "ids": ",nc75090291,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.004563,
+ "rms": 0.01,
+ "gap": 109,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831169128418, 38.841667175293, 1.11000001430511]
+ },
+ "id": "nc75090291"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "12 km NE of Ashford, Washington",
+ "time": 1732553680680,
+ "updated": 1732563419890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061281",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061281.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "uw",
+ "code": "62061281",
+ "ids": ",uw62061281,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 26,
+ "dmin": 0.008704,
+ "rms": 0.08,
+ "gap": 88,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 12 km NE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.93916666666667, 46.84733333333333, 9.73]
+ },
+ "id": "uw62061281"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "1 km SSE of Soldotna, Alaska",
+ "time": 1732553624641,
+ "updated": 1732553707439,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f616x1c",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f616x1c.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f616x1c",
+ "ids": ",ak024f616x1c,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.22,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 1 km SSE of Soldotna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0424, 60.4732, 43.9]
+ },
+ "id": "ak024f616x1c"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.21,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732553624540,
+ "updated": 1732555637466,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090281",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090281.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75090281",
+ "ids": ",nc75090281,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.00541,
+ "rms": 0.02,
+ "gap": 125,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.2 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.766334533691, 38.8258323669434, 1.99000000953674]
+ },
+ "id": "nc75090281"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.78,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732553551590,
+ "updated": 1732555039394,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090276",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090276.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75090276",
+ "ids": ",nc75090276,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.005584,
+ "rms": 0.01,
+ "gap": 118,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.830833435059, 38.8428344726562, 0.990000009536743]
+ },
+ "id": "nc75090276"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.7,
+ "place": "84 km NNW of Karluk, Alaska",
+ "time": 1732553410290,
+ "updated": 1732590800940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027429",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027429.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027429",
+ "ids": ",av93027429,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.05446,
+ "rms": 0.06,
+ "gap": 225,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 84 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.138, 58.2335, -1.39]
+ },
+ "id": "av93027429"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.7,
+ "place": "44 km SE of Denali National Park, Alaska",
+ "time": 1732552373130,
+ "updated": 1732556095892,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f612fp0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f612fp0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 112,
+ "net": "ak",
+ "code": "024f612fp0",
+ "ids": ",us7000nu2w,ak024f612fp0,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.93,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.7 - 44 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.0577, 63.2798, 4.4] },
+ "id": "ak024f612fp0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "90 km ESE of McCarthy, Alaska",
+ "time": 1732552259949,
+ "updated": 1732552368149,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f6120qy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f6120qy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f6120qy",
+ "ids": ",ak024f6120qy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.8,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 90 km ESE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.3945, 61.098, 19.3] },
+ "id": "ak024f6120qy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "36 km W of Challis, Idaho",
+ "time": 1732552214750,
+ "updated": 1732633968700,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066963",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066963.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "mb",
+ "code": "90066963",
+ "ids": ",mb90066963,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.4354,
+ "rms": 0.22,
+ "gap": 84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 36 km W of Challis, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.6845, 44.5258333333333, 4.65]
+ },
+ "id": "mb90066963"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "23 km ENE of Ashford, Washington",
+ "time": 1732551929220,
+ "updated": 1732573080670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061276",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061276.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "uw",
+ "code": "62061276",
+ "ids": ",uw62061276,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.02315,
+ "rms": 0.07,
+ "gap": 73,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 23 km ENE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.75683333333333, 46.852, 1.42]
+ },
+ "id": "uw62061276"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.88999999,
+ "place": "11 km E of Pāhala, Hawaii",
+ "time": 1732551716720,
+ "updated": 1732551823790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540837",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540837.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 55,
+ "net": "hv",
+ "code": "74540837",
+ "ids": ",hv74540837,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 0.05756,
+ "rms": 0.109999999,
+ "gap": 180,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 11 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.366836547852, 19.1875, 30.3299999237061]
+ },
+ "id": "hv74540837"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.57,
+ "place": "12 km SW of Searles Valley, CA",
+ "time": 1732551009130,
+ "updated": 1732736526202,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799991",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799991.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40799991",
+ "ids": ",ci40799991,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.07755,
+ "rms": 0.19,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 12 km SW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5073333, 35.7023333, 10.89]
+ },
+ "id": "ci40799991"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "5 km NNE of Four Mile Road, Alaska",
+ "time": 1732550941112,
+ "updated": 1732551022609,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f60xe67",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f60xe67.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f60xe67",
+ "ids": ",ak024f60xe67,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km NNE of Four Mile Road, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.0919, 64.6547, 14.4]
+ },
+ "id": "ak024f60xe67"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.64,
+ "place": "64 km ENE of Pedro Bay, Alaska",
+ "time": 1732550927760,
+ "updated": 1732588208450,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378698",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378698.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378698",
+ "ids": ",av93378698,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01713,
+ "rms": 0.06,
+ "gap": 102,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 64 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.079833333333, 60.0423333333333, -1.9]
+ },
+ "id": "av93378698"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "71 km WNW of San Antonio de los Cobres, Argentina",
+ "time": 1732549525995,
+ "updated": 1732551542040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7l4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7l4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p7l4",
+ "ids": ",us6000p7l4,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 1.506,
+ "rms": 0.65,
+ "gap": 96,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 71 km WNW of San Antonio de los Cobres, Argentina"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9633, -23.9684, 227.174]
+ },
+ "id": "us6000p7l4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "10 km ESE of Pinnacles, CA",
+ "time": 1732549323640,
+ "updated": 1732550971922,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090266",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090266.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "nc",
+ "code": "75090266",
+ "ids": ",nc75090266,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.05308,
+ "rms": 0.18,
+ "gap": 130,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 10 km ESE of Pinnacles, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.039497375488, 36.5063323974609, 7.78999996185303]
+ },
+ "id": "nc75090266"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.2,
+ "place": "Izu Islands, Japan region",
+ "time": 1732549062620,
+ "updated": 1732549996040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7l3",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7l3.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 416,
+ "net": "us",
+ "code": "6000p7l3",
+ "ids": ",us6000p7l3,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 63,
+ "dmin": 2.427,
+ "rms": 1,
+ "gap": 150,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.2 - Izu Islands, Japan region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [141.1387, 29.3494, 115.461]
+ },
+ "id": "us6000p7l3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.44,
+ "place": "86 km NNW of Karluk, Alaska",
+ "time": 1732548995640,
+ "updated": 1732585831630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378643",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378643.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378643",
+ "ids": ",av93378643,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.04609,
+ "rms": 0.16,
+ "gap": 105,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 86 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.118666666667, 58.2608333333333, 3.29]
+ },
+ "id": "av93378643"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.18,
+ "place": "12 km WNW of Puako, Hawaii",
+ "time": 1732548922600,
+ "updated": 1732592210730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540807",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540807.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 73,
+ "net": "hv",
+ "code": "74540807",
+ "ids": ",hv74540807,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.1569,
+ "rms": 0.16,
+ "gap": 208,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 12 km WNW of Puako, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.936666666667, 20.0306666666667, 1.64]
+ },
+ "id": "hv74540807"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.31,
+ "place": "38 km WSW of False Pass, Alaska",
+ "time": 1732548208030,
+ "updated": 1732586535820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027424",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027424.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93027424",
+ "ids": ",av93027424,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04498,
+ "rms": 0.19,
+ "gap": 104,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 38 km WSW of False Pass, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-163.986833333333, 54.767, 4.63]
+ },
+ "id": "av93027424"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.79,
+ "place": "22 km ENE of San Lucas, CA",
+ "time": 1732548052420,
+ "updated": 1732549337737,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090256",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090256.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 120,
+ "net": "nc",
+ "code": "75090256",
+ "ids": ",nc75090256,us6000p7l1,",
+ "sources": ",nc,us,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 49,
+ "dmin": 0.02102,
+ "rms": 0.17,
+ "gap": 73,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.8 - 22 km ENE of San Lucas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.808334350586, 36.2361679077148, 6.51999998092651]
+ },
+ "id": "nc75090256"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "115 km ESE of McCarthy, Alaska",
+ "time": 1732548003682,
+ "updated": 1732548143986,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f60ebn4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f60ebn4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f60ebn4",
+ "ids": ",ak024f60ebn4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 115 km ESE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.0381, 60.93, 3.7] },
+ "id": "ak024f60ebn4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "108 km SW of ‘Ohonua, Tonga",
+ "time": 1732547608128,
+ "updated": 1732548539040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7ky",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7ky.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "6000p7ky",
+ "ids": ",us6000p7ky,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 6.092,
+ "rms": 0.66,
+ "gap": 166,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.7 - 108 km SW of ‘Ohonua, Tonga"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-175.5523, -22.1515, 164.535]
+ },
+ "id": "us6000p7ky"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "6 km S of Redlands, CA",
+ "time": 1732547592990,
+ "updated": 1732557370067,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799959",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799959.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40799959",
+ "ids": ",ci40799959,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.07096,
+ "rms": 0.18,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 6 km S of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1901667, 34.006, 10.48]
+ },
+ "id": "ci40799959"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "12 km SW of Searles Valley, CA",
+ "time": 1732547227200,
+ "updated": 1732548535801,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799951",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799951.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40799951",
+ "ids": ",ci40799951,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.07969,
+ "rms": 0.17,
+ "gap": 70,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 12 km SW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.513, 35.6978333, 9.83]
+ },
+ "id": "ci40799951"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "28 km SSW of Skwentna, Alaska",
+ "time": 1732546773177,
+ "updated": 1732547729040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f601b8p",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f601b8p.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ak",
+ "code": "024f601b8p",
+ "ids": ",us6000p7kx,ak024f601b8p,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 28 km SSW of Skwentna, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.686, 61.7695, 98] },
+ "id": "ak024f601b8p"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.43,
+ "place": "62 km ENE of Pedro Bay, Alaska",
+ "time": 1732546427640,
+ "updated": 1732585515080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378608",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378608.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378608",
+ "ids": ",av93378608,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03067,
+ "rms": 0.08,
+ "gap": 151,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 62 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.062833333333, 59.9873333333333, 0.78]
+ },
+ "id": "av93378608"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.6,
+ "place": "63 km ENE of Pedro Bay, Alaska",
+ "time": 1732546377370,
+ "updated": 1732585113190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378598",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378598.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378598",
+ "ids": ",av93378598,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01931,
+ "rms": 0.13,
+ "gap": 100,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 63 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.090666666667, 60.0436666666667, -2.57]
+ },
+ "id": "av93378598"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "14 km ESE of Lincoln, Montana",
+ "time": 1732546088870,
+ "updated": 1732571581670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066888",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066888.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "mb",
+ "code": "90066888",
+ "ids": ",mb90066888,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.05346,
+ "rms": 0.09,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 14 km ESE of Lincoln, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.523833333333, 46.8866666666667, 7.94]
+ },
+ "id": "mb90066888"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "3 km WNW of Lytle Creek, CA",
+ "time": 1732545225810,
+ "updated": 1732548594540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ci",
+ "code": "40799903",
+ "ids": ",ci40799903,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 51,
+ "dmin": 0.05349,
+ "rms": 0.2,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 3 km WNW of Lytle Creek, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5293333, 34.2708333, 4.47]
+ },
+ "id": "ci40799903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.42,
+ "place": "14 km N of Pāhala, Hawaii",
+ "time": 1732545222650,
+ "updated": 1732559449510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540762",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540762.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "hv",
+ "code": "74540762",
+ "ids": ",hv74540762,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.04515,
+ "rms": 0.11,
+ "gap": 46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 14 km N of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.488833333333, 19.338, 7.32]
+ },
+ "id": "hv74540762"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "5 km W of Cobb, CA",
+ "time": 1732544943910,
+ "updated": 1732547367515,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090246",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090246.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75090246",
+ "ids": ",nc75090246,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.01643,
+ "rms": 0.01,
+ "gap": 146,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km W of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.783332824707, 38.8214988708496, 1.1599999666214]
+ },
+ "id": "nc75090246"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.64,
+ "place": "23 km ENE of San Lucas, CA",
+ "time": 1732544804330,
+ "updated": 1732546638427,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090241",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090241.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "nc",
+ "code": "75090241",
+ "ids": ",nc75090241,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.02325,
+ "rms": 0.11,
+ "gap": 115,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 23 km ENE of San Lucas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.806335449219, 36.2388343811035, 5.8899998664856]
+ },
+ "id": "nc75090241"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.17,
+ "place": "76 km NW of Karluk, Alaska",
+ "time": 1732544608670,
+ "updated": 1732583560810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027419",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027419.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027419",
+ "ids": ",av93027419,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.03931,
+ "rms": 0.09,
+ "gap": 152,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 76 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.228, 58.115, 2.55] },
+ "id": "av93027419"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732544096070,
+ "updated": 1732546036361,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090236",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090236.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75090236",
+ "ids": ",nc75090236,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.003826,
+ "rms": 0.03,
+ "gap": 125,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.881164550781, 38.8348350524902, 2.40000009536743]
+ },
+ "id": "nc75090236"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.90999997,
+ "place": "10 km NE of Pāhala, Hawaii",
+ "time": 1732543973170,
+ "updated": 1732544065560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540732",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540732.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "hv",
+ "code": "74540732",
+ "ids": ",hv74540732,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.0419,
+ "rms": 0.119999997,
+ "gap": 70,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 10 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.413833618164, 19.2766666412354, 28.8899993896484]
+ },
+ "id": "hv74540732"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "136 km SSW of Gataivai, Samoa",
+ "time": 1732543831481,
+ "updated": 1732547814044,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7ks",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7ks.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 355,
+ "net": "us",
+ "code": "6000p7ks",
+ "ids": ",us6000p7ks,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 21,
+ "dmin": 1.384,
+ "rms": 0.75,
+ "gap": 135,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - 136 km SSW of Gataivai, Samoa"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-172.7169, -14.9619, 85.402]
+ },
+ "id": "us6000p7ks"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.37,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732543714530,
+ "updated": 1732545438297,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090231",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090231.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "nc",
+ "code": "75090231",
+ "ids": ",nc75090231,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.003472,
+ "rms": 0.01,
+ "gap": 124,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.881332397461, 38.8351669311523, 2.76999998092651]
+ },
+ "id": "nc75090231"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.29,
+ "place": "12 km NW of The Geysers, CA",
+ "time": 1732543691960,
+ "updated": 1732544837227,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090226",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090226.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "nc",
+ "code": "75090226",
+ "ids": ",nc75090226,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 45,
+ "dmin": 0.00474,
+ "rms": 0.05,
+ "gap": 44,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 12 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.878997802734, 38.8349990844727, 2.26999998092651]
+ },
+ "id": "nc75090226"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732543182610,
+ "updated": 1732544238159,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090216",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090216.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090216",
+ "ids": ",nc75090216,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.006376,
+ "rms": 0.01,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779830932617, 38.7923316955566, 1.96000003814697]
+ },
+ "id": "nc75090216"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "30 km WNW of Happy Valley, Alaska",
+ "time": 1732541540394,
+ "updated": 1732541665923,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5za2bb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5za2bb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f5za2bb",
+ "ids": ",ak024f5za2bb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 30 km WNW of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2319, 60.0515, 85.7]
+ },
+ "id": "ak024f5za2bb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732541043951,
+ "updated": 1732565414467,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xedb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xedb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "tx",
+ "code": "2024xedb",
+ "ids": ",tx2024xedb,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.456, 31.656, 5.4846]
+ },
+ "id": "tx2024xedb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.12,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732540513070,
+ "updated": 1732584595770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378508",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378508.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378508",
+ "ids": ",av93378508,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.03519,
+ "rms": 0.06,
+ "gap": 133,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.2665, 58.1968333333333, 2.44]
+ },
+ "id": "av93378508"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732540340386,
+ "updated": 1732584254140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5z5rzq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5z5rzq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f5z5rzq",
+ "ids": ",av93378503,ak024f5z5rzq,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.19,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.2564, 58.2015, 1.3] },
+ "id": "ak024f5z5rzq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.22,
+ "place": "85 km NW of Karluk, Alaska",
+ "time": 1732540311310,
+ "updated": 1732583942680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378498",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378498.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93378498",
+ "ids": ",av93378498,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.03349,
+ "rms": 0.08,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 85 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.268166666667, 58.1993333333333, 2.74]
+ },
+ "id": "av93378498"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.92,
+ "place": "43 km N of Tierras Nuevas Poniente, Puerto Rico",
+ "time": 1732540246190,
+ "updated": 1732541494530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466828",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466828.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 131,
+ "net": "pr",
+ "code": "71466828",
+ "ids": ",pr71466828,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.3831,
+ "rms": 0.23,
+ "gap": 229,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.9 - 43 km N of Tierras Nuevas Poniente, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.4348333333333, 18.8515, 45.91]
+ },
+ "id": "pr71466828"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "30 km SE of Minto, Alaska",
+ "time": 1732540188446,
+ "updated": 1732540268171,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5z570c",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5z570c.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f5z570c",
+ "ids": ",ak024f5z570c,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.19,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 30 km SE of Minto, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.8323, 64.9837, 17.3]
+ },
+ "id": "ak024f5z570c"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732539944946,
+ "updated": 1732564132337,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xecl",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xecl.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xecl",
+ "ids": ",tx2024xecl,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.46, 31.662, 5.3821] },
+ "id": "tx2024xecl"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84,
+ "place": "26 km W of Volcano, Hawaii",
+ "time": 1732539775170,
+ "updated": 1732558884880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540657",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540657.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74540657",
+ "ids": ",hv74540657,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 39,
+ "dmin": 0.04056,
+ "rms": 0.12,
+ "gap": 48,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 26 km W of Volcano, Hawaii"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.482, 19.4495, 8.33] },
+ "id": "hv74540657"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "54 km S of Whites City, New Mexico",
+ "time": 1732538970204,
+ "updated": 1732552809244,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xebx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xebx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xebx",
+ "ids": ",tx2024xebx,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 54 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.354, 31.687, 7.843] },
+ "id": "tx2024xebx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "10 km NW of Spanish Springs, Nevada",
+ "time": 1732538466773,
+ "updated": 1732549127008,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887915",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887915.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nn",
+ "code": "00887915",
+ "ids": ",nn00887915,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.107,
+ "rms": 0.1166,
+ "gap": 155.76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 10 km NW of Spanish Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.7842, 39.7274, 8.8] },
+ "id": "nn00887915"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.53,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732537860330,
+ "updated": 1732582887690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378468",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378468.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378468",
+ "ids": ",av93378468,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.03795,
+ "rms": 0.08,
+ "gap": 160,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.2925, 58.1771666666667, -0.38]
+ },
+ "id": "av93378468"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732537516400,
+ "updated": 1732582571150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027414",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027414.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "av",
+ "code": "93027414",
+ "ids": ",av93027414,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.0334,
+ "rms": 0.16,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.273666666667, 58.1931666666667, 2.26]
+ },
+ "id": "av93027414"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732537505680,
+ "updated": 1732582395260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5yn3k8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5yn3k8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024f5yn3k8",
+ "ids": ",av93378463,ak024f5yn3k8,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.15,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.2502, 58.1997, 0] },
+ "id": "ak024f5yn3k8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.49,
+ "place": "16 km ENE of Ridgecrest, CA",
+ "time": 1732537472120,
+ "updated": 1732548630672,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799879",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799879.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "40799879",
+ "ids": ",ci40799879,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.06949,
+ "rms": 0.15,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 16 km ENE of Ridgecrest, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5076667, 35.6526667, 4.38]
+ },
+ "id": "ci40799879"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "42 km WSW of Denali Park, Alaska",
+ "time": 1732537017848,
+ "updated": 1732537128906,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5yla4b",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5yla4b.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f5yla4b",
+ "ids": ",ak024f5yla4b,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 42 km WSW of Denali Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.7024, 63.5882, 122] },
+ "id": "ak024f5yla4b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.04,
+ "place": "86 km NW of Karluk, Alaska",
+ "time": 1732536973400,
+ "updated": 1732581907980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378453",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378453.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378453",
+ "ids": ",av93378453,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.03478,
+ "rms": 0.08,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 86 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.351833333333, 58.1776666666667, 1.56]
+ },
+ "id": "av93378453"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "220 km ENE of Levuka, Fiji",
+ "time": 1732536823903,
+ "updated": 1732540199040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7kh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7kh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p7kh",
+ "ids": ",us6000p7kh,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 41,
+ "dmin": 2.005,
+ "rms": 0.99,
+ "gap": 51,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 220 km ENE of Levuka, Fiji"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.7404, -17.3467, 534.945]
+ },
+ "id": "us6000p7kh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.44,
+ "place": "13 km ESE of Anza, CA",
+ "time": 1732536642810,
+ "updated": 1732562815415,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799871",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799871.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "ci",
+ "code": "40799871",
+ "ids": ",ci40799871,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.05144,
+ "rms": 0.14,
+ "gap": 80,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 13 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5436667, 33.5106667, 11.8]
+ },
+ "id": "ci40799871"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.18,
+ "place": "13 km ESE of Anza, CA",
+ "time": 1732536622980,
+ "updated": 1732562836027,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690380",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690380.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "ci",
+ "code": "37690380",
+ "ids": ",ci37690380,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.05229,
+ "rms": 0.14,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 13 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5421667, 33.5095, 11.51]
+ },
+ "id": "ci37690380"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "44 km N of Rampart, Alaska",
+ "time": 1732536598815,
+ "updated": 1732536796967,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5yjs7d",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5yjs7d.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f5yjs7d",
+ "ids": ",ak024f5yjs7d,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.78,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 44 km N of Rampart, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.0527, 65.8973, 3.9] },
+ "id": "ak024f5yjs7d"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "26 km SW of Glacier View, Alaska",
+ "time": 1732536510444,
+ "updated": 1732536591809,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5yjias",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5yjias.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f5yjias",
+ "ids": ",ak024f5yjias,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.21,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 26 km SW of Glacier View, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.0336, 61.6524, 18.1]
+ },
+ "id": "ak024f5yjias"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.64,
+ "place": "7 km SW of Progreso, B.C., MX",
+ "time": 1732536118560,
+ "updated": 1732560410150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799863",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799863.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "ci",
+ "code": "40799863",
+ "ids": ",ci40799863,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.04024,
+ "rms": 0.15,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 7 km SW of Progreso, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.6286667, 32.5321667, 8.94]
+ },
+ "id": "ci40799863"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "72 km S of Shungnak, Alaska",
+ "time": 1732535414950,
+ "updated": 1732535855590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5y71kb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5y71kb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f5y71kb",
+ "ids": ",ak024f5y71kb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 72 km S of Shungnak, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-157.367, 66.246, 9.4] },
+ "id": "ak024f5y71kb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "23 km S of Funny River, Alaska",
+ "time": 1732535061472,
+ "updated": 1732535164496,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5y5rs3",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5y5rs3.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f5y5rs3",
+ "ids": ",ak024f5y5rs3,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.5,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 23 km S of Funny River, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.7897, 60.2933, 19.8]
+ },
+ "id": "ak024f5y5rs3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "6 km WNW of Cobb, CA",
+ "time": 1732534555890,
+ "updated": 1732535669129,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090191",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090191.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "nc",
+ "code": "75090191",
+ "ids": ",nc75090191,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.01125,
+ "rms": 0.01,
+ "gap": 75,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 6 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.79467010498, 38.8276672363281, 2.41000008583069]
+ },
+ "id": "nc75090191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "10 km SW of Beaumont, CA",
+ "time": 1732534279680,
+ "updated": 1732648512675,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799847",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799847.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40799847",
+ "ids": ",ci40799847,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.13,
+ "rms": 0.18,
+ "gap": 46,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 10 km SW of Beaumont, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.0491667, 33.8655, 14.09]
+ },
+ "id": "ci40799847"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.87,
+ "place": "23 km W of Sitka, Alaska",
+ "time": 1732532771570,
+ "updated": 1732581571380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027409",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027409.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027409",
+ "ids": ",av93027409,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.008651,
+ "rms": 0.08,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 23 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.710833333333, 57.065, 6.11]
+ },
+ "id": "av93027409"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.59,
+ "place": "12 km NE of Ashford, Washington",
+ "time": 1732532411980,
+ "updated": 1732563031470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061266",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061266.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "uw",
+ "code": "62061266",
+ "ids": ",uw62061266,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.009284,
+ "rms": 0.08,
+ "gap": 86,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 12 km NE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.94016666666667, 46.84883333333333, 9.75]
+ },
+ "id": "uw62061266"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "57 km ESE of Whittier, Alaska",
+ "time": 1732532263077,
+ "updated": 1732532420028,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5xn65f",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5xn65f.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f5xn65f",
+ "ids": ",ak024f5xn65f,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 57 km ESE of Whittier, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.6901, 60.6196, 15.7]
+ },
+ "id": "ak024f5xn65f"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.12,
+ "place": "6 km SSE of Indios, Puerto Rico",
+ "time": 1732531645420,
+ "updated": 1732540637040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466818",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466818.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 150,
+ "net": "pr",
+ "code": "71466818",
+ "ids": ",us6000p7ka,pr71466818,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.07281,
+ "rms": 0.21,
+ "gap": 199,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.1 - 6 km SSE of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.7983333333333, 17.9428333333333, 9.73]
+ },
+ "id": "pr71466818"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.36,
+ "place": "86 km NW of Karluk, Alaska",
+ "time": 1732531636060,
+ "updated": 1732581360280,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027404",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027404.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027404",
+ "ids": ",av93027404,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.05529,
+ "rms": 0.23,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 86 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.395333333333, 58.1678333333333, 25.67]
+ },
+ "id": "av93027404"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "80 km NNE of Lae, Papua New Guinea",
+ "time": 1732531563418,
+ "updated": 1732541807040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7k6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7k6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p7k6",
+ "ids": ",us6000p7k6,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 3.346,
+ "rms": 0.95,
+ "gap": 52,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 80 km NNE of Lae, Papua New Guinea"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [147.2496, -6.0377, 59.696]
+ },
+ "id": "us6000p7k6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.36,
+ "place": "1 km WSW of Kensington, CA",
+ "time": 1732531544710,
+ "updated": 1732676151863,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090181",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090181.geojson",
+ "felt": 176,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 146,
+ "net": "nc",
+ "code": "75090181",
+ "ids": ",nc75090181,",
+ "sources": ",nc,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 54,
+ "dmin": 0.04407,
+ "rms": 0.1,
+ "gap": 53,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 1 km WSW of Kensington, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.290168762207, 37.9071655273438, 4.19999980926514]
+ },
+ "id": "nc75090181"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.77999997,
+ "place": "2 km NNE of Pāhala, Hawaii",
+ "time": 1732531488750,
+ "updated": 1732531589000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540547",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540547.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74540547",
+ "ids": ",hv74540547,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.07275,
+ "rms": 0.100000001,
+ "gap": 182,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 2 km NNE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.472503662109, 19.2210006713867, 29]
+ },
+ "id": "hv74540547"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.23,
+ "place": "11 km ENE of Cabazon, CA",
+ "time": 1732531262760,
+ "updated": 1732548780070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799831",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799831.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "ci",
+ "code": "40799831",
+ "ids": ",ci40799831,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 68,
+ "dmin": 0.07506,
+ "rms": 0.14,
+ "gap": 25,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 11 km ENE of Cabazon, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6878333, 33.971, 16.42]
+ },
+ "id": "ci40799831"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.08999991,
+ "place": "10 km ENE of Pāhala, Hawaii",
+ "time": 1732531234960,
+ "updated": 1732531338260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540537",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540537.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "hv",
+ "code": "74540537",
+ "ids": ",hv74540537,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 51,
+ "dmin": 0.01411,
+ "rms": 0.140000001,
+ "gap": 114,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 10 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.394165039062, 19.2513332366943, 30.4099998474121]
+ },
+ "id": "hv74540537"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.8,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732531223530,
+ "updated": 1732580908170,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027399",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027399.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027399",
+ "ids": ",av93027399,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02908,
+ "rms": 0.18,
+ "gap": 298,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.657, 57.0381666666667, 8.15]
+ },
+ "id": "av93027399"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "53 km NW of Toyah, Texas",
+ "time": 1732530848668,
+ "updated": 1732539984236,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdxl",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdxl.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xdxl",
+ "ids": ",tx2024xdxl,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 53 km NW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.183, 31.664, 7.0868]
+ },
+ "id": "tx2024xdxl"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.04,
+ "place": "1 km N of Indios, Puerto Rico",
+ "time": 1732530733180,
+ "updated": 1732531964680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466813",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466813.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 64,
+ "net": "pr",
+ "code": "71466813",
+ "ids": ",pr71466813,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.05596,
+ "rms": 0.15,
+ "gap": 157,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 1 km N of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8196666666667, 18.004, 14.11]
+ },
+ "id": "pr71466813"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "5 km WNW of Eagle River, Alaska",
+ "time": 1732529709976,
+ "updated": 1732529893788,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5xe3it",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5xe3it.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024f5xe3it",
+ "ids": ",ak024f5xe3it,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.41,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km WNW of Eagle River, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.6701, 61.3332, 17.6]
+ },
+ "id": "ak024f5xe3it"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732529638020,
+ "updated": 1732530868566,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090176",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090176.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090176",
+ "ids": ",nc75090176,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.00656,
+ "rms": 0.02,
+ "gap": 97,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779998779297, 38.7910003662109, 3.3199999332428]
+ },
+ "id": "nc75090176"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.56,
+ "place": "64 km ENE of Pedro Bay, Alaska",
+ "time": 1732528817860,
+ "updated": 1732580043980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378413",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378413.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378413",
+ "ids": ",av93378413,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01658,
+ "rms": 0.09,
+ "gap": 135,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 64 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.064833333333, 60.0408333333333, 0.92]
+ },
+ "id": "av93378413"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.76999998,
+ "place": "2 km SSE of Pāhala, Hawaii",
+ "time": 1732528579760,
+ "updated": 1732528673830,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540497",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540497.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74540497",
+ "ids": ",hv74540497,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0.02568,
+ "rms": 0.100000001,
+ "gap": 90,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 2 km SSE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.473159790039, 19.1790008544922, 32.8899993896484]
+ },
+ "id": "hv74540497"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.45,
+ "place": "1 km SSW of Indios, Puerto Rico",
+ "time": 1732528576180,
+ "updated": 1732532842980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466803",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466803.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "pr",
+ "code": "71466803",
+ "ids": ",pr71466803,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.03995,
+ "rms": 0.13,
+ "gap": 151,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 1 km SSW of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8271666666667, 17.9803333333333, 15.7]
+ },
+ "id": "pr71466803"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.13,
+ "place": "23 km ESE of Little Lake, CA",
+ "time": 1732528017650,
+ "updated": 1732736171167,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690620",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690620.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "ci",
+ "code": "37690620",
+ "ids": ",ci37690620,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.05756,
+ "rms": 0.11,
+ "gap": 98,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 23 km ESE of Little Lake, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.662, 35.891, 9.75] },
+ "id": "ci37690620"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.15,
+ "place": "18 km S of Trona, CA",
+ "time": 1732527977920,
+ "updated": 1732736161168,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799823",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799823.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "ci",
+ "code": "40799823",
+ "ids": ",ci40799823,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.04174,
+ "rms": 0.15,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 18 km S of Trona, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4141667, 35.601, 3.94]
+ },
+ "id": "ci40799823"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "3 km NNW of The Geysers, CA",
+ "time": 1732527916700,
+ "updated": 1732529369400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090166",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090166.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "nc",
+ "code": "75090166",
+ "ids": ",nc75090166,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.01059,
+ "rms": 0.04,
+ "gap": 67,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 3 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778999328613, 38.8011665344238, 1.25]
+ },
+ "id": "nc75090166"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.23,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732526858360,
+ "updated": 1732653278750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799815",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799815.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "ci",
+ "code": "40799815",
+ "ids": ",ci40799815,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 70,
+ "dmin": 0.07294,
+ "rms": 0.16,
+ "gap": 29,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1486667, 34.2673333, 4.68]
+ },
+ "id": "ci40799815"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.88,
+ "place": "25 km NE of Morgan Hill, CA",
+ "time": 1732525930710,
+ "updated": 1732567638843,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090161",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090161.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "nc",
+ "code": "75090161",
+ "ids": ",nc75090161,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.06056,
+ "rms": 0.06,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 25 km NE of Morgan Hill, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.4785, 37.3076666666667, 6.91]
+ },
+ "id": "nc75090161"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.71,
+ "place": "30 km SW of False Pass, Alaska",
+ "time": 1732525321510,
+ "updated": 1732580250040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027394",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027394.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "av",
+ "code": "93027394",
+ "ids": ",av93027394,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.03401,
+ "rms": 0.22,
+ "gap": 256,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 30 km SW of False Pass, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-163.687666666667, 54.6333333333333, 5.69]
+ },
+ "id": "av93027394"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0,
+ "place": "13 km WSW of Akutan, Alaska",
+ "time": 1732525008970,
+ "updated": 1732577812220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378363",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378363.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378363",
+ "ids": ",av93378363,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.0115,
+ "rms": 0.23,
+ "gap": 207,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 13 km WSW of Akutan, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-165.960666666667, 54.0863333333333, 18.88]
+ },
+ "id": "av93378363"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "56 km NNW of Petersville, Alaska",
+ "time": 1732524956617,
+ "updated": 1732525130359,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5wfwjx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5wfwjx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f5wfwjx",
+ "ids": ",ak024f5wfwjx,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 56 km NNW of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0178, 62.9898, 121.8]
+ },
+ "id": "ak024f5wfwjx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "5 km NNE of Royal City, Washington",
+ "time": 1732524434530,
+ "updated": 1732560217800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061256",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061256.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "uw",
+ "code": "62061256",
+ "ids": ",uw62061256,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 29,
+ "dmin": 0.06735,
+ "rms": 0.2,
+ "gap": 55,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 5 km NNE of Royal City, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.59483333333333, 46.93983333333333, 0.17]
+ },
+ "id": "uw62061256"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.82,
+ "place": "8 km ENE of Aguanga, CA",
+ "time": 1732524118150,
+ "updated": 1732548782820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799807",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799807.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40799807",
+ "ids": ",ci40799807,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 54,
+ "dmin": 0.03773,
+ "rms": 0.2,
+ "gap": 26,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 8 km ENE of Aguanga, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.783, 33.472, 2.34] },
+ "id": "ci40799807"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "57 km SSW of Cantwell, Alaska",
+ "time": 1732523955563,
+ "updated": 1732524084665,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5wcdxg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5wcdxg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f5wcdxg",
+ "ids": ",ak024f5wcdxg,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.8,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 57 km SSW of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.488, 62.9377, 80.4] },
+ "id": "ak024f5wcdxg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "9 km SW of Hurricane, Utah",
+ "time": 1732523338510,
+ "updated": 1732560785390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80001703",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80001703.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "uu",
+ "code": "80001703",
+ "ids": ",uu80001703,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1237,
+ "rms": 0.15,
+ "gap": 127,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 9 km SW of Hurricane, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.356666666667, 37.112, 15.27]
+ },
+ "id": "uu80001703"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.48,
+ "place": "6 km SSW of Redlands, CA",
+ "time": 1732523126040,
+ "updated": 1732554793350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690372",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690372.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "37690372",
+ "ids": ",ci37690372,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.1095,
+ "rms": 0.16,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 6 km SSW of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.2026667, 34.009, 15.6]
+ },
+ "id": "ci37690372"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.54,
+ "place": "10 km NNW of Warner Springs, CA",
+ "time": 1732523124850,
+ "updated": 1732554867228,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799799",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799799.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "40799799",
+ "ids": ",ci40799799,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.09998,
+ "rms": 0.13,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 10 km NNW of Warner Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6806667, 33.3638333, 12.71]
+ },
+ "id": "ci40799799"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "279 km SW of Tofino, Canada",
+ "time": 1732523076850,
+ "updated": 1732603540073,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7jr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7jr.geojson",
+ "felt": 5,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 327,
+ "net": "us",
+ "code": "6000p7jr",
+ "ids": ",us6000p7jr,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 172,
+ "dmin": 2.632,
+ "rms": 0.88,
+ "gap": 148,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 279 km SW of Tofino, Canada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-128.8494, 47.5779, 10] },
+ "id": "us6000p7jr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "51 km NNW of Beluga, Alaska",
+ "time": 1732522960292,
+ "updated": 1732523100969,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5w8snx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5w8snx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f5w8snx",
+ "ids": ",ak024f5w8snx,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 51 km NNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.5958, 61.5313, 62.5]
+ },
+ "id": "ak024f5w8snx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.53,
+ "place": "4 km E of Lake Arrowhead, CA",
+ "time": 1732522853860,
+ "updated": 1732572318898,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690404",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690404.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "37690404",
+ "ids": ",ci37690404,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.06073,
+ "rms": 0.14,
+ "gap": 172,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 4 km E of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1501667, 34.2541667, 7.41]
+ },
+ "id": "ci37690404"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "7 km S of Redlands, CA",
+ "time": 1732522822980,
+ "updated": 1732572130200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799791",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799791.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40799791",
+ "ids": ",ci40799791,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.05133,
+ "rms": 0.18,
+ "gap": 43,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 7 km S of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1946667, 33.9955, 13.74]
+ },
+ "id": "ci40799791"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.45,
+ "place": "6 km SSW of Redlands, CA",
+ "time": 1732522801710,
+ "updated": 1732572110967,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690396",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690396.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "ci",
+ "code": "37690396",
+ "ids": ",ci37690396,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.07657,
+ "rms": 0.16,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 6 km SSW of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1965, 34.004, 14.78]
+ },
+ "id": "ci37690396"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732522752860,
+ "updated": 1732524437846,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090151.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75090151",
+ "ids": ",nc75090151,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.01632,
+ "rms": 0.03,
+ "gap": 95,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.772163391113, 38.7874984741211, 0.930000007152557]
+ },
+ "id": "nc75090151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732522741220,
+ "updated": 1732523835781,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090146",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090146.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090146",
+ "ids": ",nc75090146,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.01419,
+ "rms": 0.03,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.771003723145, 38.7879981994629, 1.01999998092651]
+ },
+ "id": "nc75090146"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "26 km S of South Van Horn, Alaska",
+ "time": 1732522713968,
+ "updated": 1732522809589,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5w7xb8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5w7xb8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f5w7xb8",
+ "ids": ",ak024f5w7xb8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 26 km S of South Van Horn, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.8731, 64.5726, 11.2]
+ },
+ "id": "ak024f5w7xb8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "3 km NE of La Canada Flintridge, CA",
+ "time": 1732522696450,
+ "updated": 1732548744828,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799783",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799783.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40799783",
+ "ids": ",ci40799783,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.01233,
+ "rms": 0.19,
+ "gap": 56,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 3 km NE of La Canada Flintridge, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.1678333, 34.2166667, 5.4]
+ },
+ "id": "ci40799783"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "22 km N of Borrego Springs, CA",
+ "time": 1732522657720,
+ "updated": 1732548907240,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799775",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799775.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40799775",
+ "ids": ",ci40799775,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 50,
+ "dmin": 0.126,
+ "rms": 0.18,
+ "gap": 85,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 22 km N of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3983333, 33.4503333, 8.76]
+ },
+ "id": "ci40799775"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.53,
+ "place": "2 km SSW of Pāhala, Hawaii",
+ "time": 1732522657610,
+ "updated": 1732569581550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540422",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540422.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "hv",
+ "code": "74540422",
+ "ids": ",hv74540422,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.0392,
+ "rms": 0.14,
+ "gap": 130,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 2 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.490833333333, 19.1838333333333, 35.57]
+ },
+ "id": "hv74540422"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.63,
+ "place": "27 km W of Sitka, Alaska",
+ "time": 1732522601010,
+ "updated": 1732578279750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027389",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027389.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027389",
+ "ids": ",av93027389,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.03642,
+ "rms": 0.07,
+ "gap": 296,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 27 km W of Sitka, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-135.775, 57.099, 5.61] },
+ "id": "av93027389"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "38 km NW of Stanton, Texas",
+ "time": 1732522329133,
+ "updated": 1732562715213,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdst",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdst.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "tx",
+ "code": "2024xdst",
+ "ids": ",tx2024xdst,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 38 km NW of Stanton, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-102.1, 32.352, 7.1533] },
+ "id": "tx2024xdst"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "13 km ESE of Anza, CA",
+ "time": 1732521938410,
+ "updated": 1732548870269,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799767",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799767.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "ci",
+ "code": "40799767",
+ "ids": ",ci40799767,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.05144,
+ "rms": 0.16,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 13 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5426667, 33.5078333, 11.79]
+ },
+ "id": "ci40799767"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.78,
+ "place": "20 km W of Sitka, Alaska",
+ "time": 1732521841590,
+ "updated": 1732578138800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027384",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027384.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027384",
+ "ids": ",av93027384,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02641,
+ "rms": 0.05,
+ "gap": 297,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 20 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.663333333333, 57.0521666666667, 7.27]
+ },
+ "id": "av93027384"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "47 km NNW of Valdez, Alaska",
+ "time": 1732521824866,
+ "updated": 1732521908265,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5w4qeu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5w4qeu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f5w4qeu",
+ "ids": ",ak024f5w4qeu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 47 km NNW of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.575, 61.5445, 32.2] },
+ "id": "ak024f5w4qeu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "41 km WNW of Tatitlek, Alaska",
+ "time": 1732521617612,
+ "updated": 1732521759879,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5w415t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5w415t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f5w415t",
+ "ids": ",ak024f5w415t,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.56,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 41 km WNW of Tatitlek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.4149, 60.9485, 3.2] },
+ "id": "ak024f5w415t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732521573320,
+ "updated": 1732522639649,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090141",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090141.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75090141",
+ "ids": ",nc75090141,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.007533,
+ "rms": 0.05,
+ "gap": 47,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.824996948242, 38.8156661987305, 1.64999997615814]
+ },
+ "id": "nc75090141"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732521534388,
+ "updated": 1732540195251,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdsh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdsh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xdsh",
+ "ids": ",tx2024xdsh,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.295, 31.658, 7.8943]
+ },
+ "id": "tx2024xdsh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.99000001,
+ "place": "13 km SE of Pāhala, Hawaii",
+ "time": 1732521017180,
+ "updated": 1732521114730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540377",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540377.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 61,
+ "net": "hv",
+ "code": "74540377",
+ "ids": ",hv74540377,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.08737,
+ "rms": 0.119999997,
+ "gap": 192,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 13 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.373336791992, 19.1310005187988, 30.2700004577637]
+ },
+ "id": "hv74540377"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "5 km NW of Aguanga, CA",
+ "time": 1732519740980,
+ "updated": 1732649605140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799751",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799751.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ci",
+ "code": "40799751",
+ "ids": ",ci40799751,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.0138,
+ "rms": 0.15,
+ "gap": 37,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 5 km NW of Aguanga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9046667, 33.4691667, 8.68]
+ },
+ "id": "ci40799751"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "5 km NW of Aguanga, CA",
+ "time": 1732519087290,
+ "updated": 1732548906042,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799735",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799735.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ci",
+ "code": "40799735",
+ "ids": ",ci40799735,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.08449,
+ "rms": 0.14,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 5 km NW of Aguanga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9025, 33.4723333, 8.11]
+ },
+ "id": "ci40799735"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.97,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732519077690,
+ "updated": 1732565838040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540347",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540347.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "hv",
+ "code": "74540347",
+ "ids": ",hv74540347,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.008033,
+ "rms": 0.1,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.243166666667, 19.3831666666667, 1.44]
+ },
+ "id": "hv74540347"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "80 km ESE of Denali Park, Alaska",
+ "time": 1732518821802,
+ "updated": 1732518931752,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5vlfqc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5vlfqc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f5vlfqc",
+ "ids": ",ak024f5vlfqc,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 80 km ESE of Denali Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3506, 63.528, 13.2] },
+ "id": "ak024f5vlfqc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.38,
+ "place": "3 km SW of Anderson Springs, CA",
+ "time": 1732518603840,
+ "updated": 1732519768339,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090131",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090131.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "nc",
+ "code": "75090131",
+ "ids": ",nc75090131,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.01027,
+ "rms": 0.08,
+ "gap": 100,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 3 km SW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.712333679199, 38.7584991455078, 0.649999976158142]
+ },
+ "id": "nc75090131"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "89 km WSW of Akhiok, Alaska",
+ "time": 1732518120785,
+ "updated": 1732518230433,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5vizou",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5vizou.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f5vizou",
+ "ids": ",ak024f5vizou,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 89 km WSW of Akhiok, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.5722, 56.7132, 50.3]
+ },
+ "id": "ak024f5vizou"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.69,
+ "place": "126 km N of Charlotte Amalie, U.S. Virgin Islands",
+ "time": 1732517612880,
+ "updated": 1732519797134,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024330003",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024330003.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 209,
+ "net": "pr",
+ "code": "2024330003",
+ "ids": ",pr2024330003,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 1.1266,
+ "rms": 0.52,
+ "gap": 279,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.7 - 126 km N of Charlotte Amalie, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.1243, 19.4683, 89] },
+ "id": "pr2024330003"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "61 km SE of Shima, Japan",
+ "time": 1732517387934,
+ "updated": 1732518706040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7jc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7jc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p7jc",
+ "ids": ",us6000p7jc,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 110,
+ "dmin": 1.482,
+ "rms": 0.5,
+ "gap": 36,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 61 km SE of Shima, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [137.2066, 33.8715, 339.73]
+ },
+ "id": "us6000p7jc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732517356310,
+ "updated": 1732548973900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799727",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799727.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40799727",
+ "ids": ",ci40799727,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 52,
+ "dmin": 0.07083,
+ "rms": 0.16,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1506667, 34.2646667, 4.68]
+ },
+ "id": "ci40799727"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732517293060,
+ "updated": 1732649426780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799719",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799719.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ci",
+ "code": "40799719",
+ "ids": ",ci40799719,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 89,
+ "dmin": 0.07132,
+ "rms": 0.15,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1493333, 34.2655, 4.82]
+ },
+ "id": "ci40799719"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.83,
+ "place": "139 km NNE of Vieques, Puerto Rico",
+ "time": 1732517208200,
+ "updated": 1732518487740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024330002",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024330002.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 226,
+ "net": "pr",
+ "code": "2024330002",
+ "ids": ",pr2024330002,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 1.2466,
+ "rms": 0.39,
+ "gap": 259,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 139 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2665, 19.5623, 61] },
+ "id": "pr2024330002"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "42 km WNW of Ninilchik, Alaska",
+ "time": 1732517144090,
+ "updated": 1732517257802,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5v6v7t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5v6v7t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f5v6v7t",
+ "ids": ",ak024f5v6v7t,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.9,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 42 km WNW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.3529, 60.2176, 70.4]
+ },
+ "id": "ak024f5v6v7t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "26 km WSW of Anchor Point, Alaska",
+ "time": 1732516725377,
+ "updated": 1732516851301,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5v5dax",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5v5dax.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f5v5dax",
+ "ids": ",ak024f5v5dax,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.19,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 26 km WSW of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2794, 59.7113, 74.9]
+ },
+ "id": "ak024f5v5dax"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.58,
+ "place": "16 km SW of Searles Valley, CA",
+ "time": 1732516331660,
+ "updated": 1732548958696,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799711",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799711.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40799711",
+ "ids": ",ci40799711,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.06744,
+ "rms": 0.13,
+ "gap": 66,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 16 km SW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5048333, 35.6515, 4.39]
+ },
+ "id": "ci40799711"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "8 km NNW of The Geysers, CA",
+ "time": 1732516326550,
+ "updated": 1732517368082,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090111",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090111.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "nc",
+ "code": "75090111",
+ "ids": ",nc75090111,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.01206,
+ "rms": 0.05,
+ "gap": 70,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 8 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.817832946777, 38.8338317871094, 1.49000000953674]
+ },
+ "id": "nc75090111"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.42,
+ "place": "7 km N of Logan, Montana",
+ "time": 1732516023320,
+ "updated": 1732570255150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066883",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066883.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "mb",
+ "code": "90066883",
+ "ids": ",mb90066883,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.2543,
+ "rms": 0.04,
+ "gap": 162,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 7 km N of Logan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.440666666667, 45.952, 5.06]
+ },
+ "id": "mb90066883"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.01,
+ "place": "10 km NE of Pāhala, Hawaii",
+ "time": 1732515859950,
+ "updated": 1732566186740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540302",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540302.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "hv",
+ "code": "74540302",
+ "ids": ",hv74540302,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.04012,
+ "rms": 0.24,
+ "gap": 87,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 10 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.408333333333, 19.2765, 2.42]
+ },
+ "id": "hv74540302"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.71000004,
+ "place": "18 km S of Fern Forest, Hawaii",
+ "time": 1732515805820,
+ "updated": 1732515898870,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540297",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540297.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 45,
+ "net": "hv",
+ "code": "74540297",
+ "ids": ",hv74540297,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.01618,
+ "rms": 0.389999986,
+ "gap": 198,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 18 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.117492675781, 19.2978324890137, 4.26999998092651]
+ },
+ "id": "hv74540297"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "8 km SSE of Redlands, CA",
+ "time": 1732515568740,
+ "updated": 1732647891612,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799703",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799703.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40799703",
+ "ids": ",ci40799703,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 40,
+ "dmin": 0.04996,
+ "rms": 0.13,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km SSE of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1458333, 33.9938333, 13.65]
+ },
+ "id": "ci40799703"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.57,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732515311470,
+ "updated": 1732549038200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799687",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799687.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "ci",
+ "code": "40799687",
+ "ids": ",ci40799687,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 83,
+ "dmin": 0.07254,
+ "rms": 0.15,
+ "gap": 27,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1483333, 34.267, 4.6]
+ },
+ "id": "ci40799687"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732515163660,
+ "updated": 1732548978626,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799679",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799679.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40799679",
+ "ids": ",ci40799679,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 42,
+ "dmin": 0.06972,
+ "rms": 0.14,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1513333, 34.2633333, 4.44]
+ },
+ "id": "ci40799679"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.19,
+ "place": "2 km WNW of Tallaboa, Puerto Rico",
+ "time": 1732515140760,
+ "updated": 1732515627400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466773",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466773.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "pr",
+ "code": "71466773",
+ "ids": ",pr71466773,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.1302,
+ "rms": 0.12,
+ "gap": 187,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 2 km WNW of Tallaboa, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.7368333333333, 18.0036666666667, 17.01]
+ },
+ "id": "pr71466773"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "24 km E of Denali Park, Alaska",
+ "time": 1732515046069,
+ "updated": 1732515181988,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5uzdb2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5uzdb2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f5uzdb2",
+ "ids": ",ak024f5uzdb2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.84,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 24 km E of Denali Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.4212, 63.763, 28.5] },
+ "id": "ak024f5uzdb2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "80 km SE of Katsuren-haebaru, Japan",
+ "time": 1732515042215,
+ "updated": 1732535383033,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7j5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7j5.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 400,
+ "net": "us",
+ "code": "6000p7j5",
+ "ids": ",us6000p7j5,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 73,
+ "dmin": 0.969,
+ "rms": 0.63,
+ "gap": 67,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - 80 km SE of Katsuren-haebaru, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [128.5103, 25.8865, 10] },
+ "id": "us6000p7j5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732515008350,
+ "updated": 1732569527950,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799671",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799671.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40799671",
+ "ids": ",ci40799671,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 70,
+ "dmin": 0.07334,
+ "rms": 0.14,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1466667, 34.2681667, 4.52]
+ },
+ "id": "ci40799671"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.26,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732514950170,
+ "updated": 1732566739040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799663",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799663.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40799663",
+ "ids": ",ci40799663,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 76,
+ "dmin": 0.07306,
+ "rms": 0.16,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1485, 34.2675, 4.49]
+ },
+ "id": "ci40799663"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "4 km ENE of Lake Arrowhead, CA",
+ "time": 1732514922950,
+ "updated": 1732566896462,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690388",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690388.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "37690388",
+ "ids": ",ci37690388,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.06359,
+ "rms": 0.21,
+ "gap": 136,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 4 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1421667, 34.259, 5.63]
+ },
+ "id": "ci37690388"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.38,
+ "place": "7 km ESE of Ojai, CA",
+ "time": 1732514610420,
+ "updated": 1732560001466,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799655",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799655.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "ci",
+ "code": "40799655",
+ "ids": ",ci40799655,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.04068,
+ "rms": 0.22,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km ESE of Ojai, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.1803333, 34.4168333, 1.77]
+ },
+ "id": "ci40799655"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.4,
+ "place": "6 km WSW of Fuig, Puerto Rico",
+ "time": 1732514188620,
+ "updated": 1732515035980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466763",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466763.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 89,
+ "net": "pr",
+ "code": "71466763",
+ "ids": ",pr71466763,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.06205,
+ "rms": 0.07,
+ "gap": 178,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 6 km WSW of Fuig, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9738333333333, 17.9723333333333, 7.17]
+ },
+ "id": "pr71466763"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.33,
+ "place": "23 km W of Sitka, Alaska",
+ "time": 1732514159160,
+ "updated": 1732575461370,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378233",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378233.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378233",
+ "ids": ",av93378233,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.005813,
+ "rms": 0.09,
+ "gap": 151,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 23 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.7095, 57.0683333333333, 6.02]
+ },
+ "id": "av93378233"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732513978650,
+ "updated": 1732515570890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090106",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090106.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 55,
+ "net": "nc",
+ "code": "75090106",
+ "ids": ",nc75090106,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.007627,
+ "rms": 0.05,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778167724609, 38.7928352355957, 1.36000001430511]
+ },
+ "id": "nc75090106"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.28,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732513898230,
+ "updated": 1732514967822,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090101",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090101.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "nc",
+ "code": "75090101",
+ "ids": ",nc75090101,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.007816,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.77799987793, 38.7921676635742, 1.48000001907349]
+ },
+ "id": "nc75090101"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.84,
+ "place": "5 km ENE of Lake Arrowhead, CA",
+ "time": 1732513837000,
+ "updated": 1732548998847,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799647",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799647.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40799647",
+ "ids": ",ci40799647,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 44,
+ "dmin": 0.07449,
+ "rms": 0.17,
+ "gap": 39,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 5 km ENE of Lake Arrowhead, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.145, 34.2696667, 4.41]
+ },
+ "id": "ci40799647"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.3,
+ "place": "85 km NW of Karluk, Alaska",
+ "time": 1732513815480,
+ "updated": 1732574119740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378223",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378223.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378223",
+ "ids": ",av93378223,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.0256,
+ "rms": 0.07,
+ "gap": 93,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 85 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.297666666667, 58.1901666666667, 1.76]
+ },
+ "id": "av93378223"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "2 km ESE of Redlands, CA",
+ "time": 1732513497850,
+ "updated": 1732549043560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799639",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799639.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ci",
+ "code": "40799639",
+ "ids": ",ci40799639,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 74,
+ "dmin": 0.04659,
+ "rms": 0.17,
+ "gap": 22,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 2 km ESE of Redlands, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1661667, 34.0488333, 12.63]
+ },
+ "id": "ci40799639"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.16,
+ "place": "6 km WNW of Frazier Park, CA",
+ "time": 1732513484360,
+ "updated": 1732555250347,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799631",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799631.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "ci",
+ "code": "40799631",
+ "ids": ",ci40799631,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.0783,
+ "rms": 0.19,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 6 km WNW of Frazier Park, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.0081667, 34.8468333, 7.85]
+ },
+ "id": "ci40799631"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.69,
+ "place": "13 km SSW of Volcano, Hawaii",
+ "time": 1732513232040,
+ "updated": 1732565070350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540262",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540262.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "hv",
+ "code": "74540262",
+ "ids": ",hv74540262,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.03719,
+ "rms": 0.11,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 13 km SSW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.262833333333, 19.3268333333333, 41.67]
+ },
+ "id": "hv74540262"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.65,
+ "place": "14 km SE of Bodfish, CA",
+ "time": 1732512971000,
+ "updated": 1732553669478,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799615",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799615.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40799615",
+ "ids": ",ci40799615,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.1758,
+ "rms": 0.1,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 14 km SE of Bodfish, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.3733333, 35.507, 11]
+ },
+ "id": "ci40799615"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "5 km NNE of Columbiana, Ohio",
+ "time": 1732512964706,
+ "updated": 1732514063040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7j0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7j0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "us",
+ "code": "6000p7j0",
+ "ids": ",us6000p7j0,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.186,
+ "rms": 0.4,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 5 km NNE of Columbiana, Ohio"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-80.6568, 40.9321, 9.638]
+ },
+ "id": "us6000p7j0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.65,
+ "place": "9 km SSW of Bakersfield, CA",
+ "time": 1732512759180,
+ "updated": 1732563286660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799607",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799607.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 42,
+ "net": "ci",
+ "code": "40799607",
+ "ids": ",ci40799607,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 47,
+ "dmin": 0.07752,
+ "rms": 0.22,
+ "gap": 30,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 9 km SSW of Bakersfield, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.054, 35.2786667, 18.66]
+ },
+ "id": "ci40799607"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "15 km of Coalinga, CA",
+ "time": 1732512446170,
+ "updated": 1732728570515,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090086",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090086.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75090086",
+ "ids": ",nc75090086,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.05398,
+ "rms": 0.15,
+ "gap": 62,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 15 km of Coalinga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.403833333333, 36.2728333333333, 8.71]
+ },
+ "id": "nc75090086"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "16 km of Coalinga, CA",
+ "time": 1732512425190,
+ "updated": 1732567037764,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090091",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090091.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75090091",
+ "ids": ",nc75090091,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.0567,
+ "rms": 0.08,
+ "gap": 101,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 16 km of Coalinga, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.404, 36.2783333333333, 8.64]
+ },
+ "id": "nc75090091"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -1.18,
+ "place": "22 km W of Sitka, Alaska",
+ "time": 1732511514580,
+ "updated": 1732575039010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027369",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027369.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027369",
+ "ids": ",av93027369,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01361,
+ "rms": 0.08,
+ "gap": 205,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.2 - 22 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.6995, 57.0563333333333, 5.77]
+ },
+ "id": "av93027369"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.77,
+ "place": "21 km W of Sitka, Alaska",
+ "time": 1732511495270,
+ "updated": 1732575190040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027379",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027379.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027379",
+ "ids": ",av93027379,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01218,
+ "rms": 0.24,
+ "gap": 292,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 21 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.679, 57.0691666666667, 11.41]
+ },
+ "id": "av93027379"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "42 km WNW of Tatitlek, Alaska",
+ "time": 1732511244591,
+ "updated": 1732554287850,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5ud7gr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5ud7gr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f5ud7gr",
+ "ids": ",ak024f5ud7gr,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.65,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 42 km WNW of Tatitlek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.3973, 61.0216, 15.2]
+ },
+ "id": "ak024f5ud7gr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.99,
+ "place": "6 km NNW of Smiths Ferry, Idaho",
+ "time": 1732511052880,
+ "updated": 1732569647340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066873",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066873.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 61,
+ "net": "mb",
+ "code": "90066873",
+ "ids": ",mb90066873,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.34,
+ "rms": 0.21,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km NNW of Smiths Ferry, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.1185, 44.3533333333333, 2.78]
+ },
+ "id": "mb90066873"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732510725390,
+ "updated": 1732511970482,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090081",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090081.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "nc",
+ "code": "75090081",
+ "ids": ",nc75090081,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.01105,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.78483581543, 38.8238334655762, 1.0900000333786]
+ },
+ "id": "nc75090081"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "8 km NNW of Jordán, Colombia",
+ "time": 1732510291378,
+ "updated": 1732657491085,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7iv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7iv.geojson",
+ "felt": 2,
+ "cdi": 4.6,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p7iv",
+ "ids": ",us6000p7iv,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 73,
+ "dmin": 0.904,
+ "rms": 0.69,
+ "gap": 50,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 8 km NNW of Jordán, Colombia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.1268, 6.8013, 153.267]
+ },
+ "id": "us6000p7iv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.22,
+ "place": "71 km WNW of Beluga, Alaska",
+ "time": 1732510251800,
+ "updated": 1732573572180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378183",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378183.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93378183",
+ "ids": ",av93378183,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.1134,
+ "rms": 0.22,
+ "gap": 122,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 71 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.325333333333, 61.3698333333333, -1.89]
+ },
+ "id": "av93378183"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.76999998,
+ "place": "5 km W of Pāhala, Hawaii",
+ "time": 1732509995640,
+ "updated": 1732510115320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540187",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540187.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74540187",
+ "ids": ",hv74540187,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 49,
+ "dmin": 0.05412,
+ "rms": 0.219999999,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 5 km W of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.535339355469, 19.2063331604004, 0.109999999403954]
+ },
+ "id": "hv74540187"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732509736220,
+ "updated": 1732511367409,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090076",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090076.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75090076",
+ "ids": ",nc75090076,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.003546,
+ "rms": 0.03,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.811836242676, 38.8266677856445, 1.12000000476837]
+ },
+ "id": "nc75090076"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "5 km NE of Buffalo Soapstone, Alaska",
+ "time": 1732509352782,
+ "updated": 1732509496098,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5txvj2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5txvj2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f5txvj2",
+ "ids": ",ak024f5txvj2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.74,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 5 km NE of Buffalo Soapstone, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.0435, 61.755, 34.9] },
+ "id": "ak024f5txvj2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "46 km WNW of Nanwalek, Alaska",
+ "time": 1732509154769,
+ "updated": 1732509224315,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5tx6z8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5tx6z8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f5tx6z8",
+ "ids": ",ak024f5tx6z8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.08,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 46 km WNW of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.6696, 59.5199, 62.5]
+ },
+ "id": "ak024f5tx6z8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.72,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732509037410,
+ "updated": 1732510471304,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090071",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090071.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75090071",
+ "ids": ",nc75090071,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.002743,
+ "rms": 0.01,
+ "gap": 129,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.838500976562, 38.8400001525879, 2.00999999046326]
+ },
+ "id": "nc75090071"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.47,
+ "place": "13 km SE of Pāhala, Hawaii",
+ "time": 1732508806340,
+ "updated": 1732570208560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540157",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540157.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "hv",
+ "code": "74540157",
+ "ids": ",hv74540157,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 0.08486,
+ "rms": 0.11,
+ "gap": 190,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 13 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.375, 19.1348333333333, 29.11]
+ },
+ "id": "hv74540157"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.84,
+ "place": "28 km W of Sitka, Alaska",
+ "time": 1732508147340,
+ "updated": 1732572702040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378153",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378153.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378153",
+ "ids": ",av93378153,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.006259,
+ "rms": 0.06,
+ "gap": 257,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 28 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.794666666667, 57.061, 4.89]
+ },
+ "id": "av93378153"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.44,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732508128600,
+ "updated": 1732509271172,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090061",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090061.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75090061",
+ "ids": ",nc75090061,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.006258,
+ "rms": 0.02,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.78133392334, 38.8376655578613, 1.14999997615814]
+ },
+ "id": "nc75090061"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.37,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732507851760,
+ "updated": 1732565400410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378148",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378148.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378148",
+ "ids": ",av93378148,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.03692,
+ "rms": 0.06,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.2905, 58.179, -1.69]
+ },
+ "id": "av93378148"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "38 km W of Mentone, Texas",
+ "time": 1732507800133,
+ "updated": 1732540360269,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdkt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdkt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xdkt",
+ "ids": ",tx2024xdkt,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 38 km W of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.003, 31.712, 7.4713]
+ },
+ "id": "tx2024xdkt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "82 km NW of Karluk, Alaska",
+ "time": 1732507675248,
+ "updated": 1732572480790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5trvno",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5trvno.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f5trvno",
+ "ids": ",av93378138,ak024f5trvno,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 82 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.2405, 58.1831, 0] },
+ "id": "ak024f5trvno"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.4,
+ "place": "9 km NNE of Lake View Terrace, CA",
+ "time": 1732507457690,
+ "updated": 1732552490863,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799591",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799591.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ci",
+ "code": "40799591",
+ "ids": ",ci40799591,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.02875,
+ "rms": 0.17,
+ "gap": 96,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 9 km NNE of Lake View Terrace, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.3373333, 34.352, 10.91]
+ },
+ "id": "ci40799591"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.37,
+ "place": "7 km ESE of Santa Clarita, CA",
+ "time": 1732506742940,
+ "updated": 1732562859260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799583",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799583.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "ci",
+ "code": "40799583",
+ "ids": ",ci40799583,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 49,
+ "dmin": 0.05553,
+ "rms": 0.17,
+ "gap": 28,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km ESE of Santa Clarita, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.4313333, 34.3923333, 8.85]
+ },
+ "id": "ci40799583"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "87 km N of Aleneva, Alaska",
+ "time": 1732506204099,
+ "updated": 1732506289944,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5te3fd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5te3fd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f5te3fd",
+ "ids": ",ak024f5te3fd,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 87 km N of Aleneva, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.1843, 58.8335, 69.6]
+ },
+ "id": "ak024f5te3fd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "56 km N of Petersville, Alaska",
+ "time": 1732506202273,
+ "updated": 1732506294324,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5te3ab",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5te3ab.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f5te3ab",
+ "ids": ",ak024f5te3ab,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 56 km N of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.5561, 62.9944, 88.6]
+ },
+ "id": "ak024f5te3ab"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.95,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732505975140,
+ "updated": 1732571867650,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378118",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378118.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378118",
+ "ids": ",av93378118,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.04444,
+ "rms": 0.12,
+ "gap": 169,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.0 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.245333333333, 61.2738333333333, 2.67]
+ },
+ "id": "av93378118"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01999998,
+ "place": "14 km ENE of Pāhala, Hawaii",
+ "time": 1732505718420,
+ "updated": 1732505830690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540112",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540112.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "hv",
+ "code": "74540112",
+ "ids": ",hv74540112,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.04821,
+ "rms": 0.150000006,
+ "gap": 134,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 14 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.364334106445, 19.2743339538574, 30.9899997711182]
+ },
+ "id": "hv74540112"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.91999996,
+ "place": "1 km SW of Pāhala, Hawaii",
+ "time": 1732504388320,
+ "updated": 1732504481620,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540087",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540087.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "hv",
+ "code": "74540087",
+ "ids": ",hv74540087,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.04168,
+ "rms": 0.140000001,
+ "gap": 123,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 1 km SW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.489166259766, 19.1884994506836, 29.5]
+ },
+ "id": "hv74540087"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "51 km S of Whites City, New Mexico",
+ "time": 1732504248386,
+ "updated": 1732730942271,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdiu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdiu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024xdiu",
+ "ids": ",tx2024xdiu,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 51 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.284, 31.719, 7.2021]
+ },
+ "id": "tx2024xdiu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "15 km NE of Borrego Springs, CA",
+ "time": 1732504127900,
+ "updated": 1732562279446,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799567",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799567.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40799567",
+ "ids": ",ci40799567,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.1489,
+ "rms": 0.17,
+ "gap": 139,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 15 km NE of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.2826667, 33.3658333, 10.83]
+ },
+ "id": "ci40799567"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.98,
+ "place": "23 km W of Sitka, Alaska",
+ "time": 1732504110880,
+ "updated": 1732571681720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027364",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027364.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027364",
+ "ids": ",av93027364,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.006555,
+ "rms": 0.15,
+ "gap": 182,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.0 - 23 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.712666666667, 57.0706666666667, 3.11]
+ },
+ "id": "av93027364"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.29,
+ "place": "85 km NNW of Karluk, Alaska",
+ "time": 1732503956750,
+ "updated": 1732572028640,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378093",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378093.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378093",
+ "ids": ",av93378093,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.03801,
+ "rms": 0.13,
+ "gap": 131,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 85 km NNW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-154.9945, 58.285, 3.14] },
+ "id": "av93378093"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.47,
+ "place": "25 km SW of Bodfish, CA",
+ "time": 1732503293040,
+ "updated": 1732549047853,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799551",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799551.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "ci",
+ "code": "40799551",
+ "ids": ",ci40799551,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 39,
+ "dmin": 0.1225,
+ "rms": 0.19,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 25 km SW of Bodfish, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.647, 35.4013333, 3.75]
+ },
+ "id": "ci40799551"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.52,
+ "place": "0 km NNW of Guayanilla, Puerto Rico",
+ "time": 1732503124250,
+ "updated": 1732504124270,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466753",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466753.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 98,
+ "net": "pr",
+ "code": "71466753",
+ "ids": ",pr71466753,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.09452,
+ "rms": 0.18,
+ "gap": 158,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 0 km NNW of Guayanilla, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.793, 18.0221666666667, 16.6]
+ },
+ "id": "pr71466753"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "17 km ESE of Anza, CA",
+ "time": 1732502684160,
+ "updated": 1732549049247,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799543",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799543.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40799543",
+ "ids": ",ci40799543,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.05616,
+ "rms": 0.13,
+ "gap": 70,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 17 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.5025, 33.5065, 12.73]
+ },
+ "id": "ci40799543"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "20 km N of Chickaloon, Alaska",
+ "time": 1732502262957,
+ "updated": 1732502355357,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5srezb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5srezb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f5srezb",
+ "ids": ",ak024f5srezb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 20 km N of Chickaloon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.4018, 61.9758, 30.6]
+ },
+ "id": "ak024f5srezb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "46 km SSE of Denali National Park, Alaska",
+ "time": 1732502204204,
+ "updated": 1732502310722,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5sr7d0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5sr7d0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f5sr7d0",
+ "ids": ",ak024f5sr7d0,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.8,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 46 km SSE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.4726, 63.1404, 3.1] },
+ "id": "ak024f5sr7d0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "17 km NE of Hermleigh, Texas",
+ "time": 1732502078858,
+ "updated": 1732632548039,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdhq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdhq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "tx",
+ "code": "2024xdhq",
+ "ids": ",tx2024xdhq,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 17 km NE of Hermleigh, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-100.644, 32.755, 6.0303]
+ },
+ "id": "tx2024xdhq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "10 km W of Lamont, Oklahoma",
+ "time": 1732501210599,
+ "updated": 1732627897345,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xdhd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xdhd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ok",
+ "code": "2024xdhd",
+ "ids": ",ok2024xdhd,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 53,
+ "dmin": 0.2150577983,
+ "rms": 0.41,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 10 km W of Lamont, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.6745, 36.69483333, 5.36]
+ },
+ "id": "ok2024xdhd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "17 km NE of Hermleigh, Texas",
+ "time": 1732500764257,
+ "updated": 1732631552945,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xdgx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xdgx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "tx",
+ "code": "2024xdgx",
+ "ids": ",tx2024xdgx,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 80,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 17 km NE of Hermleigh, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-100.647, 32.757, 5.542] },
+ "id": "tx2024xdgx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.4,
+ "place": "37 km WNW of Indian Springs, Nevada",
+ "time": 1732500743366,
+ "updated": 1732548755436,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887914",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887914.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00887914",
+ "ids": ",nn00887914,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.021,
+ "rms": 0.0383,
+ "gap": 246.59999999999997,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 37 km WNW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.0329, 36.7404, 8] },
+ "id": "nn00887914"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "13 km SE of Kasilof, Alaska",
+ "time": 1732500319858,
+ "updated": 1732500482805,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5skguk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5skguk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f5skguk",
+ "ids": ",ak024f5skguk,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.62,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 13 km SE of Kasilof, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.0963, 60.259, 61.4] },
+ "id": "ak024f5skguk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.63,
+ "place": "102 km NNE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732500217210,
+ "updated": 1732655358040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024330001",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024330001.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 203,
+ "net": "pr",
+ "code": "2024330001",
+ "ids": ",us6000p7ij,pr2024330001,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.8101,
+ "rms": 0.29,
+ "gap": 301,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.6 - 102 km NNE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-64.4951, 19.2156, 35] },
+ "id": "pr2024330001"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.06,
+ "place": "3 km WSW of Blytheville, Arkansas",
+ "time": 1732499553920,
+ "updated": 1732631791569,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nm60594256",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nm60594256.geojson",
+ "felt": 6,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "nm",
+ "code": "60594256",
+ "ids": ",nm60594256,",
+ "sources": ",nm,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.05164,
+ "rms": 0.06,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 3 km WSW of Blytheville, Arkansas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-89.9491666666667, 35.9128333333333, 11.34]
+ },
+ "id": "nm60594256"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.77,
+ "place": "63 km ENE of Pedro Bay, Alaska",
+ "time": 1732499201870,
+ "updated": 1732570240380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93378033",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93378033.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93378033",
+ "ids": ",av93378033,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01315,
+ "rms": 0.15,
+ "gap": 206,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 63 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.116, 60.0658333333333, 8.38]
+ },
+ "id": "av93378033"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.74,
+ "place": "1 km of The Geysers, CA",
+ "time": 1732498707430,
+ "updated": 1732500567183,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090041",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090041.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "nc",
+ "code": "75090041",
+ "ids": ",nc75090041,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.01252,
+ "rms": 0.04,
+ "gap": 63,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 1 km of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.761497497559, 38.7881660461426, 0.689999997615814]
+ },
+ "id": "nc75090041"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.16,
+ "place": "8 km E of Yorba Linda, CA",
+ "time": 1732498509960,
+ "updated": 1732549109080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799519",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799519.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "ci",
+ "code": "40799519",
+ "ids": ",ci40799519,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.04674,
+ "rms": 0.18,
+ "gap": 61,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 8 km E of Yorba Linda, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7261667, 33.8801667, 7.59]
+ },
+ "id": "ci40799519"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "83 km NW of Karluk, Alaska",
+ "time": 1732498311392,
+ "updated": 1732498457690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5s4piz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5s4piz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f5s4piz",
+ "ids": ",ak024f5s4piz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.25,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 83 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.5236, 58.061, 0.2] },
+ "id": "ak024f5s4piz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.74000001,
+ "place": "7 km SW of Volcano, Hawaii",
+ "time": 1732497321440,
+ "updated": 1732497494470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74540007",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74540007.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "hv",
+ "code": "74540007",
+ "ids": ",hv74540007,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.004575,
+ "rms": 0.129999995,
+ "gap": 61,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 7 km SW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.279998779297, 19.390832901001, 1.11000001430511]
+ },
+ "id": "hv74540007"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "8 km NW of Prague, Oklahoma",
+ "time": 1732496950839,
+ "updated": 1732628278858,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xdeu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xdeu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ok",
+ "code": "2024xdeu",
+ "ids": ",ok2024xdeu,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.009898057663,
+ "rms": 0.14,
+ "gap": 48,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km NW of Prague, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-96.74933333, 35.5365, 7.74]
+ },
+ "id": "ok2024xdeu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "12 km NNW of Sutton-Alpine, Alaska",
+ "time": 1732496940529,
+ "updated": 1732497082876,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5rzsw5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5rzsw5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ak",
+ "code": "024f5rzsw5",
+ "ids": ",ak024f5rzsw5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.68,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 12 km NNW of Sutton-Alpine, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.8593, 61.8816, 24.2]
+ },
+ "id": "ak024f5rzsw5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "40 km NNW of Glacier View, Alaska",
+ "time": 1732496775289,
+ "updated": 1732496949202,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5rza1k",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5rza1k.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f5rza1k",
+ "ids": ",ak024f5rza1k,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.81,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 40 km NNW of Glacier View, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.0538, 62.1228, 40.4]
+ },
+ "id": "ak024f5rza1k"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.99000001,
+ "place": "0 km WNW of Pāhala, Hawaii",
+ "time": 1732496655020,
+ "updated": 1732496760180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539992",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539992.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 61,
+ "net": "hv",
+ "code": "74539992",
+ "ids": ",hv74539992,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.04551,
+ "rms": 0.119999997,
+ "gap": 103,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 0 km WNW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.483169555664, 19.2051658630371, 29.4699993133545]
+ },
+ "id": "hv74539992"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.22,
+ "place": "17 km WSW of Toms Place, CA",
+ "time": 1732496202630,
+ "updated": 1732649071317,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75090026",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75090026.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "nc",
+ "code": "75090026",
+ "ids": ",nc75090026,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.1145,
+ "rms": 0.05,
+ "gap": 173,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 17 km WSW of Toms Place, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.845166666667, 37.476, 4.9]
+ },
+ "id": "nc75090026"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.77999997,
+ "place": "0 km NNW of Pāhala, Hawaii",
+ "time": 1732496061710,
+ "updated": 1732496148110,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539987",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539987.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74539987",
+ "ids": ",hv74539987,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 0.04496,
+ "rms": 0.119999997,
+ "gap": 100,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 0 km NNW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.480667114258, 19.2066669464111, 30.1399993896484]
+ },
+ "id": "hv74539987"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "46 km W of Mentone, Texas",
+ "time": 1732495093249,
+ "updated": 1732533842560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xddu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xddu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "tx",
+ "code": "2024xddu",
+ "ids": ",tx2024xddu,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 46 km W of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.086, 31.686, 6.0999]
+ },
+ "id": "tx2024xddu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "56 km S of Whites City, New Mexico",
+ "time": 1732494800729,
+ "updated": 1732540909331,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xddp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xddp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xddp",
+ "ids": ",tx2024xddp,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 57,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 56 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.375, 31.669, 7.5867]
+ },
+ "id": "tx2024xddp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.67,
+ "place": "93 km NNE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732494720210,
+ "updated": 1732497906136,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024330000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024330000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 207,
+ "net": "pr",
+ "code": "2024330000",
+ "ids": ",pr2024330000,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.7189,
+ "rms": 0.26,
+ "gap": 302,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.7 - 93 km NNE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-64.464, 19.1171, 64] },
+ "id": "pr2024330000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.03,
+ "place": "20 km ESE of Evanston, Wyoming",
+ "time": 1732494283200,
+ "updated": 1732551524000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087191",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087191.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "uu",
+ "code": "80087191",
+ "ids": ",uu80087191,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.3983,
+ "rms": 0.21,
+ "gap": 97,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 20 km ESE of Evanston, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.720666666667, 41.2311666666667, 27.88]
+ },
+ "id": "uu80087191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "5 km NW of Boron, CA",
+ "time": 1732494084020,
+ "updated": 1732560916548,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799479",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799479.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ci",
+ "code": "40799479",
+ "ids": ",ci40799479,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 50,
+ "dmin": 0.09914,
+ "rms": 0.18,
+ "gap": 55,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.9 Quarry Blast - 5 km NW of Boron, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6851667, 35.0333333, -0.82]
+ },
+ "id": "ci40799479"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "24 km NNE of Beluga, Alaska",
+ "time": 1732494029854,
+ "updated": 1732494106274,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5rgvl5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5rgvl5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f5rgvl5",
+ "ids": ",ak024f5rgvl5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.15,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 24 km NNE of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.9097, 61.3426, 61.1]
+ },
+ "id": "ak024f5rgvl5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "40 km WNW of Ninilchik, Alaska",
+ "time": 1732493436370,
+ "updated": 1732493563236,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5reqxh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5reqxh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f5reqxh",
+ "ids": ",ak024f5reqxh,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.55,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 40 km WNW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.3858, 60.1338, 90.6]
+ },
+ "id": "ak024f5reqxh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "10 km E of Fox, Alaska",
+ "time": 1732493384063,
+ "updated": 1732493492569,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f5rejt2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f5rejt2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f5rejt2",
+ "ids": ",ak024f5rejt2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.27,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 10 km E of Fox, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3939, 64.9766, 1.7] },
+ "id": "ak024f5rejt2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.39,
+ "place": "3 km SE of Magas Arriba, Puerto Rico",
+ "time": 1732493288820,
+ "updated": 1732494442380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466728",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466728.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 88,
+ "net": "pr",
+ "code": "71466728",
+ "ids": ",pr71466728,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.1242,
+ "rms": 0.08,
+ "gap": 194,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 3 km SE of Magas Arriba, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.7498333333333, 17.9911666666667, 13.15]
+ },
+ "id": "pr71466728"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "34 km W of Susitna, Alaska",
+ "time": 1732492753770,
+ "updated": 1732492868707,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4hutox",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4hutox.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4hutox",
+ "ids": ",ak024f4hutox,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 34 km W of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.1528, 61.6006, 55.3]
+ },
+ "id": "ak024f4hutox"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "88 km NNW of Karluk, Alaska",
+ "time": 1732491965785,
+ "updated": 1732672530320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4hs0rm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4hs0rm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f4hs0rm",
+ "ids": ",av93377938,ak024f4hs0rm,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.21,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 88 km NNW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.1737, 58.2608, 1.1] },
+ "id": "ak024f4hs0rm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.3,
+ "place": "25 km N of Girdwood, Alaska",
+ "time": 1732491742551,
+ "updated": 1732636949693,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4hr75h",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4hr75h.geojson",
+ "felt": 305,
+ "cdi": 4.9,
+ "mmi": 3.287,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 317,
+ "net": "ak",
+ "code": "024f4hr75h",
+ "ids": ",ak024f4hr75h,us6000p7i4,",
+ "sources": ",ak,us,",
+ "types": ",dyfi,origin,phase-data,shakemap,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.6,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.3 - 25 km N of Girdwood, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.1695, 61.1721, 13.2]
+ },
+ "id": "ak024f4hr75h"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "24 km ESE of Julian, CA",
+ "time": 1732491693770,
+ "updated": 1732549070121,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799455",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799455.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40799455",
+ "ids": ",ci40799455,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.05612,
+ "rms": 0.19,
+ "gap": 48,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 24 km ESE of Julian, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3593333, 33.0078333, 9.62]
+ },
+ "id": "ci40799455"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "Izu Islands, Japan region",
+ "time": 1732491171734,
+ "updated": 1732492706040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7i6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7i6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "6000p7i6",
+ "ids": ",us6000p7i6,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 2.571,
+ "rms": 0.49,
+ "gap": 117,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - Izu Islands, Japan region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [141.451, 30.9457, 23.985]
+ },
+ "id": "us6000p7i6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "41 km NNW of Beluga, Alaska",
+ "time": 1732491097020,
+ "updated": 1732491191441,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4hovfq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4hovfq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4hovfq",
+ "ids": ",ak024f4hovfq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.45,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 41 km NNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.3199, 61.4935, 71.4]
+ },
+ "id": "ak024f4hovfq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "42 km N of Chase, Alaska",
+ "time": 1732491090258,
+ "updated": 1732583174045,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4houwx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4houwx.geojson",
+ "felt": 0,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4houwx",
+ "ids": ",ak024f4houwx,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.53,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 42 km N of Chase, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.0554, 62.8254, 72.5]
+ },
+ "id": "ak024f4houwx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.62,
+ "place": "4 km W of Calimesa, CA",
+ "time": 1732491019930,
+ "updated": 1732560517600,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799447",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799447.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "ci",
+ "code": "40799447",
+ "ids": ",ci40799447,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 84,
+ "dmin": 0.05276,
+ "rms": 0.18,
+ "gap": 19,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 4 km W of Calimesa, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.0921667, 33.9853333, 10]
+ },
+ "id": "ci40799447"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "42 km NW of Ninilchik, Alaska",
+ "time": 1732490918758,
+ "updated": 1732491030119,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4ho8f7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4ho8f7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f4ho8f7",
+ "ids": ",ak024f4ho8f7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.29,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 42 km NW of Ninilchik, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2486, 60.301, 82.6] },
+ "id": "ak024f4ho8f7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "19 km SE of Pāhala, Hawaii",
+ "time": 1732490811180,
+ "updated": 1732570765670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539912",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539912.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74539912",
+ "ids": ",hv74539912,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 51,
+ "dmin": 0.129,
+ "rms": 0.12,
+ "gap": 207,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 19 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.363333333333, 19.066, 32.94]
+ },
+ "id": "hv74539912"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "Rat Islands, Aleutian Islands, Alaska",
+ "time": 1732490566880,
+ "updated": 1732666618400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377908",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377908.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "av",
+ "code": "93377908",
+ "ids": ",av93377908,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.03432,
+ "rms": 0.2,
+ "gap": 305,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - Rat Islands, Aleutian Islands, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [178.581, 51.9895, 8.59] },
+ "id": "av93377908"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "3 km SW of Suchilapan del Río, Mexico",
+ "time": 1732490180378,
+ "updated": 1732494055040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7i5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7i5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "6000p7i5",
+ "ids": ",us6000p7i5,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 2.951,
+ "rms": 1.3,
+ "gap": 150,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 3 km SW of Suchilapan del Río, Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-95.0079, 17.358, 125.682]
+ },
+ "id": "us6000p7i5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "40 km S of La Romana, Dominican Republic",
+ "time": 1732490023989,
+ "updated": 1732490416040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7i0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7i0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "us",
+ "code": "6000p7i0",
+ "ids": ",us6000p7i0,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 1.702,
+ "rms": 0.81,
+ "gap": 200,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 40 km S of La Romana, Dominican Republic"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.9271, 18.0598, 9.814]
+ },
+ "id": "us6000p7i0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "49 km N of Chickaloon, Alaska",
+ "time": 1732489988230,
+ "updated": 1732490105740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4hkybr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4hkybr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f4hkybr",
+ "ids": ",ak024f4hkybr,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.56,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 49 km N of Chickaloon, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.3541, 62.234, 35.2] },
+ "id": "ak024f4hkybr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.66,
+ "place": "10 km N of Yucca Valley, CA",
+ "time": 1732489613230,
+ "updated": 1732549113090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799439",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799439.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 42,
+ "net": "ci",
+ "code": "40799439",
+ "ids": ",ci40799439,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 59,
+ "dmin": 0.02885,
+ "rms": 0.16,
+ "gap": 39,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 10 km N of Yucca Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.438, 34.2076667, 6.52]
+ },
+ "id": "ci40799439"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "2 km ESE of Alamo, CA",
+ "time": 1732489402370,
+ "updated": 1732566274675,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089996",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089996.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75089996",
+ "ids": ",nc75089996,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.01938,
+ "rms": 0.07,
+ "gap": 120,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km ESE of Alamo, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-122.011, 37.846, 5.6] },
+ "id": "nc75089996"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "50 km NE of Chenega, Alaska",
+ "time": 1732489305593,
+ "updated": 1732489434898,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4higm7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4higm7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4higm7",
+ "ids": ",ak024f4higm7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 50 km NE of Chenega, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.4218, 60.4085, 16.9]
+ },
+ "id": "ak024f4higm7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84000003,
+ "place": "3 km SE of Pāhala, Hawaii",
+ "time": 1732488193520,
+ "updated": 1732488317940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539872",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539872.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74539872",
+ "ids": ",hv74539872,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.02789,
+ "rms": 0.119999997,
+ "gap": 120,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 3 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.456832885742, 19.1830005645752, 32.0699996948242]
+ },
+ "id": "hv74539872"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "13 km ESE of Anza, CA",
+ "time": 1732487337390,
+ "updated": 1732549076855,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799399",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799399.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40799399",
+ "ids": ",ci40799399,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.04585,
+ "rms": 0.16,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 13 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.544, 33.5128333, 11.35]
+ },
+ "id": "ci40799399"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "10 km SE of Nenana, Alaska",
+ "time": 1732486399171,
+ "updated": 1732486491818,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4gzjkd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4gzjkd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4gzjkd",
+ "ids": ",ak024f4gzjkd,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.29,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 10 km SE of Nenana, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.9602, 64.4931, 14.7]
+ },
+ "id": "ak024f4gzjkd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.41,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732486382760,
+ "updated": 1732703254823,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089986",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089986.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75089986",
+ "ids": ",nc75089986,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.006433,
+ "rms": 0.02,
+ "gap": 58,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.815666666667, 38.8186666666667, 2.58]
+ },
+ "id": "nc75089986"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01,
+ "place": "11 km E of Pāhala, Hawaii",
+ "time": 1732485991540,
+ "updated": 1732486163610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539822",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539822.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "hv",
+ "code": "74539822",
+ "ids": ",hv74539822,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 0.04511,
+ "rms": 0.119999997,
+ "gap": 164,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 11 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.369659423828, 19.2006664276123, 29.1299991607666]
+ },
+ "id": "hv74539822"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.96,
+ "place": "4 km SSW of Pāhala, Hawaii",
+ "time": 1732485562910,
+ "updated": 1732485735310,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539807",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539807.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 59,
+ "net": "hv",
+ "code": "74539807",
+ "ids": ",hv74539807,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 52,
+ "dmin": 0.03644,
+ "rms": 0.159999996,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 4 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.498504638672, 19.1674995422363, 32.7000007629395]
+ },
+ "id": "hv74539807"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "23 km ESE of Halfway, Oregon",
+ "time": 1732484340770,
+ "updated": 1732569662480,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066868",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066868.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "mb",
+ "code": "90066868",
+ "ids": ",mb90066868,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.28,
+ "rms": 0.19,
+ "gap": 162,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 23 km ESE of Halfway, Oregon"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.836166666667, 44.7953333333333, 6.18]
+ },
+ "id": "mb90066868"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.24,
+ "place": "9 km ESE of Jefferson, Oklahoma",
+ "time": 1732484314840,
+ "updated": 1732579025969,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xcxv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xcxv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "ok",
+ "code": "2024xcxv",
+ "ids": ",ok2024xcxv,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 67,
+ "dmin": 0,
+ "rms": 0.17,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 9 km ESE of Jefferson, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.68333333, 36.69783333, 7.35]
+ },
+ "id": "ok2024xcxv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "54 km NW of Ninilchik, Alaska",
+ "time": 1732483956045,
+ "updated": 1732484040103,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4gi7v8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4gi7v8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4gi7v8",
+ "ids": ",ak024f4gi7v8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 54 km NW of Ninilchik, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.446, 60.3539, 82.5] },
+ "id": "ak024f4gi7v8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.1,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732483735160,
+ "updated": 1732684170409,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089976",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089976.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nc",
+ "code": "75089976",
+ "ids": ",nc75089976,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.006711,
+ "rms": 0.02,
+ "gap": 92,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.1 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779333333333, 38.793, 2.07]
+ },
+ "id": "nc75089976"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.24,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732483721090,
+ "updated": 1732683436647,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75001443",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75001443.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75001443",
+ "ids": ",nc75001443,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.007342,
+ "rms": 0.04,
+ "gap": 72,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.2 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.851666666667, 38.8336666666667, 2.32]
+ },
+ "id": "nc75001443"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "18 km SSW of Tanjungagung, Indonesia",
+ "time": 1732482165260,
+ "updated": 1732483418040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7hn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7hn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p7hn",
+ "ids": ",us6000p7hn,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.813,
+ "rms": 0.8,
+ "gap": 74,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 18 km SSW of Tanjungagung, Indonesia"
+ },
+ "geometry": { "type": "Point", "coordinates": [103.7204, -4.0768, 10] },
+ "id": "us6000p7hn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.8,
+ "place": "96 km NNE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732482114270,
+ "updated": 1732484217593,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024329005",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024329005.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 222,
+ "net": "pr",
+ "code": "2024329005",
+ "ids": ",pr2024329005,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.7669,
+ "rms": 0.18,
+ "gap": 295,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 96 km NNE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-64.566, 19.1801, 29] },
+ "id": "pr2024329005"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "35 km WSW of Ackerly, Texas",
+ "time": 1732481248486,
+ "updated": 1732561196046,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcwd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcwd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xcwd",
+ "ids": ",tx2024xcwd,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 35 km WSW of Ackerly, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-102.061, 32.403, 7.9834]
+ },
+ "id": "tx2024xcwd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "10 km W of Palos Verdes Estates, CA",
+ "time": 1732481141260,
+ "updated": 1732482621271,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799351",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799351.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ci",
+ "code": "40799351",
+ "ids": ",ci40799351,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.09216,
+ "rms": 0.26,
+ "gap": 136,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 10 km W of Palos Verdes Estates, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.5005, 33.7888333, 9.04]
+ },
+ "id": "ci40799351"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.53,
+ "place": "65 km ENE of Pedro Bay, Alaska",
+ "time": 1732481045950,
+ "updated": 1732665890100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377838",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377838.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377838",
+ "ids": ",av93377838,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01,
+ "rms": 0.1,
+ "gap": 172,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 65 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.055833333333, 60.0481666666667, 1.36]
+ },
+ "id": "av93377838"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.45,
+ "place": "64 km WNW of Beluga, Alaska",
+ "time": 1732480959250,
+ "updated": 1732665599640,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377833",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377833.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377833",
+ "ids": ",av93377833,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.05595,
+ "rms": 0.06,
+ "gap": 144,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 64 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.243166666667, 61.3016666666667, 1.19]
+ },
+ "id": "av93377833"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.48,
+ "place": "3 km NNW of The Geysers, CA",
+ "time": 1732480947300,
+ "updated": 1732482569097,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089961",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089961.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75089961",
+ "ids": ",nc75089961,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.01099,
+ "rms": 0.03,
+ "gap": 66,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 3 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778999328613, 38.8023338317871, 1.28999996185303]
+ },
+ "id": "nc75089961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.61,
+ "place": "21 km SE of Pāhala, Hawaii",
+ "time": 1732480945330,
+ "updated": 1732571132880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539697",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539697.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "hv",
+ "code": "74539697",
+ "ids": ",hv74539697,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 0.1428,
+ "rms": 0.12,
+ "gap": 245,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 21 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.3605, 19.0491666666667, 32.63]
+ },
+ "id": "hv74539697"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "4 km S of Idyllwild, CA",
+ "time": 1732480888320,
+ "updated": 1732482101470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799343",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799343.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40799343",
+ "ids": ",ci40799343,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.009124,
+ "rms": 0.12,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 4 km S of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7176667, 33.7025, 16.47]
+ },
+ "id": "ci40799343"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "35 km WSW of Ackerly, Texas",
+ "time": 1732480805351,
+ "updated": 1732561713106,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcvx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcvx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "tx",
+ "code": "2024xcvx",
+ "ids": ",tx2024xcvx,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 83,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 35 km WSW of Ackerly, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-102.061, 32.4, 8.1787] },
+ "id": "tx2024xcvx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "33 km NNW of Valdez, Alaska",
+ "time": 1732480731856,
+ "updated": 1732480876524,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4fy3s1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4fy3s1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f4fy3s1",
+ "ids": ",ak024f4fy3s1,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.02,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 33 km NNW of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.6415, 61.393, 17.2] },
+ "id": "ak024f4fy3s1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "6 km ENE of Pinnacles, CA",
+ "time": 1732479834350,
+ "updated": 1732565836619,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089956",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089956.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75089956",
+ "ids": ",nc75089956,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.04451,
+ "rms": 0.14,
+ "gap": 153,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 6 km ENE of Pinnacles, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.0935, 36.5686666666667, 9.29]
+ },
+ "id": "nc75089956"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "6 km NNW of Smiths Ferry, Idaho",
+ "time": 1732479753330,
+ "updated": 1732568723340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066863",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066863.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "mb",
+ "code": "90066863",
+ "ids": ",mb90066863,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.3454,
+ "rms": 0.16,
+ "gap": 115,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km NNW of Smiths Ferry, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.119166666667, 44.36, 7.54]
+ },
+ "id": "mb90066863"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "25 km NW of Susitna, Alaska",
+ "time": 1732479634623,
+ "updated": 1732479790532,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4fu7k6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4fu7k6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4fu7k6",
+ "ids": ",ak024f4fu7k6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 25 km NW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.8002, 61.7256, 59.5]
+ },
+ "id": "ak024f4fu7k6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "14 km S of Fern Forest, Hawaii",
+ "time": 1732478129200,
+ "updated": 1732564360980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539622",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539622.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "hv",
+ "code": "74539622",
+ "ids": ",hv74539622,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.04867,
+ "rms": 0.08,
+ "gap": 126,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 14 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.132666666667, 19.3346666666667, 7.09]
+ },
+ "id": "hv74539622"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.46,
+ "place": "13 km S of Fern Forest, Hawaii",
+ "time": 1732477773270,
+ "updated": 1732558137490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539617",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539617.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 93,
+ "net": "hv",
+ "code": "74539617",
+ "ids": ",us6000p7h8,hv74539617,",
+ "sources": ",us,hv,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.04505,
+ "rms": 0.1,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.5 - 13 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.1305, 19.3398333333333, 7.32]
+ },
+ "id": "hv74539617"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732477712310,
+ "updated": 1732478968673,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089946",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089946.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089946",
+ "ids": ",nc75089946,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.007025,
+ "rms": 0.03,
+ "gap": 162,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.850830078125, 38.8223342895508, 1.86000001430511]
+ },
+ "id": "nc75089946"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "55 km S of Whites City, New Mexico",
+ "time": 1732477622042,
+ "updated": 1732540525274,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcue",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcue.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xcue",
+ "ids": ",tx2024xcue,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 55 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.369, 31.673, 7.1765]
+ },
+ "id": "tx2024xcue"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "16 km S of Fern Forest, Hawaii",
+ "time": 1732477577780,
+ "updated": 1732557498680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539607",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539607.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74539607",
+ "ids": ",hv74539607,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.0333,
+ "rms": 0.13,
+ "gap": 136,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 16 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.128833333333, 19.3193333333333, 5.26]
+ },
+ "id": "hv74539607"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.01,
+ "place": "13 km S of Fern Forest, Hawaii",
+ "time": 1732477569780,
+ "updated": 1732556741290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539612",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539612.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "hv",
+ "code": "74539612",
+ "ids": ",hv74539612,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.0406,
+ "rms": 0.11,
+ "gap": 182,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 13 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.131833333333, 19.3445, 1.89]
+ },
+ "id": "hv74539612"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "55 km S of Whites City, New Mexico",
+ "time": 1732477542717,
+ "updated": 1732542550985,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcud",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcud.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xcud",
+ "ids": ",tx2024xcud,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 55 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.373, 31.671, 7.3303]
+ },
+ "id": "tx2024xcud"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "67 km SE of Denali National Park, Alaska",
+ "time": 1732476968646,
+ "updated": 1732477110751,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4fc5et",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4fc5et.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f4fc5et",
+ "ids": ",ak024f4fc5et,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 67 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.66, 63.1689, 122.5] },
+ "id": "ak024f4fc5et"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.85,
+ "place": "26 km NNE of Lowman, Idaho",
+ "time": 1732476313550,
+ "updated": 1732550421180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066758",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066758.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 53,
+ "net": "mb",
+ "code": "90066758",
+ "ids": ",mb90066758,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.5301,
+ "rms": 0.13,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 26 km NNE of Lowman, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.523833333333, 44.3156666666667, 9.25]
+ },
+ "id": "mb90066758"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "29 km ENE of Chase, Alaska",
+ "time": 1732475572143,
+ "updated": 1732475710661,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4f73ku",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4f73ku.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f4f73ku",
+ "ids": ",ak024f4f73ku,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.68,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 29 km ENE of Chase, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.5572, 62.5258, 67.2]
+ },
+ "id": "ak024f4f73ku"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.36,
+ "place": "22 km E of Little Lake, CA",
+ "time": 1732474761830,
+ "updated": 1732479649265,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799311",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799311.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ci",
+ "code": "40799311",
+ "ids": ",ci40799311,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.03314,
+ "rms": 0.15,
+ "gap": 42,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 22 km E of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.661, 35.9158333, 3.38]
+ },
+ "id": "ci40799311"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "27 km SE of Skwentna, Alaska",
+ "time": 1732474528301,
+ "updated": 1732474684481,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4eutxa",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4eutxa.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f4eutxa",
+ "ids": ",ak024f4eutxa,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 27 km SE of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0442, 61.8075, 67.6]
+ },
+ "id": "ak024f4eutxa"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "72 km WSW of Cantwell, Alaska",
+ "time": 1732474463632,
+ "updated": 1732474568095,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4euluj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4euluj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4euluj",
+ "ids": ",ak024f4euluj,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 72 km WSW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.3628, 63.2559, 111.8]
+ },
+ "id": "ak024f4euluj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.79,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732474034700,
+ "updated": 1732475368241,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089931",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089931.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "nc",
+ "code": "75089931",
+ "ids": ",nc75089931,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.007357,
+ "rms": 0.04,
+ "gap": 139,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.775329589844, 38.836498260498, 0.870000004768372]
+ },
+ "id": "nc75089931"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.4,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732474019950,
+ "updated": 1732474337120,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089926",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089926.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 89,
+ "net": "nc",
+ "code": "75089926",
+ "ids": ",nc75089926,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.005724,
+ "rms": 0.05,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.774833679199, 38.8370018005371, 0.509999990463257]
+ },
+ "id": "nc75089926"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "43 km SSE of Nelchina, Alaska",
+ "time": 1732474015217,
+ "updated": 1732474131044,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4esyk1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4esyk1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f4esyk1",
+ "ids": ",ak024f4esyk1,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.75,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 43 km SSE of Nelchina, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.4185, 61.6364, 28] },
+ "id": "ak024f4esyk1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "64 km NW of Tatitlek, Alaska",
+ "time": 1732473809286,
+ "updated": 1732473919623,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4es9eo",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4es9eo.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4es9eo",
+ "ids": ",ak024f4es9eo,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.93,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 64 km NW of Tatitlek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.6219, 61.2147, 0.3] },
+ "id": "ak024f4es9eo"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.09,
+ "place": "2 km ESE of Honomu, Hawaii",
+ "time": 1732473095950,
+ "updated": 1732556412690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539547",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539547.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "hv",
+ "code": "74539547",
+ "ids": ",hv74539547,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.1508,
+ "rms": 0.1,
+ "gap": 261,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 2 km ESE of Honomu, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.096166666667, 19.8623333333333, 41.81]
+ },
+ "id": "hv74539547"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.37,
+ "place": "5 km WNW of The Geysers, CA",
+ "time": 1732473032730,
+ "updated": 1732474336121,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089921",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089921.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "nc",
+ "code": "75089921",
+ "ids": ",nc75089921,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.007871,
+ "rms": 0.02,
+ "gap": 99,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 5 km WNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.810668945312, 38.7934989929199, 3.44000005722046]
+ },
+ "id": "nc75089921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "8 km NNW of The Geysers, CA",
+ "time": 1732472801750,
+ "updated": 1732473738044,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089916",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089916.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75089916",
+ "ids": ",nc75089916,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.008333,
+ "rms": 0.03,
+ "gap": 48,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 8 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.81600189209, 38.8303337097168, 1.72000002861023]
+ },
+ "id": "nc75089916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "23 km WNW of Bear Creek, Alaska",
+ "time": 1732472583289,
+ "updated": 1732472694558,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4enx2d",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4enx2d.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4enx2d",
+ "ids": ",ak024f4enx2d,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 23 km WNW of Bear Creek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.7856, 60.2352, 32] },
+ "id": "ak024f4enx2d"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732472276100,
+ "updated": 1732473570019,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089906",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089906.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089906",
+ "ids": ",nc75089906,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.005139,
+ "rms": 0.02,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.828666687012, 38.8139991760254, 2]
+ },
+ "id": "nc75089906"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "15 km N of Cabazon, CA",
+ "time": 1732472201000,
+ "updated": 1732479649001,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799295",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799295.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40799295",
+ "ids": ",ci40799295,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 42,
+ "dmin": 0.03996,
+ "rms": 0.13,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 15 km N of Cabazon, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7636667, 34.0511667, 13.76]
+ },
+ "id": "ci40799295"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.93,
+ "place": "73 km SW of Unalaska, Alaska",
+ "time": 1732472186440,
+ "updated": 1732664684570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377733",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377733.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "av",
+ "code": "93377733",
+ "ids": ",av93377733,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.3264,
+ "rms": 0.43,
+ "gap": 210,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 73 km SW of Unalaska, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-167.367833333333, 53.4371666666667, 1.15]
+ },
+ "id": "av93377733"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.06,
+ "place": "1 km ESE of Lajas, Puerto Rico",
+ "time": 1732471968760,
+ "updated": 1732473470190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466713",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466713.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 65,
+ "net": "pr",
+ "code": "71466713",
+ "ids": ",pr71466713,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.07174,
+ "rms": 0.09,
+ "gap": 104,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 1 km ESE of Lajas, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.0448333333333, 18.0433333333333, 20.18]
+ },
+ "id": "pr71466713"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "south of the Kermadec Islands",
+ "time": 1732471632547,
+ "updated": 1732472868040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7gu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7gu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "6000p7gu",
+ "ids": ",us6000p7gu,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 3.232,
+ "rms": 0.85,
+ "gap": 121,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.7 - south of the Kermadec Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-177.706, -32.4989, 10] },
+ "id": "us6000p7gu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "19 km NW of Ninilchik, Alaska",
+ "time": 1732471546613,
+ "updated": 1732471647004,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4ek5j9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4ek5j9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4ek5j9",
+ "ids": ",ak024f4ek5j9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.4,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 19 km NW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.8759, 60.1933, 52.1]
+ },
+ "id": "ak024f4ek5j9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "11 km E of Susitna, Alaska",
+ "time": 1732471381283,
+ "updated": 1732471495895,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4ejmls",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4ejmls.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4ejmls",
+ "ids": ",ak024f4ejmls,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.27,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 11 km E of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.2873, 61.5391, 51.7]
+ },
+ "id": "ak024f4ejmls"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.31,
+ "place": "18 km E of Clayton, Idaho",
+ "time": 1732470891490,
+ "updated": 1732568115650,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066858",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066858.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "mb",
+ "code": "90066858",
+ "ids": ",mb90066858,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.1515,
+ "rms": 0.21,
+ "gap": 50,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 18 km E of Clayton, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.164166666667, 44.2613333333333, 2.38]
+ },
+ "id": "mb90066858"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.73000002,
+ "place": "20 km SE of Pāhala, Hawaii",
+ "time": 1732469923250,
+ "updated": 1732470030260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539517",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539517.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "hv",
+ "code": "74539517",
+ "ids": ",hv74539517,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 0.1391,
+ "rms": 0.159999996,
+ "gap": 213,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 20 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.362167358398, 19.0528335571289, 30.0599994659424]
+ },
+ "id": "hv74539517"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732469169348,
+ "updated": 1732543002017,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcpn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcpn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024xcpn",
+ "ids": ",tx2024xcpn,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 87,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.461, 31.653, 6.2537]
+ },
+ "id": "tx2024xcpn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.93,
+ "place": "4 km E of Hoback, Wyoming",
+ "time": 1732468893840,
+ "updated": 1732549893900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066753",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066753.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "mb",
+ "code": "90066753",
+ "ids": ",mb90066753,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.1786,
+ "rms": 0.28,
+ "gap": 105,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 4 km E of Hoback, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.724833333333, 43.2825, 3.1]
+ },
+ "id": "mb90066753"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "23 km N of Amboy, Washington",
+ "time": 1732468695780,
+ "updated": 1732517534590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061201",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061201.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "uw",
+ "code": "62061201",
+ "ids": ",uw62061201,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.1288,
+ "rms": 0.09,
+ "gap": 102,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 23 km N of Amboy, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.502, 46.12116666666667, 16.88]
+ },
+ "id": "uw62061201"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.13000011,
+ "place": "12 km ESE of Pāhala, Hawaii",
+ "time": 1732468250650,
+ "updated": 1732468338930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539502",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539502.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "hv",
+ "code": "74539502",
+ "ids": ",hv74539502,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0.08308,
+ "rms": 0.129999995,
+ "gap": 189,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 12 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.375, 19.1443328857422, 30.4300003051758]
+ },
+ "id": "hv74539502"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "21 km SSE of Mossyrock, Washington",
+ "time": 1732468124420,
+ "updated": 1732517867510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061196",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061196.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "uw",
+ "code": "62061196",
+ "ids": ",uw62061196,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.05746,
+ "rms": 0.08,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 21 km SSE of Mossyrock, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.40316666666666, 46.3445, 9.45]
+ },
+ "id": "uw62061196"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.67,
+ "place": "1 km NNW of Hillsborough, CA",
+ "time": 1732467923660,
+ "updated": 1732769669250,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089886",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089886.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 43,
+ "net": "nc",
+ "code": "75089886",
+ "ids": ",nc75089886,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 50,
+ "dmin": 0.0256,
+ "rms": 0.07,
+ "gap": 71,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 1 km NNW of Hillsborough, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.387833333333, 37.5821666666667, 10.24]
+ },
+ "id": "nc75089886"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "48 km WNW of Indian Springs, Nevada",
+ "time": 1732467857451,
+ "updated": 1732500222166,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887909",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887909.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00887909",
+ "ids": ",nn00887909,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.041,
+ "rms": 0.0639,
+ "gap": 199.41,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 48 km WNW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.1674, 36.7505, 4.8] },
+ "id": "nn00887909"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "11 km ENE of Ocotillo Wells, CA",
+ "time": 1732467220130,
+ "updated": 1732479664030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799271",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799271.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40799271",
+ "ids": ",ci40799271,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 48,
+ "dmin": 0.04277,
+ "rms": 0.21,
+ "gap": 44,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 11 km ENE of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0256667, 33.1881667, 7.55]
+ },
+ "id": "ci40799271"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "27 km S of Chickaloon, Alaska",
+ "time": 1732467074856,
+ "updated": 1732467228924,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4dn2t9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4dn2t9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f4dn2t9",
+ "ids": ",ak024f4dn2t9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 27 km S of Chickaloon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.3669, 61.5524, 21.8]
+ },
+ "id": "ak024f4dn2t9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "17 km E of Susitna North, Alaska",
+ "time": 1732466853721,
+ "updated": 1732466945857,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4dm9ek",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4dm9ek.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4dm9ek",
+ "ids": ",ak024f4dm9ek,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.4,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 17 km E of Susitna North, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.5224, 62.185, 19.8] },
+ "id": "ak024f4dm9ek"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "34 km SSW of Lowell Point, Alaska",
+ "time": 1732466759291,
+ "updated": 1732466899376,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4dlvwu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4dlvwu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f4dlvwu",
+ "ids": ",ak024f4dlvwu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.76,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 34 km SSW of Lowell Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.6032, 59.7706, 26.9]
+ },
+ "id": "ak024f4dlvwu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732466731370,
+ "updated": 1732468167417,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089881",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089881.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089881",
+ "ids": ",nc75089881,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.018,
+ "rms": 0.01,
+ "gap": 57,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.807830810547, 38.8266677856445, 1.58000004291534]
+ },
+ "id": "nc75089881"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.7,
+ "place": "151 km WNW of Nikolski, Alaska",
+ "time": 1732466617412,
+ "updated": 1732493061268,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4dlewu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4dlewu.geojson",
+ "felt": 1,
+ "cdi": 2.2,
+ "mmi": 1.717,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 211,
+ "net": "ak",
+ "code": "024f4dlewu",
+ "ids": ",ak024f4dlewu,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,shakemap,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.7 - 151 km WNW of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-171.0477, 53.2833, 191.5]
+ },
+ "id": "ak024f4dlewu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "132 km SW of Nikolski, Alaska",
+ "time": 1732466614981,
+ "updated": 1732470138040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7gg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7gg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "6000p7gg",
+ "ids": ",us6000p7gg,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 1.215,
+ "rms": 0.64,
+ "gap": 208,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 132 km SW of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-170.4338, 52.2329, 231.05]
+ },
+ "id": "us6000p7gg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.13000011,
+ "place": "2 km SSW of Pāhala, Hawaii",
+ "time": 1732466458990,
+ "updated": 1732466556360,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539482",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539482.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "hv",
+ "code": "74539482",
+ "ids": ",hv74539482,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 0.03649,
+ "rms": 0.140000001,
+ "gap": 78,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 2 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.485168457031, 19.1848335266113, 34.1100006103516]
+ },
+ "id": "hv74539482"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "37 km E of Skwentna, Alaska",
+ "time": 1732466439476,
+ "updated": 1732466533984,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4dkru3",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4dkru3.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4dkru3",
+ "ids": ",ak024f4dkru3,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.37,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 37 km E of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6899, 62.0313, 62.1]
+ },
+ "id": "ak024f4dkru3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "8 km NW of The Geysers, CA",
+ "time": 1732466225860,
+ "updated": 1732467569348,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089876",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089876.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089876",
+ "ids": ",nc75089876,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.005307,
+ "rms": 0.01,
+ "gap": 55,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 8 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.828330993652, 38.8240013122559, 2]
+ },
+ "id": "nc75089876"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "17 km NNE of Houston, Alaska",
+ "time": 1732466051304,
+ "updated": 1732466149511,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4djfd6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4djfd6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4djfd6",
+ "ids": ",ak024f4djfd6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.5,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 17 km NNE of Houston, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.7077, 61.7759, 64] },
+ "id": "ak024f4djfd6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.21,
+ "place": "6 km NNW of The Geysers, CA",
+ "time": 1732465964960,
+ "updated": 1732660814534,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089871",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089871.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nc",
+ "code": "75089871",
+ "ids": ",nc75089871,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.005026,
+ "rms": 0.03,
+ "gap": 85,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M -0.2 - 6 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.804666666667, 38.8206666666667, 1.73]
+ },
+ "id": "nc75089871"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.28,
+ "place": "6 km NNW of The Geysers, CA",
+ "time": 1732465890110,
+ "updated": 1732466971284,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089866",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089866.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "nc",
+ "code": "75089866",
+ "ids": ",nc75089866,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.005524,
+ "rms": 0.01,
+ "gap": 36,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 6 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.804664611816, 38.8198318481445, 1.97000002861023]
+ },
+ "id": "nc75089866"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "9 km N of Four Mile Road, Alaska",
+ "time": 1732465146910,
+ "updated": 1732465252093,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4dg7ab",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4dg7ab.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f4dg7ab",
+ "ids": ",ak024f4dg7ab,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.78,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 9 km N of Four Mile Road, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.1038, 64.6859, 6.3] },
+ "id": "ak024f4dg7ab"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.31,
+ "place": "2 km SSE of Charter Oak, CA",
+ "time": 1732464824140,
+ "updated": 1732479667767,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799263",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799263.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40799263",
+ "ids": ",ci40799263,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 51,
+ "dmin": 0.02386,
+ "rms": 0.21,
+ "gap": 45,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 2 km SSE of Charter Oak, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.8355, 34.0881667, 14.77]
+ },
+ "id": "ci40799263"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.2,
+ "place": "50 km W of Indian Springs, Nevada",
+ "time": 1732464601851,
+ "updated": 1732500220030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887908",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887908.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00887908",
+ "ids": ",nn00887908,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.083,
+ "rms": 0.0529,
+ "gap": 115.08,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 50 km W of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.2272, 36.6149, 6.3] },
+ "id": "nn00887908"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732464598630,
+ "updated": 1732466070171,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089851",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089851.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "nc",
+ "code": "75089851",
+ "ids": ",nc75089851,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.009069,
+ "rms": 0.01,
+ "gap": 33,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.799163818359, 38.8264999389648, 2.05999994277954]
+ },
+ "id": "nc75089851"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.35,
+ "place": "9 km S of Shaver Lake, CA",
+ "time": 1732464592370,
+ "updated": 1732770570362,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089846",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089846.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 85,
+ "net": "nc",
+ "code": "75089846",
+ "ids": ",nc75089846,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.1457,
+ "rms": 0.12,
+ "gap": 130,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 9 km S of Shaver Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.2855, 37.0246666666667, 45.04]
+ },
+ "id": "nc75089846"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.85,
+ "place": "24 km NE of King City, CA",
+ "time": 1732464337950,
+ "updated": 1732753170275,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089836",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089836.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 53,
+ "net": "nc",
+ "code": "75089836",
+ "ids": ",nc75089836,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.04866,
+ "rms": 0.11,
+ "gap": 65,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 24 km NE of King City, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.945333333333, 36.3685, 9.48]
+ },
+ "id": "nc75089836"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "25 km SSW of Bodfish, CA",
+ "time": 1732464127610,
+ "updated": 1732483160120,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799247",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799247.geojson",
+ "felt": 1,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 75,
+ "net": "ci",
+ "code": "40799247",
+ "ids": ",ci40799247,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 50,
+ "dmin": 0.1248,
+ "rms": 0.17,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 25 km SSW of Bodfish, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.6458333, 35.3983333, 4.36]
+ },
+ "id": "ci40799247"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.51,
+ "place": "3 km W of Ponce, Puerto Rico",
+ "time": 1732463757950,
+ "updated": 1732465329230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466703",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466703.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 97,
+ "net": "pr",
+ "code": "71466703",
+ "ids": ",pr71466703,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.05251,
+ "rms": 0.1,
+ "gap": 129,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 3 km W of Ponce, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.6603333333333, 18.0063333333333, 13.87]
+ },
+ "id": "pr71466703"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "24 km WSW of Anchorage, Alaska",
+ "time": 1732462860551,
+ "updated": 1732462947304,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4czgxz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4czgxz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f4czgxz",
+ "ids": ",ak024f4czgxz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 24 km WSW of Anchorage, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.328, 61.138, 35.8] },
+ "id": "ak024f4czgxz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.93,
+ "place": "60 km ENE of Pedro Bay, Alaska",
+ "time": 1732462800640,
+ "updated": 1732661254320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377618",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377618.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377618",
+ "ids": ",av93377618,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02978,
+ "rms": 0.17,
+ "gap": 163,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 60 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-153.1295, 60.03, 3.15] },
+ "id": "av93377618"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.52,
+ "place": "6 km ENE of Hoback, Wyoming",
+ "time": 1732462449640,
+ "updated": 1732549316380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066748",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066748.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "mb",
+ "code": "90066748",
+ "ids": ",mb90066748,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1644,
+ "rms": 0.13,
+ "gap": 197,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km ENE of Hoback, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.711833333333, 43.2983333333333, 7.76]
+ },
+ "id": "mb90066748"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "34 km W of Anderson, Alaska",
+ "time": 1732461965243,
+ "updated": 1732462061113,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4cw9kc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4cw9kc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f4cw9kc",
+ "ids": ",ak024f4cw9kc,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.14,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 34 km W of Anderson, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.8885, 64.2978, 13] },
+ "id": "ak024f4cw9kc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "29 km ESE of Skwentna, Alaska",
+ "time": 1732461749780,
+ "updated": 1732461861001,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4cvgle",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4cvgle.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4cvgle",
+ "ids": ",ak024f4cvgle,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 29 km ESE of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.8505, 61.9234, 60.8]
+ },
+ "id": "ak024f4cvgle"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.77999997,
+ "place": "19 km SE of Pāhala, Hawaii",
+ "time": 1732461523910,
+ "updated": 1732461623800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539417",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539417.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74539417",
+ "ids": ",hv74539417,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 48,
+ "dmin": 0.1287,
+ "rms": 0.170000002,
+ "gap": 207,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 19 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.366165161133, 19.0636672973633, 29.7900009155273]
+ },
+ "id": "hv74539417"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.33,
+ "place": "22 km S of Dubois, Wyoming",
+ "time": 1732461448670,
+ "updated": 1732548859290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066733",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066733.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 84,
+ "net": "mb",
+ "code": "90066733",
+ "ids": ",mb90066733,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.5706,
+ "rms": 0.2,
+ "gap": 96,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 22 km S of Dubois, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-109.671833333333, 43.3315, 3.1]
+ },
+ "id": "mb90066733"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.94,
+ "place": "6 km NE of Hoback, Wyoming",
+ "time": 1732461215560,
+ "updated": 1732547929270,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066773",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066773.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "mb",
+ "code": "90066773",
+ "ids": ",mb90066773,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.1444,
+ "rms": 0.09,
+ "gap": 194,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 6 km NE of Hoback, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.723666666667, 43.3171666666667, 6.08]
+ },
+ "id": "mb90066773"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.41,
+ "place": "5 km ENE of Hoback, Wyoming",
+ "time": 1732461199570,
+ "updated": 1732547381820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066723",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066723.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "mb",
+ "code": "90066723",
+ "ids": ",mb90066723,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1682,
+ "rms": 0.09,
+ "gap": 198,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km ENE of Hoback, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.718166666667, 43.2936666666667, 5.06]
+ },
+ "id": "mb90066723"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.78,
+ "place": "15 km SW of Thatcher, Utah",
+ "time": 1732461128980,
+ "updated": 1732559690880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087161",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087161.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "uu",
+ "code": "80087161",
+ "ids": ",uu80087161,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.08355,
+ "rms": 0.12,
+ "gap": 121,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 15 km SW of Thatcher, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.420833333333, 41.5913333333333, 4.89]
+ },
+ "id": "uu80087161"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.11,
+ "place": "10 km of Lake Pillsbury, CA",
+ "time": 1732461063720,
+ "updated": 1732651771762,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089821",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089821.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "nc",
+ "code": "75089821",
+ "ids": ",nc75089821,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 59,
+ "dmin": 0.04321,
+ "rms": 0.12,
+ "gap": 24,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 10 km of Lake Pillsbury, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.9905, 39.4948333333333, 6.41]
+ },
+ "id": "nc75089821"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "39 km W of Valdez, Alaska",
+ "time": 1732460857958,
+ "updated": 1732461019431,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4cs9gr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4cs9gr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4cs9gr",
+ "ids": ",ak024f4cs9gr,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 39 km W of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.0732, 61.1847, 0] },
+ "id": "ak024f4cs9gr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "50 km SSE of Denali National Park, Alaska",
+ "time": 1732460384984,
+ "updated": 1732460531647,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4chznm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4chznm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4chznm",
+ "ids": ",ak024f4chznm,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.81,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 50 km SSE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.4866, 63.1039, 0] },
+ "id": "ak024f4chznm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.52,
+ "place": "5 km NNW of Jagual, Puerto Rico",
+ "time": 1732460380300,
+ "updated": 1732464410290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466693",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466693.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 98,
+ "net": "pr",
+ "code": "71466693",
+ "ids": ",pr71466693,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.03782,
+ "rms": 0.2,
+ "gap": 72,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 5 km NNW of Jagual, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.0071666666667, 18.2066666666667, 9.91]
+ },
+ "id": "pr71466693"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "100 km W of Port-Vila, Vanuatu",
+ "time": 1732460373060,
+ "updated": 1732461882040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7g0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7g0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "6000p7g0",
+ "ids": ",us6000p7g0,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 2.245,
+ "rms": 0.81,
+ "gap": 183,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 100 km W of Port-Vila, Vanuatu"
+ },
+ "geometry": { "type": "Point", "coordinates": [167.3682, -17.6991, 10] },
+ "id": "us6000p7g0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "51 km SSE of Denali National Park, Alaska",
+ "time": 1732460249812,
+ "updated": 1732460381422,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4chj1x",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4chj1x.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f4chj1x",
+ "ids": ",ak024f4chj1x,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.74,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 51 km SSE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.3423, 63.1138, 0] },
+ "id": "ak024f4chj1x"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.59,
+ "place": "19 km E of Little Lake, CA",
+ "time": 1732460249200,
+ "updated": 1732479685589,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799239",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799239.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40799239",
+ "ids": ",ci40799239,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.05679,
+ "rms": 0.1,
+ "gap": 64,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 19 km E of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6981667, 35.9063333, 4.04]
+ },
+ "id": "ci40799239"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75999999,
+ "place": "7 km S of Pāhala, Hawaii",
+ "time": 1732460088590,
+ "updated": 1732460184410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539397",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539397.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74539397",
+ "ids": ",hv74539397,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.02476,
+ "rms": 0.109999999,
+ "gap": 172,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 7 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.477340698242, 19.1351661682129, 34.3600006103516]
+ },
+ "id": "hv74539397"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.1,
+ "place": "59 km NE of Miches, Dominican Republic",
+ "time": 1732460051043,
+ "updated": 1732463051040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7fy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7fy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 148,
+ "net": "us",
+ "code": "6000p7fy",
+ "ids": ",us6000p7fy,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.908,
+ "rms": 1.45,
+ "gap": 187,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.1 - 59 km NE of Miches, Dominican Republic"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.5817, 19.2933, 97.452]
+ },
+ "id": "us6000p7fy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.99,
+ "place": "21 km SSE of La Romana, Dominican Republic",
+ "time": 1732460049850,
+ "updated": 1732462962356,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024329004",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024329004.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 245,
+ "net": "pr",
+ "code": "2024329004",
+ "ids": ",pr2024329004,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 1.0645,
+ "rms": 0.54,
+ "gap": 183,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 4.0 - 21 km SSE of La Romana, Dominican Republic"
+ },
+ "geometry": { "type": "Point", "coordinates": [-68.8728, 18.2555, 137] },
+ "id": "pr2024329004"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "6 km WSW of Point MacKenzie, Alaska",
+ "time": 1732459983369,
+ "updated": 1732460142038,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4cgm58",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4cgm58.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4cgm58",
+ "ids": ",ak024f4cgm58,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.62,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 6 km WSW of Point MacKenzie, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.1024, 61.3451, 41.8]
+ },
+ "id": "ak024f4cgm58"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.36,
+ "place": "7 km ENE of Hoback, Wyoming",
+ "time": 1732459018960,
+ "updated": 1732460360320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066718",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066718.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "mb",
+ "code": "90066718",
+ "ids": ",mb90066718,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.1605,
+ "rms": 0.25,
+ "gap": 193,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km ENE of Hoback, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.700666666667, 43.3041666666667, 4.96]
+ },
+ "id": "mb90066718"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "2 km ENE of Loma Linda, CA",
+ "time": 1732458688210,
+ "updated": 1732479702532,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799231",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799231.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "ci",
+ "code": "40799231",
+ "ids": ",ci40799231,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 57,
+ "dmin": 0.06212,
+ "rms": 0.18,
+ "gap": 52,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km ENE of Loma Linda, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.2443333, 34.052, 14.71]
+ },
+ "id": "ci40799231"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "16 km N of Point Possession, Alaska",
+ "time": 1732458222307,
+ "updated": 1732458337165,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4ca9o6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4ca9o6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4ca9o6",
+ "ids": ",ak024f4ca9o6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.82,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 16 km N of Point Possession, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.7092, 61.0734, 40.8]
+ },
+ "id": "ak024f4ca9o6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "south of the Fiji Islands",
+ "time": 1732457954915,
+ "updated": 1732459399040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7fw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7fw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p7fw",
+ "ids": ",us6000p7fw,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 51,
+ "dmin": 4.836,
+ "rms": 0.73,
+ "gap": 112,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - south of the Fiji Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-179.5178, -22.0292, 593.159]
+ },
+ "id": "us6000p7fw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "11 km W of Anchor Point, Alaska",
+ "time": 1732457345916,
+ "updated": 1732457434020,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4c76u7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4c76u7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4c76u7",
+ "ids": ",ak024f4c76u7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.34,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 11 km W of Anchor Point, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.042, 59.7633, 55.2] },
+ "id": "ak024f4c76u7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "9 km S of Salcha, Alaska",
+ "time": 1732457204183,
+ "updated": 1732457304767,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4c6mn6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4c6mn6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4c6mn6",
+ "ids": ",ak024f4c6mn6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 9 km S of Salcha, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.8804, 64.4407, 11.4]
+ },
+ "id": "ak024f4c6mn6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "6 km NW of The Geysers, CA",
+ "time": 1732457127420,
+ "updated": 1732458271236,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089816",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089816.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089816",
+ "ids": ",nc75089816,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.009525,
+ "rms": 0.02,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 6 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.813163757324, 38.8141670227051, 2.64000010490417]
+ },
+ "id": "nc75089816"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "15 km ENE of Little Lake, CA",
+ "time": 1732456912020,
+ "updated": 1732457222453,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799223",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799223.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40799223",
+ "ids": ",ci40799223,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.0642,
+ "rms": 0.07,
+ "gap": 233,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 15 km ENE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7606667, 35.994, 7.8]
+ },
+ "id": "ci40799223"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "42 km NE of Chenega, Alaska",
+ "time": 1732456862699,
+ "updated": 1732456945053,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4c5gv1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4c5gv1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f4c5gv1",
+ "ids": ",ak024f4c5gv1,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 42 km NE of Chenega, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.5307, 60.3606, 29.2]
+ },
+ "id": "ak024f4c5gv1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.81,
+ "place": "86 km NW of Karluk, Alaska",
+ "time": 1732456683020,
+ "updated": 1732659357060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377533",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377533.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377533",
+ "ids": ",av93377533,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.04049,
+ "rms": 0.05,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 86 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.358666666667, 58.173, 0.93]
+ },
+ "id": "av93377533"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "16 km SE of Stanton, Texas",
+ "time": 1732456475035,
+ "updated": 1732554140361,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xciq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xciq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "tx",
+ "code": "2024xciq",
+ "ids": ",tx2024xciq,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 86,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 16 km SE of Stanton, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-101.684, 32.013, 8.6182]
+ },
+ "id": "tx2024xciq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "12 km NNE of Dillon, Montana",
+ "time": 1732456418100,
+ "updated": 1732567357350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066848",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066848.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "mb",
+ "code": "90066848",
+ "ids": ",mb90066848,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.04116,
+ "rms": 0.1,
+ "gap": 100,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 12 km NNE of Dillon, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.582666666667, 45.3225, 7.78]
+ },
+ "id": "mb90066848"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "18 km WSW of Toms Place, CA",
+ "time": 1732456241820,
+ "updated": 1732564370362,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089811",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089811.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75089811",
+ "ids": ",nc75089811,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.1302,
+ "rms": 0.04,
+ "gap": 197,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 18 km WSW of Toms Place, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.834166666667, 37.4596666666667, 9.76]
+ },
+ "id": "nc75089811"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.43,
+ "place": "6 km NNW of The Geysers, CA",
+ "time": 1732455936350,
+ "updated": 1732457370134,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089806",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089806.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75089806",
+ "ids": ",nc75089806,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.007918,
+ "rms": 0.02,
+ "gap": 122,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.4 - 6 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.801498413086, 38.8191680908203, 2.70000004768372]
+ },
+ "id": "nc75089806"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.1,
+ "place": "137 km W of Bandon, Oregon",
+ "time": 1732455786275,
+ "updated": 1732457262040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7ft",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7ft.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 148,
+ "net": "us",
+ "code": "6000p7ft",
+ "ids": ",us6000p7ft,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 1.586,
+ "rms": 0.71,
+ "gap": 277,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.1 - 137 km W of Bandon, Oregon"
+ },
+ "geometry": { "type": "Point", "coordinates": [-126.099, 43.2041, 10] },
+ "id": "us6000p7ft"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.4,
+ "place": "28 km SE of Chickaloon, Alaska",
+ "time": 1732455206427,
+ "updated": 1732455302345,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4bqy02",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4bqy02.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ak",
+ "code": "024f4bqy02",
+ "ids": ",ak024f4bqy02,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 28 km SE of Chickaloon, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.1075, 61.6052, 18] },
+ "id": "ak024f4bqy02"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "36 km WNW of Valdez, Alaska",
+ "time": 1732455041202,
+ "updated": 1732455166753,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4bqbzs",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4bqbzs.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4bqbzs",
+ "ids": ",ak024f4bqbzs,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.57,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 36 km WNW of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.0135, 61.1975, 0] },
+ "id": "ak024f4bqbzs"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "79 km SSW of Harding-Birch Lakes, Alaska",
+ "time": 1732454710408,
+ "updated": 1732454822217,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4bp71c",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4bp71c.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f4bp71c",
+ "ids": ",ak024f4bp71c,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.76,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 79 km SSW of Harding-Birch Lakes, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.2648, 63.7167, 0] },
+ "id": "ak024f4bp71c"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "53 km W of Nanwalek, Alaska",
+ "time": 1732453954061,
+ "updated": 1732454050340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4bmgjy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4bmgjy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f4bmgjy",
+ "ids": ",ak024f4bmgjy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.2,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 53 km W of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.8638, 59.3847, 80.5]
+ },
+ "id": "ak024f4bmgjy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.21,
+ "place": "25 km SW of Ocotillo Wells, CA",
+ "time": 1732453688080,
+ "updated": 1732457528860,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799215",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799215.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "ci",
+ "code": "40799215",
+ "ids": ",ci40799215,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 47,
+ "dmin": 0.08423,
+ "rms": 0.18,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 25 km SW of Ocotillo Wells, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3105, 32.9748333, 9.59]
+ },
+ "id": "ci40799215"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "50 km E of Calama, Chile",
+ "time": 1732453038645,
+ "updated": 1732453801040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7fm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7fm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "6000p7fm",
+ "ids": ",us6000p7fm,",
+ "sources": ",us,",
+ "types": ",moment-tensor,origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.588,
+ "rms": 1.05,
+ "gap": 65,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 4.8 - 50 km E of Calama, Chile"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-68.4374, -22.4115, 114.168]
+ },
+ "id": "us6000p7fm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "4 km NE of Lake Henshaw, CA",
+ "time": 1732452611350,
+ "updated": 1732457334712,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799207",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799207.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40799207",
+ "ids": ",ci40799207,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 41,
+ "dmin": 0.04206,
+ "rms": 0.17,
+ "gap": 45,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 4 km NE of Lake Henshaw, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.734, 33.2726667, 9.29]
+ },
+ "id": "ci40799207"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "52 km SSW of Whites City, New Mexico",
+ "time": 1732451286588,
+ "updated": 1732535933781,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcfr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcfr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "tx",
+ "code": "2024xcfr",
+ "ids": ",tx2024xcfr,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 82,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 52 km SSW of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.508, 31.72, 5.6384] },
+ "id": "tx2024xcfr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "52 km SE of Pope-Vannoy Landing, Alaska",
+ "time": 1732450791683,
+ "updated": 1732450933289,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4b2kbk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4b2kbk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f4b2kbk",
+ "ids": ",ak024f4b2kbk,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.49,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 52 km SE of Pope-Vannoy Landing, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.7306, 59.2827, 127.9]
+ },
+ "id": "ak024f4b2kbk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "10 km SW of Borrego Springs, CA",
+ "time": 1732450552180,
+ "updated": 1732457354730,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799199",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799199.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40799199",
+ "ids": ",ci40799199,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.08547,
+ "rms": 0.22,
+ "gap": 118,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 10 km SW of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4371667, 33.1841667, 7.23]
+ },
+ "id": "ci40799199"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.33,
+ "place": "2 km NNW of La Luisa, Puerto Rico",
+ "time": 1732450518510,
+ "updated": 1732457039040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466658",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466658.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 171,
+ "net": "pr",
+ "code": "71466658",
+ "ids": ",us6000p7fg,pr71466658,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.2529,
+ "rms": 0.24,
+ "gap": 181,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.3 - 2 km NNW of La Luisa, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.5208333333333, 18.4696666666667, 112.44]
+ },
+ "id": "pr71466658"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "2 km NNE of The Geysers, CA",
+ "time": 1732450191500,
+ "updated": 1732451836484,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089801",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089801.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75089801",
+ "ids": ",nc75089801,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.006705,
+ "rms": 0.02,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 2 km NNE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.751335144043, 38.7991676330566, 1.87000000476837]
+ },
+ "id": "nc75089801"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "0 km SE of Beluga, Alaska",
+ "time": 1732450170638,
+ "updated": 1732450264543,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4b0djb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4b0djb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f4b0djb",
+ "ids": ",ak024f4b0djb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.21,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 0 km SE of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0743, 61.1369, 57.5]
+ },
+ "id": "ak024f4b0djb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.28,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732450066960,
+ "updated": 1732451373438,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089796",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089796.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "nc",
+ "code": "75089796",
+ "ids": ",nc75089796,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.01333,
+ "rms": 0.02,
+ "gap": 88,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.830833435059, 38.8426666259766, 1.10000002384186]
+ },
+ "id": "nc75089796"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "12 km SW of Searles Valley, CA",
+ "time": 1732449845330,
+ "updated": 1732457352604,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799191",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799191.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40799191",
+ "ids": ",ci40799191,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.05207,
+ "rms": 0.11,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 12 km SW of Searles Valley, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.485, 35.68, 6.58] },
+ "id": "ci40799191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "6 km NNW of The Geysers, CA",
+ "time": 1732449803200,
+ "updated": 1732450935391,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089791",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089791.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "nc",
+ "code": "75089791",
+ "ids": ",nc75089791,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.009182,
+ "rms": 0.01,
+ "gap": 33,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 6 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.798332214355, 38.8238334655762, 2.53999996185303]
+ },
+ "id": "nc75089791"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "4 km E of Banning, CA",
+ "time": 1732449766410,
+ "updated": 1732457595910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799183",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799183.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40799183",
+ "ids": ",ci40799183,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 54,
+ "dmin": 0.04147,
+ "rms": 0.15,
+ "gap": 28,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 4 km E of Banning, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8326667, 33.9231667, 9.59]
+ },
+ "id": "ci40799183"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732449634540,
+ "updated": 1732450767374,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089786",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089786.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75089786",
+ "ids": ",nc75089786,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.01197,
+ "rms": 0.02,
+ "gap": 55,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.811500549316, 38.835334777832, 2.05999994277954]
+ },
+ "id": "nc75089786"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.43,
+ "place": "145 km NNE of Vieques, Puerto Rico",
+ "time": 1732449418390,
+ "updated": 1732456849040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466648",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466648.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 181,
+ "net": "pr",
+ "code": "71466648",
+ "ids": ",us6000p7fk,pr71466648,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 1.324,
+ "rms": 0.26,
+ "gap": 252,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.4 - 145 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-65.3141666666667, 19.6388333333333, 21.15]
+ },
+ "id": "pr71466648"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.21,
+ "place": "71 km NW of Karluk, Alaska",
+ "time": 1732449392060,
+ "updated": 1732657984970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377458",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377458.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93377458",
+ "ids": ",av93377458,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.02221,
+ "rms": 0.17,
+ "gap": 219,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 71 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.275666666667, 58.0353333333333, 8.49]
+ },
+ "id": "av93377458"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "14 km NNE of Ashford, Washington",
+ "time": 1732449288780,
+ "updated": 1732558774750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061186",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061186.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "uw",
+ "code": "62061186",
+ "ids": ",uw62061186,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.008902,
+ "rms": 0.09,
+ "gap": 103,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 14 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.95516666666667, 46.87566666666667, 9.52]
+ },
+ "id": "uw62061186"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.59,
+ "place": "15 km W of Hebgen Lake Estates, Montana",
+ "time": 1732449201540,
+ "updated": 1732566900420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066843",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066843.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "mb",
+ "code": "90066843",
+ "ids": ",mb90066843,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.05757,
+ "rms": 0.16,
+ "gap": 103,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 15 km W of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.391166666667, 44.7801666666667, 6.22]
+ },
+ "id": "mb90066843"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "11 km S of Joshua Tree, CA",
+ "time": 1732449192450,
+ "updated": 1732457400096,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799175",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799175.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40799175",
+ "ids": ",ci40799175,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 41,
+ "dmin": 0.07206,
+ "rms": 0.13,
+ "gap": 38,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 11 km S of Joshua Tree, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3125, 34.0366667, 8.33]
+ },
+ "id": "ci40799175"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732449173149,
+ "updated": 1732541551396,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcen",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcen.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "tx",
+ "code": "2024xcen",
+ "ids": ",tx2024xcen,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.296, 31.651, 7.9712]
+ },
+ "id": "tx2024xcen"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.41,
+ "place": "75 km W of Tyonek, Alaska",
+ "time": 1732449001610,
+ "updated": 1732657418360,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377453",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377453.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "av",
+ "code": "93377453",
+ "ids": ",av93377453,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.1552,
+ "rms": 0.29,
+ "gap": 281,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 75 km W of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.535333333333, 61.0731666666667, 0.12]
+ },
+ "id": "av93377453"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.92,
+ "place": "21 km ESE of Point Sur, CA",
+ "time": 1732448680310,
+ "updated": 1732564219815,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089781",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089781.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75089781",
+ "ids": ",nc75089781,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.06998,
+ "rms": 0.05,
+ "gap": 105,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 21 km ESE of Point Sur, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.680333333333, 36.2435, 14.35]
+ },
+ "id": "nc75089781"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.54,
+ "place": "25 km SSE of West Yellowstone, Montana",
+ "time": 1732448580880,
+ "updated": 1732561387570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087151.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "uu",
+ "code": "80087151",
+ "ids": ",uu80087151,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.113,
+ "rms": 0.24,
+ "gap": 151,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 25 km SSE of West Yellowstone, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.9935, 44.4481666666667, 4.61]
+ },
+ "id": "uu80087151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "11 km WSW of Rachel, Nevada",
+ "time": 1732448351225,
+ "updated": 1732564906853,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887902",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887902.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "nn",
+ "code": "00887902",
+ "ids": ",nn00887902,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.102,
+ "rms": 0.1514,
+ "gap": 88.32999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 11 km WSW of Rachel, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-115.8682, 37.6099, 5.8] },
+ "id": "nn00887902"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "4 km NNW of Knik, Alaska",
+ "time": 1732448043862,
+ "updated": 1732492464180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4ak8rm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4ak8rm.geojson",
+ "felt": 0,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f4ak8rm",
+ "ids": ",ak024f4ak8rm,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.22,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 4 km NNW of Knik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.7609, 61.4917, 32.9]
+ },
+ "id": "ak024f4ak8rm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "4 km SSW of Salcha, Alaska",
+ "time": 1732447959708,
+ "updated": 1732448065591,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4ajw3m",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4ajw3m.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f4ajw3m",
+ "ids": ",ak024f4ajw3m,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.56,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 4 km SSW of Salcha, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.9305, 64.4825, 5.1] },
+ "id": "ak024f4ajw3m"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "25 km SSE of West Yellowstone, Montana",
+ "time": 1732447679860,
+ "updated": 1732561195340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80001708",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80001708.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "uu",
+ "code": "80001708",
+ "ids": ",uu80001708,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.1155,
+ "rms": 0.24,
+ "gap": 151,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 25 km SSE of West Yellowstone, Montana"
+ },
+ "geometry": { "type": "Point", "coordinates": [-110.997, 44.4475, 3.24] },
+ "id": "uu80001708"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.7,
+ "place": "28 km ESE of Larsen Bay, Alaska",
+ "time": 1732447674778,
+ "updated": 1732456654040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4aiuol",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4aiuol.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 112,
+ "net": "ak",
+ "code": "024f4aiuol",
+ "ids": ",us6000p7f9,ak024f4aiuol,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.57,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.7 - 28 km ESE of Larsen Bay, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-153.5456, 57.4416, 5.6] },
+ "id": "ak024f4aiuol"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.1,
+ "place": "83 km NW of Karluk, Alaska",
+ "time": 1732447657080,
+ "updated": 1732654288330,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377418",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377418.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377418",
+ "ids": ",av93377418,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.05038,
+ "rms": 0.07,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 83 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.323166666667, 58.1598333333333, 1.53]
+ },
+ "id": "av93377418"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "25 km SSE of West Yellowstone, Montana",
+ "time": 1732447645000,
+ "updated": 1732561047540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087146",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087146.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "uu",
+ "code": "80087146",
+ "ids": ",uu80087146,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1315,
+ "rms": 0.22,
+ "gap": 155,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 25 km SSE of West Yellowstone, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.0185, 44.4383333333333, 4.14]
+ },
+ "id": "uu80087146"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "66 km WNW of Tyonek, Alaska",
+ "time": 1732447608488,
+ "updated": 1732653635430,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4aims4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4aims4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "ak",
+ "code": "024f4aims4",
+ "ids": ",av93377428,ak024f4aims4,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.94,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 66 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.3205, 61.2503, 39.6]
+ },
+ "id": "ak024f4aims4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "15 km WNW of Emery, Utah",
+ "time": 1732447420970,
+ "updated": 1732560284170,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087141",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087141.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "uu",
+ "code": "80087141",
+ "ids": ",uu80087141,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.0369,
+ "rms": 0.09,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 15 km WNW of Emery, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.406, 38.9936666666667, -1.38]
+ },
+ "id": "uu80087141"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "27 km SE of Mina, Nevada",
+ "time": 1732447338398,
+ "updated": 1732563607794,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887901",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887901.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nn",
+ "code": "00887901",
+ "ids": ",nn00887901,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.054,
+ "rms": 0.1285,
+ "gap": 110.5,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 27 km SE of Mina, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.9167, 38.1917, 7.1] },
+ "id": "nn00887901"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.5,
+ "place": "65 km WNW of Beluga, Alaska",
+ "time": 1732447253890,
+ "updated": 1732653318950,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377408",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377408.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377408",
+ "ids": ",av93377408,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.07218,
+ "rms": 0.33,
+ "gap": 151,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 65 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.24, 61.3246666666667, 4.94]
+ },
+ "id": "av93377408"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732447179660,
+ "updated": 1732448367118,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089771",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089771.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089771",
+ "ids": ",nc75089771,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.005596,
+ "rms": 0.02,
+ "gap": 59,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.810165405273, 38.8289985656738, 2.00999999046326]
+ },
+ "id": "nc75089771"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "28 km SSW of Glacier View, Alaska",
+ "time": 1732446860289,
+ "updated": 1732447610235,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4afzpo",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4afzpo.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ak",
+ "code": "024f4afzpo",
+ "ids": ",ak024f4afzpo,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.74,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 28 km SSW of Glacier View, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.7609, 61.5581, 243.3]
+ },
+ "id": "ak024f4afzpo"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "125 km ENE of Hachinohe, Japan",
+ "time": 1732446392651,
+ "updated": 1732455632040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7f7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7f7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "6000p7f7",
+ "ids": ",us6000p7f7,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 105,
+ "dmin": 1.057,
+ "rms": 0.54,
+ "gap": 167,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 125 km ENE of Hachinohe, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [142.8361, 40.985, 43.394]
+ },
+ "id": "us6000p7f7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "3 km NNW of The Geysers, CA",
+ "time": 1732446361790,
+ "updated": 1732447470014,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089766",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089766.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089766",
+ "ids": ",nc75089766,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.01046,
+ "rms": 0.02,
+ "gap": 81,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 3 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.772666931152, 38.7980003356934, 1.30999994277954]
+ },
+ "id": "nc75089766"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "2 km ENE of Falls City, Texas",
+ "time": 1732446079003,
+ "updated": 1732560860017,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xccv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xccv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xccv",
+ "ids": ",tx2024xccv,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0,
+ "rms": 0.5,
+ "gap": 72,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 2 km ENE of Falls City, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-97.994, 28.994, 5.2979] },
+ "id": "tx2024xccv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "76 km ESE of Denali National Park, Alaska",
+ "time": 1732444855289,
+ "updated": 1732444981498,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4a06ew",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4a06ew.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "ak",
+ "code": "024f4a06ew",
+ "ids": ",ak024f4a06ew,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.49,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 76 km ESE of Denali National Park, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4509, 63.1673, 114.2]
+ },
+ "id": "ak024f4a06ew"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732444593530,
+ "updated": 1732445667806,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089761",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089761.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75089761",
+ "ids": ",nc75089761,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.005085,
+ "rms": 0.02,
+ "gap": 138,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.856002807617, 38.8224983215332, 2.74000000953674]
+ },
+ "id": "nc75089761"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75999999,
+ "place": "14 km ESE of Pāhala, Hawaii",
+ "time": 1732443922450,
+ "updated": 1732444020440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539202",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539202.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74539202",
+ "ids": ",hv74539202,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 30,
+ "dmin": 0.08019,
+ "rms": 0.109999999,
+ "gap": 234,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 14 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.341827392578, 19.1766662597656, 26.8299999237061]
+ },
+ "id": "hv74539202"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "70 km W of Salamatof, Alaska",
+ "time": 1732443347580,
+ "updated": 1732443524490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f49utxi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f49utxi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f49utxi",
+ "ids": ",ak024f49utxi,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 70 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.608, 60.5594, 110.3]
+ },
+ "id": "ak024f49utxi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "56 km W of Happy Valley, Alaska",
+ "time": 1732443174803,
+ "updated": 1732443239285,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f49u7c8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f49u7c8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f49u7c8",
+ "ids": ",ak024f49u7c8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.16,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 56 km W of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.7284, 60.0123, 97.3]
+ },
+ "id": "ak024f49u7c8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732443036291,
+ "updated": 1732544913453,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xcbd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xcbd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xcbd",
+ "ids": ",tx2024xcbd,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.298, 31.662, 7.4585]
+ },
+ "id": "tx2024xcbd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.41,
+ "place": "85 km SE of King Salmon, Alaska",
+ "time": 1732442299360,
+ "updated": 1732651581040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377328",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377328.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377328",
+ "ids": ",av93377328,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01931,
+ "rms": 0.29,
+ "gap": 233,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 85 km SE of King Salmon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.529833333333, 58.2053333333333, 2.42]
+ },
+ "id": "av93377328"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.14,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732441134570,
+ "updated": 1732442370418,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089751",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089751.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "nc",
+ "code": "75089751",
+ "ids": ",nc75089751,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.005182,
+ "rms": 0.02,
+ "gap": 46,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.804336547852, 38.826000213623, 2.46000003814697]
+ },
+ "id": "nc75089751"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "14 km SSW of Searles Valley, CA",
+ "time": 1732441097650,
+ "updated": 1732482005343,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799167",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799167.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40799167",
+ "ids": ",ci40799167,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.03673,
+ "rms": 0.09,
+ "gap": 80,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 14 km SSW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4625, 35.6463333, 5.43]
+ },
+ "id": "ci40799167"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "14 km SW of Leilani Estates, Hawaii",
+ "time": 1732441057300,
+ "updated": 1732566606920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539182",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539182.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "hv",
+ "code": "74539182",
+ "ids": ",hv74539182,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.07434,
+ "rms": 0.11,
+ "gap": 212,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 14 km SW of Leilani Estates, Hawaii"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155, 19.359, 7.03] },
+ "id": "hv74539182"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "33 km SSE of Chickaloon, Alaska",
+ "time": 1732440654985,
+ "updated": 1732440821571,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f49cmmy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f49cmmy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f49cmmy",
+ "ids": ",ak024f49cmmy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.79,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 33 km SSE of Chickaloon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.1866, 61.5282, 10.5]
+ },
+ "id": "ak024f49cmmy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "80 km SE of Kokhanok, Alaska",
+ "time": 1732440277888,
+ "updated": 1732649355810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f49bb0s",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f49bb0s.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f49bb0s",
+ "ids": ",av93377308,ak024f49bb0s,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.08,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 80 km SE of Kokhanok, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.8298, 58.9029, 98.7]
+ },
+ "id": "ak024f49bb0s"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.09,
+ "place": "25 km W of Sitka, Alaska",
+ "time": 1732440183070,
+ "updated": 1732647959460,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377303",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377303.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377303",
+ "ids": ",av93377303,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02265,
+ "rms": 0.03,
+ "gap": 192,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 25 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.742166666667, 57.07, 4.92]
+ },
+ "id": "av93377303"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732440058110,
+ "updated": 1732441469305,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089746",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089746.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089746",
+ "ids": ",nc75089746,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.005233,
+ "rms": 0.02,
+ "gap": 117,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.856163024902, 38.8223342895508, 2.40000009536743]
+ },
+ "id": "nc75089746"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.24,
+ "place": "56 km WNW of Tyonek, Alaska",
+ "time": 1732439829250,
+ "updated": 1732647768470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377298",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377298.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377298",
+ "ids": ",av93377298,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02378,
+ "rms": 0.24,
+ "gap": 184,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 56 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.123833333333, 61.2471666666667, 22.92]
+ },
+ "id": "av93377298"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.33,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732439792050,
+ "updated": 1732440568201,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089741",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089741.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "nc",
+ "code": "75089741",
+ "ids": ",nc75089741,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.0058,
+ "rms": 0.02,
+ "gap": 60,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.854667663574, 38.8219985961914, 2.50999999046326]
+ },
+ "id": "nc75089741"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.13,
+ "place": "60 km WNW of Nikiski, Alaska",
+ "time": 1732438843910,
+ "updated": 1732578219320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377268",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377268.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377268",
+ "ids": ",av93377268,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.3193,
+ "rms": 0.08,
+ "gap": 191,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 60 km WNW of Nikiski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.339166666667, 60.8595, 5.92]
+ },
+ "id": "av93377268"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732438725450,
+ "updated": 1732440138152,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089736",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089736.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089736",
+ "ids": ",nc75089736,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.006136,
+ "rms": 0.01,
+ "gap": 122,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.766334533691, 38.8250007629395, 2.14000010490417]
+ },
+ "id": "nc75089736"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.78999996,
+ "place": "8 km NE of Pāhala, Hawaii",
+ "time": 1732438448650,
+ "updated": 1732438602640,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539162",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539162.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74539162",
+ "ids": ",hv74539162,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 38,
+ "dmin": 0.0248,
+ "rms": 0.109999999,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 8 km NE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.418334960938, 19.2526664733887, 32.7099990844727]
+ },
+ "id": "hv74539162"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "23 km SE of Minto, Alaska",
+ "time": 1732438386390,
+ "updated": 1732438489166,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f48w0r3",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f48w0r3.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024f48w0r3",
+ "ids": ",ak024f48w0r3,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 23 km SE of Minto, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.9906, 65.0089, 11.8]
+ },
+ "id": "ak024f48w0r3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "22 km NW of Grapevine, CA",
+ "time": 1732438191260,
+ "updated": 1732481851667,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799159",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799159.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "ci",
+ "code": "40799159",
+ "ids": ",ci40799159,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.03603,
+ "rms": 0.2,
+ "gap": 83,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 22 km NW of Grapevine, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.0965, 35.0931667, 12.03]
+ },
+ "id": "ci40799159"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "6 km E of Clam Gulch, Alaska",
+ "time": 1732437445835,
+ "updated": 1732437572798,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f48smsn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f48smsn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f48smsn",
+ "ids": ",ak024f48smsn,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.35,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 6 km E of Clam Gulch, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.2781, 60.228, 52.5] },
+ "id": "ak024f48smsn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.21,
+ "place": "19 km ESE of Little Lake, CA",
+ "time": 1732437399610,
+ "updated": 1732457444099,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799151.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ci",
+ "code": "40799151",
+ "ids": ",ci40799151,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.06756,
+ "rms": 0.08,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 19 km ESE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7023333, 35.895, 9.6]
+ },
+ "id": "ci40799151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.33,
+ "place": "3 km SW of Anderson Springs, CA",
+ "time": 1732437260150,
+ "updated": 1732661873776,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089726",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089726.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "nc",
+ "code": "75089726",
+ "ids": ",nc75089726,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.01003,
+ "rms": 0.02,
+ "gap": 75,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 3 km SW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.714833333333, 38.7553333333333, 1.62]
+ },
+ "id": "nc75089726"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.31,
+ "place": "9 km ESE of Jefferson, Oklahoma",
+ "time": 1732437070650,
+ "updated": 1732523625389,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xbxw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xbxw.geojson",
+ "felt": 6,
+ "cdi": 4.1,
+ "mmi": 4.251,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 171,
+ "net": "ok",
+ "code": "2024xbxw",
+ "ids": ",ok2024xbxw,us6000p7ek,",
+ "sources": ",ok,us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,shakemap,",
+ "nst": 91,
+ "dmin": 0,
+ "rms": 0.19,
+ "gap": 40,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.3 - 9 km ESE of Jefferson, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.68533333, 36.69383333, 7.27]
+ },
+ "id": "ok2024xbxw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "5 km SE of Pāhala, Hawaii",
+ "time": 1732436966640,
+ "updated": 1732437140080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539142",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539142.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "hv",
+ "code": "74539142",
+ "ids": ",hv74539142,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 52,
+ "dmin": 0.01631,
+ "rms": 0.119999997,
+ "gap": 166,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 5 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.446166992188, 19.1616668701172, 31.8700008392334]
+ },
+ "id": "hv74539142"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.36,
+ "place": "10 km ESE of Jefferson, Oklahoma",
+ "time": 1732436552969,
+ "updated": 1732470753906,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xbxp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xbxp.geojson",
+ "felt": 6,
+ "cdi": 3.3,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 176,
+ "net": "ok",
+ "code": "2024xbxp",
+ "ids": ",ok2024xbxp,us6000p7ef,",
+ "sources": ",ok,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 84,
+ "dmin": 0,
+ "rms": 0.27,
+ "gap": 40,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.4 - 10 km ESE of Jefferson, Oklahoma"
+ },
+ "geometry": { "type": "Point", "coordinates": [-97.6835, 36.6915, 5] },
+ "id": "ok2024xbxp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.72,
+ "place": "23 km SE of Mammoth, Wyoming",
+ "time": 1732435885820,
+ "updated": 1732545794750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087136",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087136.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "uu",
+ "code": "80087136",
+ "ids": ",uu80087136,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1029,
+ "rms": 0.14,
+ "gap": 102,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 23 km SE of Mammoth, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.494, 44.8198333333333, 6.16]
+ },
+ "id": "uu80087136"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "134 km SE of McCarthy, Alaska",
+ "time": 1732435451053,
+ "updated": 1732435576234,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f48lj0x",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f48lj0x.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ak",
+ "code": "024f48lj0x",
+ "ids": ",ak024f48lj0x,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.54,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 134 km SE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.2777, 60.5303, 0.2] },
+ "id": "ak024f48lj0x"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5,
+ "place": "2 km NW of Mbamba Bay, Tanzania",
+ "time": 1732435116396,
+ "updated": 1732611999520,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7ec",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7ec.geojson",
+ "felt": 2,
+ "cdi": 4.6,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 386,
+ "net": "us",
+ "code": "6000p7ec",
+ "ids": ",us6000p7ec,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 44,
+ "dmin": 7.529,
+ "rms": 0.79,
+ "gap": 49,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.0 - 2 km NW of Mbamba Bay, Tanzania"
+ },
+ "geometry": { "type": "Point", "coordinates": [34.751, -11.2678, 10] },
+ "id": "us6000p7ec"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.23,
+ "place": "61 km NW of Karluk, Alaska",
+ "time": 1732434866860,
+ "updated": 1732578927780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377243",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377243.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377243",
+ "ids": ",av93377243,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.1163,
+ "rms": 0.09,
+ "gap": 266,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 61 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.214166666667, 57.946, 13.91]
+ },
+ "id": "av93377243"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.41,
+ "place": "1 km NE of Pāhala, Hawaii",
+ "time": 1732434242590,
+ "updated": 1732567030010,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539102",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539102.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "hv",
+ "code": "74539102",
+ "ids": ",hv74539102,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.0442,
+ "rms": 0.1,
+ "gap": 150,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 1 km NE of Pāhala, Hawaii"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.47, 19.2135, 29.71] },
+ "id": "hv74539102"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "26 km ENE of Pine Valley, CA",
+ "time": 1732432955610,
+ "updated": 1732457458684,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799127",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799127.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40799127",
+ "ids": ",ci40799127,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.1244,
+ "rms": 0.17,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 26 km ENE of Pine Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.2781667, 32.9161667, 10.55]
+ },
+ "id": "ci40799127"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.71,
+ "place": "6 km NW of The Geysers, CA",
+ "time": 1732432483170,
+ "updated": 1732433367376,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089716",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089716.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75089716",
+ "ids": ",nc75089716,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.008471,
+ "rms": 0.02,
+ "gap": 95,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 6 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.818336486816, 38.8089981079102, 2.42000007629395]
+ },
+ "id": "nc75089716"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "10 km NE of Stanley, Idaho",
+ "time": 1732432396530,
+ "updated": 1732579745120,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066953",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066953.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "mb",
+ "code": "90066953",
+ "ids": ",mb90066953,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.163,
+ "rms": 0.17,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 10 km NE of Stanley, Idaho"
+ },
+ "geometry": { "type": "Point", "coordinates": [-114.8335, 44.269, 2.54] },
+ "id": "mb90066953"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "3 km E of Falls City, Texas",
+ "time": 1732432286097,
+ "updated": 1732556416599,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xbvk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xbvk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024xbvk",
+ "ids": ",tx2024xbvk,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 3 km E of Falls City, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-97.982, 28.983, 4.0283] },
+ "id": "tx2024xbvk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "50 km W of Tatitlek, Alaska",
+ "time": 1732431414929,
+ "updated": 1732431729928,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f47pwfo",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f47pwfo.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f47pwfo",
+ "ids": ",ak024f47pwfo,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 50 km W of Tatitlek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.6074, 60.8129, 50.4]
+ },
+ "id": "ak024f47pwfo"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "2 km S of Muscoy, CA",
+ "time": 1732431369120,
+ "updated": 1732481502665,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799119",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799119.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40799119",
+ "ids": ",ci40799119,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.04378,
+ "rms": 0.17,
+ "gap": 97,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 2 km S of Muscoy, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.3465, 34.1361667, 6.58]
+ },
+ "id": "ci40799119"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "8 km NNW of The Geysers, CA",
+ "time": 1732431341620,
+ "updated": 1732432769312,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089706",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089706.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75089706",
+ "ids": ",nc75089706,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.01076,
+ "rms": 0.01,
+ "gap": 52,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 8 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.819831848145, 38.8310012817383, 1.95000004768372]
+ },
+ "id": "nc75089706"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.06,
+ "place": "71 km NW of Karluk, Alaska",
+ "time": 1732430954430,
+ "updated": 1732577420230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377203",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377203.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377203",
+ "ids": ",av93377203,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.01723,
+ "rms": 0.13,
+ "gap": 216,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 71 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.282333333333, 58.0388333333333, 8.13]
+ },
+ "id": "av93377203"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.41,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732430807610,
+ "updated": 1732576988280,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377193",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377193.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377193",
+ "ids": ",av93377193,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.08037,
+ "rms": 0.18,
+ "gap": 130,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.290333333333, 61.3288333333333, 1.57]
+ },
+ "id": "av93377193"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "60 km WNW of Happy Valley, Alaska",
+ "time": 1732430787043,
+ "updated": 1732430906359,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f47np4g",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f47np4g.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f47np4g",
+ "ids": ",ak024f47np4g,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.88,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 60 km WNW of Happy Valley, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.7811, 60.0671, 0] },
+ "id": "ak024f47np4g"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.86,
+ "place": "14 km SSE of Volcano, Hawaii",
+ "time": 1732430774890,
+ "updated": 1732430947210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74539047",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74539047.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 53,
+ "net": "hv",
+ "code": "74539047",
+ "ids": ",hv74539047,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 51,
+ "dmin": 0.05221,
+ "rms": 0.239999995,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 14 km SSE of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.16716003418, 19.3269996643066, 3.0699999332428]
+ },
+ "id": "hv74539047"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "19 km W of Rosamond, CA",
+ "time": 1732430695290,
+ "updated": 1732480986777,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799111",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799111.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "ci",
+ "code": "40799111",
+ "ids": ",ci40799111,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.1185,
+ "rms": 0.13,
+ "gap": 35,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 19 km W of Rosamond, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.3683333, 34.8495, 9.99]
+ },
+ "id": "ci40799111"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.62,
+ "place": "9 km NNW of Anza, CA",
+ "time": 1732429831600,
+ "updated": 1732457476608,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799103",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799103.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40799103",
+ "ids": ",ci40799103,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.03874,
+ "rms": 0.12,
+ "gap": 53,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 9 km NNW of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6971667, 33.6353333, 12.28]
+ },
+ "id": "ci40799103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.14,
+ "place": "71 km NW of Karluk, Alaska",
+ "time": 1732429332290,
+ "updated": 1732576440850,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377178",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377178.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377178",
+ "ids": ",av93377178,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.02125,
+ "rms": 0.16,
+ "gap": 218,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 71 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.277333333333, 58.0358333333333, 8.59]
+ },
+ "id": "av93377178"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.34,
+ "place": "13 km NW of Ennis, Montana",
+ "time": 1732428846220,
+ "updated": 1732566538900,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066838",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066838.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "mb",
+ "code": "90066838",
+ "ids": ",mb90066838,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.2014,
+ "rms": 0.06,
+ "gap": 125,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 13 km NW of Ennis, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.8265, 45.4506666666667, 2.34]
+ },
+ "id": "mb90066838"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "37 km SE of Denali National Park, Alaska",
+ "time": 1732428111081,
+ "updated": 1732428270772,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f47e3r8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f47e3r8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f47e3r8",
+ "ids": ",ak024f47e3r8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.76,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 37 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.2329, 63.2849, 5.5] },
+ "id": "ak024f47e3r8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.27,
+ "place": "72 km NE of Nikolski, Alaska",
+ "time": 1732427800610,
+ "updated": 1732576049070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377158",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377158.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93377158",
+ "ids": ",av93377158,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02947,
+ "rms": 0.08,
+ "gap": 274,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 72 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.1965, 53.4493333333333, 2.86]
+ },
+ "id": "av93377158"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732427393230,
+ "updated": 1732428566837,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089696",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089696.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75089696",
+ "ids": ",nc75089696,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.001202,
+ "rms": 0.01,
+ "gap": 111,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.83683013916, 38.8380012512207, 1.38999998569489]
+ },
+ "id": "nc75089696"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "50 km ENE of Pedro Bay, Alaska",
+ "time": 1732427270464,
+ "updated": 1732430688040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f472j1o",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f472j1o.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f472j1o",
+ "ids": ",us6000p7e4,ak024f472j1o,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 50 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.2614, 59.9397, 132.3]
+ },
+ "id": "ak024f472j1o"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "6 km ENE of Clam Gulch, Alaska",
+ "time": 1732426994565,
+ "updated": 1732427092303,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f471leo",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f471leo.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f471leo",
+ "ids": ",ak024f471leo,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.14,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 6 km ENE of Clam Gulch, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.2822, 60.2578, 62.4]
+ },
+ "id": "ak024f471leo"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "14 km SW of Thatcher, Utah",
+ "time": 1732426860130,
+ "updated": 1732546458530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087131",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087131.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "uu",
+ "code": "80087131",
+ "ids": ",uu80087131,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.08377,
+ "rms": 0.16,
+ "gap": 90,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 14 km SW of Thatcher, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.412166666667, 41.5935, 3.52]
+ },
+ "id": "uu80087131"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.44,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732426707990,
+ "updated": 1732480645080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690228",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690228.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "ci",
+ "code": "37690228",
+ "ids": ",ci37690228,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.0753,
+ "rms": 0.15,
+ "gap": 236,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4581667, 33.513, 6.97]
+ },
+ "id": "ci37690228"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.65,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732426702020,
+ "updated": 1732480514273,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799087",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799087.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40799087",
+ "ids": ",ci40799087,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.07083,
+ "rms": 0.12,
+ "gap": 134,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.46, 33.5186667, 5.63]
+ },
+ "id": "ci40799087"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.36,
+ "place": "5 km W of Fuig, Puerto Rico",
+ "time": 1732426561200,
+ "updated": 1732431114040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024329003",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024329003.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 174,
+ "net": "pr",
+ "code": "2024329003",
+ "ids": ",us6000p7e7,pr2024329003,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.0755,
+ "rms": 0.15,
+ "gap": 160,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.4 - 5 km W of Fuig, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-66.9695, 17.9805, 6] },
+ "id": "pr2024329003"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.44,
+ "place": "5 km ENE of Harrogate, Tennessee",
+ "time": 1732425676530,
+ "updated": 1732459057300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/se60502733",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/se60502733.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "se",
+ "code": "60502733",
+ "ids": ",se60502733,",
+ "sources": ",se,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.07646,
+ "rms": 0.22,
+ "gap": 107,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 5 km ENE of Harrogate, Tennessee"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-83.6013333333333, 36.6078333333333, 15.47]
+ },
+ "id": "se60502733"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.21,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732425058990,
+ "updated": 1732575089350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377138",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377138.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377138",
+ "ids": ",av93377138,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.09453,
+ "rms": 0.17,
+ "gap": 166,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.237166666667, 61.351, 3.26]
+ },
+ "id": "av93377138"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "104 km N of Karluk, Alaska",
+ "time": 1732424925760,
+ "updated": 1732425016485,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f46u5r4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f46u5r4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f46u5r4",
+ "ids": ",ak024f46u5r4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.21,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 104 km N of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.6045, 58.5043, 73.3]
+ },
+ "id": "ak024f46u5r4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "25 km NW of Furnace Creek, California",
+ "time": 1732424895989,
+ "updated": 1732563054013,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887900",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887900.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nn",
+ "code": "00887900",
+ "ids": ",nn00887900,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.32,
+ "rms": 0.116,
+ "gap": 141,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 25 km NW of Furnace Creek, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.0888, 36.578, 3.1] },
+ "id": "nn00887900"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732424841100,
+ "updated": 1732427371702,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089691",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089691.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75089691",
+ "ids": ",nc75089691,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.005143,
+ "rms": 0.02,
+ "gap": 36,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.804664611816, 38.8263320922852, 2.47000002861023]
+ },
+ "id": "nc75089691"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "35 km E of Pedro Bay, Alaska",
+ "time": 1732424706213,
+ "updated": 1732424808644,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f46tfj8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f46tfj8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f46tfj8",
+ "ids": ",ak024f46tfj8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 35 km E of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.4793, 59.8064, 134.2]
+ },
+ "id": "ak024f46tfj8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.45,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732424580600,
+ "updated": 1732426035569,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089681",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089681.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75089681",
+ "ids": ",nc75089681,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.006476,
+ "rms": 0.05,
+ "gap": 193,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.842666625977, 38.8418350219727, 2.16000008583069]
+ },
+ "id": "nc75089681"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "24 km SSE of Knik River, Alaska",
+ "time": 1732424283541,
+ "updated": 1732424395175,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f46jcm5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f46jcm5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f46jcm5",
+ "ids": ",ak024f46jcm5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 24 km SSE of Knik River, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.7236, 61.2568, 20] },
+ "id": "ak024f46jcm5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.08,
+ "place": "14 km SW of Thatcher, Utah",
+ "time": 1732423812440,
+ "updated": 1732559160330,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087126",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087126.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "uu",
+ "code": "80087126",
+ "ids": ",uu80087126,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.08532,
+ "rms": 0.16,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 14 km SW of Thatcher, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.409, 41.5928333333333, 7.45]
+ },
+ "id": "uu80087126"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.88,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732423618940,
+ "updated": 1732424971452,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089671",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089671.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "nc",
+ "code": "75089671",
+ "ids": ",nc75089671,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 43,
+ "dmin": 0.01013,
+ "rms": 0.06,
+ "gap": 49,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.775169372559, 38.791332244873, 2.4300000667572]
+ },
+ "id": "nc75089671"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732423540590,
+ "updated": 1732424971542,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089666",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089666.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75089666",
+ "ids": ",nc75089666,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.008535,
+ "rms": 0.02,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.777168273926, 38.7916679382324, 2.26999998092651]
+ },
+ "id": "nc75089666"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "23 km S of Petersville, Alaska",
+ "time": 1732423424259,
+ "updated": 1732424154040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f46g82r",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f46g82r.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f46g82r",
+ "ids": ",us6000p7de,ak024f46g82r,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.62,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 23 km S of Petersville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.8334, 62.284, 61.3] },
+ "id": "ak024f46g82r"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.57,
+ "place": "133 km N of Culebra, Puerto Rico",
+ "time": 1732423207660,
+ "updated": 1732425134379,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024329002",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024329002.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 196,
+ "net": "pr",
+ "code": "2024329002",
+ "ids": ",pr2024329002,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 1.1944,
+ "rms": 0.24,
+ "gap": 277,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.6 - 133 km N of Culebra, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2723, 19.5068, 60] },
+ "id": "pr2024329002"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.14,
+ "place": "22 km SSE of Twentynine Palms, CA",
+ "time": 1732422491210,
+ "updated": 1732457508693,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799071",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799071.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "ci",
+ "code": "40799071",
+ "ids": ",ci40799071,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.06221,
+ "rms": 0.14,
+ "gap": 55,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 22 km SSE of Twentynine Palms, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0215, 33.9413333, 6.74]
+ },
+ "id": "ci40799071"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "3 km SE of The Geysers, CA",
+ "time": 1732422270160,
+ "updated": 1732661779340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089656",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089656.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089656",
+ "ids": ",nc75089656,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.001691,
+ "rms": 0.02,
+ "gap": 121,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 3 km SE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.726333333333, 38.7628333333333, 2.23]
+ },
+ "id": "nc75089656"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75999999,
+ "place": "0 km SW of Pāhala, Hawaii",
+ "time": 1732421745080,
+ "updated": 1732421847330,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538947",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538947.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "hv",
+ "code": "74538947",
+ "ids": ",hv74538947,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.04632,
+ "rms": 0.129999995,
+ "gap": 110,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 0 km SW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.484161376953, 19.19700050354, 32.5]
+ },
+ "id": "hv74538947"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.25,
+ "place": "3 km ESE of The Geysers, CA",
+ "time": 1732421168310,
+ "updated": 1732662567954,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089651",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089651.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089651",
+ "ids": ",nc75089651,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.008746,
+ "rms": 0.02,
+ "gap": 61,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 3 km ESE of The Geysers, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-122.728, 38.77, 1.32] },
+ "id": "nc75089651"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "60 km SE of Pedro Bay, Alaska",
+ "time": 1732421156850,
+ "updated": 1732564118680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377088",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377088.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "av",
+ "code": "93377088",
+ "ids": ",av93377088,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.00331,
+ "rms": 0.15,
+ "gap": 123,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 60 km SE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.438333333333, 59.3631666666667, -0.22]
+ },
+ "id": "av93377088"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.29,
+ "place": "80 km NNW of San Antonio, Puerto Rico",
+ "time": 1732420802080,
+ "updated": 1732423861000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466613",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466613.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 167,
+ "net": "pr",
+ "code": "71466613",
+ "ids": ",pr71466613,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.7446,
+ "rms": 0.39,
+ "gap": 314,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.3 - 80 km NNW of San Antonio, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.3893333333333, 19.1676666666667, 24.8]
+ },
+ "id": "pr71466613"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732420144120,
+ "updated": 1732421371067,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089646",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089646.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75089646",
+ "ids": ",nc75089646,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.004671,
+ "rms": 0.01,
+ "gap": 90,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.852333068848, 38.8245010375977, 2.08999991416931]
+ },
+ "id": "nc75089646"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.02999997,
+ "place": "4 km WSW of Pāhala, Hawaii",
+ "time": 1732419016640,
+ "updated": 1732419126970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538907",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538907.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "hv",
+ "code": "74538907",
+ "ids": ",hv74538907,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 0.05688,
+ "rms": 0.140000001,
+ "gap": 103,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 4 km WSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.517166137695, 19.1784992218018, 30.1000003814697]
+ },
+ "id": "hv74538907"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.65,
+ "place": "5 km WNW of The Geysers, CA",
+ "time": 1732418896580,
+ "updated": 1732420170952,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089641",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089641.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75089641",
+ "ids": ",nc75089641,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.01739,
+ "rms": 0.02,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 5 km WNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.810165405273, 38.7928352355957, 3.34999990463257]
+ },
+ "id": "nc75089641"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "35 km NNW of Toyah, Texas",
+ "time": 1732418760551,
+ "updated": 1732543226041,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xbnu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xbnu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xbnu",
+ "ids": ",tx2024xbnu,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 35 km NNW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.969, 31.602, 8.2019]
+ },
+ "id": "tx2024xbnu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.71,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732418357460,
+ "updated": 1732573546920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377063",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377063.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377063",
+ "ids": ",av93377063,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.04333,
+ "rms": 0.09,
+ "gap": 125,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.243, 61.2738333333333, 3.4]
+ },
+ "id": "av93377063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.68,
+ "place": "8 km SSW of Idyllwild, CA",
+ "time": 1732417931540,
+ "updated": 1732457604160,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799063",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799063.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40799063",
+ "ids": ",ci40799063,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.04616,
+ "rms": 0.16,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km SSW of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7541667, 33.6791667, 13.89]
+ },
+ "id": "ci40799063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.44,
+ "place": "9 km ENE of Kalama, Washington",
+ "time": 1732417680420,
+ "updated": 1732418605110,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061171",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061171.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "uw",
+ "code": "62061171",
+ "ids": ",uw62061171,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.1135,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 9 km ENE of Kalama, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.732, 46.0395, 17.91]
+ },
+ "id": "uw62061171"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.25,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732417245770,
+ "updated": 1732418367747,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089636",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089636.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089636",
+ "ids": ",nc75089636,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.01626,
+ "rms": 0.01,
+ "gap": 86,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.809501647949, 38.8396682739258, 1.49000000953674]
+ },
+ "id": "nc75089636"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "27 km SW of Susitna, Alaska",
+ "time": 1732417027606,
+ "updated": 1732418633040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f45ca2w",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f45ca2w.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f45ca2w",
+ "ids": ",us6000p7d3,ak024f45ca2w,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.24,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 27 km SW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.9059, 61.3795, 71.4]
+ },
+ "id": "ak024f45ca2w"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.62,
+ "place": "1 km NNW of Lambert, Oklahoma",
+ "time": 1732416957329,
+ "updated": 1732423768505,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xbmv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xbmv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 106,
+ "net": "ok",
+ "code": "2024xbmv",
+ "ids": ",us6000p7d2,ok2024xbmv,",
+ "sources": ",us,ok,",
+ "types": ",origin,phase-data,",
+ "nst": 97,
+ "dmin": 0,
+ "rms": 0.21,
+ "gap": 106,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.6 - 1 km NNW of Lambert, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-98.42733333, 36.69983333, 5.02]
+ },
+ "id": "ok2024xbmv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "6 km ESE of Baie-Saint-Paul, Canada",
+ "time": 1732416929231,
+ "updated": 1732685757040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000nuf2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us7000nuf2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "us",
+ "code": "7000nuf2",
+ "ids": ",us7000nuf2,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.144,
+ "rms": 0.17,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km ESE of Baie-Saint-Paul, Canada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-70.4177, 47.4192, 14.283]
+ },
+ "id": "us7000nuf2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.98000002,
+ "place": "10 km ENE of Pāhala, Hawaii",
+ "time": 1732416808880,
+ "updated": 1732416913400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538862",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538862.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 60,
+ "net": "hv",
+ "code": "74538862",
+ "ids": ",hv74538862,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.009818,
+ "rms": 0.129999995,
+ "gap": 134,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 10 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.394668579102, 19.2469997406006, 30.3500003814697]
+ },
+ "id": "hv74538862"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.02,
+ "place": "26 km WNW of Hebgen Lake Estates, Montana",
+ "time": 1732416593440,
+ "updated": 1732580985510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066958",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066958.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "mb",
+ "code": "90066958",
+ "ids": ",mb90066958,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.05312,
+ "rms": 0.02,
+ "gap": 135,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 26 km WNW of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.500166666667, 44.8488333333333, 15.55]
+ },
+ "id": "mb90066958"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.32,
+ "place": "3 km WSW of Ponderosa Pines, Montana",
+ "time": 1732416225200,
+ "updated": 1732566026780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066833",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066833.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "mb",
+ "code": "90066833",
+ "ids": ",mb90066833,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.1898,
+ "rms": 0.17,
+ "gap": 152,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 3 km WSW of Ponderosa Pines, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.4145, 46.0231666666667, 4.94]
+ },
+ "id": "mb90066833"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.1,
+ "place": "131 km SW of La Tirana, Chile",
+ "time": 1732416078072,
+ "updated": 1732418156040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7cy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7cy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 259,
+ "net": "us",
+ "code": "6000p7cy",
+ "ids": ",us6000p7cy,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.906,
+ "rms": 0.61,
+ "gap": 193,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.1 - 131 km SW of La Tirana, Chile"
+ },
+ "geometry": { "type": "Point", "coordinates": [-71.0877, -21.0606, 10] },
+ "id": "us6000p7cy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.33,
+ "place": "3 km WSW of Anderson Springs, CA",
+ "time": 1732414876880,
+ "updated": 1732661207067,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089626",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089626.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "nc",
+ "code": "75089626",
+ "ids": ",nc75089626,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.007776,
+ "rms": 0.03,
+ "gap": 65,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 3 km WSW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.718166666667, 38.7558333333333, 1.57]
+ },
+ "id": "nc75089626"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "7 km ESE of Santa Clarita, CA",
+ "time": 1732414750560,
+ "updated": 1732462082239,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799055",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799055.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ci",
+ "code": "40799055",
+ "ids": ",ci40799055,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 42,
+ "dmin": 0.05648,
+ "rms": 0.21,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km ESE of Santa Clarita, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.4318333, 34.3961667, 10.51]
+ },
+ "id": "ci40799055"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "7 km ESE of Santa Clarita, CA",
+ "time": 1732414742830,
+ "updated": 1732479589182,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799047",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799047.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ci",
+ "code": "40799047",
+ "ids": ",ci40799047,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 39,
+ "dmin": 0.05846,
+ "rms": 0.18,
+ "gap": 29,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 7 km ESE of Santa Clarita, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.4376667, 34.395, 9.71]
+ },
+ "id": "ci40799047"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.57,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732414687640,
+ "updated": 1732416135496,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089621",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089621.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "nc",
+ "code": "75089621",
+ "ids": ",nc75089621,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.008647,
+ "rms": 0.01,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.801330566406, 38.8373336791992, 1.69000005722046]
+ },
+ "id": "nc75089621"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.91,
+ "place": "61 km ENE of Pedro Bay, Alaska",
+ "time": 1732414679110,
+ "updated": 1732572495970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93377003",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93377003.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93377003",
+ "ids": ",av93377003,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02845,
+ "rms": 0.06,
+ "gap": 145,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 61 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.1185, 60.0328333333333, 4.13]
+ },
+ "id": "av93377003"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732414522700,
+ "updated": 1732415967479,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089616",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089616.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75089616",
+ "ids": ",nc75089616,",
+ "sources": ",nc,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.008416,
+ "rms": 0.02,
+ "gap": 66,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.801002502441, 38.8371658325195, 1.72000002861023]
+ },
+ "id": "nc75089616"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "31 km ENE of Pedro Bay, Alaska",
+ "time": 1732414451517,
+ "updated": 1732414611993,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4532lb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4532lb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f4532lb",
+ "ids": ",ak024f4532lb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.73,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 31 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.6154, 59.9264, 178.2]
+ },
+ "id": "ak024f4532lb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "73 km W of Karluk, Alaska",
+ "time": 1732414325147,
+ "updated": 1732571958200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f452mo2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f452mo2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f452mo2",
+ "ids": ",av93376983,ak024f452mo2,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.2,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 73 km W of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.6841, 57.6267, 19.2]
+ },
+ "id": "ak024f452mo2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732414260560,
+ "updated": 1732415370411,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089611",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089611.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75089611",
+ "ids": ",nc75089611,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.006587,
+ "rms": 0.02,
+ "gap": 112,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.830665588379, 38.8440017700195, 1.12999999523163]
+ },
+ "id": "nc75089611"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "6 km W of Point Possession, Alaska",
+ "time": 1732413936332,
+ "updated": 1732414050806,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f451729",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f451729.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f451729",
+ "ids": ",ak024f451729,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.55,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 6 km W of Point Possession, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.802, 60.9212, 29.3] },
+ "id": "ak024f451729"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.15,
+ "place": "8 km NE of Naalehu, Hawaii",
+ "time": 1732413579130,
+ "updated": 1732413752790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538817",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538817.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 71,
+ "net": "hv",
+ "code": "74538817",
+ "ids": ",hv74538817,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 53,
+ "dmin": 0.0418,
+ "rms": 0.25999999,
+ "gap": 142,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 8 km NE of Naalehu, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.530838012695, 19.1229991912842, 6.32000017166138]
+ },
+ "id": "hv74538817"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.16,
+ "place": "10 km SW of Beaumont, CA",
+ "time": 1732413376480,
+ "updated": 1732479040846,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799039",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799039.geojson",
+ "felt": 5,
+ "cdi": 3.8,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "ci",
+ "code": "40799039",
+ "ids": ",ci40799039,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 105,
+ "dmin": 0.08499,
+ "rms": 0.2,
+ "gap": 13,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 10 km SW of Beaumont, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.055, 33.863, 14.16] },
+ "id": "ci40799039"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.33,
+ "place": "108 km NNE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732413232520,
+ "updated": 1732416626530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466583",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466583.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 171,
+ "net": "pr",
+ "code": "71466583",
+ "ids": ",pr71466583,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.8582,
+ "rms": 0.4,
+ "gap": 300,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.3 - 108 km NNE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-64.5245, 19.2781666666667, 28.81]
+ },
+ "id": "pr71466583"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.77,
+ "place": "105 km NNE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732413000890,
+ "updated": 1732415467040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024329001",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024329001.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 219,
+ "net": "pr",
+ "code": "2024329001",
+ "ids": ",us6000p7ct,pr2024329001,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.8396,
+ "rms": 0.45,
+ "gap": 298,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 105 km NNE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-64.5216, 19.249, 37] },
+ "id": "pr2024329001"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "12 km W of Kağızman, Turkey",
+ "time": 1732412881219,
+ "updated": 1732415302040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7cs",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7cs.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "6000p7cs",
+ "ids": ",us6000p7cs,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.991,
+ "rms": 1.06,
+ "gap": 75,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - 12 km W of Kağızman, Turkey"
+ },
+ "geometry": { "type": "Point", "coordinates": [42.9845, 40.1477, 10] },
+ "id": "us6000p7cs"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "149 km W of Adak, Alaska",
+ "time": 1732412836540,
+ "updated": 1732478542200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376958",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376958.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "av",
+ "code": "93376958",
+ "ids": ",av93376958,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 3,
+ "dmin": 0.003819,
+ "rms": 0.01,
+ "gap": 284,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 149 km W of Adak, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.807666666667, 51.8228333333333, 9.82]
+ },
+ "id": "av93376958"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.59,
+ "place": "28 km N of Searles Valley, CA",
+ "time": 1732412761820,
+ "updated": 1732478120656,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40799031",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40799031.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ci",
+ "code": "40799031",
+ "ids": ",ci40799031,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.1556,
+ "rms": 0.17,
+ "gap": 179,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 28 km N of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.386, 36.0226667, 2.33]
+ },
+ "id": "ci40799031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "138 km NE of Lospalos, Timor Leste",
+ "time": 1732412204092,
+ "updated": 1732414219040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7cq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7cq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "6000p7cq",
+ "ids": ",us6000p7cq,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 39,
+ "dmin": 3.674,
+ "rms": 0.75,
+ "gap": 42,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 138 km NE of Lospalos, Timor Leste"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [127.8447, -7.5928, 170.601]
+ },
+ "id": "us6000p7cq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "52 km WNW of Anchor Point, Alaska",
+ "time": 1732411731622,
+ "updated": 1732411866841,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f44kq3u",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f44kq3u.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f44kq3u",
+ "ids": ",ak024f44kq3u,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 52 km WNW of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.7141, 59.9273, 97.3]
+ },
+ "id": "ak024f44kq3u"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.17,
+ "place": "2 km S of Etowah, Oklahoma",
+ "time": 1732411602009,
+ "updated": 1732543404740,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xbjw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xbjw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "ok",
+ "code": "2024xbjw",
+ "ids": ",ok2024xbjw,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 0.242052501,
+ "rms": 0.2,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 2 km S of Etowah, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.17466667, 35.10166667, 17.18]
+ },
+ "id": "ok2024xbjw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732411450930,
+ "updated": 1732412671088,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089601",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089601.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75089601",
+ "ids": ",nc75089601,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.006246,
+ "rms": 0.01,
+ "gap": 70,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.841835021973, 38.8198318481445, 2.25]
+ },
+ "id": "nc75089601"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.78,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732411266860,
+ "updated": 1732477904180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376933",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376933.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376933",
+ "ids": ",av93376933,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.03714,
+ "rms": 0.06,
+ "gap": 127,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.226166666667, 61.2795, 3.16]
+ },
+ "id": "av93376933"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.79,
+ "place": "4 km NNW of Yaurel, Puerto Rico",
+ "time": 1732410892320,
+ "updated": 1732418297130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466603",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466603.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "pr",
+ "code": "71466603",
+ "ids": ",pr71466603,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.0653,
+ "rms": 0.14,
+ "gap": 122,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 4 km NNW of Yaurel, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.0761666666667, 18.0586666666667, 14.78]
+ },
+ "id": "pr71466603"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.2,
+ "place": "113 km SSE of Sand Point, Alaska",
+ "time": 1732410712821,
+ "updated": 1732412485040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7cj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7cj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 158,
+ "net": "us",
+ "code": "6000p7cj",
+ "ids": ",ak024f44h305,us6000p7cj,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 1.024,
+ "rms": 0.62,
+ "gap": 210,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.2 - 113 km SSE of Sand Point, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-159.7562, 54.4158, 35] },
+ "id": "us6000p7cj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5,
+ "place": "Easter Island region",
+ "time": 1732410483465,
+ "updated": 1732412241040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7cn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7cn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 385,
+ "net": "us",
+ "code": "6000p7cn",
+ "ids": ",us6000p7cn,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 38,
+ "dmin": 41.634,
+ "rms": 0.59,
+ "gap": 80,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.0 - Easter Island region"
+ },
+ "geometry": { "type": "Point", "coordinates": [-114.9926, -23.3857, 10] },
+ "id": "us6000p7cn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.47,
+ "place": "64 km WNW of Beluga, Alaska",
+ "time": 1732409969440,
+ "updated": 1732476904640,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376903",
+ "ids": ",av93376903,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.05166,
+ "rms": 0.07,
+ "gap": 116,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 64 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.235, 61.2996666666667, 2.45]
+ },
+ "id": "av93376903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "1 km SSW of Pāhala, Hawaii",
+ "time": 1732409868260,
+ "updated": 1732568685020,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538792",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538792.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "hv",
+ "code": "74538792",
+ "ids": ",hv74538792,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.03643,
+ "rms": 0.14,
+ "gap": 151,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 1 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.483833333333, 19.1856666666667, 30.7]
+ },
+ "id": "hv74538792"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "10 km WNW of Sucúa, Ecuador",
+ "time": 1732409764420,
+ "updated": 1732410994040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7cc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7cc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p7cc",
+ "ids": ",us6000p7cc,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.938,
+ "rms": 0.49,
+ "gap": 96,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 10 km WNW of Sucúa, Ecuador"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-78.2509, -2.4093, 113.814]
+ },
+ "id": "us6000p7cc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "46 km ESE of Whittier, Alaska",
+ "time": 1732409757416,
+ "updated": 1732410008992,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f4453a5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f4453a5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f4453a5",
+ "ids": ",ak024f4453a5,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.81,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 46 km ESE of Whittier, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.8935, 60.6114, 17.6]
+ },
+ "id": "ak024f4453a5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.94,
+ "place": "9 km NNW of The Geysers, CA",
+ "time": 1732409113710,
+ "updated": 1732410569842,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089586",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089586.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75089586",
+ "ids": ",nc75089586,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.004812,
+ "rms": 0.01,
+ "gap": 110,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 9 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.829666137695, 38.8401679992676, 2.29999995231628]
+ },
+ "id": "nc75089586"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "9 km NNE of North Pole, Alaska",
+ "time": 1732408816066,
+ "updated": 1732409090970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f441s9q",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f441s9q.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f441s9q",
+ "ids": ",ak024f441s9q,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.62,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 9 km NNE of North Pole, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3039, 64.8312, 0] },
+ "id": "ak024f441s9q"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.73,
+ "place": "128 km N of Culebra, Puerto Rico",
+ "time": 1732408483800,
+ "updated": 1732411517667,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024329000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024329000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 214,
+ "net": "pr",
+ "code": "2024329000",
+ "ids": ",pr2024329000,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 1.1527,
+ "rms": 0.28,
+ "gap": 277,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.7 - 128 km N of Culebra, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2691, 19.4645, 63] },
+ "id": "pr2024329000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.57,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732408252360,
+ "updated": 1732409971773,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089581",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089581.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "nc",
+ "code": "75089581",
+ "ids": ",nc75089581,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.009552,
+ "rms": 0.01,
+ "gap": 161,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.798835754395, 38.8271675109863, 2.94000005722046]
+ },
+ "id": "nc75089581"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "71 km NE of Norsup, Vanuatu",
+ "time": 1732408225294,
+ "updated": 1732753406040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7c9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7c9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "6000p7c9",
+ "ids": ",us6000p7c9,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 26,
+ "dmin": 0.62,
+ "rms": 0.77,
+ "gap": 130,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 71 km NE of Norsup, Vanuatu"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [167.8325, -15.5777, 159.222]
+ },
+ "id": "us6000p7c9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "19 km NW of Challis, Idaho",
+ "time": 1732407974260,
+ "updated": 1732562100690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066823",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066823.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "mb",
+ "code": "90066823",
+ "ids": ",mb90066823,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.3561,
+ "rms": 0.48,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 19 km NW of Challis, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.371333333333, 44.648, 2.95]
+ },
+ "id": "mb90066823"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.02,
+ "place": "17 km E of Finley Point, Montana",
+ "time": 1732407336760,
+ "updated": 1732462812870,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066743",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066743.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "mb",
+ "code": "90066743",
+ "ids": ",mb90066743,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.07848,
+ "rms": 0.07,
+ "gap": 159,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 17 km E of Finley Point, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.829166666667, 47.7256666666667, 3.06]
+ },
+ "id": "mb90066743"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "7 km SSE of Littlerock, CA",
+ "time": 1732406884190,
+ "updated": 1732457559651,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798999",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798999.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ci",
+ "code": "40798999",
+ "ids": ",ci40798999,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.01561,
+ "rms": 0.16,
+ "gap": 43,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km SSE of Littlerock, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.9648333, 34.4625, 8.86]
+ },
+ "id": "ci40798999"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732406636850,
+ "updated": 1732407739520,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089566",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089566.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75089566",
+ "ids": ",nc75089566,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.01366,
+ "rms": 0.03,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.772666931152, 38.7864990234375, 1.3400000333786]
+ },
+ "id": "nc75089566"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.55,
+ "place": "29 km N of Searles Valley, CA",
+ "time": 1732406493570,
+ "updated": 1732457567110,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798991",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798991.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "ci",
+ "code": "40798991",
+ "ids": ",ci40798991,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.1572,
+ "rms": 0.17,
+ "gap": 181,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 29 km N of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.3826667, 36.0261667, 1.09]
+ },
+ "id": "ci40798991"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.41,
+ "place": "26 km WNW of Hebgen Lake Estates, Montana",
+ "time": 1732406233610,
+ "updated": 1732561518180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066818",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066818.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "mb",
+ "code": "90066818",
+ "ids": ",mb90066818,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.06416,
+ "rms": 0.08,
+ "gap": 128,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 26 km WNW of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.519333333333, 44.822, 8.78]
+ },
+ "id": "mb90066818"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "Macquarie Island region",
+ "time": 1732406155293,
+ "updated": 1732407120040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7c2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7c2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 400,
+ "net": "us",
+ "code": "6000p7c2",
+ "ids": ",us6000p7c2,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 29,
+ "dmin": 1.025,
+ "rms": 0.73,
+ "gap": 96,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - Macquarie Island region"
+ },
+ "geometry": { "type": "Point", "coordinates": [158.3179, -55.4557, 10] },
+ "id": "us6000p7c2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "71 km NNW of Karluk, Alaska",
+ "time": 1732406001152,
+ "updated": 1732406081699,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2ua7gz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2ua7gz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ak",
+ "code": "024f2ua7gz",
+ "ids": ",ak024f2ua7gz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.08,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 71 km NNW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-154.7793, 58.1842, 110] },
+ "id": "ak024f2ua7gz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.8,
+ "place": "138 km NNE of Vieques, Puerto Rico",
+ "time": 1732405510370,
+ "updated": 1732410424465,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328005",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328005.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 222,
+ "net": "pr",
+ "code": "2024328005",
+ "ids": ",pr2024328005,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 1.2599,
+ "rms": 0.22,
+ "gap": 265,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 138 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2951, 19.5685, 62] },
+ "id": "pr2024328005"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "30 km NW of Willow, Alaska",
+ "time": 1732405090791,
+ "updated": 1732405185229,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2u6yxj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2u6yxj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2u6yxj",
+ "ids": ",ak024f2u6yxj,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.6,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 30 km NW of Willow, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.4668, 61.9246, 9.9] },
+ "id": "ak024f2u6yxj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.57,
+ "place": "144 km NNE of Vieques, Puerto Rico",
+ "time": 1732404985270,
+ "updated": 1732429473040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328006",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328006.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 196,
+ "net": "pr",
+ "code": "2024328006",
+ "ids": ",us6000p7d5,pr2024328006,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 1.3116,
+ "rms": 0.3,
+ "gap": 252,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.6 - 144 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2943, 19.6223, 9] },
+ "id": "pr2024328006"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.58,
+ "place": "142 km NNE of Vieques, Puerto Rico",
+ "time": 1732404800310,
+ "updated": 1732410208209,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328004",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328004.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 197,
+ "net": "pr",
+ "code": "2024328004",
+ "ids": ",pr2024328004,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 1.297,
+ "rms": 0.17,
+ "gap": 252,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.6 - 142 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2933, 19.6045, 37] },
+ "id": "pr2024328004"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "58 km E of Noda, Japan",
+ "time": 1732404150344,
+ "updated": 1732412255514,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7bu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7bu.geojson",
+ "felt": 3,
+ "cdi": 3.1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 401,
+ "net": "us",
+ "code": "6000p7bu",
+ "ids": ",us6000p7bu,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 107,
+ "dmin": 1.242,
+ "rms": 0.96,
+ "gap": 135,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - 58 km E of Noda, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [142.4938, 40.194, 45.666]
+ },
+ "id": "us6000p7bu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.19,
+ "place": "85 km NNW of Karluk, Alaska",
+ "time": 1732404015990,
+ "updated": 1732493059080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376848",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376848.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93376848",
+ "ids": ",av93376848,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.08301,
+ "rms": 0.18,
+ "gap": 172,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 85 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.8705, 58.3086666666667, 14.4]
+ },
+ "id": "av93376848"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.63,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732403745030,
+ "updated": 1732493426000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376843",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376843.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376843",
+ "ids": ",av93376843,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06229,
+ "rms": 0.08,
+ "gap": 139,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.279, 61.302, 0.84] },
+ "id": "av93376843"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.46,
+ "place": "61 km W of Tyonek, Alaska",
+ "time": 1732403198060,
+ "updated": 1732493245060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376833",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376833.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376833",
+ "ids": ",av93376833,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.04298,
+ "rms": 0.12,
+ "gap": 209,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 61 km W of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2595, 61.1775, 4.47]
+ },
+ "id": "av93376833"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.45,
+ "place": "4 km NNW of Walker, CA",
+ "time": 1732403161740,
+ "updated": 1732573560807,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089561",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089561.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "nc",
+ "code": "75089561",
+ "ids": ",nc75089561,nn00887899,",
+ "sources": ",nc,nn,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.03171,
+ "rms": 0.06,
+ "gap": 132,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 4 km NNW of Walker, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.5035, 38.5403333333333, 6.15]
+ },
+ "id": "nc75089561"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.76,
+ "place": "130 km NNE of Vieques, Puerto Rico",
+ "time": 1732403077320,
+ "updated": 1732429754040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328003",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328003.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 218,
+ "net": "pr",
+ "code": "2024328003",
+ "ids": ",us6000p7cd,pr2024328003,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 1.1838,
+ "rms": 0.17,
+ "gap": 277,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 130 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.3106, 19.491, 5] },
+ "id": "pr2024328003"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "71 km NW of Eureka Roadhouse, Alaska",
+ "time": 1732402565220,
+ "updated": 1732402716113,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2tpdsb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2tpdsb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f2tpdsb",
+ "ids": ",ak024f2tpdsb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 71 km NW of Eureka Roadhouse, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.9291, 62.4686, 53.6]
+ },
+ "id": "ak024f2tpdsb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.88,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732402304230,
+ "updated": 1732492782690,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376818",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376818.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376818",
+ "ids": ",av93376818,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04306,
+ "rms": 0.12,
+ "gap": 185,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.241833333333, 61.2751666666667, 3.08]
+ },
+ "id": "av93376818"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.88,
+ "place": "141 km NNE of Vieques, Puerto Rico",
+ "time": 1732401962090,
+ "updated": 1732428550040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328002",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328002.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 232,
+ "net": "pr",
+ "code": "2024328002",
+ "ids": ",us6000p7ca,pr2024328002,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 1.276,
+ "rms": 0.18,
+ "gap": 251,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.9 - 141 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2768, 19.59, 55] },
+ "id": "pr2024328002"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732401731591,
+ "updated": 1732492622820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2tme93",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2tme93.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f2tme93",
+ "ids": ",av93376808,ak024f2tme93,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.08,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2683, 61.3048, 1.1] },
+ "id": "ak024f2tme93"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.73,
+ "place": "144 km NNW of Charlotte Amalie, U.S. Virgin Islands",
+ "time": 1732401661810,
+ "updated": 1732410579890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328001",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328001.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 214,
+ "net": "pr",
+ "code": "2024328001",
+ "ids": ",pr2024328001,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 1.2885,
+ "rms": 0.09,
+ "gap": 298,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.7 - 144 km NNW of Charlotte Amalie, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.2295, 19.6138, 56] },
+ "id": "pr2024328001"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "39 km W of Cantwell, Alaska",
+ "time": 1732401494362,
+ "updated": 1732401607681,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2tljlo",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2tljlo.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f2tljlo",
+ "ids": ",ak024f2tljlo,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.93,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 39 km W of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.749, 63.3861, 31.6] },
+ "id": "ak024f2tljlo"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732401049930,
+ "updated": 1732492074280,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376788",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376788.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376788",
+ "ids": ",av93376788,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.07046,
+ "rms": 0.12,
+ "gap": 122,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.276666666667, 61.3121666666667, -1.92]
+ },
+ "id": "av93376788"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.99,
+ "place": "138 km NNE of Vieques, Puerto Rico",
+ "time": 1732401048150,
+ "updated": 1732428727040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024328000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024328000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 245,
+ "net": "pr",
+ "code": "2024328000",
+ "ids": ",us6000p7bj,pr2024328000,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 1.3017,
+ "rms": 0.13,
+ "gap": 249,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 4.0 - 138 km NNE of Vieques, Puerto Rico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.394, 19.6045, 33] },
+ "id": "pr2024328000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.12,
+ "place": "22 km SSE of Twentynine Palms, CA",
+ "time": 1732400877090,
+ "updated": 1732457669350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798975",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798975.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 69,
+ "net": "ci",
+ "code": "40798975",
+ "ids": ",ci40798975,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 56,
+ "dmin": 0.0477,
+ "rms": 0.17,
+ "gap": 50,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 22 km SSE of Twentynine Palms, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.9926667, 33.953, 7.57]
+ },
+ "id": "ci40798975"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "70 km WNW of Beluga, Alaska",
+ "time": 1732400692509,
+ "updated": 1732491883320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2timiq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2timiq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f2timiq",
+ "ids": ",av93376778,ak024f2timiq,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 70 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.3143, 61.348, 8.7] },
+ "id": "ak024f2timiq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.54,
+ "place": "15 km NW of Emery, Utah",
+ "time": 1732400322830,
+ "updated": 1732560069880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087061",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087061.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "uu",
+ "code": "80087061",
+ "ids": ",uu80087061,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.02391,
+ "rms": 0.06,
+ "gap": 124,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 15 km NW of Emery, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.3875, 39.0061666666667, 0.09]
+ },
+ "id": "uu80087061"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1400001,
+ "place": "6 km SSW of Pāhala, Hawaii",
+ "time": 1732399938550,
+ "updated": 1732400046220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538647",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538647.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "hv",
+ "code": "74538647",
+ "ids": ",hv74538647,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 0.03648,
+ "rms": 0.170000002,
+ "gap": 194,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.50016784668, 19.1493339538574, 34.2200012207031]
+ },
+ "id": "hv74538647"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.05,
+ "place": "5 km ESE of Ontario, CA",
+ "time": 1732399656840,
+ "updated": 1732477559603,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798967",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798967.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "ci",
+ "code": "40798967",
+ "ids": ",ci40798967,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.0292,
+ "rms": 0.11,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 5 km ESE of Ontario, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5813333, 34.0288333, 5.39]
+ },
+ "id": "ci40798967"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.97,
+ "place": "8 km S of Columbia Falls, Montana",
+ "time": 1732399484150,
+ "updated": 1732462546630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066738",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066738.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "mb",
+ "code": "90066738",
+ "ids": ",mb90066738,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1979,
+ "rms": 0.11,
+ "gap": 133,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 8 km S of Columbia Falls, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.193166666667, 48.2988333333333, 9.35]
+ },
+ "id": "mb90066738"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.04,
+ "place": "38 km NNE of Amboy, Washington",
+ "time": 1732399399560,
+ "updated": 1732516596580,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061141",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061141.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "uw",
+ "code": "62061141",
+ "ids": ",uw62061141,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01205,
+ "rms": 0.16,
+ "gap": 247,
+ "magType": "mh",
+ "type": "earthquake",
+ "title": "M 0.0 - 38 km NNE of Amboy, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.20283333333333, 46.2085, -0.07]
+ },
+ "id": "uw62061141"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.31,
+ "place": "1 km SSW of Indios, Puerto Rico",
+ "time": 1732398530480,
+ "updated": 1732399974470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466463",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466463.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 82,
+ "net": "pr",
+ "code": "71466463",
+ "ids": ",pr71466463,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04995,
+ "rms": 0.09,
+ "gap": 197,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 1 km SSW of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.827, 17.9796666666667, 16.66]
+ },
+ "id": "pr71466463"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "39 km SSW of Maitum, Philippines",
+ "time": 1732398471341,
+ "updated": 1732399493040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7bd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7bd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p7bd",
+ "ids": ",us6000p7bd,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 57,
+ "dmin": 1.819,
+ "rms": 0.49,
+ "gap": 66,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 39 km SSW of Maitum, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [124.3434, 5.7182, 431.449]
+ },
+ "id": "us6000p7bd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "85 km SE of Ambon, Indonesia",
+ "time": 1732398182613,
+ "updated": 1732400305040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7bc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7bc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p7bc",
+ "ids": ",us6000p7bc,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 30,
+ "dmin": 1.293,
+ "rms": 0.48,
+ "gap": 47,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 85 km SE of Ambon, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [128.6214, -4.3326, 184.687]
+ },
+ "id": "us6000p7bc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.77,
+ "place": "11 km W of Palm Springs, CA",
+ "time": 1732397789660,
+ "updated": 1732457601113,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798959",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798959.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40798959",
+ "ids": ",ci40798959,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.07911,
+ "rms": 0.14,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 11 km W of Palm Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6433333, 33.84, 9.99]
+ },
+ "id": "ci40798959"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.49,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732397004990,
+ "updated": 1732398568417,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089551",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089551.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75089551",
+ "ids": ",nc75089551,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.0098,
+ "rms": 0.03,
+ "gap": 107,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.822830200195, 38.8173332214355, 2.27999997138977]
+ },
+ "id": "nc75089551"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "17 km SSE of Soldotna, Alaska",
+ "time": 1732396105542,
+ "updated": 1732396223806,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2stpdm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2stpdm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2stpdm",
+ "ids": ",ak024f2stpdm,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 17 km SSE of Soldotna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.9099, 60.3529, 51.8]
+ },
+ "id": "ak024f2stpdm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.45,
+ "place": "3 km NNW of The Geysers, CA",
+ "time": 1732395853520,
+ "updated": 1732397069258,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089541",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089541.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75089541",
+ "ids": ",nc75089541,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.0103,
+ "rms": 0.05,
+ "gap": 146,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 3 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779335021973, 38.8030014038086, 1.61000001430511]
+ },
+ "id": "nc75089541"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "30 km NE of Sterling, Alaska",
+ "time": 1732395832076,
+ "updated": 1732395934385,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2ssouf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2ssouf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f2ssouf",
+ "ids": ",ak024f2ssouf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.44,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 30 km NE of Sterling, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.313, 60.6962, 47.8] },
+ "id": "ak024f2ssouf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "21 km NNE of Point Possession, Alaska",
+ "time": 1732395233550,
+ "updated": 1732410627733,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2shz4x",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2shz4x.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f2shz4x",
+ "ids": ",ak024f2shz4x,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.56,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 21 km NNE of Point Possession, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.5192, 61.097, 51.1] },
+ "id": "ak024f2shz4x"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "71 km NW of Karluk, Alaska",
+ "time": 1732394786710,
+ "updated": 1732491531630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376698",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376698.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376698",
+ "ids": ",av93376698,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.02458,
+ "rms": 0.17,
+ "gap": 269,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 71 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.278166666667, 58.0313333333333, 8.46]
+ },
+ "id": "av93376698"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.54,
+ "place": "3 km WSW of Guánica, Puerto Rico",
+ "time": 1732394509000,
+ "updated": 1732397420790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466458",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466458.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 99,
+ "net": "pr",
+ "code": "71466458",
+ "ids": ",pr71466458,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.05937,
+ "rms": 0.09,
+ "gap": 201,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.5 - 3 km WSW of Guánica, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9396666666667, 17.9601666666667, 41.97]
+ },
+ "id": "pr71466458"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "7 km S of Littlerock, CA",
+ "time": 1732394138710,
+ "updated": 1732461307510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798919",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798919.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ci",
+ "code": "40798919",
+ "ids": ",ci40798919,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 61,
+ "dmin": 0.0192,
+ "rms": 0.2,
+ "gap": 33,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 7 km S of Littlerock, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.9715, 34.4628333, 7.98]
+ },
+ "id": "ci40798919"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89999998,
+ "place": "21 km SE of Pāhala, Hawaii",
+ "time": 1732393924370,
+ "updated": 1732394016540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538607",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538607.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "hv",
+ "code": "74538607",
+ "ids": ",hv74538607,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.1431,
+ "rms": 0.140000001,
+ "gap": 213,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 21 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.35466003418, 19.0541667938232, 29.3500003814697]
+ },
+ "id": "hv74538607"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.68,
+ "place": "14 km SSW of Cape Vizcaino, CA",
+ "time": 1732393375610,
+ "updated": 1732760539141,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089526",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089526.geojson",
+ "felt": 10,
+ "cdi": 4.1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 115,
+ "net": "nc",
+ "code": "75089526",
+ "ids": ",nc75089526,",
+ "sources": ",nc,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 41,
+ "dmin": 0.2107,
+ "rms": 0.19,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.7 - 14 km SSW of Cape Vizcaino, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.8315, 39.6003333333333, -0.07]
+ },
+ "id": "nc75089526"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.84,
+ "place": "5 km ESE of Valle Vista, CA",
+ "time": 1732393217570,
+ "updated": 1732457634266,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40798903",
+ "ids": ",ci40798903,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 34,
+ "dmin": 0.07902,
+ "rms": 0.21,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 5 km ESE of Valle Vista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8421667, 33.7273333, 16.21]
+ },
+ "id": "ci40798903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "66 km ENE of McCarthy, Alaska",
+ "time": 1732392597309,
+ "updated": 1732392703430,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2s8jxu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2s8jxu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f2s8jxu",
+ "ids": ",ak024f2s8jxu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 66 km ENE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.8229, 61.7166, 0] },
+ "id": "ak024f2s8jxu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.45,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732391279020,
+ "updated": 1732393636868,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089516",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089516.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "nc",
+ "code": "75089516",
+ "ids": ",nc75089516,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.00703,
+ "rms": 0.01,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.799163818359, 38.8370018005371, 1.9099999666214]
+ },
+ "id": "nc75089516"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "10 km WNW of Cobb, CA",
+ "time": 1732391173680,
+ "updated": 1732393042805,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089511",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089511.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75089511",
+ "ids": ",nc75089511,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.005125,
+ "rms": 0.02,
+ "gap": 88,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.831001281738, 38.8423347473145, 0.899999976158142]
+ },
+ "id": "nc75089511"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "9 km WNW of Cobb, CA",
+ "time": 1732391162260,
+ "updated": 1732392571761,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089506",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089506.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75089506",
+ "ids": ",nc75089506,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.005395,
+ "rms": 0.02,
+ "gap": 141,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 9 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.829666137695, 38.8414993286133, 1.16999995708466]
+ },
+ "id": "nc75089506"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.51,
+ "place": "10 km WSW of Dibble, Oklahoma",
+ "time": 1732390724920,
+ "updated": 1732414845328,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024xayk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024xayk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ok",
+ "code": "2024xayk",
+ "ids": ",ok2024xayk,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 56,
+ "dmin": 0.112477928,
+ "rms": 0.22,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 10 km WSW of Dibble, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.74466667, 35.01383333, 7.08]
+ },
+ "id": "ok2024xayk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "242 km E of Levuka, Fiji",
+ "time": 1732390539809,
+ "updated": 1732417084040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7b0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7b0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p7b0",
+ "ids": ",us6000p7b0,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 45,
+ "dmin": 2.597,
+ "rms": 0.8,
+ "gap": 74,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 242 km E of Levuka, Fiji"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.394, -17.9627, 564.011]
+ },
+ "id": "us6000p7b0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "51 km N of Petersville, Alaska",
+ "time": 1732390488734,
+ "updated": 1732390613165,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2rsgku",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2rsgku.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2rsgku",
+ "ids": ",ak024f2rsgku,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.54,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 51 km N of Petersville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.7257, 62.9544, 97] },
+ "id": "ak024f2rsgku"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.45,
+ "place": "22 km ENE of San Lucas, CA",
+ "time": 1732390265430,
+ "updated": 1732759638033,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089496",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089496.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "nc",
+ "code": "75089496",
+ "ids": ",nc75089496,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 36,
+ "dmin": 0.06337,
+ "rms": 0.13,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 22 km ENE of San Lucas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.846666666667, 36.2676666666667, 7.04]
+ },
+ "id": "nc75089496"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "Fiji region",
+ "time": 1732390033528,
+ "updated": 1732391556040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7au",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7au.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "6000p7au",
+ "ids": ",us6000p7au,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 4.238,
+ "rms": 0.74,
+ "gap": 145,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - Fiji region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-177.845, -19.8053, 568.262]
+ },
+ "id": "us6000p7au"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "132 km SE of Pondaguitan, Philippines",
+ "time": 1732389869734,
+ "updated": 1732416419040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7at",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7at.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p7at",
+ "ids": ",us6000p7at,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 62,
+ "dmin": 2.112,
+ "rms": 1.03,
+ "gap": 109,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 132 km SE of Pondaguitan, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [126.9803, 5.4709, 89.931]
+ },
+ "id": "us6000p7at"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "9 km WSW of Malibu, CA",
+ "time": 1732389227270,
+ "updated": 1732475941360,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798895",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798895.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "ci",
+ "code": "40798895",
+ "ids": ",ci40798895,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.08401,
+ "rms": 0.19,
+ "gap": 164,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 9 km WSW of Malibu, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8956667, 33.9641667, 14.22]
+ },
+ "id": "ci40798895"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "65 km WNW of Nanwalek, Alaska",
+ "time": 1732389135360,
+ "updated": 1732389288597,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2rno8w",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2rno8w.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2rno8w",
+ "ids": ",ak024f2rno8w,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.3,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 65 km WNW of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.0393, 59.5126, 101.8]
+ },
+ "id": "ak024f2rno8w"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "9 km NW of The Geysers, CA",
+ "time": 1732388939990,
+ "updated": 1732390638546,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089486",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089486.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089486",
+ "ids": ",nc75089486,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.004776,
+ "rms": 0.02,
+ "gap": 119,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 9 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.839668273926, 38.8199996948242, 2.10999989509583]
+ },
+ "id": "nc75089486"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "22 km SW of New Idria, CA",
+ "time": 1732388830260,
+ "updated": 1732755570553,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089481",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089481.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75089481",
+ "ids": ",nc75089481,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.06208,
+ "rms": 0.09,
+ "gap": 135,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 22 km SW of New Idria, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.839166666667, 36.27, 7.79]
+ },
+ "id": "nc75089481"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.9,
+ "place": "238 km E of Levuka, Fiji",
+ "time": 1732388670386,
+ "updated": 1732475243960,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7aq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7aq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 1.896,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 536,
+ "net": "us",
+ "code": "6000p7aq",
+ "ids": ",us6000p7aq,",
+ "sources": ",us,",
+ "types": ",losspager,moment-tensor,origin,phase-data,shakemap,",
+ "nst": 43,
+ "dmin": 2.527,
+ "rms": 0.92,
+ "gap": 97,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.9 - 238 km E of Levuka, Fiji"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.4392, -17.8999, 592.038]
+ },
+ "id": "us6000p7aq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.57,
+ "place": "85 km NW of Karluk, Alaska",
+ "time": 1732388638080,
+ "updated": 1732490798290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376583",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376583.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376583",
+ "ids": ",av93376583,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.03262,
+ "rms": 0.05,
+ "gap": 113,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 85 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.334666666667, 58.1776666666667, 1.16]
+ },
+ "id": "av93376583"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.84,
+ "place": "8 km SSW of Toms Place, CA",
+ "time": 1732388360790,
+ "updated": 1732563555619,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089476",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089476.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75089476",
+ "ids": ",nc75089476,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1425,
+ "rms": 0.05,
+ "gap": 189,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 8 km SSW of Toms Place, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.696, 37.4943333333333, 5.98]
+ },
+ "id": "nc75089476"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "48 km NNE of Petersville, Alaska",
+ "time": 1732388173921,
+ "updated": 1732388316226,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2rbnzj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2rbnzj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2rbnzj",
+ "ids": ",ak024f2rbnzj,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 48 km NNE of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4672, 62.9101, 83.5]
+ },
+ "id": "ak024f2rbnzj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.21000004,
+ "place": "4 km SE of Pāhala, Hawaii",
+ "time": 1732387922520,
+ "updated": 1732388041060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538542",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538542.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 75,
+ "net": "hv",
+ "code": "74538542",
+ "ids": ",hv74538542,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.0195,
+ "rms": 0.129999995,
+ "gap": 148,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 4 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.449829101562, 19.1711673736572, 31.6399993896484]
+ },
+ "id": "hv74538542"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "6 km S of La Parguera, Puerto Rico",
+ "time": 1732387690390,
+ "updated": 1732390553990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466448",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466448.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "pr",
+ "code": "71466448",
+ "ids": ",pr71466448,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04958,
+ "rms": 0.14,
+ "gap": 256,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 6 km S of La Parguera, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.0473333333333, 17.9196666666667, 10.56]
+ },
+ "id": "pr71466448"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.95,
+ "place": "12 km NW of Puerto Real, Puerto Rico",
+ "time": 1732387600230,
+ "updated": 1732389004080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466438",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466438.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 134,
+ "net": "pr",
+ "code": "71466438",
+ "ids": ",pr71466438,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1408,
+ "rms": 0.1,
+ "gap": 254,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.0 - 12 km NW of Puerto Real, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.275, 18.1538333333333, 48.19]
+ },
+ "id": "pr71466438"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.79,
+ "place": "10 km ESE of Puebla, B.C., MX",
+ "time": 1732386783100,
+ "updated": 1732464875143,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798887",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798887.geojson",
+ "felt": 2,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 120,
+ "net": "ci",
+ "code": "40798887",
+ "ids": ",ci40798887,us6000p7am,",
+ "sources": ",ci,us,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.1158,
+ "rms": 0.29,
+ "gap": 44,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 10 km ESE of Puebla, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.2571667, 32.5283333, 24.36]
+ },
+ "id": "ci40798887"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.69,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732386574200,
+ "updated": 1732388967366,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089466",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089466.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75089466",
+ "ids": ",nc75089466,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.01103,
+ "rms": 0.01,
+ "gap": 102,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.813835144043, 38.8465003967285, 1.33000004291534]
+ },
+ "id": "nc75089466"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732385950120,
+ "updated": 1732386044642,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089461",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089461.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75089461",
+ "ids": ",nc75089461,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.008058,
+ "rms": 0.02,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.77766418457, 38.7923316955566, 2.32999992370605]
+ },
+ "id": "nc75089461"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732385729770,
+ "updated": 1732388238287,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089456",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089456.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089456",
+ "ids": ",nc75089456,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.007816,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.77799987793, 38.7921676635742, 2.44000005722046]
+ },
+ "id": "nc75089456"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "9 km S of Princeton, Canada",
+ "time": 1732385693940,
+ "updated": 1732514771300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061126",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061126.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "uw",
+ "code": "62061126",
+ "ids": ",uw62061126,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.5681,
+ "rms": 0.32,
+ "gap": 182,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 2.0 Explosion - 9 km S of Princeton, Canada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.49083333333333, 49.37133333333333, -0.37]
+ },
+ "id": "uw62061126"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732385670260,
+ "updated": 1732404352980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066703",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066703.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "mb",
+ "code": "90066703",
+ "ids": ",mb90066703,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.2303,
+ "rms": 0.09,
+ "gap": 105,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.489833333333, 47.9655, 10.79]
+ },
+ "id": "mb90066703"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.87,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732385632220,
+ "updated": 1732387640223,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089451",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089451.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "nc",
+ "code": "75089451",
+ "ids": ",nc75089451,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.009359,
+ "rms": 0.02,
+ "gap": 95,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.808334350586, 38.8326683044434, 2.41000008583069]
+ },
+ "id": "nc75089451"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "27 km WSW of Susitna, Alaska",
+ "time": 1732385585494,
+ "updated": 1732385718415,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2r2flh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2r2flh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f2r2flh",
+ "ids": ",ak024f2r2flh,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.34,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 27 km WSW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.0149, 61.4963, 68.5]
+ },
+ "id": "ak024f2r2flh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732385419420,
+ "updated": 1732387038159,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089446",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089446.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "nc",
+ "code": "75089446",
+ "ids": ",nc75089446,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.009762,
+ "rms": 0.02,
+ "gap": 99,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.785835266113, 38.8221664428711, 1.07000005245209]
+ },
+ "id": "nc75089446"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.82,
+ "place": "10 km WNW of Ocotillo, CA",
+ "time": 1732385010730,
+ "updated": 1732457652081,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798879",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798879.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40798879",
+ "ids": ",ci40798879,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 18,
+ "dmin": 0.06697,
+ "rms": 0.14,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 10 km WNW of Ocotillo, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.0893333, 32.7793333, 11.49]
+ },
+ "id": "ci40798879"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.47,
+ "place": "4 km WNW of Cobb, CA",
+ "time": 1732384891710,
+ "updated": 1732386436095,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089441",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089441.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "nc",
+ "code": "75089441",
+ "ids": ",nc75089441,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.007916,
+ "rms": 0.02,
+ "gap": 120,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 4 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.765502929688, 38.8233337402344, 2.04999995231628]
+ },
+ "id": "nc75089441"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.35,
+ "place": "6 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732384498940,
+ "updated": 1732577967440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066943",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066943.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "mb",
+ "code": "90066943",
+ "ids": ",mb90066943,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.2456,
+ "rms": 0.09,
+ "gap": 118,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 6 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.4675, 47.9701666666667, 4.99]
+ },
+ "id": "mb90066943"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.51,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732384385970,
+ "updated": 1732385838030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089436",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089436.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75089436",
+ "ids": ",nc75089436,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.004243,
+ "rms": 0.02,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.880836486816, 38.8344993591309, 2.63000011444092]
+ },
+ "id": "nc75089436"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.24,
+ "place": "6 km S of Pāhala, Hawaii",
+ "time": 1732384207330,
+ "updated": 1732397272040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538487",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538487.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "hv",
+ "code": "74538487",
+ "ids": ",us6000p7ag,hv74538487,",
+ "sources": ",us,hv,",
+ "types": ",origin,phase-data,",
+ "nst": 56,
+ "dmin": 0.02583,
+ "rms": 0.129999995,
+ "gap": 150,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 6 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.488494873047, 19.1486663818359, 34.3400001525879]
+ },
+ "id": "hv74538487"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.24000001,
+ "place": "8 km E of Pāhala, Hawaii",
+ "time": 1732383697340,
+ "updated": 1732383792580,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538472",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538472.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 77,
+ "net": "hv",
+ "code": "74538472",
+ "ids": ",hv74538472,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0.04786,
+ "rms": 0.200000003,
+ "gap": 179,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 8 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.401000976562, 19.1895008087158, 32.5299987792969]
+ },
+ "id": "hv74538472"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "113 km SE of King Cove, Alaska",
+ "time": 1732383594069,
+ "updated": 1732409142331,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7ae",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7ae.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 1.323,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p7ae",
+ "ids": ",ak024f2qmojm,us6000p7ae,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,shakemap,",
+ "nst": 77,
+ "dmin": 1.455,
+ "rms": 0.66,
+ "gap": 138,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 113 km SE of King Cove, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-161.0841, 54.3336, 40.603]
+ },
+ "id": "us6000p7ae"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "55 km S of Whites City, New Mexico",
+ "time": 1732383563319,
+ "updated": 1732541721408,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xauk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xauk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "tx",
+ "code": "2024xauk",
+ "ids": ",tx2024xauk,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 55 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.396, 31.671, 7.074] },
+ "id": "tx2024xauk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "27 km N of Silchar, India",
+ "time": 1732383305193,
+ "updated": 1732392999040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7ad",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7ad.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p7ad",
+ "ids": ",us6000p7ad,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 45,
+ "dmin": 4.332,
+ "rms": 0.94,
+ "gap": 111,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 27 km N of Silchar, India"
+ },
+ "geometry": { "type": "Point", "coordinates": [92.7607, 25.0743, 48.73] },
+ "id": "us6000p7ad"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.3,
+ "place": "93 km N of Karluk, Alaska",
+ "time": 1732383217848,
+ "updated": 1732383321342,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2qlct4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2qlct4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f2qlct4",
+ "ids": ",ak024f2qlct4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.17,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 93 km N of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.6037, 58.4042, 99.6]
+ },
+ "id": "ak024f2qlct4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.29,
+ "place": "18 km WSW of Toms Place, CA",
+ "time": 1732383214020,
+ "updated": 1732652070635,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089431",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089431.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "nc",
+ "code": "75089431",
+ "ids": ",nc75089431,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.1109,
+ "rms": 0.06,
+ "gap": 112,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 18 km WSW of Toms Place, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.853666666667, 37.4806666666667, 3.69]
+ },
+ "id": "nc75089431"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "55 km S of Whites City, New Mexico",
+ "time": 1732382911436,
+ "updated": 1732534331612,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xauc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xauc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024xauc",
+ "ids": ",us6000p7ab,tx2024xauc,",
+ "sources": ",us,tx,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 55 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.402, 31.675, 6.8689]
+ },
+ "id": "tx2024xauc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.79,
+ "place": "24 km NW of Grapevine, CA",
+ "time": 1732382627680,
+ "updated": 1732473388442,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798847",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798847.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "ci",
+ "code": "40798847",
+ "ids": ",ci40798847,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 34,
+ "dmin": 0.04415,
+ "rms": 0.24,
+ "gap": 77,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 24 km NW of Grapevine, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.1223333, 35.0895, 13.32]
+ },
+ "id": "ci40798847"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.82,
+ "place": "69 km WNW of Tyonek, Alaska",
+ "time": 1732382466950,
+ "updated": 1732487985890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376508",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376508.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376508",
+ "ids": ",av93376508,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.0324,
+ "rms": 0.26,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 69 km WNW of Tyonek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.3445, 61.2885, 1.1] },
+ "id": "av93376508"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89,
+ "place": "24 km ESE of Little Lake, CA",
+ "time": 1732382287020,
+ "updated": 1732457684226,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798839",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798839.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 55,
+ "net": "ci",
+ "code": "40798839",
+ "ids": ",ci40798839,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.06438,
+ "rms": 0.13,
+ "gap": 51,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 24 km ESE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6688333, 35.8438333, 10.4]
+ },
+ "id": "ci40798839"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.14,
+ "place": "1 km NW of The Geysers, CA",
+ "time": 1732382249810,
+ "updated": 1732383437770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089421",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089421.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "nc",
+ "code": "75089421",
+ "ids": ",nc75089421,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.01154,
+ "rms": 0.04,
+ "gap": 71,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 1 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.763664245605, 38.7821655273438, 3.76999998092651]
+ },
+ "id": "nc75089421"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732381716490,
+ "updated": 1732577510320,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066938",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066938.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "mb",
+ "code": "90066938",
+ "ids": ",mb90066938,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.2295,
+ "rms": 0.11,
+ "gap": 122,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.492833333333, 47.9675, 10.22]
+ },
+ "id": "mb90066938"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "18 km WSW of Toms Place, CA",
+ "time": 1732381657260,
+ "updated": 1732652069635,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089416",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089416.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75089416",
+ "ids": ",nc75089416,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.1241,
+ "rms": 0.06,
+ "gap": 124,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 18 km WSW of Toms Place, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.846333333333, 37.4665, 5.28]
+ },
+ "id": "nc75089416"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "40 km WNW of Ninilchik, Alaska",
+ "time": 1732381599475,
+ "updated": 1732381720896,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2qfkln",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2qfkln.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f2qfkln",
+ "ids": ",ak024f2qfkln,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.53,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 40 km WNW of Ninilchik, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.335, 60.195, 90.2] },
+ "id": "ak024f2qfkln"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.01,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732381517360,
+ "updated": 1732487599050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376493",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376493.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376493",
+ "ids": ",av93376493,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.07192,
+ "rms": 0.06,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2575, 61.3175, 0.17]
+ },
+ "id": "av93376493"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732381212517,
+ "updated": 1732535527779,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xate",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xate.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "tx",
+ "code": "2024xate",
+ "ids": ",tx2024xate,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.296, 31.652, 8.5608]
+ },
+ "id": "tx2024xate"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.63,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732381116890,
+ "updated": 1732577254070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066933",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066933.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "mb",
+ "code": "90066933",
+ "ids": ",mb90066933,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.2296,
+ "rms": 0.17,
+ "gap": 122,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.493666666667, 47.9686666666667, 4.98]
+ },
+ "id": "mb90066933"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.17,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732380658780,
+ "updated": 1732403890910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066693",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066693.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "mb",
+ "code": "90066693",
+ "ids": ",mb90066693,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.2409,
+ "rms": 0.18,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.479166666667, 47.9743333333333, 9.51]
+ },
+ "id": "mb90066693"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.55,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732380029420,
+ "updated": 1732577033000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066928",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066928.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "mb",
+ "code": "90066928",
+ "ids": ",mb90066928,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.2311,
+ "rms": 0.15,
+ "gap": 121,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.4895, 47.9668333333333, 4.45]
+ },
+ "id": "mb90066928"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89999998,
+ "place": "10 km N of Pāhala, Hawaii",
+ "time": 1732379883590,
+ "updated": 1732379994980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538417",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538417.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "hv",
+ "code": "74538417",
+ "ids": ",hv74538417,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 50,
+ "dmin": 0.05104,
+ "rms": 0.340000004,
+ "gap": 45,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 10 km N of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.486663818359, 19.2983341217041, 3.25]
+ },
+ "id": "hv74538417"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.70000005,
+ "place": "14 km NNE of Hawaiian Ocean View, Hawaii",
+ "time": 1732379762680,
+ "updated": 1732379865930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538412",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538412.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "hv",
+ "code": "74538412",
+ "ids": ",hv74538412,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.05551,
+ "rms": 0.370000005,
+ "gap": 172,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 14 km NNE of Hawaiian Ocean View, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.693832397461, 19.183500289917, -0.109999999403954]
+ },
+ "id": "hv74538412"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.34,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732379696890,
+ "updated": 1732487136880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376453",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376453.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376453",
+ "ids": ",av93376453,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.08135,
+ "rms": 0.12,
+ "gap": 131,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.297833333333, 61.3318333333333, 0.23]
+ },
+ "id": "av93376453"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "60 km WNW of Nanwalek, Alaska",
+ "time": 1732379472184,
+ "updated": 1732379585038,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2pzfsi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2pzfsi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f2pzfsi",
+ "ids": ",ak024f2pzfsi,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.24,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 60 km WNW of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.8726, 59.5974, 94.8]
+ },
+ "id": "ak024f2pzfsi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.5,
+ "place": "58 km S of Whites City, New Mexico",
+ "time": 1732379426201,
+ "updated": 1732531744483,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xasf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xasf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 96,
+ "net": "tx",
+ "code": "2024xasf",
+ "ids": ",us6000p7a1,tx2024xasf,",
+ "sources": ",us,tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0,
+ "rms": 0.3,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.5 - 58 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.299, 31.652, 8.2019]
+ },
+ "id": "tx2024xasf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "16 km N of Borrego Springs, CA",
+ "time": 1732379397330,
+ "updated": 1732457687125,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798823",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798823.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40798823",
+ "ids": ",ci40798823,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 39,
+ "dmin": 0.07108,
+ "rms": 0.23,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 16 km N of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.3771667, 33.3975, 2.79]
+ },
+ "id": "ci40798823"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "22 km ENE of Little Lake, CA",
+ "time": 1732379370120,
+ "updated": 1732741340669,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798831",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798831.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40798831",
+ "ids": ",ci40798831,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.06088,
+ "rms": 0.13,
+ "gap": 121,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 22 km ENE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6906667, 36.0181667, 2.86]
+ },
+ "id": "ci40798831"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.09,
+ "place": "70 km NW of Karluk, Alaska",
+ "time": 1732379314660,
+ "updated": 1732486177460,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376438",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376438.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376438",
+ "ids": ",av93376438,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.02472,
+ "rms": 0.15,
+ "gap": 221,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 70 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.273166666667, 58.0331666666667, 8.98]
+ },
+ "id": "av93376438"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "36 km E of Valdez, Alaska",
+ "time": 1732379308937,
+ "updated": 1732383030795,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2pytw9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2pytw9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f2pytw9",
+ "ids": ",ak024f2pytw9,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.37,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 36 km E of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-145.6783, 61.1355, 29] },
+ "id": "ak024f2pytw9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "11 km NW of Mendeltna, Alaska",
+ "time": 1732379268626,
+ "updated": 1732379563714,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2pynrf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2pynrf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f2pynrf",
+ "ids": ",ak024f2pynrf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 11 km NW of Mendeltna, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.5979, 62.1367, 0] },
+ "id": "ak024f2pynrf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.91,
+ "place": "18 km WSW of Toms Place, CA",
+ "time": 1732379037430,
+ "updated": 1732651771601,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089406",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089406.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "nc",
+ "code": "75089406",
+ "ids": ",nc75089406,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.1078,
+ "rms": 0.07,
+ "gap": 71,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 18 km WSW of Toms Place, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.852666666667, 37.4836666666667, 3.51]
+ },
+ "id": "nc75089406"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "6 km E of Avon, Utah",
+ "time": 1732378636230,
+ "updated": 1732553300600,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087031",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087031.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "uu",
+ "code": "80087031",
+ "ids": ",uu80087031,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.06085,
+ "rms": 0.13,
+ "gap": 87,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 6 km E of Avon, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.733666666667, 41.5325, 8.94]
+ },
+ "id": "uu80087031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.86,
+ "place": "6 km E of Avon, Utah",
+ "time": 1732378425690,
+ "updated": 1732675230522,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087026",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087026.geojson",
+ "felt": 6,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 127,
+ "net": "uu",
+ "code": "80087026",
+ "ids": ",uu80087026,us6000p79w,",
+ "sources": ",uu,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 35,
+ "dmin": 0.06198,
+ "rms": 0.17,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.9 - 6 km E of Avon, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.7345, 41.5306666666667, 10.67]
+ },
+ "id": "uu80087026"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732378413839,
+ "updated": 1732536565847,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xarq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xarq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "tx",
+ "code": "2024xarq",
+ "ids": ",tx2024xarq,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.359, 31.66, 7.561] },
+ "id": "tx2024xarq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "64 km SE of Denali National Park, Alaska",
+ "time": 1732378362642,
+ "updated": 1732388923040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2pvfio",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2pvfio.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f2pvfio",
+ "ids": ",us6000p79v,ak024f2pvfio,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.46,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 64 km SE of Denali National Park, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.8322, 63.1223, 123.8]
+ },
+ "id": "ak024f2pvfio"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "37 km N of Petersville, Alaska",
+ "time": 1732378116630,
+ "updated": 1732378224072,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2puk7j",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2puk7j.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2puk7j",
+ "ids": ",ak024f2puk7j,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.68,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 37 km N of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.8842, 62.8291, 83.7]
+ },
+ "id": "ak024f2puk7j"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.17,
+ "place": "10 km NNW of Garrochales, Puerto Rico",
+ "time": 1732377710890,
+ "updated": 1732379280910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466428",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466428.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 155,
+ "net": "pr",
+ "code": "71466428",
+ "ids": ",pr71466428,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.0962,
+ "rms": 0.26,
+ "gap": 198,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.2 - 10 km NNW of Garrochales, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.6086666666667, 18.5375, 94.21]
+ },
+ "id": "pr71466428"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "13 km NNW of Springhill, Montana",
+ "time": 1732377637070,
+ "updated": 1732461255030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066688",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066688.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "mb",
+ "code": "90066688",
+ "ids": ",mb90066688,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.2138,
+ "rms": 0.23,
+ "gap": 205,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 13 km NNW of Springhill, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.125833333333, 45.9436666666667, 5]
+ },
+ "id": "mb90066688"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.95,
+ "place": "6 km NNW of Pinnacles, CA",
+ "time": 1732377156970,
+ "updated": 1732753936362,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089401",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089401.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "nc",
+ "code": "75089401",
+ "ids": ",nc75089401,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 40,
+ "dmin": 0.1064,
+ "rms": 0.15,
+ "gap": 56,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 6 km NNW of Pinnacles, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-121.1845, 36.5775, 6.5] },
+ "id": "nc75089401"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "5 km SSE of Midland, Texas",
+ "time": 1732376928320,
+ "updated": 1732544303396,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xaqw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xaqw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "tx",
+ "code": "2024xaqw",
+ "ids": ",tx2024xaqw,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 77,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 5 km SSE of Midland, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-102.051, 31.951, 9.1064]
+ },
+ "id": "tx2024xaqw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "36 km NNW of Toyah, Texas",
+ "time": 1732376842738,
+ "updated": 1732537836001,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xaqv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xaqv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024xaqv",
+ "ids": ",tx2024xaqv,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 57,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 36 km NNW of Toyah, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-103.97, 31.607, 7.5867] },
+ "id": "tx2024xaqv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "5 km SSE of Midland, Texas",
+ "time": 1732376810734,
+ "updated": 1732544477405,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xaqu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xaqu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024xaqu",
+ "ids": ",tx2024xaqu,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 5 km SSE of Midland, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-102.049, 31.955, 8.8623]
+ },
+ "id": "tx2024xaqu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "9 km SSE of Trapper Creek, Alaska",
+ "time": 1732376409824,
+ "updated": 1732376561914,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2pfxg6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2pfxg6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f2pfxg6",
+ "ids": ",ak024f2pfxg6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.94,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 9 km SSE of Trapper Creek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.1617, 62.2392, 26.3]
+ },
+ "id": "ak024f2pfxg6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.68,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732376107170,
+ "updated": 1732403042220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066683",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066683.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 43,
+ "net": "mb",
+ "code": "90066683",
+ "ids": ",mb90066683,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.2384,
+ "rms": 0.15,
+ "gap": 72,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.480833333333, 47.9713333333333, 9.38]
+ },
+ "id": "mb90066683"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.37,
+ "place": "6 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732375859140,
+ "updated": 1732576730590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066923",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066923.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "mb",
+ "code": "90066923",
+ "ids": ",mb90066923,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.2403,
+ "rms": 0.08,
+ "gap": 118,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 6 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.472833333333, 47.9656666666667, 4.99]
+ },
+ "id": "mb90066923"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.5,
+ "place": "259 km W of Bandon, Oregon",
+ "time": 1732375789400,
+ "updated": 1732383420336,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p79t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p79t.geojson",
+ "felt": 1,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 189,
+ "net": "us",
+ "code": "6000p79t",
+ "ids": ",us6000p79t,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 79,
+ "dmin": 1.839,
+ "rms": 0.79,
+ "gap": 243,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.5 - 259 km W of Bandon, Oregon"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-127.5598, 43.5261, 14.618]
+ },
+ "id": "us6000p79t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "14 km E of Willow, Alaska",
+ "time": 1732375439772,
+ "updated": 1732375566486,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2pce4p",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2pce4p.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f2pce4p",
+ "ids": ",ak024f2pce4p,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.74,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 14 km E of Willow, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.7704, 61.765, 72.1] },
+ "id": "ak024f2pce4p"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "63 km ESE of Cantwell, Alaska",
+ "time": 1732374637696,
+ "updated": 1732374751994,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2p9k49",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2p9k49.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2p9k49",
+ "ids": ",ak024f2p9k49,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.84,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 63 km ESE of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.8365, 63.115, 10] },
+ "id": "ak024f2p9k49"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.21000004,
+ "place": "3 km SE of Pāhala, Hawaii",
+ "time": 1732374590330,
+ "updated": 1732374683300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538357",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538357.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 75,
+ "net": "hv",
+ "code": "74538357",
+ "ids": ",hv74538357,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 39,
+ "dmin": 0.02333,
+ "rms": 0.150000006,
+ "gap": 137,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 3 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.453338623047, 19.1773338317871, 31.6100006103516]
+ },
+ "id": "hv74538357"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.55,
+ "place": "27 km S of Evanston, Wyoming",
+ "time": 1732374050050,
+ "updated": 1732551270180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087021",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087021.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "uu",
+ "code": "80087021",
+ "ids": ",uu80087021,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1416,
+ "rms": 0.12,
+ "gap": 138,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 27 km S of Evanston, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.937166666667, 41.0258333333333, 24.31]
+ },
+ "id": "uu80087021"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "6 km SW of Gilroy, CA",
+ "time": 1732373884090,
+ "updated": 1732743737175,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089396",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089396.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "nc",
+ "code": "75089396",
+ "ids": ",nc75089396,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.02396,
+ "rms": 0.06,
+ "gap": 59,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km SW of Gilroy, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.61, 36.9638333333333, 3.51]
+ },
+ "id": "nc75089396"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "7 km SSW of Tyonek, Alaska",
+ "time": 1732373454960,
+ "updated": 1732373564058,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2owqhk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2owqhk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f2owqhk",
+ "ids": ",ak024f2owqhk,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 7 km SSW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.2076, 61.0086, 61.4]
+ },
+ "id": "ak024f2owqhk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.17,
+ "place": "1 km N of The Geysers, CA",
+ "time": 1732373396010,
+ "updated": 1732660769658,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089391",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089391.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nc",
+ "code": "75089391",
+ "ids": ",nc75089391,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.01058,
+ "rms": 0.02,
+ "gap": 115,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.2 - 1 km N of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.7565, 38.7903333333333, 1.63]
+ },
+ "id": "nc75089391"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.41,
+ "place": "6 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732373011550,
+ "updated": 1732576403940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066918",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066918.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "mb",
+ "code": "90066918",
+ "ids": ",mb90066918,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.2391,
+ "rms": 0.08,
+ "gap": 118,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 6 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.476166666667, 47.9671666666667, 4.99]
+ },
+ "id": "mb90066918"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "24 km ENE of Ambunti, Papua New Guinea",
+ "time": 1732372998148,
+ "updated": 1732374009040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p79h",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p79h.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "6000p79h",
+ "ids": ",us6000p79h,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 4.811,
+ "rms": 0.5,
+ "gap": 54,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 24 km ENE of Ambunti, Papua New Guinea"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [143.022, -4.1388, 78.567]
+ },
+ "id": "us6000p79h"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "46 km ESE of Beatty, Nevada",
+ "time": 1732372746932,
+ "updated": 1732379484059,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887889",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887889.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nn",
+ "code": "00887889",
+ "ids": ",nn00887889,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.036,
+ "rms": 0.0731,
+ "gap": 83.92999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 46 km ESE of Beatty, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.305, 36.6949, 5.5] },
+ "id": "nn00887889"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "26 km NW of Furnace Creek, California",
+ "time": 1732372595841,
+ "updated": 1732572639515,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887885",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887885.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "nn",
+ "code": "00887885",
+ "ids": ",nn00887885,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.329,
+ "rms": 0.1437,
+ "gap": 131.01999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 26 km NW of Furnace Creek, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.099, 36.5864, 2.4] },
+ "id": "nn00887885"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "34 km S of Virginia City, Montana",
+ "time": 1732372482090,
+ "updated": 1732560734800,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066808",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066808.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "mb",
+ "code": "90066808",
+ "ids": ",mb90066808,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.1345,
+ "rms": 0.08,
+ "gap": 119,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 34 km S of Virginia City, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.875833333333, 44.9916666666667, 10.2]
+ },
+ "id": "mb90066808"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.95,
+ "place": "20 km NNW of Challis, Idaho",
+ "time": 1732372328790,
+ "updated": 1732560112200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066798",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066798.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "mb",
+ "code": "90066798",
+ "ids": ",mb90066798,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.3663,
+ "rms": 0.18,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 20 km NNW of Challis, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.372666666667, 44.6606666666667, 8.46]
+ },
+ "id": "mb90066798"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "8 km SSE of Big Lake, Alaska",
+ "time": 1732371992360,
+ "updated": 1732372099383,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2orjk4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2orjk4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2orjk4",
+ "ids": ",ak024f2orjk4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 8 km SSE of Big Lake, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.8985, 61.4469, 32.6]
+ },
+ "id": "ak024f2orjk4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "Kermadec Islands region",
+ "time": 1732371205110,
+ "updated": 1732372721040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p79b",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p79b.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "6000p79b",
+ "ids": ",us6000p79b,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 1.304,
+ "rms": 1.16,
+ "gap": 76,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.7 - Kermadec Islands region"
+ },
+ "geometry": { "type": "Point", "coordinates": [-176.6536, -28.5718, 10] },
+ "id": "us6000p79b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "47 km SE of Denali National Park, Alaska",
+ "time": 1732370750934,
+ "updated": 1732370895329,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2on2yd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2on2yd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f2on2yd",
+ "ids": ",ak024f2on2yd,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 47 km SE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.0134, 63.2539, 5.2] },
+ "id": "ak024f2on2yd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75,
+ "place": "6 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732370385810,
+ "updated": 1732374601990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066668",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066668.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "mb",
+ "code": "90066668",
+ "ids": ",mb90066668,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.2373,
+ "rms": 0.18,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.480166666667, 47.9683333333333, 7.73]
+ },
+ "id": "mb90066668"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.59,
+ "place": "61 km WNW of Tyonek, Alaska",
+ "time": 1732369985600,
+ "updated": 1732484062940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027359",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027359.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027359",
+ "ids": ",av93027359,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.04792,
+ "rms": 0.09,
+ "gap": 191,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 61 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.243, 61.1853333333333, 3.97]
+ },
+ "id": "av93027359"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.38,
+ "place": "61 km WNW of Tyonek, Alaska",
+ "time": 1732369976360,
+ "updated": 1732483625870,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376323",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376323.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376323",
+ "ids": ",av93376323,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.04329,
+ "rms": 0.15,
+ "gap": 199,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 61 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.255333333333, 61.1816666666667, 6.45]
+ },
+ "id": "av93376323"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.03,
+ "place": "61 km WNW of Tyonek, Alaska",
+ "time": 1732369838810,
+ "updated": 1732483269200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376318",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376318.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376318",
+ "ids": ",av93376318,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.04443,
+ "rms": 0.14,
+ "gap": 189,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 61 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.25, 61.1868333333333, 4.56]
+ },
+ "id": "av93376318"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.16,
+ "place": "38 km S of Morton, Washington",
+ "time": 1732369469340,
+ "updated": 1732511909880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061106",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061106.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "uw",
+ "code": "62061106",
+ "ids": ",uw62061106,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01387,
+ "rms": 0.04,
+ "gap": 291,
+ "magType": "mh",
+ "type": "earthquake",
+ "title": "M -0.2 - 38 km S of Morton, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.18183333333333, 46.21383333333333, -0.25]
+ },
+ "id": "uw62061106"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.13,
+ "place": "13 km NE of West Yellowstone, Montana",
+ "time": 1732369300050,
+ "updated": 1732547542540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087011",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087011.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "uu",
+ "code": "80087011",
+ "ids": ",uu80087011,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.01065,
+ "rms": 0.14,
+ "gap": 125,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.1 - 13 km NE of West Yellowstone, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.9935, 44.7536666666667, 8.07]
+ },
+ "id": "uu80087011"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.44,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732368960450,
+ "updated": 1732575926810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066913",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066913.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "mb",
+ "code": "90066913",
+ "ids": ",mb90066913,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.2341,
+ "rms": 0.12,
+ "gap": 121,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.486333333333, 47.969, 4.98]
+ },
+ "id": "mb90066913"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01,
+ "place": "14 km SSW of Cape Vizcaino, CA",
+ "time": 1732368367430,
+ "updated": 1732742537035,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089381",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089381.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "nc",
+ "code": "75089381",
+ "ids": ",nc75089381,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.2117,
+ "rms": 0.19,
+ "gap": 171,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 14 km SSW of Cape Vizcaino, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.833, 39.6005, -0.66]
+ },
+ "id": "nc75089381"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732368218070,
+ "updated": 1732369638172,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089376",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089376.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75089376",
+ "ids": ",nc75089376,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.003558,
+ "rms": 0.04,
+ "gap": 126,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.883163452148, 38.8346672058105, 1.55999994277954]
+ },
+ "id": "nc75089376"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.65,
+ "place": "7 km WNW of Lake Mary Ronan, Montana",
+ "time": 1732368057610,
+ "updated": 1732575720790,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066908",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066908.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "mb",
+ "code": "90066908",
+ "ids": ",mb90066908,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.232,
+ "rms": 0.2,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 7 km WNW of Lake Mary Ronan, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.487, 47.9656666666667, 6.02]
+ },
+ "id": "mb90066908"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.53,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732368053100,
+ "updated": 1732369036098,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089371",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089371.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75089371",
+ "ids": ",nc75089371,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.006399,
+ "rms": 0.03,
+ "gap": 130,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.882835388184, 38.8318328857422, 1.75999999046326]
+ },
+ "id": "nc75089371"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "10 km N of Anza, CA",
+ "time": 1732367955530,
+ "updated": 1732457711129,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798727",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798727.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40798727",
+ "ids": ",ci40798727,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.02226,
+ "rms": 0.15,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 10 km N of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6841667, 33.6483333, 16.12]
+ },
+ "id": "ci40798727"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "23 km WSW of Ferry, Alaska",
+ "time": 1732367612810,
+ "updated": 1732367758325,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2o3boh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2o3boh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f2o3boh",
+ "ids": ",ak024f2o3boh,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.67,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 23 km WSW of Ferry, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.5375, 63.9168, 0] },
+ "id": "ak024f2o3boh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.67,
+ "place": "6 km SW of Gilroy, CA",
+ "time": 1732366947120,
+ "updated": 1732670370791,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089366",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089366.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 43,
+ "net": "nc",
+ "code": "75089366",
+ "ids": ",nc75089366,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 45,
+ "dmin": 0.02733,
+ "rms": 0.14,
+ "gap": 44,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 6 km SW of Gilroy, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.614333333333, 36.9641666666667, 4.81]
+ },
+ "id": "nc75089366"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "31 km SE of Mina, Nevada",
+ "time": 1732366570410,
+ "updated": 1732568037139,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887883",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887883.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "nn",
+ "code": "00887883",
+ "ids": ",nn00887883,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.092,
+ "rms": 0.1287,
+ "gap": 93.53999999999999,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 31 km SE of Mina, Nevada"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.8698, 38.1838, 10.6]
+ },
+ "id": "nn00887883"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "58 km NW of Tatitlek, Alaska",
+ "time": 1732366488004,
+ "updated": 1732366602070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2nqpls",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2nqpls.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2nqpls",
+ "ids": ",ak024f2nqpls,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.07,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 58 km NW of Tatitlek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.4878, 61.2111, 0] },
+ "id": "ak024f2nqpls"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3,
+ "place": "10 km ENE of Wells, Nevada",
+ "time": 1732365720858,
+ "updated": 1732561218666,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887920",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887920.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 138,
+ "net": "nn",
+ "code": "00887920",
+ "ids": ",us6000p78z,nn00887920,",
+ "sources": ",us,nn,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 1.139,
+ "rms": 0.1344,
+ "gap": 91.30999999999999,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.0 - 10 km ENE of Wells, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-114.847, 41.1454, 3.1] },
+ "id": "nn00887920"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "16 km S of Fern Forest, Hawaii",
+ "time": 1732364666290,
+ "updated": 1732555873820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538282",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538282.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74538282",
+ "ids": ",hv74538282,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.0389,
+ "rms": 0.12,
+ "gap": 96,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 16 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.147166666667, 19.321, 4.42]
+ },
+ "id": "hv74538282"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4,
+ "place": "34 km ESE of Farkhār, Afghanistan",
+ "time": 1732364115062,
+ "updated": 1732429972040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p78t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p78t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 246,
+ "net": "us",
+ "code": "6000p78t",
+ "ids": ",us6000p78t,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 1.878,
+ "rms": 0.73,
+ "gap": 88,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.0 - 34 km ESE of Farkhār, Afghanistan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [70.2325, 36.4837, 214.605]
+ },
+ "id": "us6000p78t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "66 km SW of Manley Hot Springs, Alaska",
+ "time": 1732364031696,
+ "updated": 1732364212670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2nhxjl",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2nhxjl.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2nhxjl",
+ "ids": ",ak024f2nhxjl,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 66 km SW of Manley Hot Springs, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.6064, 64.5719, 16.5]
+ },
+ "id": "ak024f2nhxjl"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "6 km N of Malibu, CA",
+ "time": 1732363818570,
+ "updated": 1732457724131,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798719",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798719.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40798719",
+ "ids": ",ci40798719,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.0291,
+ "rms": 0.21,
+ "gap": 99,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 6 km N of Malibu, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8095, 34.0541667, 10.45]
+ },
+ "id": "ci40798719"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "186 km WSW of Lorengau, Papua New Guinea",
+ "time": 1732363677775,
+ "updated": 1732364864040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p78s",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p78s.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "6000p78s",
+ "ids": ",us6000p78s,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 1.754,
+ "rms": 0.56,
+ "gap": 109,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - 186 km WSW of Lorengau, Papua New Guinea"
+ },
+ "geometry": { "type": "Point", "coordinates": [145.8612, -2.9518, 10] },
+ "id": "us6000p78s"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.88,
+ "place": "86 km ENE of Ugashik, Alaska",
+ "time": 1732362629700,
+ "updated": 1732482802020,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376253",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376253.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "av",
+ "code": "93376253",
+ "ids": ",av93376253,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.1489,
+ "rms": 0.32,
+ "gap": 206,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 86 km ENE of Ugashik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.998666666667, 57.7201666666667, 9.25]
+ },
+ "id": "av93376253"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.94,
+ "place": "18 km E of Ridgecrest, CA",
+ "time": 1732361967990,
+ "updated": 1732457743710,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798711",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798711.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "ci",
+ "code": "40798711",
+ "ids": ",ci40798711,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 39,
+ "dmin": 0.01992,
+ "rms": 0.12,
+ "gap": 61,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 18 km E of Ridgecrest, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4753333, 35.6033333, 6.94]
+ },
+ "id": "ci40798711"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "49 km WNW of Waisai, Indonesia",
+ "time": 1732361499371,
+ "updated": 1732362759040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p78n",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p78n.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "6000p78n",
+ "ids": ",us6000p78n,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 2.854,
+ "rms": 0.78,
+ "gap": 68,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 49 km WNW of Waisai, Indonesia"
+ },
+ "geometry": { "type": "Point", "coordinates": [130.0911, -0.084, 10] },
+ "id": "us6000p78n"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.89,
+ "place": "19 km NE of Packwood, Washington",
+ "time": 1732361323310,
+ "updated": 1732437673130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061081",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061081.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "uw",
+ "code": "62061081",
+ "ids": ",uw62061081,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 0.04047,
+ "rms": 0.13,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 19 km NE of Packwood, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.51683333333334, 46.746833333333335, 4.73]
+ },
+ "id": "uw62061081"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84000003,
+ "place": "5 km SE of Pāhala, Hawaii",
+ "time": 1732360784580,
+ "updated": 1732360878720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538237",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538237.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74538237",
+ "ids": ",hv74538237,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.08021,
+ "rms": 0.109999999,
+ "gap": 235,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 5 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.440826416016, 19.1681671142578, 30.7099990844727]
+ },
+ "id": "hv74538237"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "3 km SE of The Geysers, CA",
+ "time": 1732360673370,
+ "updated": 1732660171593,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089351",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089351.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75089351",
+ "ids": ",nc75089351,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.002686,
+ "rms": 0.04,
+ "gap": 59,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 3 km SE of The Geysers, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-122.728, 38.7605, 1.58] },
+ "id": "nc75089351"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "3 km SE of The Geysers, CA",
+ "time": 1732360668080,
+ "updated": 1732659569522,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089346",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089346.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089346",
+ "ids": ",nc75089346,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.002107,
+ "rms": 0.04,
+ "gap": 58,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 3 km SE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.727166666667, 38.7605, 1.74]
+ },
+ "id": "nc75089346"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "64 km WNW of Lae, Papua New Guinea",
+ "time": 1732360531334,
+ "updated": 1732363376040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p78m",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p78m.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p78m",
+ "ids": ",us6000p78m,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 3.013,
+ "rms": 0.43,
+ "gap": 98,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 64 km WNW of Lae, Papua New Guinea"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [146.4787, -6.4488, 105.227]
+ },
+ "id": "us6000p78m"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "76 km WSW of Nikolski, Alaska",
+ "time": 1732359784210,
+ "updated": 1732481617610,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376218",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376218.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "av",
+ "code": "93376218",
+ "ids": ",av93376218,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.03012,
+ "rms": 0.12,
+ "gap": 298,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 76 km WSW of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-169.977, 52.7981666666667, 8.79]
+ },
+ "id": "av93376218"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "5 km WNW of Borrego Springs, CA",
+ "time": 1732359783930,
+ "updated": 1732457742704,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798703",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798703.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40798703",
+ "ids": ",ci40798703,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 53,
+ "dmin": 0.005893,
+ "rms": 0.21,
+ "gap": 33,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km WNW of Borrego Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4238333, 33.2663333, 4.82]
+ },
+ "id": "ci40798703"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732359104450,
+ "updated": 1732360336024,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089341",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089341.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75089341",
+ "ids": ",nc75089341,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.01277,
+ "rms": 0.01,
+ "gap": 52,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.807334899902, 38.8359985351562, 2.07999992370605]
+ },
+ "id": "nc75089341"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.2,
+ "place": "193 km WSW of Lorengau, Papua New Guinea",
+ "time": 1732358870871,
+ "updated": 1732359844040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p78j",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p78j.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 416,
+ "net": "us",
+ "code": "6000p78j",
+ "ids": ",us6000p78j,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 1.821,
+ "rms": 0.78,
+ "gap": 41,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.2 - 193 km WSW of Lorengau, Papua New Guinea"
+ },
+ "geometry": { "type": "Point", "coordinates": [145.7107, -2.8095, 10] },
+ "id": "us6000p78j"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.97,
+ "place": "11 km ESE of Enumclaw, Washington",
+ "time": 1732358662860,
+ "updated": 1732437670130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061076",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061076.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "uw",
+ "code": "62061076",
+ "ids": ",uw62061076,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.06028,
+ "rms": 0.12,
+ "gap": 108,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 11 km ESE of Enumclaw, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.85416666666667, 47.1585, 9.11]
+ },
+ "id": "uw62061076"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.27,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732358365740,
+ "updated": 1732360168007,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089336",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089336.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089336",
+ "ids": ",nc75089336,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.01567,
+ "rms": 0.2,
+ "gap": 137,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.807998657227, 38.8390007019043, -0.790000021457672]
+ },
+ "id": "nc75089336"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.48,
+ "place": "3 km NNW of The Geysers, CA",
+ "time": 1732358029470,
+ "updated": 1732359135881,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089331",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089331.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75089331",
+ "ids": ",nc75089331,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.007829,
+ "rms": 0.04,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 3 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.769668579102, 38.8014984130859, -0.0599999986588955
+ ]
+ },
+ "id": "nc75089331"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.1,
+ "place": "198 km WSW of Lorengau, Papua New Guinea",
+ "time": 1732357535435,
+ "updated": 1732358579040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p78e",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p78e.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 400,
+ "net": "us",
+ "code": "6000p78e",
+ "ids": ",us6000p78e,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 41,
+ "dmin": 1.867,
+ "rms": 0.53,
+ "gap": 42,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.1 - 198 km WSW of Lorengau, Papua New Guinea"
+ },
+ "geometry": { "type": "Point", "coordinates": [145.6761, -2.8464, 10] },
+ "id": "us6000p78e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.18,
+ "place": "71 km NW of Karluk, Alaska",
+ "time": 1732356296200,
+ "updated": 1732481395510,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376188",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376188.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376188",
+ "ids": ",av93376188,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.02126,
+ "rms": 0.19,
+ "gap": 217,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 71 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.274666666667, 58.0371666666667, 9.31]
+ },
+ "id": "av93376188"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.26,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732355882740,
+ "updated": 1732357636729,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089326",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089326.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089326",
+ "ids": ",nc75089326,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.003983,
+ "rms": 0.02,
+ "gap": 132,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.854164123535, 38.8241653442383, 1.97000002861023]
+ },
+ "id": "nc75089326"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.64,
+ "place": "18 km N of Seeley Lake, Montana",
+ "time": 1732355280420,
+ "updated": 1732461998210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066728",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066728.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "mb",
+ "code": "90066728",
+ "ids": ",mb90066728,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.107,
+ "rms": 0.21,
+ "gap": 81,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 18 km N of Seeley Lake, Montana"
+ },
+ "geometry": { "type": "Point", "coordinates": [-113.455, 47.3455, 5] },
+ "id": "mb90066728"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "109 km S of McCarthy, Alaska",
+ "time": 1732355008466,
+ "updated": 1732355188312,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2lw00m",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2lw00m.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f2lw00m",
+ "ids": ",ak024f2lw00m,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.03,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 109 km S of McCarthy, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-143.0806, 60.4494, 16.9]
+ },
+ "id": "ak024f2lw00m"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.95,
+ "place": "78 km NW of Ninilchik, Alaska",
+ "time": 1732354598160,
+ "updated": 1732480873080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376148",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376148.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376148",
+ "ids": ",av93376148,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03848,
+ "rms": 0.06,
+ "gap": 116,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.0 - 78 km NW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.768833333333, 60.4991666666667, 0.87]
+ },
+ "id": "av93376148"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.69,
+ "place": "4 km W of Cobb, CA",
+ "time": 1732354378190,
+ "updated": 1732355838530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089316",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089316.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "nc",
+ "code": "75089316",
+ "ids": ",nc75089316,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.01202,
+ "rms": 0.01,
+ "gap": 178,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.7 - 4 km W of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.765998840332, 38.8188323974609, 2.26999998092651]
+ },
+ "id": "nc75089316"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.11,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732354253960,
+ "updated": 1732355240463,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089311",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089311.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "nc",
+ "code": "75089311",
+ "ids": ",nc75089311,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.007767,
+ "rms": 0.02,
+ "gap": 97,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.77799987793, 38.792667388916, 1.67999994754791]
+ },
+ "id": "nc75089311"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "34 km SE of Malaga, New Mexico",
+ "time": 1732353602834,
+ "updated": 1732542353102,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xadz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xadz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "tx",
+ "code": "2024xadz",
+ "ids": ",tx2024xadz,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 34 km SE of Malaga, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-103.815, 32.005, 7.42] },
+ "id": "tx2024xadz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "46 km SW of Tatitlek, Alaska",
+ "time": 1732353178601,
+ "updated": 1732353307158,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2lpfj8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2lpfj8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2lpfj8",
+ "ids": ",ak024f2lpfj8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.17,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 46 km SW of Tatitlek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3746, 60.6299, 9.8] },
+ "id": "ak024f2lpfj8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.82,
+ "place": "12 km WSW of Wilkerson, CA",
+ "time": 1732353020910,
+ "updated": 1732579772221,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089306",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089306.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 122,
+ "net": "nc",
+ "code": "75089306",
+ "ids": ",nc75089306,us6000p787,",
+ "sources": ",nc,us,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 51,
+ "dmin": 0.1756,
+ "rms": 0.07,
+ "gap": 40,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.8 - 12 km WSW of Wilkerson, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-118.503, 37.229, 13.58] },
+ "id": "nc75089306"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "15 km NNE of Hermleigh, Texas",
+ "time": 1732352777303,
+ "updated": 1732539577170,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024xadn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024xadn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "tx",
+ "code": "2024xadn",
+ "ids": ",tx2024xadn,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 15 km NNE of Hermleigh, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-100.677, 32.758, 6.8604]
+ },
+ "id": "tx2024xadn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.81,
+ "place": "0 km SW of Santa Isabel, Puerto Rico",
+ "time": 1732352727030,
+ "updated": 1732353875780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466413",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466413.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "pr",
+ "code": "71466413",
+ "ids": ",pr71466413,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.0161,
+ "rms": 0.09,
+ "gap": 147,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.8 - 0 km SW of Santa Isabel, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.4101666666667, 17.9623333333333, 10.43]
+ },
+ "id": "pr71466413"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.06,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732351492230,
+ "updated": 1732480189920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376123",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376123.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376123",
+ "ids": ",av93376123,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.0654,
+ "rms": 0.11,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.277833333333, 61.3058333333333, 1.59]
+ },
+ "id": "av93376123"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.02,
+ "place": "71 km NW of Karluk, Alaska",
+ "time": 1732350935570,
+ "updated": 1732479898550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376103",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376103.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376103",
+ "ids": ",av93376103,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.02158,
+ "rms": 0.1,
+ "gap": 216,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 71 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.2685, 58.041, 7.53] },
+ "id": "av93376103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.4,
+ "place": "23 km ENE of Karakenja, Tajikistan",
+ "time": 1732350783407,
+ "updated": 1732739756501,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/usd00125in",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/usd00125in.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": 5.732,
+ "alert": "green",
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 449,
+ "net": "us",
+ "code": "d00125in",
+ "ids": ",usd00125in,",
+ "sources": ",us,",
+ "types": ",dyfi,ground-failure,losspager,origin,phase-data,shakemap,",
+ "nst": 111,
+ "dmin": 0.182,
+ "rms": 0.82,
+ "gap": 34,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.4 - 23 km ENE of Karakenja, Tajikistan"
+ },
+ "geometry": { "type": "Point", "coordinates": [71.7909, 39.2956, 10] },
+ "id": "usd00125in"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "66 km WNW of Tyonek, Alaska",
+ "time": 1732350534432,
+ "updated": 1732479642290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2l7f2b",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2l7f2b.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ak",
+ "code": "024f2l7f2b",
+ "ids": ",av93376093,ak024f2l7f2b,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.09,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 66 km WNW of Tyonek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2859, 61.2863, 7.3] },
+ "id": "ak024f2l7f2b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "6 km SSW of Knik, Alaska",
+ "time": 1732350271722,
+ "updated": 1732392098268,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2l6ig4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2l6ig4.geojson",
+ "felt": 1,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f2l6ig4",
+ "ids": ",ak024f2l6ig4,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.25,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 6 km SSW of Knik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.7867, 61.4115, 48.1]
+ },
+ "id": "ak024f2l6ig4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "43 km SSE of Denali National Park, Alaska",
+ "time": 1732350252223,
+ "updated": 1732350385632,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2l6gxy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2l6gxy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f2l6gxy",
+ "ids": ",ak024f2l6gxy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.37,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 43 km SSE of Denali National Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.3307, 63.1967, 0] },
+ "id": "ak024f2l6gxy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.08,
+ "place": "69 km SE of King Salmon, Alaska",
+ "time": 1732350107130,
+ "updated": 1732473700440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376073",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376073.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376073",
+ "ids": ",av93376073,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.1516,
+ "rms": 0.15,
+ "gap": 201,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 69 km SE of King Salmon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.740666666667, 58.2888333333333, 7.1]
+ },
+ "id": "av93376073"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.3,
+ "place": "65 km WNW of Tyonek, Alaska",
+ "time": 1732349861645,
+ "updated": 1732473469290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2l5178",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2l5178.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f2l5178",
+ "ids": ",av93376058,ak024f2l5178,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.13,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 65 km WNW of Tyonek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2769, 61.2848, 9] },
+ "id": "ak024f2l5178"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.6,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732349818430,
+ "updated": 1732473218080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376063",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376063.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376063",
+ "ids": ",av93376063,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.06748,
+ "rms": 0.2,
+ "gap": 220,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.3, 61.3166666666667, 3.81]
+ },
+ "id": "av93376063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.49,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732349610100,
+ "updated": 1732472996950,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376053",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376053.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376053",
+ "ids": ",av93376053,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06409,
+ "rms": 0.06,
+ "gap": 119,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.276166666667, 61.3031666666667, 2.37]
+ },
+ "id": "av93376053"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.35,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732349473260,
+ "updated": 1732472771830,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376048",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376048.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93376048",
+ "ids": ",av93376048,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06844,
+ "rms": 0.14,
+ "gap": 141,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.27, 61.3063333333333, 1.55]
+ },
+ "id": "av93376048"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "7 km NNW of Laçın, Azerbaijan",
+ "time": 1732349412669,
+ "updated": 1732350804040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p77p",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p77p.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p77p",
+ "ids": ",us6000p77p,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 47,
+ "dmin": 0.334,
+ "rms": 0.66,
+ "gap": 100,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 7 km NNW of Laçın, Azerbaijan"
+ },
+ "geometry": { "type": "Point", "coordinates": [46.51, 39.6587, 10] },
+ "id": "us6000p77p"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "64 km WNW of Tyonek, Alaska",
+ "time": 1732349367236,
+ "updated": 1732472484440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2l3acz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2l3acz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024f2l3acz",
+ "ids": ",av93376043,ak024f2l3acz,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 64 km WNW of Tyonek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2639, 61.2652, 4.1] },
+ "id": "ak024f2l3acz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.36,
+ "place": "35 km W of Chignik Lake, Alaska",
+ "time": 1732348941380,
+ "updated": 1732471875400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93376028",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93376028.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "av",
+ "code": "93376028",
+ "ids": ",av93376028,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.09238,
+ "rms": 0.15,
+ "gap": 286,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 35 km W of Chignik Lake, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-159.342166666667, 56.2498333333333, 5.4]
+ },
+ "id": "av93376028"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.25999999,
+ "place": "11 km E of Pāhala, Hawaii",
+ "time": 1732348896420,
+ "updated": 1732348999880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538117",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538117.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 79,
+ "net": "hv",
+ "code": "74538117",
+ "ids": ",hv74538117,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.0549,
+ "rms": 0.100000001,
+ "gap": 211,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 11 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.372161865234, 19.1878337860107, 31.2099990844727]
+ },
+ "id": "hv74538117"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "89 km ENE of Ugashik, Alaska",
+ "time": 1732348056924,
+ "updated": 1732348175286,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2kq0po",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2kq0po.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2kq0po",
+ "ids": ",ak024f2kq0po,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.17,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 89 km ENE of Ugashik, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.939, 57.6792, 84.7] },
+ "id": "ak024f2kq0po"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732347771950,
+ "updated": 1732472828250,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798687",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798687.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ci",
+ "code": "40798687",
+ "ids": ",ci40798687,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 82,
+ "dmin": 0.07283,
+ "rms": 0.19,
+ "gap": 30,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 20 km ESE of Anza, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.466, 33.5088333, 6] },
+ "id": "ci40798687"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.15,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732347700070,
+ "updated": 1732349366844,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089291",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089291.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "nc",
+ "code": "75089291",
+ "ids": ",nc75089291,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.01497,
+ "rms": 0.03,
+ "gap": 63,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.811668395996, 38.8383331298828, 0.550000011920929]
+ },
+ "id": "nc75089291"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "86 km NW of Karluk, Alaska",
+ "time": 1732346038645,
+ "updated": 1732471639220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2kis1k",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2kis1k.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "ak",
+ "code": "024f2kis1k",
+ "ids": ",av93375983,ak024f2kis1k,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.18,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 86 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.3777, 58.1747, 1.1] },
+ "id": "ak024f2kis1k"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "56 km S of Whites City, New Mexico",
+ "time": 1732345905109,
+ "updated": 1732539806203,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wzzt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wzzt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024wzzt",
+ "ids": ",tx2024wzzt,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 57,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 56 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.326, 31.669, 6.8689]
+ },
+ "id": "tx2024wzzt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.82000005,
+ "place": "11 km ESE of Pāhala, Hawaii",
+ "time": 1732345572840,
+ "updated": 1732345670170,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538077",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538077.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 51,
+ "net": "hv",
+ "code": "74538077",
+ "ids": ",hv74538077,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.06024,
+ "rms": 0.119999997,
+ "gap": 199,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 11 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.373672485352, 19.1813335418701, 29.8799991607666]
+ },
+ "id": "hv74538077"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.04,
+ "place": "5 km WNW of San Juan Bautista, CA",
+ "time": 1732345321180,
+ "updated": 1732741635928,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089286",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089286.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "nc",
+ "code": "75089286",
+ "ids": ",nc75089286,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.02635,
+ "rms": 0.06,
+ "gap": 93,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 5 km WNW of San Juan Bautista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.589, 36.8581666666667, 5.99]
+ },
+ "id": "nc75089286"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.44,
+ "place": "5 km W of Fuig, Puerto Rico",
+ "time": 1732345065010,
+ "updated": 1732346035230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466403",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466403.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "pr",
+ "code": "71466403",
+ "ids": ",pr71466403,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.05659,
+ "rms": 0.24,
+ "gap": 162,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 5 km W of Fuig, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9673333333333, 17.9813333333333, 7.75]
+ },
+ "id": "pr71466403"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.8,
+ "place": "92 km SSE of Adak, Alaska",
+ "time": 1732344266599,
+ "updated": 1732430702040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p7a7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p7a7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 1.587,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 222,
+ "net": "us",
+ "code": "6000p7a7",
+ "ids": ",ak024f2k3xen,us6000p7a7,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,shakemap,",
+ "nst": 68,
+ "dmin": 0.79,
+ "rms": 0.67,
+ "gap": 216,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 3.8 - 92 km SSE of Adak, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-176.2671, 51.0774, 31.275]
+ },
+ "id": "us6000p7a7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.4,
+ "place": "14 km NE of Valdez, Alaska",
+ "time": 1732342819602,
+ "updated": 1732430968040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2jyrh5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2jyrh5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 89,
+ "net": "ak",
+ "code": "024f2jyrh5",
+ "ids": ",us6000p774,ak024f2jyrh5,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.74,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.4 - 14 km NE of Valdez, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.1546, 61.2166, 20.6]
+ },
+ "id": "ak024f2jyrh5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.44,
+ "place": "2 km WNW of Yauco, Puerto Rico",
+ "time": 1732342271690,
+ "updated": 1732343887380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466398",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466398.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 92,
+ "net": "pr",
+ "code": "71466398",
+ "ids": ",pr71466398,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.06482,
+ "rms": 0.2,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.4 - 2 km WNW of Yauco, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8718333333333, 18.0398333333333, 19.17]
+ },
+ "id": "pr71466398"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2,
+ "place": "34 km NW of Toyah, Texas",
+ "time": 1732341798762,
+ "updated": 1732542782012,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wzxm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wzxm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "tx",
+ "code": "2024wzxm",
+ "ids": ",tx2024wzxm,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 34 km NW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.014, 31.562, 7.6251]
+ },
+ "id": "tx2024wzxm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1500001,
+ "place": "4 km SSW of Pāhala, Hawaii",
+ "time": 1732341659250,
+ "updated": 1732341762040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538072",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538072.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 71,
+ "net": "hv",
+ "code": "74538072",
+ "ids": ",hv74538072,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.03212,
+ "rms": 0.140000001,
+ "gap": 157,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 4 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.49333190918, 19.1681671142578, 31.6499996185303]
+ },
+ "id": "hv74538072"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "220 km E of Levuka, Fiji",
+ "time": 1732340540150,
+ "updated": 1732342407040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p76z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p76z.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p76z",
+ "ids": ",us6000p76z,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 2.376,
+ "rms": 0.5,
+ "gap": 94,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 220 km E of Levuka, Fiji"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-178.6133, -17.8743, 589.285]
+ },
+ "id": "us6000p76z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.41,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732340418430,
+ "updated": 1732470915890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375898",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375898.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375898",
+ "ids": ",av93375898,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.04134,
+ "rms": 0.09,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.254, 58.197, 2.38] },
+ "id": "av93375898"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "26 km W of Anchor Point, Alaska",
+ "time": 1732339736322,
+ "updated": 1732339846835,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2jf4e8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2jf4e8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f2jf4e8",
+ "ids": ",ak024f2jf4e8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.42,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 26 km W of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2919, 59.7497, 60.4]
+ },
+ "id": "ak024f2jf4e8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "9 km NNW of Fayette, Utah",
+ "time": 1732339643720,
+ "updated": 1732548385140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80087001",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80087001.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "uu",
+ "code": "80087001",
+ "ids": ",uu80087001,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.2107,
+ "rms": 0.07,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 9 km NNW of Fayette, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.915666666667, 39.2978333333333, 10.18]
+ },
+ "id": "uu80087001"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "10 km SSW of Idyllwild, CA",
+ "time": 1732339382550,
+ "updated": 1732457775635,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798663",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798663.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40798663",
+ "ids": ",ci40798663,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.06617,
+ "rms": 0.14,
+ "gap": 89,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 10 km SSW of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7496667, 33.6495, 14.14]
+ },
+ "id": "ci40798663"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.61,
+ "place": "14 km NNE of Ashford, Washington",
+ "time": 1732339270760,
+ "updated": 1732434473910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061056",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061056.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "uw",
+ "code": "62061056",
+ "ids": ",uw62061056,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.01646,
+ "rms": 0.07,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 14 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.9295, 46.864333333333335, 10.67]
+ },
+ "id": "uw62061056"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "41 km ESE of Beatty, Nevada",
+ "time": 1732338884783,
+ "updated": 1732380224319,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887875",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887875.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nn",
+ "code": "00887875",
+ "ids": ",nn00887875,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.026,
+ "rms": 0.1261,
+ "gap": 144.95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 41 km ESE of Beatty, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.3069, 36.8246, 4.6] },
+ "id": "nn00887875"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.11,
+ "place": "1 km NNW of Anderson Springs, CA",
+ "time": 1732338309370,
+ "updated": 1732339037648,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089281",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089281.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "nc",
+ "code": "75089281",
+ "ids": ",nc75089281,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 45,
+ "dmin": 0.01601,
+ "rms": 0.08,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 1 km NNW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.700836181641, 38.7841682434082, 3.84999990463257]
+ },
+ "id": "nc75089281"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.26,
+ "place": "33 km E of West Yellowstone, Montana",
+ "time": 1732338234200,
+ "updated": 1732547749660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086996",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086996.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "uu",
+ "code": "80086996",
+ "ids": ",uu80086996,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.03197,
+ "rms": 0.14,
+ "gap": 65,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 33 km E of West Yellowstone, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.679833333333, 44.6236666666667, 4.98]
+ },
+ "id": "uu80086996"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "56 km N of Tobelo, Indonesia",
+ "time": 1732337932448,
+ "updated": 1732338942040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p76u",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p76u.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p76u",
+ "ids": ",us6000p76u,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 1.63,
+ "rms": 0.63,
+ "gap": 170,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 56 km N of Tobelo, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [128.1056, 2.2341, 167.834]
+ },
+ "id": "us6000p76u"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.91,
+ "place": "4 km SSW of Highland Park, CA",
+ "time": 1732337845230,
+ "updated": 1732460039038,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798647",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798647.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "ci",
+ "code": "40798647",
+ "ids": ",ci40798647,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.08018,
+ "rms": 0.1,
+ "gap": 166,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 4 km SSW of Highland Park, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.2108333, 34.0876667, 11.26]
+ },
+ "id": "ci40798647"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.64,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732337785290,
+ "updated": 1732339036647,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089276",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089276.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75089276",
+ "ids": ",nc75089276,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.004826,
+ "rms": 0.08,
+ "gap": 211,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.805168151855, 38.8263320922852, 11.1499996185303]
+ },
+ "id": "nc75089276"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.5,
+ "place": "2 km NE of Homer, Alaska",
+ "time": 1732337245872,
+ "updated": 1732338451040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2ixp1n",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2ixp1n.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 96,
+ "net": "ak",
+ "code": "024f2ixp1n",
+ "ids": ",us6000p76t,ak024f2ixp1n,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.17,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.5 - 2 km NE of Homer, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.5216, 59.6578, 51.6]
+ },
+ "id": "ak024f2ixp1n"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.47,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732337048540,
+ "updated": 1732470388480,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375848",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375848.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375848",
+ "ids": ",av93375848,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.07804,
+ "rms": 0.2,
+ "gap": 127,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.262666666667, 61.3235, -2.33]
+ },
+ "id": "av93375848"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "33 km NNE of Amboy, Washington",
+ "time": 1732336944190,
+ "updated": 1732435385410,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62061051",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62061051.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "uw",
+ "code": "62061051",
+ "ids": ",uw62061051,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.02581,
+ "rms": 0.14,
+ "gap": 86,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 33 km NNE of Amboy, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.3145, 46.19866666666667, 10.64]
+ },
+ "id": "uw62061051"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3499999,
+ "place": "4 km S of Pāhala, Hawaii",
+ "time": 1732336491400,
+ "updated": 1732336593960,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74538032",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74538032.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 85,
+ "net": "hv",
+ "code": "74538032",
+ "ids": ",hv74538032,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.01577,
+ "rms": 0.189999998,
+ "gap": 245,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 4 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.473495483398, 19.1669998168945, 29.8199996948242]
+ },
+ "id": "hv74538032"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "57 km ESE of Farkhār, Afghanistan",
+ "time": 1732336077825,
+ "updated": 1732338191040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p76r",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p76r.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "6000p76r",
+ "ids": ",us6000p76r,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 2.013,
+ "rms": 0.8,
+ "gap": 89,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - 57 km ESE of Farkhār, Afghanistan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [70.4701, 36.4217, 196.379]
+ },
+ "id": "us6000p76r"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.55,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732335324360,
+ "updated": 1732658238358,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089271",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089271.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "nc",
+ "code": "75089271",
+ "ids": ",nc75089271,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.008509,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.777166666667, 38.7918333333333, 1.91]
+ },
+ "id": "nc75089271"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "88 km ESE of Denali Park, Alaska",
+ "time": 1732334494907,
+ "updated": 1732334614808,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2inusy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2inusy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f2inusy",
+ "ids": ",ak024f2inusy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.72,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 88 km ESE of Denali Park, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.1658, 63.5519, 0] },
+ "id": "ak024f2inusy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.56,
+ "place": "65 km WNW of Beluga, Alaska",
+ "time": 1732333654820,
+ "updated": 1732470006420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027354",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027354.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027354",
+ "ids": ",av93027354,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.07058,
+ "rms": 0.13,
+ "gap": 176,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 65 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.256, 61.3163333333333, 4.91]
+ },
+ "id": "av93027354"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732333619250,
+ "updated": 1732469810450,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375803",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375803.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "av",
+ "code": "93375803",
+ "ids": ",av93375803,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.08044,
+ "rms": 0.1,
+ "gap": 128,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.260166666667, 61.3276666666667, -0.48]
+ },
+ "id": "av93375803"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.38,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732333530450,
+ "updated": 1732334969189,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089266",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089266.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "nc",
+ "code": "75089266",
+ "ids": ",nc75089266,",
+ "sources": ",nc,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.005111,
+ "rms": 0.02,
+ "gap": 103,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.781669616699, 38.7916679382324, 3.07999992370605]
+ },
+ "id": "nc75089266"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "Pagan region, Northern Mariana Islands",
+ "time": 1732332351051,
+ "updated": 1732334127040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p761",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p761.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p761",
+ "ids": ",us6000p761,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 61,
+ "dmin": 3.087,
+ "rms": 0.56,
+ "gap": 60,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - Pagan region, Northern Mariana Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [145.545, 18.3296, 345.937]
+ },
+ "id": "us6000p761"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.46,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732330497470,
+ "updated": 1732425846700,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375778",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375778.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375778",
+ "ids": ",av93375778,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.06677,
+ "rms": 0.07,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.2745, 61.3061666666667, 2.09]
+ },
+ "id": "av93375778"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.79,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732330158880,
+ "updated": 1732459402414,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798631",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798631.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40798631",
+ "ids": ",ci40798631,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.07345,
+ "rms": 0.16,
+ "gap": 99,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4603333, 33.5136667, 5.75]
+ },
+ "id": "ci40798631"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "2 km SE of The Geysers, CA",
+ "time": 1732330007340,
+ "updated": 1732331536782,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089251",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089251.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "nc",
+ "code": "75089251",
+ "ids": ",nc75089251,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.01272,
+ "rms": 0.04,
+ "gap": 69,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 2 km SE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.736503601074, 38.7705001831055, 1.00999999046326]
+ },
+ "id": "nc75089251"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.82,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732329802030,
+ "updated": 1732331368761,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089246",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089246.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75089246",
+ "ids": ",nc75089246,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.00359,
+ "rms": 0.07,
+ "gap": 113,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.838165283203, 38.8356666564941, 12.2700004577637]
+ },
+ "id": "nc75089246"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.14,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732328359470,
+ "updated": 1732425570370,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375763",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375763.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375763",
+ "ids": ",av93375763,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.06666,
+ "rms": 0.11,
+ "gap": 140,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.270166666667, 61.3038333333333, 2.2]
+ },
+ "id": "av93375763"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.2,
+ "place": "54 km ENE of Independence, California",
+ "time": 1732328351028,
+ "updated": 1732567478075,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887872",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887872.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nn",
+ "code": "00887872",
+ "ids": ",nn00887872,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.179,
+ "rms": 0.1273,
+ "gap": 240.84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 54 km ENE of Independence, California"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6803, 37.0566, 10.9]
+ },
+ "id": "nn00887872"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.71,
+ "place": "67 km WNW of Beluga, Alaska",
+ "time": 1732328183660,
+ "updated": 1732425344270,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027349",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027349.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027349",
+ "ids": ",av93027349,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.0684,
+ "rms": 0.04,
+ "gap": 241,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 67 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2855, 61.313, 1.93] },
+ "id": "av93027349"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.82,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732328173110,
+ "updated": 1732425188470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375758",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375758.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375758",
+ "ids": ",av93375758,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.06747,
+ "rms": 0.09,
+ "gap": 173,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.277833333333, 61.3086666666667, 1.56]
+ },
+ "id": "av93375758"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.47,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732327864360,
+ "updated": 1732424525470,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375748",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375748.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375748",
+ "ids": ",av93375748,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.0677,
+ "rms": 0.07,
+ "gap": 141,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.273166666667, 61.3068333333333, 2.22]
+ },
+ "id": "av93375748"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "13 km SE of Ninilchik, Alaska",
+ "time": 1732327673233,
+ "updated": 1732327780279,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2hibaz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2hibaz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f2hibaz",
+ "ids": ",ak024f2hibaz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 13 km SE of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.4883, 59.9742, 57.8]
+ },
+ "id": "ak024f2hibaz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -1.24,
+ "place": "79 km NW of Ninilchik, Alaska",
+ "time": 1732327000980,
+ "updated": 1732424038210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027344",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027344.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027344",
+ "ids": ",av93027344,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.0396,
+ "rms": 0.03,
+ "gap": 235,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.2 - 79 km NW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.7755, 60.5075, 3.46]
+ },
+ "id": "av93027344"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.18,
+ "place": "2 km SSW of Pāhala, Hawaii",
+ "time": 1732326755810,
+ "updated": 1732330016840,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537972",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537972.geojson",
+ "felt": 2,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 156,
+ "net": "hv",
+ "code": "74537972",
+ "ids": ",hv74537972,us6000p75w,",
+ "sources": ",hv,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 64,
+ "dmin": 0.03424,
+ "rms": 0.12,
+ "gap": 80,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.2 - 2 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.488333333333, 19.1791666666667, 30.41]
+ },
+ "id": "hv74537972"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732326164790,
+ "updated": 1732327768342,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089236",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089236.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75089236",
+ "ids": ",nc75089236,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 10,
+ "dmin": 0.006069,
+ "rms": 0.01,
+ "gap": 69,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.803665161133, 38.826831817627, 1.83000004291534]
+ },
+ "id": "nc75089236"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.3,
+ "place": "193 km SE of Perryville, Alaska",
+ "time": 1732326071631,
+ "updated": 1732326586040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p75u",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p75u.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 168,
+ "net": "us",
+ "code": "6000p75u",
+ "ids": ",us6000p75u,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 1.904,
+ "rms": 0.51,
+ "gap": 223,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.3 - 193 km SE of Perryville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-156.8718, 54.7554, 10] },
+ "id": "us6000p75u"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "5 km W of Beluga, Alaska",
+ "time": 1732325892405,
+ "updated": 1732326024869,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2h3fqw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2h3fqw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2h3fqw",
+ "ids": ",ak024f2h3fqw,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km W of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.177, 61.139, 74.2] },
+ "id": "ak024f2h3fqw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "15 km NW of Tatitlek, Alaska",
+ "time": 1732325711362,
+ "updated": 1732325868817,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2h2shv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2h2shv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ak",
+ "code": "024f2h2shv",
+ "ids": ",ak024f2h2shv,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 15 km NW of Tatitlek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.8822, 60.9592, 22.8]
+ },
+ "id": "ak024f2h2shv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732325645420,
+ "updated": 1732327035260,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089231",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089231.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089231",
+ "ids": ",nc75089231,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.005838,
+ "rms": 0.01,
+ "gap": 167,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.802665710449, 38.8241653442383, 2.70000004768372]
+ },
+ "id": "nc75089231"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.05,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732323868200,
+ "updated": 1732423485680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027339",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027339.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027339",
+ "ids": ",av93027339,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.03931,
+ "rms": 0.05,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.259, 58.1956666666667, 1.99]
+ },
+ "id": "av93027339"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.28,
+ "place": "84 km NW of Karluk, Alaska",
+ "time": 1732323859940,
+ "updated": 1732423305780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375678",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375678.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375678",
+ "ids": ",av93375678,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.03689,
+ "rms": 0.08,
+ "gap": 133,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 84 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.263666666667, 58.196, 2.88]
+ },
+ "id": "av93375678"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "46 km W of Nanwalek, Alaska",
+ "time": 1732323632088,
+ "updated": 1732380930856,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2gml17",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2gml17.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f2gml17",
+ "ids": ",ak024f2gml17,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 46 km W of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.7387, 59.3682, 73.8]
+ },
+ "id": "ak024f2gml17"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732323396180,
+ "updated": 1732470975512,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798599",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798599.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40798599",
+ "ids": ",ci40798599,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 46,
+ "dmin": 0.08637,
+ "rms": 0.15,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.48, 33.4821667, 14.05]
+ },
+ "id": "ci40798599"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.25,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732323348250,
+ "updated": 1732669768711,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089221",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089221.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089221",
+ "ids": ",nc75089221,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.002602,
+ "rms": 0.03,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.810166666667, 38.826, 0.93]
+ },
+ "id": "nc75089221"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "7 km ENE of Fox, Alaska",
+ "time": 1732323213065,
+ "updated": 1732323573152,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2gl9ha",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2gl9ha.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f2gl9ha",
+ "ids": ",ak024f2gl9ha,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.72,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km ENE of Fox, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.4859, 64.9955, 0] },
+ "id": "ak024f2gl9ha"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.84,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732322847700,
+ "updated": 1732470477215,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690220",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690220.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "37690220",
+ "ids": ",ci37690220,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.1109,
+ "rms": 0.3,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4711667, 33.4803333, 16.88]
+ },
+ "id": "ci37690220"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.56,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732322843380,
+ "updated": 1732465859287,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798591",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798591.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40798591",
+ "ids": ",ci40798591,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.08858,
+ "rms": 0.16,
+ "gap": 48,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4751667, 33.482, 14.47]
+ },
+ "id": "ci40798591"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.42,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732322820730,
+ "updated": 1732466999923,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690204",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690204.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "ci",
+ "code": "37690204",
+ "ids": ",ci37690204,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.08808,
+ "rms": 0.18,
+ "gap": 91,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4716667, 33.4845, 15.35]
+ },
+ "id": "ci37690204"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.92,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732322808240,
+ "updated": 1732743098712,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690212",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690212.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "ci",
+ "code": "37690212",
+ "ids": ",ci37690212,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.08576,
+ "rms": 0.15,
+ "gap": 102,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4716667, 33.4873333, 15.35]
+ },
+ "id": "ci37690212"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.01,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732322803640,
+ "updated": 1732743221693,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37690636",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37690636.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "ci",
+ "code": "37690636",
+ "ids": ",ci37690636,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.08731,
+ "rms": 0.12,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4751667, 33.4835, 14.09]
+ },
+ "id": "ci37690636"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.67,
+ "place": "15 km W of Hebgen Lake Estates, Montana",
+ "time": 1732321978720,
+ "updated": 1732553112950,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066793",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066793.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "mb",
+ "code": "90066793",
+ "ids": ",mb90066793,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.05987,
+ "rms": 0.17,
+ "gap": 93,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 15 km W of Hebgen Lake Estates, Montana"
+ },
+ "geometry": { "type": "Point", "coordinates": [-111.39, 44.778, 4.95] },
+ "id": "mb90066793"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.01,
+ "place": "13 km ENE of Pāhala, Hawaii",
+ "time": 1732321951710,
+ "updated": 1732322122580,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537927",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537927.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "hv",
+ "code": "74537927",
+ "ids": ",hv74537927,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 0.03598,
+ "rms": 0.140000001,
+ "gap": 144,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 13 km ENE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.363006591797, 19.2528324127197, 30.3700008392334]
+ },
+ "id": "hv74537927"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.93,
+ "place": "17 km SSE of Waikoloa, Hawaii",
+ "time": 1732321485450,
+ "updated": 1732321657940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537922",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537922.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "hv",
+ "code": "74537922",
+ "ids": ",hv74537922,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 0.1176,
+ "rms": 0.159999996,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 17 km SSE of Waikoloa, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.754333496094, 19.7821674346924, 21.8500003814697]
+ },
+ "id": "hv74537922"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "74 km W of Petersville, Alaska",
+ "time": 1732321347342,
+ "updated": 1732322018297,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f2gem8s",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f2gem8s.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f2gem8s",
+ "ids": ",ak024f2gem8s,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.87,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 74 km W of Petersville, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.2005, 62.5767, 6.1] },
+ "id": "ak024f2gem8s"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "3 km SE of The Geysers, CA",
+ "time": 1732321267840,
+ "updated": 1732566360336,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089216",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089216.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "nc",
+ "code": "75089216",
+ "ids": ",nc75089216,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.002847,
+ "rms": 0.03,
+ "gap": 160,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.3 - 3 km SE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.727333333333, 38.7595, 2.39]
+ },
+ "id": "nc75089216"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.43,
+ "place": "5 km WNW of Round Valley, CA",
+ "time": 1732320524350,
+ "updated": 1732564170420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089211",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089211.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "nc",
+ "code": "75089211",
+ "ids": ",nc75089211,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.1007,
+ "rms": 0.05,
+ "gap": 83,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 5 km WNW of Round Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.6455, 37.4298333333333, 7.74]
+ },
+ "id": "nc75089211"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "5 km NNW of The Geysers, CA",
+ "time": 1732320454940,
+ "updated": 1732321636622,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089206",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089206.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75089206",
+ "ids": ",nc75089206,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.01563,
+ "rms": 0.04,
+ "gap": 200,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 5 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.77799987793, 38.8158340454102, 21.2000007629395]
+ },
+ "id": "nc75089206"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.09,
+ "place": "2 km SSW of Pāhala, Hawaii",
+ "time": 1732320164200,
+ "updated": 1732321959138,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537912",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537912.geojson",
+ "felt": 6,
+ "cdi": 2.6,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 148,
+ "net": "hv",
+ "code": "74537912",
+ "ids": ",hv74537912,us6000p75i,",
+ "sources": ",hv,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 49,
+ "dmin": 0.03622,
+ "rms": 0.1,
+ "gap": 73,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.1 - 2 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.4865, 19.1835, 30.42]
+ },
+ "id": "hv74537912"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "22 km SSE of Caliente, Nevada",
+ "time": 1732319853925,
+ "updated": 1732327456274,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887870",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887870.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "nn",
+ "code": "00887870",
+ "ids": ",nn00887870,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.432,
+ "rms": 0.1486,
+ "gap": 160.21999999999997,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 22 km SSE of Caliente, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-114.3993, 37.4352, 4.3] },
+ "id": "nn00887870"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.09,
+ "place": "3 km SE of The Geysers, CA",
+ "time": 1732318185940,
+ "updated": 1732319839409,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089196",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089196.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089196",
+ "ids": ",nc75089196,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.003359,
+ "rms": 0.03,
+ "gap": 110,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 3 km SE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.727836608887, 38.7591667175293, 2.47000002861023]
+ },
+ "id": "nc75089196"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.78,
+ "place": "3 km SE of The Geysers, CA",
+ "time": 1732318141870,
+ "updated": 1732658070341,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089191",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089191.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089191",
+ "ids": ",nc75089191,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.0004882,
+ "rms": 0.02,
+ "gap": 89,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 3 km SE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.725166666667, 38.7611666666667, 2.4]
+ },
+ "id": "nc75089191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.51,
+ "place": "60 km WNW of Tyonek, Alaska",
+ "time": 1732317901600,
+ "updated": 1732348791220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375618",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375618.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375618",
+ "ids": ",av93375618,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.02102,
+ "rms": 0.17,
+ "gap": 100,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 60 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.196, 61.2585, 18.54]
+ },
+ "id": "av93375618"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "3 km E of Tyonek, Alaska",
+ "time": 1732317719170,
+ "updated": 1732317844898,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f16k2zx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f16k2zx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f16k2zx",
+ "ids": ",ak024f16k2zx,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.26,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 3 km E of Tyonek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.0672, 61.066, 16.9] },
+ "id": "ak024f16k2zx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.43,
+ "place": "1 km NE of The Geysers, CA",
+ "time": 1732316580930,
+ "updated": 1732317738158,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089186",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089186.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "nc",
+ "code": "75089186",
+ "ids": ",nc75089186,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 24,
+ "dmin": 0.009178,
+ "rms": 0.04,
+ "gap": 85,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 1 km NE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.74649810791, 38.7883338928223, 1.42999994754791]
+ },
+ "id": "nc75089186"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "27 km WSW of Susitna, Alaska",
+ "time": 1732315879178,
+ "updated": 1732315989426,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f164zsd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f164zsd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f164zsd",
+ "ids": ",ak024f164zsd,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.53,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 27 km WSW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.9559, 61.4213, 71.5]
+ },
+ "id": "ak024f164zsd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.34,
+ "place": "3 km SSW of Indios, Puerto Rico",
+ "time": 1732315862250,
+ "updated": 1732316434370,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466393",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466393.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 84,
+ "net": "pr",
+ "code": "71466393",
+ "ids": ",pr71466393,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04639,
+ "rms": 0.07,
+ "gap": 202,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 3 km SSW of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8316666666667, 17.965, 13.31]
+ },
+ "id": "pr71466393"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "55 km NNE of Chase, Alaska",
+ "time": 1732315780995,
+ "updated": 1732315905357,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f164m1f",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f164m1f.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f164m1f",
+ "ids": ",ak024f164m1f,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.45,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 55 km NNE of Chase, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.7603, 62.9212, 81.8]
+ },
+ "id": "ak024f164m1f"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.15,
+ "place": "29 km SE of Virginia City, Montana",
+ "time": 1732314919960,
+ "updated": 1732552711100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066788",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066788.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 20,
+ "net": "mb",
+ "code": "90066788",
+ "ids": ",mb90066788,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.1095,
+ "rms": 0.09,
+ "gap": 177,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.2 Quarry Blast - 29 km SE of Virginia City, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.722, 45.0801666666667, -2]
+ },
+ "id": "mb90066788"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.44,
+ "place": "87 km NNW of Karluk, Alaska",
+ "time": 1732314696680,
+ "updated": 1732348032440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375578",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375578.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375578",
+ "ids": ",av93375578,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.03937,
+ "rms": 0.11,
+ "gap": 143,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 87 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.988666666667, 58.2971666666667, 2.48]
+ },
+ "id": "av93375578"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75,
+ "place": "6 km N of Malibu, CA",
+ "time": 1732314361680,
+ "updated": 1732324740159,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798535",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798535.geojson",
+ "felt": 6,
+ "cdi": 3.1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "ci",
+ "code": "40798535",
+ "ids": ",ci40798535,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.02684,
+ "rms": 0.19,
+ "gap": 95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km N of Malibu, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8066667, 34.054, 11.32]
+ },
+ "id": "ci40798535"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "51 km ESE of Beatty, Nevada",
+ "time": 1732314338600,
+ "updated": 1732340462943,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887869",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887869.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00887869",
+ "ids": ",nn00887869,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.02,
+ "rms": 0.0758,
+ "gap": 154.54999999999998,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 51 km ESE of Beatty, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.2328, 36.7158, 4.8] },
+ "id": "nn00887869"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.51,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732313913520,
+ "updated": 1732318284111,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798527",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798527.geojson",
+ "felt": 0,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ci",
+ "code": "40798527",
+ "ids": ",ci40798527,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 55,
+ "dmin": 0.07279,
+ "rms": 0.18,
+ "gap": 28,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4636667, 33.5111667, 5.05]
+ },
+ "id": "ci40798527"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.77,
+ "place": "6 km N of Malibu, CA",
+ "time": 1732313754170,
+ "updated": 1732788686607,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798519",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798519.geojson",
+ "felt": 1177,
+ "cdi": 3.8,
+ "mmi": 3.437,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 599,
+ "net": "ci",
+ "code": "40798519",
+ "ids": ",ci40798519,us6000p758,",
+ "sources": ",ci,us,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,shakemap,",
+ "nst": 84,
+ "dmin": 0.02869,
+ "rms": 0.22,
+ "gap": 93,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.8 - 6 km N of Malibu, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8065, 34.0586667, 10.59]
+ },
+ "id": "ci40798519"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "104 km WSW of Gorontalo, Indonesia",
+ "time": 1732312761313,
+ "updated": 1732313679040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p757",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p757.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p757",
+ "ids": ",us6000p757,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 1.479,
+ "rms": 0.63,
+ "gap": 60,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 104 km WSW of Gorontalo, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [122.1504, 0.3096, 145.14]
+ },
+ "id": "us6000p757"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "10 km SSW of Ackerly, Texas",
+ "time": 1732312709566,
+ "updated": 1732551596108,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wzho",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wzho.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "tx",
+ "code": "2024wzho",
+ "ids": ",tx2024wzho,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 10 km SSW of Ackerly, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-101.74, 32.434, 6.7139] },
+ "id": "tx2024wzho"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.88,
+ "place": "6 km S of Volcano, Hawaii",
+ "time": 1732312617690,
+ "updated": 1732313574930,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537802",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537802.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "hv",
+ "code": "74537802",
+ "ids": ",hv74537802,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 38,
+ "dmin": 0.01037,
+ "rms": 0.11,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.240333333333, 19.386, 39.1]
+ },
+ "id": "hv74537802"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.54,
+ "place": "67 km WNW of Beluga, Alaska",
+ "time": 1732312602790,
+ "updated": 1732347299030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375553",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375553.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "av",
+ "code": "93375553",
+ "ids": ",av93375553,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.0782,
+ "rms": 0.1,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 67 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.288, 61.3256666666667, 0.53]
+ },
+ "id": "av93375553"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "48 km W of Mentone, Texas",
+ "time": 1732312570070,
+ "updated": 1732540730300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wzhk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wzhk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "tx",
+ "code": "2024wzhk",
+ "ids": ",tx2024wzhk,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 48 km W of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.114, 31.698, 7.2791]
+ },
+ "id": "tx2024wzhk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.74,
+ "place": "8 km NNE of Cabazon, CA",
+ "time": 1732312438710,
+ "updated": 1732314883670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798503",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798503.geojson",
+ "felt": 0,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40798503",
+ "ids": ",ci40798503,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.06498,
+ "rms": 0.1,
+ "gap": 95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 8 km NNE of Cabazon, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7611667, 33.9828333, 12.77]
+ },
+ "id": "ci40798503"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.4,
+ "place": "50 km W of Anchor Point, Alaska",
+ "time": 1732312378213,
+ "updated": 1732317095040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f15jutw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f15jutw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 178,
+ "net": "ak",
+ "code": "024f15jutw",
+ "ids": ",us6000p755,ak024f15jutw,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.6,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.4 - 50 km W of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.7273, 59.7448, 83.3]
+ },
+ "id": "ak024f15jutw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.72,
+ "place": "10 km NNE of Cooke City, Montana",
+ "time": 1732312273950,
+ "updated": 1732313339420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086986",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086986.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 46,
+ "net": "uu",
+ "code": "80086986",
+ "ids": ",uu80086986,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.1291,
+ "rms": 0.13,
+ "gap": 155,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 10 km NNE of Cooke City, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-109.902166666667, 45.1126666666667, 15.91]
+ },
+ "id": "uu80086986"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "34 km W of Fort Stockton, Texas",
+ "time": 1732311511842,
+ "updated": 1732550867034,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wzgw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wzgw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024wzgw",
+ "ids": ",tx2024wzgw,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 77,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 34 km W of Fort Stockton, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.235, 30.934, 2.9724]
+ },
+ "id": "tx2024wzgw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "7 km S of Idyllwild, CA",
+ "time": 1732310760520,
+ "updated": 1732311376129,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798479",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798479.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "ci",
+ "code": "40798479",
+ "ids": ",ci40798479,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.03407,
+ "rms": 0.16,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km S of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7313333, 33.6801667, 15.78]
+ },
+ "id": "ci40798479"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "7 km S of Idyllwild, CA",
+ "time": 1732310760100,
+ "updated": 1732311664676,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37689892",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37689892.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "37689892",
+ "ids": ",ci37689892,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.0389,
+ "rms": 0.09,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km S of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7276667, 33.6738333, 15.05]
+ },
+ "id": "ci37689892"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732310520960,
+ "updated": 1732311438423,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089166",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089166.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75089166",
+ "ids": ",nc75089166,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.01049,
+ "rms": 0.02,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.821334838867, 38.8176651000977, 2.59999990463257]
+ },
+ "id": "nc75089166"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.41,
+ "place": "12 km SSW of Salton City, CA",
+ "time": 1732310220600,
+ "updated": 1732312085290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798471",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798471.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "ci",
+ "code": "40798471",
+ "ids": ",ci40798471,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 48,
+ "dmin": 0.02843,
+ "rms": 0.16,
+ "gap": 49,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 12 km SSW of Salton City, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116, 33.195, 7.92] },
+ "id": "ci40798471"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "23 km N of Ridgecrest, CA",
+ "time": 1732310157740,
+ "updated": 1732312303998,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798463",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798463.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40798463",
+ "ids": ",ci40798463,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.0513,
+ "rms": 0.11,
+ "gap": 82,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 23 km N of Ridgecrest, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6583333, 35.8295, 7.71]
+ },
+ "id": "ci40798463"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.71,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732310073720,
+ "updated": 1732346424970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375528",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375528.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "av",
+ "code": "93375528",
+ "ids": ",av93375528,ak024f15bntu,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.09198,
+ "rms": 0.15,
+ "gap": 135,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.286666666667, 61.341, 1.69]
+ },
+ "id": "av93375528"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.14,
+ "place": "68 km WNW of Beluga, Alaska",
+ "time": 1732310009000,
+ "updated": 1732346007770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375523",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375523.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375523",
+ "ids": ",av93375523,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.08415,
+ "rms": 0.11,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 68 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.291166666667, 61.3333333333333, 3.38]
+ },
+ "id": "av93375523"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.68,
+ "place": "18 km ESE of Anza, CA",
+ "time": 1732309179400,
+ "updated": 1732315865266,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798455",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798455.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "ci",
+ "code": "40798455",
+ "ids": ",ci40798455,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.0678,
+ "rms": 0.14,
+ "gap": 94,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 18 km ESE of Anza, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.494, 33.497, 13.46] },
+ "id": "ci40798455"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "52 km SW of Alberto Oviedo Mota, B.C., MX",
+ "time": 1732309169530,
+ "updated": 1732316702874,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37689908",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37689908.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ci",
+ "code": "37689908",
+ "ids": ",ci37689908,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.1897,
+ "rms": 0.13,
+ "gap": 94,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 52 km SW of Alberto Oviedo Mota, B.C., MX"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.5388333, 31.8836667, 4.78]
+ },
+ "id": "ci37689908"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.00999999,
+ "place": "18 km SE of Pāhala, Hawaii",
+ "time": 1732309061050,
+ "updated": 1732309167540,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537757",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537757.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 62,
+ "net": "hv",
+ "code": "74537757",
+ "ids": ",hv74537757,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.1218,
+ "rms": 0.200000003,
+ "gap": 228,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.0 - 18 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.36149597168, 19.0790004730225, 32.5999984741211]
+ },
+ "id": "hv74537757"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.38,
+ "place": "24 km WNW of Hebgen Lake Estates, Montana",
+ "time": 1732308814220,
+ "updated": 1732310592940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066638",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066638.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 29,
+ "net": "mb",
+ "code": "90066638",
+ "ids": ",mb90066638,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.03769,
+ "rms": 0.16,
+ "gap": 51,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 24 km WNW of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.480666666667, 44.8416666666667, 12.67]
+ },
+ "id": "mb90066638"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.74000001,
+ "place": "12 km ESE of Pāhala, Hawaii",
+ "time": 1732308495150,
+ "updated": 1732308625680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537747",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537747.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "hv",
+ "code": "74537747",
+ "ids": ",hv74537747,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.08179,
+ "rms": 0.109999999,
+ "gap": 222,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 12 km ESE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.376159667969, 19.1459999084473, 28.7199993133545]
+ },
+ "id": "hv74537747"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "59 km N of Petersville, Alaska",
+ "time": 1732308490481,
+ "updated": 1732308641233,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f14xgrc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f14xgrc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f14xgrc",
+ "ids": ",ak024f14xgrc,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 59 km N of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.8296, 63.0282, 107.5]
+ },
+ "id": "ak024f14xgrc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.49,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732308265840,
+ "updated": 1732345188620,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375508",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375508.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375508",
+ "ids": ",av93375508,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.0423,
+ "rms": 0.13,
+ "gap": 190,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.237333333333, 61.2798333333333, 3.74]
+ },
+ "id": "av93375508"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "5 km WSW of Nanwalek, Alaska",
+ "time": 1732307766453,
+ "updated": 1732307908975,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f14uvut",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f14uvut.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f14uvut",
+ "ids": ",ak024f14uvut,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.4,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 5 km WSW of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.0083, 59.3364, 63.3]
+ },
+ "id": "ak024f14uvut"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "2 km SE of Home Gardens, CA",
+ "time": 1732307425040,
+ "updated": 1732310583852,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798439",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798439.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "ci",
+ "code": "40798439",
+ "ids": ",ci40798439,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 35,
+ "dmin": 0.04966,
+ "rms": 0.24,
+ "gap": 63,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.3 Quarry Blast - 2 km SE of Home Gardens, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5021667, 33.8676667, -0.52]
+ },
+ "id": "ci40798439"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.92,
+ "place": "8 km NNE of Pāhala, Hawaii",
+ "time": 1732307331330,
+ "updated": 1732307506060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537717",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537717.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "hv",
+ "code": "74537717",
+ "ids": ",hv74537717,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 54,
+ "dmin": 0.05039,
+ "rms": 0.119999997,
+ "gap": 61,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 8 km NNE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.43766784668, 19.2708339691162, 32.2599983215332]
+ },
+ "id": "hv74537717"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "10 km NW of Shiner, Texas",
+ "time": 1732307191553,
+ "updated": 1732544798437,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wzem",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wzem.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "tx",
+ "code": "2024wzem",
+ "ids": ",tx2024wzem,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1,
+ "rms": 0.3,
+ "gap": 95,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 10 km NW of Shiner, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-97.235, 29.503, 4.4189] },
+ "id": "tx2024wzem"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.75,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732306983430,
+ "updated": 1732308137036,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089156",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089156.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "nc",
+ "code": "75089156",
+ "ids": ",nc75089156,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.008468,
+ "rms": 0.02,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.800163269043, 38.826831817627, 2.69000005722046]
+ },
+ "id": "nc75089156"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.36,
+ "place": "12 km WSW of Hardtner, Kansas",
+ "time": 1732306969189,
+ "updated": 1732542845165,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024wzei",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024wzei.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ok",
+ "code": "2024wzei",
+ "ids": ",ok2024wzei,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.3707272507,
+ "rms": 0.12,
+ "gap": 168,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 12 km WSW of Hardtner, Kansas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-98.78833333, 36.9875, 22.18]
+ },
+ "id": "ok2024wzei"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.92,
+ "place": "4 km NNW of The Geysers, CA",
+ "time": 1732306568860,
+ "updated": 1732307538969,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089151.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75089151",
+ "ids": ",nc75089151,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.008595,
+ "rms": 0.02,
+ "gap": 211,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 4 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779998779297, 38.8046684265137, 1.3400000333786]
+ },
+ "id": "nc75089151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.41,
+ "place": "87 km NW of Karluk, Alaska",
+ "time": 1732306525320,
+ "updated": 1732344625970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375463",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375463.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375463",
+ "ids": ",av93375463,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.05149,
+ "rms": 0.11,
+ "gap": 107,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 87 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.436166666667, 58.1581666666667, 24.33]
+ },
+ "id": "av93375463"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "5 km W of Happy Valley, Alaska",
+ "time": 1732306497673,
+ "updated": 1732306600498,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f14qa1z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f14qa1z.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f14qa1z",
+ "ids": ",ak024f14qa1z,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.19,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 5 km W of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.8318, 59.9523, 64.8]
+ },
+ "id": "ak024f14qa1z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "7 km WNW of Cobb, CA",
+ "time": 1732305920280,
+ "updated": 1732306936897,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089146",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089146.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75089146",
+ "ids": ",nc75089146,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.008912,
+ "rms": 0.01,
+ "gap": 61,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 7 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.801330566406, 38.8359985351562, 2.19000005722046]
+ },
+ "id": "nc75089146"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.05,
+ "place": "2 km ESE of Home Gardens, CA",
+ "time": 1732305889650,
+ "updated": 1732309567232,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798423",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798423.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "ci",
+ "code": "40798423",
+ "ids": ",ci40798423,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.04944,
+ "rms": 0.31,
+ "gap": 74,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.1 Quarry Blast - 2 km ESE of Home Gardens, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5021667, 33.8691667, -0.51]
+ },
+ "id": "ci40798423"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.44,
+ "place": "6 km ENE of Butte, Montana",
+ "time": 1732305698620,
+ "updated": 1732309940230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066633",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066633.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "mb",
+ "code": "90066633",
+ "ids": ",mb90066633,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.07054,
+ "rms": 0.16,
+ "gap": 145,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.4 Quarry Blast - 6 km ENE of Butte, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.456333333333, 46.0201666666667, -2]
+ },
+ "id": "mb90066633"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.58,
+ "place": "14 km NNE of Ashford, Washington",
+ "time": 1732305662560,
+ "updated": 1732561976650,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060981",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060981.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "uw",
+ "code": "62060981",
+ "ids": ",uw62060981,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.01142,
+ "rms": 0.12,
+ "gap": 134,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 14 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.946, 46.87716666666667, 9.55]
+ },
+ "id": "uw62060981"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.4,
+ "place": "85 km NW of Karluk, Alaska",
+ "time": 1732305594020,
+ "updated": 1732343485640,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375448",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375448.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375448",
+ "ids": ",av93375448,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.04292,
+ "rms": 0.09,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 85 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.347833333333, 58.1685, 1.42]
+ },
+ "id": "av93375448"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "54 km W of Anchor Point, Alaska",
+ "time": 1732304079341,
+ "updated": 1732304230526,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f1493cu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f1493cu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f1493cu",
+ "ids": ",ak024f1493cu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 54 km W of Anchor Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.8067, 59.7983, 74.9]
+ },
+ "id": "ak024f1493cu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.99,
+ "place": "22 km SSE of Ocotillo, CA",
+ "time": 1732303813350,
+ "updated": 1732310176226,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798407",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798407.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 61,
+ "net": "ci",
+ "code": "40798407",
+ "ids": ",ci40798407,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.0887,
+ "rms": 0.17,
+ "gap": 62,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 22 km SSE of Ocotillo, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.8655, 32.5726667, 9.89]
+ },
+ "id": "ci40798407"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "40 km NNW of Beluga, Alaska",
+ "time": 1732303689658,
+ "updated": 1732341672090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f147qrp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f147qrp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ak",
+ "code": "024f147qrp",
+ "ids": ",av93375413,ak024f147qrp,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.58,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 40 km NNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-151.4033, 61.4695, 22] },
+ "id": "ak024f147qrp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.64,
+ "place": "7 km NNE of Cabazon, CA",
+ "time": 1732303567680,
+ "updated": 1732668737115,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798399",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798399.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "ci",
+ "code": "40798399",
+ "ids": ",ci40798399,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 52,
+ "dmin": 0.06664,
+ "rms": 0.1,
+ "gap": 29,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 7 km NNE of Cabazon, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.7625, 33.98, 12.97] },
+ "id": "ci40798399"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.67,
+ "place": "60 km WNW of Tyonek, Alaska",
+ "time": 1732303554060,
+ "updated": 1732340612060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375408",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375408.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375408",
+ "ids": ",av93375408,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.02036,
+ "rms": 0.13,
+ "gap": 101,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 60 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.196, 61.2608333333333, 20.93]
+ },
+ "id": "av93375408"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.44,
+ "place": "7 km NNE of Cabazon, CA",
+ "time": 1732303551890,
+ "updated": 1732309000050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798391",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798391.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "ci",
+ "code": "40798391",
+ "ids": ",ci40798391,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 39,
+ "dmin": 0.06441,
+ "rms": 0.1,
+ "gap": 42,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km NNE of Cabazon, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7661667, 33.9806667, 12.12]
+ },
+ "id": "ci40798391"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.18,
+ "place": "7 km NNE of Cabazon, CA",
+ "time": 1732303520920,
+ "updated": 1732308669777,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798383",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798383.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "ci",
+ "code": "40798383",
+ "ids": ",ci40798383,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 45,
+ "dmin": 0.06405,
+ "rms": 0.11,
+ "gap": 40,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 7 km NNE of Cabazon, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7666667, 33.9808333, 11.89]
+ },
+ "id": "ci40798383"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.93,
+ "place": "5 km WNW of Cobb, CA",
+ "time": 1732303450690,
+ "updated": 1732304536627,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089131",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089131.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75089131",
+ "ids": ",nc75089131,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.00507,
+ "rms": 0.02,
+ "gap": 174,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.774169921875, 38.837833404541, 1.21000003814697]
+ },
+ "id": "nc75089131"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.22,
+ "place": "5 km NW of Fontana, CA",
+ "time": 1732303336240,
+ "updated": 1732668730823,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798375",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798375.geojson",
+ "felt": 30,
+ "cdi": 3.6,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 87,
+ "net": "ci",
+ "code": "40798375",
+ "ids": ",ci40798375,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 112,
+ "dmin": 0.03798,
+ "rms": 0.21,
+ "gap": 15,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 5 km NW of Fontana, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.496, 34.134, 2.52] },
+ "id": "ci40798375"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "20 km E of Anza, CA",
+ "time": 1732302878320,
+ "updated": 1732312412378,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798367",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798367.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40798367",
+ "ids": ",ci40798367,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.06923,
+ "rms": 0.1,
+ "gap": 185,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 20 km E of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4615, 33.5196667, 6.39]
+ },
+ "id": "ci40798367"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.53,
+ "place": "1 km NNE of Fern Forest, Hawaii",
+ "time": 1732302878230,
+ "updated": 1732312705300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537632",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537632.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "hv",
+ "code": "74537632",
+ "ids": ",hv74537632,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.08943,
+ "rms": 0.11,
+ "gap": 209,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 1 km NNE of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.131166666667, 19.4805, 1.49]
+ },
+ "id": "hv74537632"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.49,
+ "place": "64 km ENE of Pedro Bay, Alaska",
+ "time": 1732302733330,
+ "updated": 1732340149820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375398",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375398.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375398",
+ "ids": ",av93375398,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01768,
+ "rms": 0.09,
+ "gap": 126,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 64 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.067333333333, 60.0398333333333, 0.59]
+ },
+ "id": "av93375398"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "5 km SE of Califon, New Jersey",
+ "time": 1732302485717,
+ "updated": 1732330355040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p75z",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p75z.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "us",
+ "code": "6000p75z",
+ "ids": ",us6000p75z,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.021,
+ "rms": 0.1,
+ "gap": 73,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 5 km SE of Califon, New Jersey"
+ },
+ "geometry": { "type": "Point", "coordinates": [-74.778, 40.6886, 6.043] },
+ "id": "us6000p75z"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.26,
+ "place": "71 km NE of Nikolski, Alaska",
+ "time": 1732302467060,
+ "updated": 1732342717100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027329",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027329.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027329",
+ "ids": ",av93027329,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02,
+ "rms": 0.15,
+ "gap": 190,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 71 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.072833333333, 53.3738333333333, 7.29]
+ },
+ "id": "av93027329"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "75 km SE of King Cove, Alaska",
+ "time": 1732302455124,
+ "updated": 1732315587722,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f1438p6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f1438p6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f1438p6",
+ "ids": ",ak024f1438p6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.71,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 75 km SE of King Cove, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-161.6024, 54.5181, 25.6]
+ },
+ "id": "ak024f1438p6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.55,
+ "place": "84 km NNW of Karluk, Alaska",
+ "time": 1732302326590,
+ "updated": 1732342360360,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027324",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027324.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027324",
+ "ids": ",av93027324,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.05829,
+ "rms": 0.12,
+ "gap": 116,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 84 km NNW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.1025, 58.242, 5.91] },
+ "id": "av93027324"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.27,
+ "place": "33 km NNE of Amboy, Washington",
+ "time": 1732302121070,
+ "updated": 1732308102490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060961",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060961.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "uw",
+ "code": "62060961",
+ "ids": ",uw62060961,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.01962,
+ "rms": 0.15,
+ "gap": 88,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 33 km NNE of Amboy, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.32333333333334, 46.197833333333335, 12.82]
+ },
+ "id": "uw62060961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.51,
+ "place": "8 km WNW of Cobb, CA",
+ "time": 1732301128760,
+ "updated": 1732302570387,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089121",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089121.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "nc",
+ "code": "75089121",
+ "ids": ",nc75089121,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.01585,
+ "rms": 0.03,
+ "gap": 58,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 8 km WNW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.81600189209, 38.8341674804688, 1.49000000953674]
+ },
+ "id": "nc75089121"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.2,
+ "place": "Izu Islands, Japan region",
+ "time": 1732300827897,
+ "updated": 1732314333040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p746",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p746.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 271,
+ "net": "us",
+ "code": "6000p746",
+ "ids": ",us6000p746,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 1.476,
+ "rms": 0.41,
+ "gap": 131,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.2 - Izu Islands, Japan region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [140.8337, 31.9135, 57.14]
+ },
+ "id": "us6000p746"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.29,
+ "place": "10 km NNW of Idyllwild, CA",
+ "time": 1732299299210,
+ "updated": 1732308409229,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798311",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798311.geojson",
+ "felt": 1,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40798311",
+ "ids": ",ci40798311,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 43,
+ "dmin": 0.03699,
+ "rms": 0.13,
+ "gap": 37,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 10 km NNW of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7545, 33.8238333, 15.58]
+ },
+ "id": "ci40798311"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.66,
+ "place": "10 km E of Piru, CA",
+ "time": 1732298489730,
+ "updated": 1732308029990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798303",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798303.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 42,
+ "net": "ci",
+ "code": "40798303",
+ "ids": ",ci40798303,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 40,
+ "dmin": 0.03037,
+ "rms": 0.22,
+ "gap": 51,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 10 km E of Piru, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.682, 34.3986667, 4.28]
+ },
+ "id": "ci40798303"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "60 km NNE of Petersville, Alaska",
+ "time": 1732298343087,
+ "updated": 1732298472973,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f137i90",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f137i90.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f137i90",
+ "ids": ",ak024f137i90,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.28,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 60 km NNE of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4277, 63.015, 105.4]
+ },
+ "id": "ak024f137i90"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "53 km SE of Kokhanok, Alaska",
+ "time": 1732297958510,
+ "updated": 1732298038498,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f1362yz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f1362yz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f1362yz",
+ "ids": ",ak024f1362yz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.13,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 53 km SE of Kokhanok, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.1421, 59.0872, 113.9]
+ },
+ "id": "ak024f1362yz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.88,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732297787000,
+ "updated": 1732299138005,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089111",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089111.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "nc",
+ "code": "75089111",
+ "ids": ",nc75089111,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.005433,
+ "rms": 0.01,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.803497314453, 38.8251647949219, 2.79999995231628]
+ },
+ "id": "nc75089111"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.52,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732297780480,
+ "updated": 1732298969985,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089106",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089106.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "nc",
+ "code": "75089106",
+ "ids": ",nc75089106,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.005551,
+ "rms": 0.01,
+ "gap": 137,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.803497314453, 38.8255004882812, 3.40000009536743]
+ },
+ "id": "nc75089106"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.45,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732297606050,
+ "updated": 1732338849070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375303",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375303.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375303",
+ "ids": ",av93375303,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.04477,
+ "rms": 0.13,
+ "gap": 108,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.245833333333, 61.2743333333333, 3.32]
+ },
+ "id": "av93375303"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "8 km N of Anza, CA",
+ "time": 1732297061470,
+ "updated": 1732299695760,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798295",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798295.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ci",
+ "code": "40798295",
+ "ids": ",ci40798295,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 58,
+ "dmin": 0.04574,
+ "rms": 0.15,
+ "gap": 34,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 8 km N of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6875, 33.6245, 12.51]
+ },
+ "id": "ci40798295"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "25 km WNW of Tatitlek, Alaska",
+ "time": 1732296808483,
+ "updated": 1732296932027,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f131ziz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f131ziz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f131ziz",
+ "ids": ",ak024f131ziz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.89,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 25 km WNW of Tatitlek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.1228, 60.9474, 21.8]
+ },
+ "id": "ak024f131ziz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.83,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732295636570,
+ "updated": 1732296868738,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089101",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089101.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "nc",
+ "code": "75089101",
+ "ids": ",nc75089101,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 13,
+ "dmin": 0.009515,
+ "rms": 0.02,
+ "gap": 70,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.81583404541, 38.814998626709, 3.00999999046326]
+ },
+ "id": "nc75089101"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.87,
+ "place": "8 km E of Pāhala, Hawaii",
+ "time": 1732295436790,
+ "updated": 1732295539500,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537547",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537547.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 54,
+ "net": "hv",
+ "code": "74537547",
+ "ids": ",hv74537547,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 0.03758,
+ "rms": 0.109999999,
+ "gap": 168,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 8 km E of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.402328491211, 19.2000007629395, 34.7000007629395]
+ },
+ "id": "hv74537547"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.62,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732294597810,
+ "updated": 1732310895298,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798271",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798271.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40798271",
+ "ids": ",ci40798271,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.0749,
+ "rms": 0.11,
+ "gap": 145,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4596667, 33.512, 7.68]
+ },
+ "id": "ci40798271"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "16 km SSE of Elmendorf Air Force Base, Alaska",
+ "time": 1732294540743,
+ "updated": 1732294683111,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f12laoq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f12laoq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f12laoq",
+ "ids": ",ak024f12laoq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.64,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 16 km SSE of Elmendorf Air Force Base, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.4983, 61.1241, 27] },
+ "id": "ak024f12laoq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.02,
+ "place": "78 km NW of Karluk, Alaska",
+ "time": 1732293947960,
+ "updated": 1732338462180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375273",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375273.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375273",
+ "ids": ",av93375273,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.05094,
+ "rms": 0.18,
+ "gap": 96,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 78 km NW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.309166666667, 58.1025, -2.15]
+ },
+ "id": "av93375273"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.25,
+ "place": "70 km NE of Nikolski, Alaska",
+ "time": 1732293710770,
+ "updated": 1732337678560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027314",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027314.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027314",
+ "ids": ",av93027314,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.02906,
+ "rms": 0.04,
+ "gap": 280,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 70 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.211833333333, 53.4361666666667, 3.14]
+ },
+ "id": "av93027314"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "25 km SE of Minto, Alaska",
+ "time": 1732292586406,
+ "updated": 1732294805274,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f12ed4g",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f12ed4g.geojson",
+ "felt": 1,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f12ed4g",
+ "ids": ",ak024f12ed4g,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 25 km SE of Minto, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.9107, 65.0236, 18.5]
+ },
+ "id": "ak024f12ed4g"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.79,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732290060690,
+ "updated": 1732332189060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375233",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375233.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375233",
+ "ids": ",av93375233,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.07481,
+ "rms": 0.07,
+ "gap": 148,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.262166666667, 61.3193333333333, 3.3]
+ },
+ "id": "av93375233"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.25,
+ "place": "3 km WNW of Navy Yard City, Washington",
+ "time": 1732289887110,
+ "updated": 1732304744670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060941",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060941.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 78,
+ "net": "uw",
+ "code": "62060941",
+ "ids": ",uw62060941,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.03808,
+ "rms": 0.19,
+ "gap": 39,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 3 km WNW of Navy Yard City, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.70383333333334, 47.561166666666665, 21.16]
+ },
+ "id": "uw62060941"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "20 km NNW of Challis, Idaho",
+ "time": 1732289613590,
+ "updated": 1732295258140,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066613",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066613.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "mb",
+ "code": "90066613",
+ "ids": ",mb90066613,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.3641,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 20 km NNW of Challis, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.361666666667, 44.6645, 7.13]
+ },
+ "id": "mb90066613"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "43 km E of Denali Park, Alaska",
+ "time": 1732289432571,
+ "updated": 1732289554282,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f11uhjt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f11uhjt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f11uhjt",
+ "ids": ",ak024f11uhjt,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.22,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 43 km E of Denali Park, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.0315, 63.6929, 89.4]
+ },
+ "id": "ak024f11uhjt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "79 km SW of Modisi, Indonesia",
+ "time": 1732288923408,
+ "updated": 1732291892040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6zn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6zn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "6000p6zn",
+ "ids": ",us6000p6zn,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 1.517,
+ "rms": 0.75,
+ "gap": 61,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - 79 km SW of Modisi, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [123.9096, -0.0324, 104.932]
+ },
+ "id": "us6000p6zn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.1,
+ "place": "242 km SE of Chiniak, Alaska",
+ "time": 1732288247232,
+ "updated": 1732309751040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6zk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6zk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 148,
+ "net": "us",
+ "code": "6000p6zk",
+ "ids": ",ak024f11qdfn,us6000p6zk,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 2.42,
+ "rms": 0.36,
+ "gap": 311,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.1 - 242 km SE of Chiniak, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.9859, 55.8337, 10] },
+ "id": "us6000p6zk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.12,
+ "place": "6 km W of Fuig, Puerto Rico",
+ "time": 1732288164610,
+ "updated": 1732288719920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466383",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466383.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 69,
+ "net": "pr",
+ "code": "71466383",
+ "ids": ",pr71466383,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.06258,
+ "rms": 0.12,
+ "gap": 175,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 6 km W of Fuig, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.9788333333333, 17.976, 6.24]
+ },
+ "id": "pr71466383"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.01,
+ "place": "69 km WNW of Beluga, Alaska",
+ "time": 1732287840770,
+ "updated": 1732331254780,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375213",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375213.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375213",
+ "ids": ",av93375213,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.1528,
+ "rms": 0.05,
+ "gap": 167,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 69 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.261, 61.409, 3.04] },
+ "id": "av93375213"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "111 km S of McCarthy, Alaska",
+ "time": 1732286778613,
+ "updated": 1732286903629,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f11cgbp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f11cgbp.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f11cgbp",
+ "ids": ",ak024f11cgbp,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.44,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 111 km S of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-142.8108, 60.4376, 5.8] },
+ "id": "ak024f11cgbp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.58,
+ "place": "28 km E of Leadore, Idaho",
+ "time": 1732286554840,
+ "updated": 1732294705630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066608",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066608.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "mb",
+ "code": "90066608",
+ "ids": ",mb90066608,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.1722,
+ "rms": 0.13,
+ "gap": 178,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 28 km E of Leadore, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.994666666667, 44.6903333333333, 4.93]
+ },
+ "id": "mb90066608"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.7,
+ "place": "58 km WNW of Nikiski, Alaska",
+ "time": 1732286491623,
+ "updated": 1732286592316,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f11beqy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f11beqy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ak",
+ "code": "024f11beqy",
+ "ids": ",ak024f11beqy,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.27,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 58 km WNW of Nikiski, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.33, 60.8033, 96.3] },
+ "id": "ak024f11beqy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "Kuril Islands",
+ "time": 1732285546464,
+ "updated": 1732288641040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6zh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6zh.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p6zh",
+ "ids": ",us6000p6zh,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 34,
+ "dmin": 7.089,
+ "rms": 0.74,
+ "gap": 180,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - Kuril Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [153.065, 46.5671, 53.074]
+ },
+ "id": "us6000p6zh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.57,
+ "place": "66 km NNE of Chignik, Alaska",
+ "time": 1732284571370,
+ "updated": 1732330939230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027309",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027309.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027309",
+ "ids": ",av93027309,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03123,
+ "rms": 0.06,
+ "gap": 197,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 66 km NNE of Chignik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-158.112666666667, 56.8708333333333, 14.62]
+ },
+ "id": "av93027309"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.26,
+ "place": "8 km ENE of Coso Junction, CA",
+ "time": 1732284547540,
+ "updated": 1732299663369,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798215",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798215.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40798215",
+ "ids": ",ci40798215,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 27,
+ "dmin": 0.04886,
+ "rms": 0.14,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 8 km ENE of Coso Junction, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.8638333, 36.0691667, 2.5]
+ },
+ "id": "ci40798215"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -1.07,
+ "place": "66 km NNE of Chignik, Alaska",
+ "time": 1732284408950,
+ "updated": 1732330686960,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027304",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027304.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027304",
+ "ids": ",av93027304,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01045,
+ "rms": 0.18,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -1.1 - 66 km NNE of Chignik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-158.1795, 56.8756666666667, 14.29]
+ },
+ "id": "av93027304"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.19,
+ "place": "86 km NNW of Karluk, Alaska",
+ "time": 1732284201390,
+ "updated": 1732330349420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375163",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375163.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93375163",
+ "ids": ",av93375163,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.04445,
+ "rms": 0.12,
+ "gap": 134,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 86 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.979333333333, 58.2925, 3.32]
+ },
+ "id": "av93375163"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.84,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732284194060,
+ "updated": 1732329676180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375158",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375158.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375158",
+ "ids": ",av93375158,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.04035,
+ "rms": 0.09,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.236833333333, 61.2735, 3.38]
+ },
+ "id": "av93375158"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.91,
+ "place": "10 km NW of The Geysers, CA",
+ "time": 1732283955870,
+ "updated": 1732321039543,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089071",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089071.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "nc",
+ "code": "75089071",
+ "ids": ",nc75089071,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 14,
+ "dmin": 0.004919,
+ "rms": 0.06,
+ "gap": 129,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.9 - 10 km NW of The Geysers, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-122.8525, 38.824, 2.05] },
+ "id": "nc75089071"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.23,
+ "place": "19 km NNE of Condon, Montana",
+ "time": 1732282494250,
+ "updated": 1732297995070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066618",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066618.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "mb",
+ "code": "90066618",
+ "ids": ",mb90066618,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.1159,
+ "rms": 0.04,
+ "gap": 268,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.2 - 19 km NNE of Condon, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.657833333333, 47.696, 8.81]
+ },
+ "id": "mb90066618"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "24 km NW of Susitna, Alaska",
+ "time": 1732282461188,
+ "updated": 1732282558446,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f10ogbq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f10ogbq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f10ogbq",
+ "ids": ",ak024f10ogbq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.5,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 24 km NW of Susitna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.8178, 61.7123, 68.3]
+ },
+ "id": "ak024f10ogbq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.86,
+ "place": "63 km ENE of Pedro Bay, Alaska",
+ "time": 1732281928050,
+ "updated": 1732327286720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375123",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375123.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375123",
+ "ids": ",av93375123,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02313,
+ "rms": 0.16,
+ "gap": 109,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 63 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.093166666667, 60.0396666666667, -2.4]
+ },
+ "id": "av93375123"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.44,
+ "place": "86 km NNW of Karluk, Alaska",
+ "time": 1732281073710,
+ "updated": 1732326563390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027299",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027299.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027299",
+ "ids": ",av93027299,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.0228,
+ "rms": 0.1,
+ "gap": 217,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 86 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.031, 58.2811666666667, 2.63]
+ },
+ "id": "av93027299"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "16 km WSW of Floresville, Texas",
+ "time": 1732280384491,
+ "updated": 1732543218040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wyps",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wyps.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024wyps",
+ "ids": ",tx2024wyps,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1,
+ "rms": 0.3,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 16 km WSW of Floresville, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-98.296, 29.057, 6.66] },
+ "id": "tx2024wyps"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.86,
+ "place": "23 km SSW of La Quinta, CA",
+ "time": 1732280354170,
+ "updated": 1732299701970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798207",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798207.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40798207",
+ "ids": ",ci40798207,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 47,
+ "dmin": 0.1211,
+ "rms": 0.15,
+ "gap": 77,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 23 km SSW of La Quinta, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.4235, 33.476, 13.1] },
+ "id": "ci40798207"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.07,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732279880810,
+ "updated": 1732280967928,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089066",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089066.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "nc",
+ "code": "75089066",
+ "ids": ",nc75089066,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.002405,
+ "rms": 0.02,
+ "gap": 111,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.811668395996, 38.8213348388672, 3.15000009536743]
+ },
+ "id": "nc75089066"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.55,
+ "place": "16 km NE of Stanley, Idaho",
+ "time": 1732279254800,
+ "updated": 1732294449440,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066603",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066603.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "mb",
+ "code": "90066603",
+ "ids": ",mb90066603,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.2309,
+ "rms": 0.13,
+ "gap": 86,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 16 km NE of Stanley, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.812833333333, 44.3358333333333, 2.98]
+ },
+ "id": "mb90066603"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "16 km N of Yongkang, Taiwan",
+ "time": 1732279219227,
+ "updated": 1732373974643,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6ze",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6ze.geojson",
+ "felt": 16,
+ "cdi": 4.6,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 377,
+ "net": "us",
+ "code": "6000p6ze",
+ "ids": ",us6000p6ze,",
+ "sources": ",us,",
+ "types": ",dyfi,moment-tensor,origin,phase-data,",
+ "nst": 70,
+ "dmin": 0.393,
+ "rms": 0.72,
+ "gap": 36,
+ "magType": "mwr",
+ "type": "earthquake",
+ "title": "M 4.9 - 16 km N of Yongkang, Taiwan"
+ },
+ "geometry": { "type": "Point", "coordinates": [120.2267, 23.1676, 10] },
+ "id": "us6000p6ze"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.89999998,
+ "place": "3 km SSW of Pāhala, Hawaii",
+ "time": 1732279153360,
+ "updated": 1732279320720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537347",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537347.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "hv",
+ "code": "74537347",
+ "ids": ",hv74537347,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 45,
+ "dmin": 0.02774,
+ "rms": 0.170000002,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 3 km SSW of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.485168457031, 19.1726665496826, 36.9700012207031]
+ },
+ "id": "hv74537347"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.06,
+ "place": "7 km SW of Garnet, CA",
+ "time": 1732278606810,
+ "updated": 1732299709030,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798199",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798199.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "ci",
+ "code": "40798199",
+ "ids": ",ci40798199,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 56,
+ "dmin": 0.06156,
+ "rms": 0.14,
+ "gap": 31,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 7 km SW of Garnet, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.6081667, 33.8623333, 15.35]
+ },
+ "id": "ci40798199"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "71 km ENE of Susitna North, Alaska",
+ "time": 1732278523610,
+ "updated": 1732278616698,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f101s79",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f101s79.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024f101s79",
+ "ids": ",ak024f101s79,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.74,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 71 km ENE of Susitna North, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.6748, 62.4952, 15] },
+ "id": "ak024f101s79"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.78,
+ "place": "95 km NNE of Cruz Bay, U.S. Virgin Islands",
+ "time": 1732277784840,
+ "updated": 1732282161040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024327001",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024327001.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 220,
+ "net": "pr",
+ "code": "2024327001",
+ "ids": ",us6000p6zc,pr2024327001,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.7565,
+ "rms": 0.28,
+ "gap": 294,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.8 - 95 km NNE of Cruz Bay, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-64.5788, 19.1705, 26] },
+ "id": "pr2024327001"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.2,
+ "place": "72 km SE of Pope-Vannoy Landing, Alaska",
+ "time": 1732276762429,
+ "updated": 1732281050040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0zmy36",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0zmy36.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 158,
+ "net": "ak",
+ "code": "024f0zmy36",
+ "ids": ",us6000p6zb,ak024f0zmy36,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.2,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.2 - 72 km SE of Pope-Vannoy Landing, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.6192, 59.0796, 107.1]
+ },
+ "id": "ak024f0zmy36"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.92,
+ "place": "61 km ENE of Pedro Bay, Alaska",
+ "time": 1732276077840,
+ "updated": 1732323037560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375048",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375048.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 13,
+ "net": "av",
+ "code": "93375048",
+ "ids": ",av93375048,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.02494,
+ "rms": 0.07,
+ "gap": 163,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 61 km ENE of Pedro Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-153.130166666667, 60.0348333333333, -0.1]
+ },
+ "id": "av93375048"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "25 km W of Tyonek, Alaska",
+ "time": 1732275386720,
+ "updated": 1732275528757,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0zi0z4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0zi0z4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024f0zi0z4",
+ "ids": ",ak024f0zi0z4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.61,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 25 km W of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.6126, 61.0841, 68.2]
+ },
+ "id": "ak024f0zi0z4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.39,
+ "place": "19 km W of Sitka, Alaska",
+ "time": 1732274808730,
+ "updated": 1732323896520,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375033",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375033.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "av",
+ "code": "93375033",
+ "ids": ",av93375033,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03816,
+ "rms": 0.08,
+ "gap": 195,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 19 km W of Sitka, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-135.650166666667, 57.0235, 5.82]
+ },
+ "id": "av93375033"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5,
+ "place": "southwest of Africa",
+ "time": 1732274719811,
+ "updated": 1732277121040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6z5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6z5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 385,
+ "net": "us",
+ "code": "6000p6z5",
+ "ids": ",us6000p6z5,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 20.703,
+ "rms": 0.54,
+ "gap": 60,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.0 - southwest of Africa"
+ },
+ "geometry": { "type": "Point", "coordinates": [19.6611, -53.0777, 10] },
+ "id": "us6000p6z5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.14,
+ "place": "67 km WNW of Beluga, Alaska",
+ "time": 1732274338250,
+ "updated": 1732322605500,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93375028",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93375028.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93375028",
+ "ids": ",av93375028,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.07743,
+ "rms": 0.1,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 67 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.287666666667, 61.3246666666667, -0.6]
+ },
+ "id": "av93375028"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1099999,
+ "place": "20 km SE of Pāhala, Hawaii",
+ "time": 1732274069700,
+ "updated": 1732274171860,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537297",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537297.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "hv",
+ "code": "74537297",
+ "ids": ",hv74537297,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 55,
+ "dmin": 0.1375,
+ "rms": 0.140000001,
+ "gap": 210,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 20 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.361999511719, 19.0551662445068, 32.5299987792969]
+ },
+ "id": "hv74537297"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "West Chile Rise",
+ "time": 1732273670319,
+ "updated": 1732275719040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6z0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6z0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "6000p6z0",
+ "ids": ",us6000p6z0,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 9.271,
+ "rms": 0.43,
+ "gap": 146,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - West Chile Rise"
+ },
+ "geometry": { "type": "Point", "coordinates": [-85.4551, -41.4036, 10] },
+ "id": "us6000p6z0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "West Chile Rise",
+ "time": 1732273498342,
+ "updated": 1732522803040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6z4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6z4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "6000p6z4",
+ "ids": ",us6000p6z4,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 45,
+ "dmin": 8.531,
+ "rms": 0.41,
+ "gap": 111,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.7 - West Chile Rise"
+ },
+ "geometry": { "type": "Point", "coordinates": [-85.3793, -40.3938, 10] },
+ "id": "us6000p6z4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.17000008,
+ "place": "20 km SE of Pāhala, Hawaii",
+ "time": 1732273337840,
+ "updated": 1732273433680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537277",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537277.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 72,
+ "net": "hv",
+ "code": "74537277",
+ "ids": ",hv74537277,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.1342,
+ "rms": 0.219999999,
+ "gap": 209,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.2 - 20 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.363998413086, 19.0580005645752, 31.2999992370605]
+ },
+ "id": "hv74537277"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732272360170,
+ "updated": 1732299701372,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798183",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798183.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40798183",
+ "ids": ",ci40798183,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 59,
+ "dmin": 0.07439,
+ "rms": 0.19,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4631667, 33.5091667, 5.21]
+ },
+ "id": "ci40798183"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.85,
+ "place": "6 km NNE of Victor, Idaho",
+ "time": 1732271812030,
+ "updated": 1732299848290,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066628",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066628.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "mb",
+ "code": "90066628",
+ "ids": ",mb90066628,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.04542,
+ "rms": 0.12,
+ "gap": 202,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 6 km NNE of Victor, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.0815, 43.6601666666667, 2.98]
+ },
+ "id": "mb90066628"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "14 km SW of Thatcher, Utah",
+ "time": 1732271432800,
+ "updated": 1732294061090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086971",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086971.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "uu",
+ "code": "80086971",
+ "ids": ",uu80086971,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 27,
+ "dmin": 0.0782,
+ "rms": 0.23,
+ "gap": 90,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 14 km SW of Thatcher, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.4195, 41.5973333333333, 6.32]
+ },
+ "id": "uu80086971"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.95,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732270329320,
+ "updated": 1732299780970,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798175",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798175.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "ci",
+ "code": "40798175",
+ "ids": ",ci40798175,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 58,
+ "dmin": 0.07353,
+ "rms": 0.19,
+ "gap": 54,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4635, 33.5101667, 4.82]
+ },
+ "id": "ci40798175"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.31,
+ "place": "20 km NW of Desert Center, CA",
+ "time": 1732269721110,
+ "updated": 1732299722794,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798167",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798167.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ci",
+ "code": "40798167",
+ "ids": ",ci40798167,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.181,
+ "rms": 0.18,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 20 km NW of Desert Center, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.5258333, 33.8623333, 1.92]
+ },
+ "id": "ci40798167"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.6,
+ "place": "66 km N of Chickaloon, Alaska",
+ "time": 1732269601491,
+ "updated": 1732288332040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0yotn9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0yotn9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 104,
+ "net": "ak",
+ "code": "024f0yotn9",
+ "ids": ",us6000p6yr,ak024f0yotn9,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.63,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.6 - 66 km N of Chickaloon, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-148.5673, 62.3887, 32.3]
+ },
+ "id": "ak024f0yotn9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "25 km NNW of Fillmore, CA",
+ "time": 1732269372660,
+ "updated": 1732307575535,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798159",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798159.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40798159",
+ "ids": ",ci40798159,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.1401,
+ "rms": 0.24,
+ "gap": 47,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 25 km NNW of Fillmore, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.0368333, 34.6041667, 2.16]
+ },
+ "id": "ci40798159"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "79 km ENE of Tonopah, Nevada",
+ "time": 1732269369676,
+ "updated": 1732327441506,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887833",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887833.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nn",
+ "code": "00887833",
+ "ids": ",nn00887833,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.704,
+ "rms": 0.1808,
+ "gap": 165.44,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 79 km ENE of Tonopah, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.4743, 38.4628, 8.2] },
+ "id": "nn00887833"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "76 km SW of Nikolski, Alaska",
+ "time": 1732269066867,
+ "updated": 1732340516040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p73i",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p73i.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "us",
+ "code": "6000p73i",
+ "ids": ",ak024f0yebut,us6000p73i,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0.379,
+ "rms": 0.59,
+ "gap": 216,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 76 km SW of Nikolski, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-169.5965, 52.4164, 35] },
+ "id": "us6000p73i"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "5 km SSW of Pinon Hills, CA",
+ "time": 1732268924310,
+ "updated": 1732299529345,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798151",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798151.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40798151",
+ "ids": ",ci40798151,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.01344,
+ "rms": 0.13,
+ "gap": 132,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km SSW of Pinon Hills, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6731667, 34.3948333, 9.22]
+ },
+ "id": "ci40798151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.73,
+ "place": "20 km ESE of Anza, CA",
+ "time": 1732268738970,
+ "updated": 1732299797220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798143",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798143.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 8,
+ "net": "ci",
+ "code": "40798143",
+ "ids": ",ci40798143,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 43,
+ "dmin": 0.0757,
+ "rms": 0.18,
+ "gap": 75,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 20 km ESE of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.4598333, 33.5105, 4.33]
+ },
+ "id": "ci40798143"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.6,
+ "place": "25 km S of South Van Horn, Alaska",
+ "time": 1732268631607,
+ "updated": 1732268751474,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0ycpp4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0ycpp4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ak",
+ "code": "024f0ycpp4",
+ "ids": ",ak024f0ycpp4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 25 km S of South Van Horn, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.7788, 64.5841, 21.6]
+ },
+ "id": "ak024f0ycpp4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "35 km SW of Mandráki, Greece",
+ "time": 1732267788621,
+ "updated": 1732277453040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6yq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6yq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p6yq",
+ "ids": ",us6000p6yq,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 136,
+ "dmin": 1.044,
+ "rms": 0.81,
+ "gap": 109,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 35 km SW of Mandráki, Greece"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [26.846, 36.3856, 121.172]
+ },
+ "id": "us6000p6yq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "3 km N of Susitna North, Alaska",
+ "time": 1732267725243,
+ "updated": 1732267868713,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0y9hgs",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0y9hgs.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f0y9hgs",
+ "ids": ",ak024f0y9hgs,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.64,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 3 km N of Susitna North, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.8402, 62.1902, 15] },
+ "id": "ak024f0y9hgs"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.17,
+ "place": "16 km S of Tres Pinos, CA",
+ "time": 1732267667660,
+ "updated": 1732668441559,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089046",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089046.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "nc",
+ "code": "75089046",
+ "ids": ",nc75089046,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.04657,
+ "rms": 0.09,
+ "gap": 125,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 16 km S of Tres Pinos, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.285833333333, 36.6513333333333, 2.29]
+ },
+ "id": "nc75089046"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "45 km NNW of Oxapampa, Peru",
+ "time": 1732267450830,
+ "updated": 1732352420107,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6yn",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6yn.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 340,
+ "net": "us",
+ "code": "6000p6yn",
+ "ids": ",us6000p6yn,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 70,
+ "dmin": 2.194,
+ "rms": 0.5,
+ "gap": 105,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.7 - 45 km NNW of Oxapampa, Peru"
+ },
+ "geometry": { "type": "Point", "coordinates": [-75.5446, -10.1898, 10] },
+ "id": "us6000p6yn"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.85,
+ "place": "16 km SSE of Volcano, Hawaii",
+ "time": 1732267391300,
+ "updated": 1732306142220,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537187",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537187.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 53,
+ "net": "hv",
+ "code": "74537187",
+ "ids": ",hv74537187,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0.0396,
+ "rms": 0.12,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 16 km SSE of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.150666666667, 19.32, 3.18]
+ },
+ "id": "hv74537187"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.55,
+ "place": "4 km NNE of Salmon, Idaho",
+ "time": 1732265686340,
+ "updated": 1732293716130,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066598",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066598.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "mb",
+ "code": "90066598",
+ "ids": ",mb90066598,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.5656,
+ "rms": 0.18,
+ "gap": 84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 4 km NNE of Salmon, Idaho"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.869833333333, 45.2151666666667, 4.91]
+ },
+ "id": "mb90066598"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.8,
+ "place": "4 km W of The Geysers, CA",
+ "time": 1732265572050,
+ "updated": 1732267168365,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089041",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089041.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75089041",
+ "ids": ",nc75089041,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 5,
+ "dmin": 0.02275,
+ "rms": 0.01,
+ "gap": 186,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 4 km W of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.799163818359, 38.7721672058105, 0.990000009536743]
+ },
+ "id": "nc75089041"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "3 km WSW of Halibut Cove, Alaska",
+ "time": 1732265487415,
+ "updated": 1732265599569,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0xsxyd",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0xsxyd.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024f0xsxyd",
+ "ids": ",ak024f0xsxyd,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.43,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 3 km WSW of Halibut Cove, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.2889, 59.5802, 36.4]
+ },
+ "id": "ak024f0xsxyd"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.56,
+ "place": "17 km SE of Anza, CA",
+ "time": 1732265432500,
+ "updated": 1732299746537,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798135",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798135.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "40798135",
+ "ids": ",ci40798135,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 33,
+ "dmin": 0.06658,
+ "rms": 0.11,
+ "gap": 88,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 17 km SE of Anza, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.53, 33.4665, 10.23] },
+ "id": "ci40798135"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.84,
+ "place": "18 km SE of Pāhala, Hawaii",
+ "time": 1732265414930,
+ "updated": 1732265588770,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74537162",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74537162.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "hv",
+ "code": "74537162",
+ "ids": ",hv74537162,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 52,
+ "dmin": 0.1222,
+ "rms": 0.170000002,
+ "gap": 206,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 18 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.367660522461, 19.0715007781982, 31.3600006103516]
+ },
+ "id": "hv74537162"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "36 km NNW of Toyah, Texas",
+ "time": 1732265003758,
+ "updated": 1732273134528,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wyhg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wyhg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "tx",
+ "code": "2024wyhg",
+ "ids": ",tx2024wyhg,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 65,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 36 km NNW of Toyah, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-103.971, 31.606, 7.7405]
+ },
+ "id": "tx2024wyhg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.51,
+ "place": "8 km SSE of False Pass, Alaska",
+ "time": 1732264735550,
+ "updated": 1732320671480,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374918",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374918.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "av",
+ "code": "93374918",
+ "ids": ",av93374918,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.07668,
+ "rms": 0.19,
+ "gap": 166,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 8 km SSE of False Pass, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-163.353833333333, 54.7893333333333, 1.03]
+ },
+ "id": "av93374918"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "89 km WSW of Ternate, Indonesia",
+ "time": 1732264266041,
+ "updated": 1732283049040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6yg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6yg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "6000p6yg",
+ "ids": ",us6000p6yg,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.783,
+ "rms": 0.67,
+ "gap": 51,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 89 km WSW of Ternate, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [126.6325, 0.4966, 57.852]
+ },
+ "id": "us6000p6yg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "49 km W of Mentone, Texas",
+ "time": 1732264106197,
+ "updated": 1732282517505,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wygu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wygu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024wygu",
+ "ids": ",tx2024wygu,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 31,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 45,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 49 km W of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.117, 31.739, 7.7881]
+ },
+ "id": "tx2024wygu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "10 km N of Sterling, Alaska",
+ "time": 1732263413822,
+ "updated": 1732263497444,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0xlhxi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0xlhxi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f0xlhxi",
+ "ids": ",ak024f0xlhxi,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.81,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 10 km N of Sterling, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.7909, 60.6261, 80.9]
+ },
+ "id": "ak024f0xlhxi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "26 km SSE of Glacier View, Alaska",
+ "time": 1732263237776,
+ "updated": 1732263346507,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0xkv35",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0xkv35.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f0xkv35",
+ "ids": ",ak024f0xkv35,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 26 km SSE of Glacier View, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.4595, 61.5842, 23.3]
+ },
+ "id": "ak024f0xkv35"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.54,
+ "place": "7 km WSW of Holtville, CA",
+ "time": 1732262736380,
+ "updated": 1732300666324,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798127",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798127.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 36,
+ "net": "ci",
+ "code": "40798127",
+ "ids": ",ci40798127,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.01987,
+ "rms": 0.22,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 7 km WSW of Holtville, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.4443333, 32.7855, 7.63]
+ },
+ "id": "ci40798127"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "106 km SSE of Sand Point, Alaska",
+ "time": 1732262655155,
+ "updated": 1732297020920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6y9",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6y9.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": 2.546,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p6y9",
+ "ids": ",ak024f0xiu7h,us6000p6y9,",
+ "sources": ",ak,us,",
+ "types": ",origin,phase-data,shakemap,",
+ "nst": 18,
+ "dmin": 0.961,
+ "rms": 0.68,
+ "gap": 164,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 106 km SSE of Sand Point, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-159.7633, 54.4828, 28.774]
+ },
+ "id": "us6000p6y9"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.11,
+ "place": "72 km W of Salamatof, Alaska",
+ "time": 1732262537540,
+ "updated": 1732319642560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374858",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374858.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374858",
+ "ids": ",av93374858,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.08855,
+ "rms": 0.07,
+ "gap": 260,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 72 km W of Salamatof, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.646333333333, 60.677, 11.05]
+ },
+ "id": "av93374858"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.57,
+ "place": "94 km N of Karluk, Alaska",
+ "time": 1732262363420,
+ "updated": 1732319420430,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374853",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374853.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "av",
+ "code": "93374853",
+ "ids": ",av93374853,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1528,
+ "rms": 0.17,
+ "gap": 280,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 94 km N of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.4605, 58.4148333333333, 9.26]
+ },
+ "id": "av93374853"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "off the coast of Central America",
+ "time": 1732262101876,
+ "updated": 1732267533040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6y8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6y8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p6y8",
+ "ids": ",us6000p6y8,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 5.942,
+ "rms": 0.97,
+ "gap": 160,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - off the coast of Central America"
+ },
+ "geometry": { "type": "Point", "coordinates": [-85.9793, 3.9422, 10] },
+ "id": "us6000p6y8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.2,
+ "place": "104 km NNE of Tobelo, Indonesia",
+ "time": 1732261866027,
+ "updated": 1732264139040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6y6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6y6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 416,
+ "net": "us",
+ "code": "6000p6y6",
+ "ids": ",us6000p6y6,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 77,
+ "dmin": 2.057,
+ "rms": 1.08,
+ "gap": 35,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 5.2 - 104 km NNE of Tobelo, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [128.2565, 2.6393, 73.851]
+ },
+ "id": "us6000p6y6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.01,
+ "place": "66 km WNW of Karluk, Alaska",
+ "time": 1732261240010,
+ "updated": 1732318104390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374843",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374843.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374843",
+ "ids": ",av93374843,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.237,
+ "rms": 0.14,
+ "gap": 306,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.0 - 66 km WNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.456333333333, 57.8256666666667, 21.11]
+ },
+ "id": "av93374843"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1,
+ "place": "2 km NNW of The Geysers, CA",
+ "time": 1732261231800,
+ "updated": 1732262367783,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089036",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089036.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75089036",
+ "ids": ",nc75089036,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.01469,
+ "rms": 0.02,
+ "gap": 98,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.768997192383, 38.7878341674805, 1.11000001430511]
+ },
+ "id": "nc75089036"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732260960071,
+ "updated": 1732267026877,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wyfb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wyfb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024wyfb",
+ "ids": ",tx2024wyfb,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 65,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.267, 31.669, 2.6648]
+ },
+ "id": "tx2024wyfb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.09,
+ "place": "18 km WNW of Hebgen Lake Estates, Montana",
+ "time": 1732259647930,
+ "updated": 1732293183750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066593",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066593.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "mb",
+ "code": "90066593",
+ "ids": ",mb90066593,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.03063,
+ "rms": 0.06,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 18 km WNW of Hebgen Lake Estates, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.394333333333, 44.8478333333333, 7.71]
+ },
+ "id": "mb90066593"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.26,
+ "place": "15 km NNE of Ashford, Washington",
+ "time": 1732258776880,
+ "updated": 1732303737190,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060926",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060926.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "uw",
+ "code": "62060926",
+ "ids": ",uw62060926,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.01597,
+ "rms": 0.09,
+ "gap": 126,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 15 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.9415, 46.88066666666667, 8.54]
+ },
+ "id": "uw62060926"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.33,
+ "place": "16 km S of Valle Vista, CA",
+ "time": 1732258486990,
+ "updated": 1732299825243,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798119",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798119.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "ci",
+ "code": "40798119",
+ "ids": ",ci40798119,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.03604,
+ "rms": 0.15,
+ "gap": 60,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 16 km S of Valle Vista, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8721667, 33.6001667, 4.97]
+ },
+ "id": "ci40798119"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.11,
+ "place": "29 km W of Sitka, Alaska",
+ "time": 1732258398580,
+ "updated": 1732317466390,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374818",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374818.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374818",
+ "ids": ",av93374818,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.01516,
+ "rms": 0.09,
+ "gap": 283,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 29 km W of Sitka, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-135.8115, 57.064, 5.04] },
+ "id": "av93374818"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.48,
+ "place": "2 km NW of Cobb, CA",
+ "time": 1732258166240,
+ "updated": 1732259238412,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089031",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089031.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75089031",
+ "ids": ",nc75089031,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.02966,
+ "rms": 0.02,
+ "gap": 180,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 2 km NW of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.740837097168, 38.8321647644043, 0.00999999977648258
+ ]
+ },
+ "id": "nc75089031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.29,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732258057300,
+ "updated": 1732317225150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374813",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374813.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374813",
+ "ids": ",av93374813,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.07067,
+ "rms": 0.08,
+ "gap": 146,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-152.257, 61.316, 0.76] },
+ "id": "av93374813"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "0 km SSW of Carnelian Bay, California",
+ "time": 1732256642866,
+ "updated": 1732327445543,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887854",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887854.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nn",
+ "code": "00887854",
+ "ids": ",nn00887854,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.037,
+ "rms": 0.077,
+ "gap": 133.01,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 0 km SSW of Carnelian Bay, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-120.0832, 39.2241, 9.2] },
+ "id": "nn00887854"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.98,
+ "place": "4 km NNE of Day Valley, CA",
+ "time": 1732256388800,
+ "updated": 1732667970504,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089021",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089021.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "nc",
+ "code": "75089021",
+ "ids": ",nc75089021,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.03101,
+ "rms": 0.09,
+ "gap": 72,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 4 km NNE of Day Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.857166666667, 37.0748333333333, 10.24]
+ },
+ "id": "nc75089021"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.6,
+ "place": "139 km NNW of Charlotte Amalie, U.S. Virgin Islands",
+ "time": 1732255863530,
+ "updated": 1732257796538,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024327000",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024327000.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 199,
+ "net": "pr",
+ "code": "2024327000",
+ "ids": ",pr2024327000,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 1.2453,
+ "rms": 0.55,
+ "gap": 283,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 3.6 - 139 km NNW of Charlotte Amalie, U.S. Virgin Islands"
+ },
+ "geometry": { "type": "Point", "coordinates": [-65.19, 19.5776, 77] },
+ "id": "pr2024327000"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.76,
+ "place": "9 km SW of Idyllwild, CA",
+ "time": 1732254827380,
+ "updated": 1732307577660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798111",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798111.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 9,
+ "net": "ci",
+ "code": "40798111",
+ "ids": ",ci40798111,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 34,
+ "dmin": 0.0675,
+ "rms": 0.12,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 9 km SW of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7891667, 33.6856667, 16.68]
+ },
+ "id": "ci40798111"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "26 km WNW of Valdez, Alaska",
+ "time": 1732254295079,
+ "updated": 1732254418362,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0vz79f",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0vz79f.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024f0vz79f",
+ "ids": ",ak024f0vz79f,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 26 km WNW of Valdez, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-146.8219, 61.1775, 35] },
+ "id": "ak024f0vz79f"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.5,
+ "place": "163 km NNW of Hirara, Japan",
+ "time": 1732254211338,
+ "updated": 1732283922137,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6xu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6xu.geojson",
+ "felt": 1,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 312,
+ "net": "us",
+ "code": "6000p6xu",
+ "ids": ",us6000p6xu,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 33,
+ "dmin": 1.982,
+ "rms": 0.92,
+ "gap": 91,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.5 - 163 km NNW of Hirara, Japan"
+ },
+ "geometry": { "type": "Point", "coordinates": [124.9733, 26.2532, 7.24] },
+ "id": "us6000p6xu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.36,
+ "place": "22 km ENE of Ashford, Washington",
+ "time": 1732254197180,
+ "updated": 1732303035400,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060921",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060921.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 2,
+ "net": "uw",
+ "code": "62060921",
+ "ids": ",uw62060921,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 14,
+ "dmin": 0.02167,
+ "rms": 0.06,
+ "gap": 114,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.4 - 22 km ENE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.76083333333334, 46.84583333333333, 1.81]
+ },
+ "id": "uw62060921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.32,
+ "place": "9 km ESE of Middletown, CA",
+ "time": 1732254056160,
+ "updated": 1732286926080,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089016",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089016.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 83,
+ "net": "nc",
+ "code": "75089016",
+ "ids": ",nc75089016,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 85,
+ "dmin": 0.03028,
+ "rms": 0.13,
+ "gap": 45,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 9 km ESE of Middletown, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.5155, 38.7353333333333, 7.8]
+ },
+ "id": "nc75089016"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.46,
+ "place": "3 km WSW of Centennial Park, Arizona",
+ "time": 1732253444330,
+ "updated": 1732293139920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086966",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086966.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "uu",
+ "code": "80086966",
+ "ids": ",uu80086966,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1725,
+ "rms": 0.08,
+ "gap": 126,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 3 km WSW of Centennial Park, Arizona"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.014833333333, 36.9395, 23.52]
+ },
+ "id": "uu80086966"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.77,
+ "place": "7 km NNW of The Geysers, CA",
+ "time": 1732253289710,
+ "updated": 1732254867906,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75089011",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75089011.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "nc",
+ "code": "75089011",
+ "ids": ",nc75089011,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.001619,
+ "rms": 0.05,
+ "gap": 63,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 7 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.811996459961, 38.8240013122559, 2.04999995231628]
+ },
+ "id": "nc75089011"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "37 km NW of Stanton, Texas",
+ "time": 1732253139999,
+ "updated": 1732283117549,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wyat",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wyat.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "tx",
+ "code": "2024wyat",
+ "ids": ",tx2024wyat,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 37 km NW of Stanton, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-102.092, 32.349, 7.7637]
+ },
+ "id": "tx2024wyat"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.63,
+ "place": "13 km WSW of Searles Valley, CA",
+ "time": 1732251047040,
+ "updated": 1732297377000,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798103",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798103.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40798103",
+ "ids": ",ci40798103,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.08471,
+ "rms": 0.15,
+ "gap": 138,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 13 km WSW of Searles Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5448333, 35.7425, 7.58]
+ },
+ "id": "ci40798103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.46,
+ "place": "6 km NW of The Geysers, CA",
+ "time": 1732250987450,
+ "updated": 1732252169612,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088996",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088996.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 33,
+ "net": "nc",
+ "code": "75088996",
+ "ids": ",nc75088996,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.01031,
+ "rms": 0.02,
+ "gap": 54,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 6 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.813835144043, 38.8134994506836, 2.8199999332428]
+ },
+ "id": "nc75088996"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732250263055,
+ "updated": 1732274890722,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxzi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxzi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "tx",
+ "code": "2024wxzi",
+ "ids": ",tx2024wxzi,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.308, 31.658, 8.0994]
+ },
+ "id": "tx2024wxzi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.17,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732250051570,
+ "updated": 1732251267497,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088986",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088986.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "nc",
+ "code": "75088986",
+ "ids": ",nc75088986,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.01032,
+ "rms": 0.02,
+ "gap": 57,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.817169189453, 38.8131675720215, 2.64000010490417]
+ },
+ "id": "nc75088986"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732249976095,
+ "updated": 1732269988171,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxzg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxzg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024wxzg",
+ "ids": ",tx2024wxzg,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.307, 31.662, 8.0481]
+ },
+ "id": "tx2024wxzg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "9 km NNE of Trabuco Canyon, CA",
+ "time": 1732249644920,
+ "updated": 1732307362230,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798087",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798087.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ci",
+ "code": "40798087",
+ "ids": ",ci40798087,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 95,
+ "dmin": 0.06847,
+ "rms": 0.19,
+ "gap": 24,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 9 km NNE of Trabuco Canyon, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.5575, 33.7418333, 5.28]
+ },
+ "id": "ci40798087"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "21 km SW of Cantwell, Alaska",
+ "time": 1732249470621,
+ "updated": 1732249584893,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0v9fg6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0v9fg6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f0v9fg6",
+ "ids": ",ak024f0v9fg6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.73,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 21 km SW of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.2871, 63.2745, 5.3] },
+ "id": "ak024f0v9fg6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.46,
+ "place": "2 km ESE of Entiat, Washington",
+ "time": 1732248994510,
+ "updated": 1732302415180,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060916",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060916.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 3,
+ "net": "uw",
+ "code": "62060916",
+ "ids": ",uw62060916,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.03156,
+ "rms": 0.12,
+ "gap": 103,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 2 km ESE of Entiat, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.1805, 47.66866666666667, -0.8]
+ },
+ "id": "uw62060916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732248813454,
+ "updated": 1732271726371,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxyj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxyj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024wxyj",
+ "ids": ",tx2024wxyj,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0,
+ "rms": 0.3,
+ "gap": 68,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.308, 31.659, 6.4587]
+ },
+ "id": "tx2024wxyj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.94,
+ "place": "22 km ENE of San Lucas, CA",
+ "time": 1732248241470,
+ "updated": 1732667536558,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088976",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088976.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 58,
+ "net": "nc",
+ "code": "75088976",
+ "ids": ",nc75088976,",
+ "sources": ",nc,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 50,
+ "dmin": 0.03531,
+ "rms": 0.14,
+ "gap": 73,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 22 km ENE of San Lucas, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.821333333333, 36.2473333333333, 7.68]
+ },
+ "id": "nc75088976"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "71 km WNW of Tyonek, Alaska",
+ "time": 1732247669170,
+ "updated": 1732314788890,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027269",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027269.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027269",
+ "ids": ",av93027269,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.05409,
+ "rms": 0.22,
+ "gap": 293,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 71 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.371833333333, 61.313, 3.67]
+ },
+ "id": "av93027269"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.33,
+ "place": "74 km NE of Nikolski, Alaska",
+ "time": 1732247602790,
+ "updated": 1732314451200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027264",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027264.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027264",
+ "ids": ",av93027264,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.01012,
+ "rms": 0.22,
+ "gap": 156,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.3 - 74 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.135333333333, 53.4476666666667, 7.03]
+ },
+ "id": "av93027264"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "8 km NNW of Susitna North, Alaska",
+ "time": 1732247599302,
+ "updated": 1732247737146,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0uu6qi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0uu6qi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024f0uu6qi",
+ "ids": ",ak024f0uu6qi,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 8 km NNW of Susitna North, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.943, 62.2283, 16.7] },
+ "id": "ak024f0uu6qi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "4 km SSE of Frazier Park, CA",
+ "time": 1732247129750,
+ "updated": 1732305097113,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798071",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798071.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40798071",
+ "ids": ",ci40798071,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 32,
+ "dmin": 0.04152,
+ "rms": 0.18,
+ "gap": 50,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 4 km SSE of Frazier Park, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.9256667, 34.796, 15.16]
+ },
+ "id": "ci40798071"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "21 km ESE of Lukatan, Philippines",
+ "time": 1732247080631,
+ "updated": 1732248377040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6xc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6xc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p6xc",
+ "ids": ",us6000p6xc,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 1.013,
+ "rms": 0.6,
+ "gap": 117,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 21 km ESE of Lukatan, Philippines"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [126.5858, 6.9028, 106.481]
+ },
+ "id": "us6000p6xc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "37 km NE of McCarthy, Alaska",
+ "time": 1732246986394,
+ "updated": 1732247178857,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0us0k7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0us0k7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024f0us0k7",
+ "ids": ",ak024f0us0k7,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 37 km NE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-142.4922, 61.6993, 0] },
+ "id": "ak024f0us0k7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "2 km E of Goshen, Utah",
+ "time": 1732246768990,
+ "updated": 1732289316040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086961",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086961.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "uu",
+ "code": "80086961",
+ "ids": ",uu80086961,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 10,
+ "dmin": 0.08489,
+ "rms": 0.14,
+ "gap": 76,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km E of Goshen, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.868666666667, 39.9485, 0.63]
+ },
+ "id": "uu80086961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "1 km ESE of Big Lake, Alaska",
+ "time": 1732246137817,
+ "updated": 1732246266311,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0uowt6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0uowt6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f0uowt6",
+ "ids": ",ak024f0uowt6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.7,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 1 km ESE of Big Lake, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.9208, 61.5178, 33.5]
+ },
+ "id": "ak024f0uowt6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732246013322,
+ "updated": 1732272230418,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxwv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxwv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "tx",
+ "code": "2024wxwv",
+ "ids": ",tx2024wxwv,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 15,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.307, 31.657, 8.0481]
+ },
+ "id": "tx2024wxwv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "40 km N of Larsen Bay, Alaska",
+ "time": 1732245657563,
+ "updated": 1732245778460,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0un724",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0un724.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024f0un724",
+ "ids": ",ak024f0un724,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.54,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 40 km N of Larsen Bay, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.0853, 57.9027, 48.4]
+ },
+ "id": "ak024f0un724"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.21,
+ "place": "30 km W of Dutch Harbor, Alaska",
+ "time": 1732244790910,
+ "updated": 1732349554760,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027249",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027249.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027249",
+ "ids": ",av93027249,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.06242,
+ "rms": 0.18,
+ "gap": 253,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 30 km W of Dutch Harbor, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-167.004833333333, 53.8575, 15.19]
+ },
+ "id": "av93027249"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.79,
+ "place": "85 km NNW of Karluk, Alaska",
+ "time": 1732244476700,
+ "updated": 1732312823430,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027244",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027244.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027244",
+ "ids": ",av93027244,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.04783,
+ "rms": 0.08,
+ "gap": 217,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.8 - 85 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.138666666667, 58.2423333333333, 2.51]
+ },
+ "id": "av93027244"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "55 km W of Nanwalek, Alaska",
+ "time": 1732244158580,
+ "updated": 1732245837040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0u99kt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0u99kt.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024f0u99kt",
+ "ids": ",us6000p6x4,ak024f0u99kt,",
+ "sources": ",us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.33,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 55 km W of Nanwalek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.8736, 59.2734, 84.5]
+ },
+ "id": "ak024f0u99kt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.79,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732243798770,
+ "updated": 1732244967732,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088966",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088966.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "nc",
+ "code": "75088966",
+ "ids": ",nc75088966,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.006742,
+ "rms": 0.03,
+ "gap": 93,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.8 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779335021973, 38.7924995422363, 2.49000000953674]
+ },
+ "id": "nc75088966"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.01,
+ "place": "4 km NW of Big Bear Lake, CA",
+ "time": 1732242793900,
+ "updated": 1732299826804,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798063",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798063.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "ci",
+ "code": "40798063",
+ "ids": ",ci40798063,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.02182,
+ "rms": 0.13,
+ "gap": 76,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 4 km NW of Big Bear Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9435, 34.2733333, 7.8]
+ },
+ "id": "ci40798063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "57 km ENE of Palca, Peru",
+ "time": 1732242627754,
+ "updated": 1732243861040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6x2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6x2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "6000p6x2",
+ "ids": ",us6000p6x2,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 71,
+ "dmin": 0.041,
+ "rms": 1.21,
+ "gap": 81,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - 57 km ENE of Palca, Peru"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-69.4762, -17.5487, 164.87]
+ },
+ "id": "us6000p6x2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.6,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732242252000,
+ "updated": 1732309332940,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374668",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374668.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374668",
+ "ids": ",av93374668,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.08245,
+ "rms": 0.07,
+ "gap": 130,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.259, 61.3306666666667, -0.34]
+ },
+ "id": "av93374668"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "30 km SSE of Minto, Alaska",
+ "time": 1732242110540,
+ "updated": 1732242235313,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0u1ymm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0u1ymm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f0u1ymm",
+ "ids": ",ak024f0u1ymm,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 30 km SSE of Minto, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.0091, 64.9143, 4.7] },
+ "id": "ak024f0u1ymm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.32,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732242088280,
+ "updated": 1732243170530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088961",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088961.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 27,
+ "net": "nc",
+ "code": "75088961",
+ "ids": ",nc75088961,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.009391,
+ "rms": 0.03,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.776336669922, 38.7906684875488, 1.16999995708466]
+ },
+ "id": "nc75088961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "south of the Kermadec Islands",
+ "time": 1732241000704,
+ "updated": 1732312335040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6wz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6wz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p6wz",
+ "ids": ",us6000p6wz,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 3.993,
+ "rms": 0.84,
+ "gap": 113,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - south of the Kermadec Islands"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-179.0593, -33.146, 56.572]
+ },
+ "id": "us6000p6wz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.63,
+ "place": "7 km S of Idyllwild, CA",
+ "time": 1732239942880,
+ "updated": 1732301216380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798055",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798055.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "ci",
+ "code": "40798055",
+ "ids": ",ci40798055,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.03465,
+ "rms": 0.12,
+ "gap": 100,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 7 km S of Idyllwild, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7271667, 33.6781667, 14.64]
+ },
+ "id": "ci40798055"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.01,
+ "place": "4 km W of Cobb, CA",
+ "time": 1732239482140,
+ "updated": 1732240770266,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088956",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088956.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "nc",
+ "code": "75088956",
+ "ids": ",nc75088956,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 8,
+ "dmin": 0.01186,
+ "rms": 0.01,
+ "gap": 173,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 4 km W of Cobb, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.766502380371, 38.8175010681152, 1.83000004291534]
+ },
+ "id": "nc75088956"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.66,
+ "place": "2 km NE of Yorba Linda, CA",
+ "time": 1732239142990,
+ "updated": 1732302649670,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798039",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798039.geojson",
+ "felt": 2,
+ "cdi": 3.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 43,
+ "net": "ci",
+ "code": "40798039",
+ "ids": ",ci40798039,",
+ "sources": ",ci,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 51,
+ "dmin": 0.06415,
+ "rms": 0.18,
+ "gap": 70,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 2 km NE of Yorba Linda, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.8038333, 33.8993333, 7.06]
+ },
+ "id": "ci40798039"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732238909701,
+ "updated": 1732275411777,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxsx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxsx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "tx",
+ "code": "2024wxsx",
+ "ids": ",tx2024wxsx,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0,
+ "rms": 0.3,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.304, 31.658, 7.5867]
+ },
+ "id": "tx2024wxsx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.55,
+ "place": "16 km E of Coso Junction, CA",
+ "time": 1732238169730,
+ "updated": 1732299659369,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci37689884",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci37689884.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "ci",
+ "code": "37689884",
+ "ids": ",ci37689884,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.006706,
+ "rms": 0.06,
+ "gap": 164,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 16 km E of Coso Junction, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7686667, 36.0313333, 2.29]
+ },
+ "id": "ci37689884"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.84,
+ "place": "15 km NE of Little Lake, CA",
+ "time": 1732238148740,
+ "updated": 1732298817301,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798031",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798031.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 11,
+ "net": "ci",
+ "code": "40798031",
+ "ids": ",ci40798031,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.0112,
+ "rms": 0.11,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 15 km NE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7763333, 36.0185, 1.49]
+ },
+ "id": "ci40798031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "17 km NNE of Hermleigh, Texas",
+ "time": 1732237762084,
+ "updated": 1732294727332,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxsj",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxsj.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024wxsj",
+ "ids": ",tx2024wxsj,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 17 km NNE of Hermleigh, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-100.668, 32.768, 6.8115]
+ },
+ "id": "tx2024wxsj"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.8,
+ "place": "16 km NNE of Hermleigh, Texas",
+ "time": 1732237688516,
+ "updated": 1732238417040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxsg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxsg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 121,
+ "net": "tx",
+ "code": "2024wxsg",
+ "ids": ",us6000p6wr,tx2024wxsg,",
+ "sources": ",us,tx,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 79,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.8 - 16 km NNE of Hermleigh, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-100.662, 32.764, 7.6904]
+ },
+ "id": "tx2024wxsg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "33 km SW of Ashkāsham, Afghanistan",
+ "time": 1732237514008,
+ "updated": 1732244513040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6wx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6wx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p6wx",
+ "ids": ",us6000p6wx,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 36,
+ "dmin": 2.392,
+ "rms": 1.07,
+ "gap": 96,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 33 km SW of Ashkāsham, Afghanistan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [71.3222, 36.4307, 99.424]
+ },
+ "id": "us6000p6wx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.97,
+ "place": "10 km SSE of Waimea, Hawaii",
+ "time": 1732237513240,
+ "updated": 1732239351820,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536917",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536917.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 60,
+ "net": "hv",
+ "code": "74536917",
+ "ids": ",hv74536917,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.0756,
+ "rms": 0.22,
+ "gap": 106,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 10 km SSE of Waimea, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.648, 19.9323333333333, 11.16]
+ },
+ "id": "hv74536917"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "29 km NE of McCarthy, Alaska",
+ "time": 1732237075069,
+ "updated": 1732237199495,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0t2tjm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0t2tjm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024f0t2tjm",
+ "ids": ",ak024f0t2tjm,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.25,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 29 km NE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-142.5549, 61.6332, 2] },
+ "id": "ak024f0t2tjm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "7 km NNW of Newcastle, Oklahoma",
+ "time": 1732236817560,
+ "updated": 1732239088853,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024wxrt",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024wxrt.geojson",
+ "felt": 3,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ok",
+ "code": "2024wxrt",
+ "ids": ",ok2024wxrt,",
+ "sources": ",ok,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 86,
+ "dmin": 0,
+ "rms": 0.16,
+ "gap": 48,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 7 km NNW of Newcastle, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.62483333, 35.31016667, 4.41]
+ },
+ "id": "ok2024wxrt"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "53 km SSE of Whites City, New Mexico",
+ "time": 1732236684346,
+ "updated": 1732268714077,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxrs",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxrs.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024wxrs",
+ "ids": ",tx2024wxrs,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 20,
+ "dmin": 0.1,
+ "rms": 0.2,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 53 km SSE of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.209, 31.718, 7.843] },
+ "id": "tx2024wxrs"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.12,
+ "place": "15 km NE of Little Lake, CA",
+ "time": 1732236553770,
+ "updated": 1732298664125,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798015",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798015.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40798015",
+ "ids": ",ci40798015,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.007093,
+ "rms": 0.12,
+ "gap": 64,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 15 km NE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.7731667, 36.0221667, 1.94]
+ },
+ "id": "ci40798015"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.81,
+ "place": "11 km W of Anza, CA",
+ "time": 1732236216460,
+ "updated": 1732298010978,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40798007",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40798007.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40798007",
+ "ids": ",ci40798007,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 28,
+ "dmin": 0.04272,
+ "rms": 0.13,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 11 km W of Anza, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.7883333, 33.5623333, 11.03]
+ },
+ "id": "ci40798007"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.49,
+ "place": "4 km ENE of Penngrove, CA",
+ "time": 1732236038770,
+ "updated": 1732256535089,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088951",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088951.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 34,
+ "net": "nc",
+ "code": "75088951",
+ "ids": ",nc75088951,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.05047,
+ "rms": 0.06,
+ "gap": 50,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 4 km ENE of Penngrove, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.633833333333, 38.324, 5.65]
+ },
+ "id": "nc75088951"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732235836560,
+ "updated": 1732272573533,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxri",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxri.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024wxri",
+ "ids": ",tx2024wxri,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.304, 31.662, 7.6892]
+ },
+ "id": "tx2024wxri"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.26,
+ "place": "7 km NNW of Newcastle, Oklahoma",
+ "time": 1732235084780,
+ "updated": 1732542577779,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024wxqv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024wxqv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ok",
+ "code": "2024wxqv",
+ "ids": ",ok2024wxqv,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 48,
+ "dmin": 0.03959223065,
+ "rms": 0.34,
+ "gap": 55,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 7 km NNW of Newcastle, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.62983333, 35.30966667, 5.06]
+ },
+ "id": "ok2024wxqv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "16 km NW of Emery, Utah",
+ "time": 1732235029270,
+ "updated": 1732288946050,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086956",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086956.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "uu",
+ "code": "80086956",
+ "ids": ",uu80086956,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.0345,
+ "rms": 0.04,
+ "gap": 125,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 16 km NW of Emery, Utah"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-111.396166666667, 39.0161666666667, -1.31]
+ },
+ "id": "uu80086956"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.71,
+ "place": "7 km NNW of Newcastle, Oklahoma",
+ "time": 1732234110570,
+ "updated": 1732245039823,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024wxqh",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024wxqh.geojson",
+ "felt": 1,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 45,
+ "net": "ok",
+ "code": "2024wxqh",
+ "ids": ",ok2024wxqh,",
+ "sources": ",ok,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 98,
+ "dmin": 0.04409134777,
+ "rms": 0.18,
+ "gap": 31,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 7 km NNW of Newcastle, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.6245, 35.30766667, 5.23]
+ },
+ "id": "ok2024wxqh"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "13 km E of Fox, Alaska",
+ "time": 1732234070712,
+ "updated": 1732256042073,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024f0ss3en",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024f0ss3en.geojson",
+ "felt": 1,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024f0ss3en",
+ "ids": ",ak024f0ss3en,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.27,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 13 km E of Fox, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.3445, 64.9783, 3.5] },
+ "id": "ak024f0ss3en"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.02,
+ "place": "8 km WSW of Malibu, CA",
+ "time": 1732233947090,
+ "updated": 1732316397858,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797999",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797999.geojson",
+ "felt": 2,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 63,
+ "net": "ci",
+ "code": "40797999",
+ "ids": ",ci40797999,",
+ "sources": ",ci,",
+ "types": ",dyfi,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 40,
+ "dmin": 0.07455,
+ "rms": 0.19,
+ "gap": 172,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.0 - 8 km WSW of Malibu, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.8893333, 33.975, 14.3]
+ },
+ "id": "ci40797999"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.34,
+ "place": "22 km NW of Grapevine, CA",
+ "time": 1732233898900,
+ "updated": 1732239295071,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797991",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797991.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "ci",
+ "code": "40797991",
+ "ids": ",ci40797991,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 30,
+ "dmin": 0.02709,
+ "rms": 0.2,
+ "gap": 96,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 22 km NW of Grapevine, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.0998333, 35.0823333, 15.85]
+ },
+ "id": "ci40797991"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "8 km S of Tona, Colombia",
+ "time": 1732233795202,
+ "updated": 1732654611040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6wi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6wi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p6wi",
+ "ids": ",us6000p6wi,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 1.227,
+ "rms": 0.49,
+ "gap": 57,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 8 km S of Tona, Colombia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-72.9664, 7.1219, 176.534]
+ },
+ "id": "us6000p6wi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.85,
+ "place": "28 km WNW of Volcano, Hawaii",
+ "time": 1732232879910,
+ "updated": 1732233051660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536812",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536812.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 53,
+ "net": "hv",
+ "code": "74536812",
+ "ids": ",hv74536812,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.05118,
+ "rms": 0.239999995,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 28 km WNW of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.502334594727, 19.5023326873779, 0.699999988079071]
+ },
+ "id": "hv74536812"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.02,
+ "place": "6 km SE of Bombay Beach, CA",
+ "time": 1732232725640,
+ "updated": 1732233406297,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797983",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797983.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 16,
+ "net": "ci",
+ "code": "40797983",
+ "ids": ",ci40797983,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.06048,
+ "rms": 0.19,
+ "gap": 92,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 6 km SE of Bombay Beach, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-115.6931667, 33.3021667, 8.8]
+ },
+ "id": "ci40797983"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75,
+ "place": "1 km W of Volcano, Hawaii",
+ "time": 1732232394850,
+ "updated": 1732232503330,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536802",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536802.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "hv",
+ "code": "74536802",
+ "ids": ",hv74536802,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 21,
+ "dmin": 0.03292,
+ "rms": 0.119999997,
+ "gap": 140,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 1 km W of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.251327514648, 19.4441661834717, 22.4400005340576]
+ },
+ "id": "hv74536802"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.51,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732232140140,
+ "updated": 1732237767926,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088946",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088946.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75088946",
+ "ids": ",nc75088946,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 12,
+ "dmin": 0.007926,
+ "rms": 0.02,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.777833333333, 38.7923333333333, 1.59]
+ },
+ "id": "nc75088946"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "2 km NNW of The Geysers, CA",
+ "time": 1732232072150,
+ "updated": 1732233569485,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088941",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088941.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "nc",
+ "code": "75088941",
+ "ids": ",nc75088941,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.01439,
+ "rms": 0.03,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 2 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.769996643066, 38.7886657714844, 1.80999994277954]
+ },
+ "id": "nc75088941"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "44 km NW of Tatitlek, Alaska",
+ "time": 1732231067769,
+ "updated": 1732231185090,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezizulv",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezizulv.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024ezizulv",
+ "ids": ",ak024ezizulv,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.02,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 44 km NW of Tatitlek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-147.3014, 61.1236, 34.1]
+ },
+ "id": "ak024ezizulv"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.7,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732230833250,
+ "updated": 1732654080040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxom",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxom.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 112,
+ "net": "tx",
+ "code": "2024wxom",
+ "ids": ",us6000p6wa,tx2024wxom,",
+ "sources": ",us,tx,",
+ "types": ",origin,phase-data,",
+ "nst": 37,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.7 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.307, 31.656, 6.1255]
+ },
+ "id": "tx2024wxom"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "16 km SSE of Ovando, Montana",
+ "time": 1732230554020,
+ "updated": 1732292786950,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066588",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066588.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "mb",
+ "code": "90066588",
+ "ids": ",mb90066588,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.1228,
+ "rms": 0.15,
+ "gap": 84,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 16 km SSE of Ovando, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-113.082166666667, 46.8755, 13.81]
+ },
+ "id": "mb90066588"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "31 km NNE of McCarthy, Alaska",
+ "time": 1732229534422,
+ "updated": 1732229690746,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezilun6",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezilun6.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "ak",
+ "code": "024ezilun6",
+ "ids": ",ak024ezilun6,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.38,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 31 km NNE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-142.6163, 61.672, 0.1] },
+ "id": "ak024ezilun6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.82,
+ "place": "5 km NW of Big Bear Lake, CA",
+ "time": 1732228900040,
+ "updated": 1732231302527,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797959",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797959.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 10,
+ "net": "ci",
+ "code": "40797959",
+ "ids": ",ci40797959,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 22,
+ "dmin": 0.02304,
+ "rms": 0.12,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.8 - 5 km NW of Big Bear Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9445, 34.2743333, 8.73]
+ },
+ "id": "ci40797959"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "2 km SSE of Maria Antonia, Puerto Rico",
+ "time": 1732228753030,
+ "updated": 1732229487380,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466348",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466348.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "pr",
+ "code": "71466348",
+ "ids": ",pr71466348,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.01716,
+ "rms": 0.14,
+ "gap": 208,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.3 - 2 km SSE of Maria Antonia, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8781666666667, 17.9578333333333, 16.08]
+ },
+ "id": "pr71466348"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.2,
+ "place": "49 km WSW of Rachel, Nevada",
+ "time": 1732228452677,
+ "updated": 1732233902665,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887827",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887827.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nn",
+ "code": "00887827",
+ "ids": ",nn00887827,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.207,
+ "rms": 0.1508,
+ "gap": 240.06,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 49 km WSW of Rachel, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.2254, 37.4195, 8.4] },
+ "id": "nn00887827"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.16,
+ "place": "2 km NNE of Craig, Montana",
+ "time": 1732228256480,
+ "updated": 1732292184300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066583",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066583.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "mb",
+ "code": "90066583",
+ "ids": ",mb90066583,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.2625,
+ "rms": 0.18,
+ "gap": 183,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.2 - 2 km NNE of Craig, Montana"
+ },
+ "geometry": { "type": "Point", "coordinates": [-111.9545, 47.098, 5.05] },
+ "id": "mb90066583"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "24 km WNW of Karluk, Alaska",
+ "time": 1732227714249,
+ "updated": 1732227846124,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezifaio",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezifaio.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024ezifaio",
+ "ids": ",ak024ezifaio,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.23,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 24 km WNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.8531, 57.6359, 73.6]
+ },
+ "id": "ak024ezifaio"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.08,
+ "place": "82 km NNW of Karluk, Alaska",
+ "time": 1732227480990,
+ "updated": 1732257520060,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374548",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374548.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374548",
+ "ids": ",av93374548,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 11,
+ "dmin": 0.07165,
+ "rms": 0.13,
+ "gap": 158,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.1 - 82 km NNW of Karluk, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-154.9395, 58.267, 2.36] },
+ "id": "av93374548"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.04,
+ "place": "6 km WSW of Pala, CA",
+ "time": 1732227189200,
+ "updated": 1732231500332,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797919",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797919.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 17,
+ "net": "ci",
+ "code": "40797919",
+ "ids": ",ci40797919,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.05635,
+ "rms": 0.27,
+ "gap": 56,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.0 Quarry Blast - 6 km WSW of Pala, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1365, 33.3356667, -0.44]
+ },
+ "id": "ci40797919"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.9,
+ "place": "South Sandwich Islands region",
+ "time": 1732226878774,
+ "updated": 1732653151040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6vm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6vm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 369,
+ "net": "us",
+ "code": "6000p6vm",
+ "ids": ",us6000p6vm,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 62,
+ "dmin": 19.675,
+ "rms": 0.53,
+ "gap": 76,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.9 - South Sandwich Islands region"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-25.6457, -58.9494, 48.96]
+ },
+ "id": "us6000p6vm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "8 km NNW of Four Mile Road, Alaska",
+ "time": 1732226314714,
+ "updated": 1732226425534,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezi1qwf",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezi1qwf.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ak",
+ "code": "024ezi1qwf",
+ "ids": ",ak024ezi1qwf,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.47,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 8 km NNW of Four Mile Road, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.2023, 64.6677, 18.9]
+ },
+ "id": "ak024ezi1qwf"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.09,
+ "place": "9 km NNE of Boca de Yuma, Dominican Republic",
+ "time": 1732226222630,
+ "updated": 1732652613040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr2024326002",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr2024326002.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 257,
+ "net": "pr",
+ "code": "2024326002",
+ "ids": ",us6000p6vk,pr2024326002,",
+ "sources": ",us,pr,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.189,
+ "rms": 0.22,
+ "gap": 225,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 4.1 - 9 km NNE of Boca de Yuma, Dominican Republic"
+ },
+ "geometry": { "type": "Point", "coordinates": [-68.56, 18.4521, 154] },
+ "id": "pr2024326002"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.27,
+ "place": "12 km SE of Desert Aire, Washington",
+ "time": 1732226011530,
+ "updated": 1732255964530,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060896",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060896.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 25,
+ "net": "uw",
+ "code": "62060896",
+ "ids": ",uw62060896,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.02795,
+ "rms": 0.08,
+ "gap": 69,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 12 km SE of Desert Aire, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.802, 46.604166666666664, 8.02]
+ },
+ "id": "uw62060896"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.55,
+ "place": "16 km NNE of Apple Valley, CA",
+ "time": 1732225712270,
+ "updated": 1732229994340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797903",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797903.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 37,
+ "net": "ci",
+ "code": "40797903",
+ "ids": ",ci40797903,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 31,
+ "dmin": 0.1878,
+ "rms": 0.17,
+ "gap": 52,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.6 Quarry Blast - 16 km NNE of Apple Valley, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.1178333, 34.6296667, -1.45]
+ },
+ "id": "ci40797903"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.93,
+ "place": "2 km SW of Dixon Lane-Meadow Creek, CA",
+ "time": 1732225675600,
+ "updated": 1732652971848,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088926",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088926.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "nc",
+ "code": "75088926",
+ "ids": ",nc75088926,nn00887819,",
+ "sources": ",nc,nn,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.05572,
+ "rms": 0.11,
+ "gap": 181,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 2 km SW of Dixon Lane-Meadow Creek, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-118.428, 37.3735, 7.98] },
+ "id": "nc75088926"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.18,
+ "place": "15 km SSE of Mammoth Lakes, CA",
+ "time": 1732224704700,
+ "updated": 1732652070736,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088921",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088921.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "nc",
+ "code": "75088921",
+ "ids": ",nc75088921,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.05603,
+ "rms": 0.07,
+ "gap": 96,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 15 km SSE of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.862666666667, 37.5406666666667, 5.51]
+ },
+ "id": "nc75088921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "20 km S of Susitna North, Alaska",
+ "time": 1732224628764,
+ "updated": 1732224755635,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezhvqe4",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezhvqe4.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024ezhvqe4",
+ "ids": ",ak024ezhvqe4,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.48,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 20 km S of Susitna North, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-149.8247, 61.982, 42.4] },
+ "id": "ak024ezhvqe4"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "5 km SSE of Banning, CA",
+ "time": 1732224506070,
+ "updated": 1732229324276,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797895",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797895.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ci",
+ "code": "40797895",
+ "ids": ",ci40797895,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.07161,
+ "rms": 0.11,
+ "gap": 129,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 5 km SSE of Banning, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.8588333, 33.8838333, 15.46]
+ },
+ "id": "ci40797895"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "8 km SSW of Trapper Creek, Alaska",
+ "time": 1732224379260,
+ "updated": 1732229900929,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezhuud3",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezhuud3.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "ak",
+ "code": "024ezhuud3",
+ "ids": ",ak024ezhuud3,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.68,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 8 km SSW of Trapper Creek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.2733, 62.2402, 10.8]
+ },
+ "id": "ak024ezhuud3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.1,
+ "place": "38 km WNW of Indian Springs, Nevada",
+ "time": 1732223758773,
+ "updated": 1732242526183,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887832",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887832.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "nn",
+ "code": "00887832",
+ "ids": ",nn00887832,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.046,
+ "rms": 0.025,
+ "gap": 279.08,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 38 km WNW of Indian Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-116.0545, 36.7311, 2.6] },
+ "id": "nn00887832"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.1,
+ "place": "4 km NW of Green Acres, CA",
+ "time": 1732223297330,
+ "updated": 1732228806226,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797863",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797863.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 19,
+ "net": "ci",
+ "code": "40797863",
+ "ids": ",ci40797863,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 38,
+ "dmin": 0.04675,
+ "rms": 0.25,
+ "gap": 55,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.1 Quarry Blast - 4 km NW of Green Acres, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.107, 33.7581667, -0.52]
+ },
+ "id": "ci40797863"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "44 km N of Petersville, Alaska",
+ "time": 1732222383788,
+ "updated": 1732222509070,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezhf6bu",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezhf6bu.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024ezhf6bu",
+ "ids": ",ak024ezhf6bu,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.52,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 44 km N of Petersville, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.6087, 62.8924, 83.7]
+ },
+ "id": "ak024ezhf6bu"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3000000000000003,
+ "place": "4 km NNW of Bend, Oregon",
+ "time": 1732222259960,
+ "updated": 1732257271550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060886",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060886.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "uw",
+ "code": "62060886",
+ "ids": ",uw62060886,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.02653,
+ "rms": 0.28,
+ "gap": 108,
+ "magType": "ml",
+ "type": "explosion",
+ "title": "M 2.3 Explosion - 4 km NNW of Bend, Oregon"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.34133333333334, 44.091166666666666, -1.32]
+ },
+ "id": "uw62060886"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.61,
+ "place": "8 km SSE of Home Gardens, CA",
+ "time": 1732222103290,
+ "updated": 1732228090066,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797855",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797855.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 40,
+ "net": "ci",
+ "code": "40797855",
+ "ids": ",ci40797855,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 55,
+ "dmin": 0.02704,
+ "rms": 0.29,
+ "gap": 50,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.6 Quarry Blast - 8 km SSE of Home Gardens, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4773333, 33.82, -0.51]
+ },
+ "id": "ci40797855"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.58,
+ "place": "3 km SW of Mill Creek, Oklahoma",
+ "time": 1732221769780,
+ "updated": 1732279081662,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024wxjm",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024wxjm.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "ok",
+ "code": "2024wxjm",
+ "ids": ",ok2024wxjm,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 0.2663477335,
+ "rms": 0.28,
+ "gap": 137,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.6 Quarry Blast - 3 km SW of Mill Creek, Oklahoma"
+ },
+ "geometry": { "type": "Point", "coordinates": [-96.8575, 34.381, 0] },
+ "id": "ok2024wxjm"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.35,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732221554840,
+ "updated": 1732222768271,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088916",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088916.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 28,
+ "net": "nc",
+ "code": "75088916",
+ "ids": ",nc75088916,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.006429,
+ "rms": 0.02,
+ "gap": 80,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.779830932617, 38.7919998168945, 2.15000009536743]
+ },
+ "id": "nc75088916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "47 km NNW of Valdez, Alaska",
+ "time": 1732221455315,
+ "updated": 1732221580808,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezhbtaz",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezhbtaz.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezhbtaz",
+ "ids": ",ak024ezhbtaz,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 1.01,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 47 km NNW of Valdez, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-146.6059, 61.5402, 33.1]
+ },
+ "id": "ak024ezhbtaz"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.55,
+ "place": "59 km SW of Skwentna, Alaska",
+ "time": 1732220932730,
+ "updated": 1732256605680,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374488",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374488.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 5,
+ "net": "av",
+ "code": "93374488",
+ "ids": ",av93374488,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.1089,
+ "rms": 0.19,
+ "gap": 147,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.6 - 59 km SW of Skwentna, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.0315, 61.5526666666667, 4.4]
+ },
+ "id": "av93374488"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "40 km NE of Kenny Lake, Alaska",
+ "time": 1732220678291,
+ "updated": 1732220799578,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezh9185",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezh9185.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024ezh9185",
+ "ids": ",ak024ezh9185,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.48,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 40 km NE of Kenny Lake, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-144.4108, 61.9813, 66.5]
+ },
+ "id": "ak024ezh9185"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.55,
+ "place": "20 km ENE of Little Lake, CA",
+ "time": 1732220653710,
+ "updated": 1732291670989,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797823",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797823.geojson",
+ "felt": 2,
+ "cdi": 2.2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 100,
+ "net": "ci",
+ "code": "40797823",
+ "ids": ",ci40797823,us6000p6us,",
+ "sources": ",ci,us,",
+ "types": ",dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 37,
+ "dmin": 0.05329,
+ "rms": 0.13,
+ "gap": 52,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.6 - 20 km ENE of Little Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.6891667, 35.991, 4.79]
+ },
+ "id": "ci40797823"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3,
+ "place": "208 km W of Langlois, Oregon",
+ "time": 1732220584362,
+ "updated": 1732225124142,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6ur",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6ur.geojson",
+ "felt": 1,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 139,
+ "net": "us",
+ "code": "6000p6ur",
+ "ids": ",us6000p6ur,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 14,
+ "dmin": 1.688,
+ "rms": 0.33,
+ "gap": 280,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.0 - 208 km W of Langlois, Oregon"
+ },
+ "geometry": { "type": "Point", "coordinates": [-126.9671, 43.2541, 10] },
+ "id": "us6000p6ur"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "204 km NE of Lospalos, Timor Leste",
+ "time": 1732220168476,
+ "updated": 1732224358040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6uq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6uq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p6uq",
+ "ids": ",us6000p6uq,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 44,
+ "dmin": 3.234,
+ "rms": 0.68,
+ "gap": 108,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 204 km NE of Lospalos, Timor Leste"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [128.5177, -7.4669, 158.858]
+ },
+ "id": "us6000p6uq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "61 km SE of Denali National Park, Alaska",
+ "time": 1732219928594,
+ "updated": 1732229097041,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezh6ekx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezh6ekx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezh6ekx",
+ "ids": ",ak024ezh6ekx,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.41,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 61 km SE of Denali National Park, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.9608, 63.1089, 124.5]
+ },
+ "id": "ak024ezh6ekx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.97,
+ "place": "36 km ENE of Adak, Alaska",
+ "time": 1732219745800,
+ "updated": 1732256143420,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374478",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374478.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "av",
+ "code": "93374478",
+ "ids": ",av93374478,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 4,
+ "dmin": 0.03332,
+ "rms": 0.31,
+ "gap": 278,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 36 km ENE of Adak, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-176.159, 52.0238333333333, 1.37]
+ },
+ "id": "av93374478"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "15 km S of Hope, Alaska",
+ "time": 1732219718904,
+ "updated": 1732219820395,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezh5lte",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezh5lte.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezh5lte",
+ "ids": ",ak024ezh5lte,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.12,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 15 km S of Hope, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.6825, 60.7766, 32.8]
+ },
+ "id": "ak024ezh5lte"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.57,
+ "place": "6 km E of Butte, Montana",
+ "time": 1732219503340,
+ "updated": 1732291672150,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066578",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066578.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 38,
+ "net": "mb",
+ "code": "90066578",
+ "ids": ",mb90066578,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.0704,
+ "rms": 0.14,
+ "gap": 136,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.6 Quarry Blast - 6 km E of Butte, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.455666666667, 46.0118333333333, -2]
+ },
+ "id": "mb90066578"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "52 km WSW of Tatitlek, Alaska",
+ "time": 1732219335208,
+ "updated": 1732219448476,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezh49ow",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezh49ow.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024ezh49ow",
+ "ids": ",ak024ezh49ow,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.67,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 52 km WSW of Tatitlek, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-147.5819, 60.7114, 0] },
+ "id": "ak024ezh49ow"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.21,
+ "place": "8 km E of Lebec, CA",
+ "time": 1732219132900,
+ "updated": 1732225472847,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797807",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797807.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "ci",
+ "code": "40797807",
+ "ids": ",ci40797807,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 29,
+ "dmin": 0.07282,
+ "rms": 0.23,
+ "gap": 52,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.2 Quarry Blast - 8 km E of Lebec, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-118.7781667, 34.8498333, -1.32]
+ },
+ "id": "ci40797807"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.2,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732218835232,
+ "updated": 1732269316104,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxhy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxhy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 74,
+ "net": "tx",
+ "code": "2024wxhy",
+ "ids": ",tx2024wxhy,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0,
+ "rms": 0.2,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.297, 31.661, 7.3816]
+ },
+ "id": "tx2024wxhy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.26,
+ "place": "5 km NW of Big Bear Lake, CA",
+ "time": 1732218373890,
+ "updated": 1732225177990,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797791",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797791.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "ci",
+ "code": "40797791",
+ "ids": ",ci40797791,",
+ "sources": ",ci,",
+ "types": ",focal-mechanism,nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 50,
+ "dmin": 0.02465,
+ "rms": 0.15,
+ "gap": 58,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 5 km NW of Big Bear Lake, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-116.9461667, 34.2751667, 8.36]
+ },
+ "id": "ci40797791"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.09,
+ "place": "64 km NE of Nikolski, Alaska",
+ "time": 1732218138210,
+ "updated": 1732255821720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027234",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027234.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027234",
+ "ids": ",av93027234,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.04002,
+ "rms": 0.16,
+ "gap": 277,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 64 km NE of Nikolski, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-168.222, 53.3738333333333, 5.53]
+ },
+ "id": "av93027234"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.9,
+ "place": "36 km SSW of False Pass, Alaska",
+ "time": 1732218085510,
+ "updated": 1732254927590,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027229",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027229.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 12,
+ "net": "av",
+ "code": "93027229",
+ "ids": ",av93027229,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.164,
+ "rms": 0.25,
+ "gap": 263,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.9 - 36 km SSW of False Pass, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-163.533666666667, 54.535, 11.46]
+ },
+ "id": "av93027229"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.91999996,
+ "place": "8 km SSW of Leilani Estates, Hawaii",
+ "time": 1732218041420,
+ "updated": 1732218480852,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536642",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536642.geojson",
+ "felt": 1,
+ "cdi": 2.7,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 57,
+ "net": "hv",
+ "code": "74536642",
+ "ids": ",hv74536642,",
+ "sources": ",hv,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 25,
+ "dmin": 0.05594,
+ "rms": 0.219999999,
+ "gap": 212,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.9 - 8 km SSW of Leilani Estates, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.955673217773, 19.4016666412354, 0.419999986886978]
+ },
+ "id": "hv74536642"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.61,
+ "place": "9 km S of Fern Forest, Hawaii",
+ "time": 1732218027690,
+ "updated": 1732226349980,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536637",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536637.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "hv",
+ "code": "74536637",
+ "ids": ",hv74536637,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 13,
+ "dmin": 0.008317,
+ "rms": 0.1,
+ "gap": 205,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 9 km S of Fern Forest, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.125333333333, 19.3765, 6.77]
+ },
+ "id": "hv74536637"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.44,
+ "place": "7 km SE of Willits, CA",
+ "time": 1732217431480,
+ "updated": 1732224869602,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088891",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088891.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "nc",
+ "code": "75088891",
+ "ids": ",nc75088891,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.04355,
+ "rms": 0.06,
+ "gap": 108,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 7 km SE of Willits, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-123.292333333333, 39.3723333333333, 6.47]
+ },
+ "id": "nc75088891"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "112 km NE of Maumere, Indonesia",
+ "time": 1732217405593,
+ "updated": 1732218643040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6u5",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6u5.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p6u5",
+ "ids": ",us6000p6u5,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 62,
+ "dmin": 1.001,
+ "rms": 0.67,
+ "gap": 44,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 112 km NE of Maumere, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [122.9762, -7.9474, 234.394]
+ },
+ "id": "us6000p6u5"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.39,
+ "place": "4 km NNW of The Geysers, CA",
+ "time": 1732217185580,
+ "updated": 1732218135737,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088886",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088886.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "nc",
+ "code": "75088886",
+ "ids": ",nc75088886,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.01049,
+ "rms": 0.02,
+ "gap": 62,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.4 - 4 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.782333374023, 38.8028335571289, 0.889999985694885]
+ },
+ "id": "nc75088886"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.05,
+ "place": "12 km SE of Waimea, Hawaii",
+ "time": 1732216589240,
+ "updated": 1732228140210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536597",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536597.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 65,
+ "net": "hv",
+ "code": "74536597",
+ "ids": ",hv74536597,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 40,
+ "dmin": 0.0899,
+ "rms": 0.29,
+ "gap": 120,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 12 km SE of Waimea, Hawaii"
+ },
+ "geometry": { "type": "Point", "coordinates": [-155.606, 19.933, 10.86] },
+ "id": "hv74536597"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.45,
+ "place": "9 km W of Akutan, Alaska",
+ "time": 1732215906170,
+ "updated": 1732254329760,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374448",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374448.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374448",
+ "ids": ",av93374448,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.02875,
+ "rms": 0.26,
+ "gap": 98,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.5 - 9 km W of Akutan, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-165.913666666667, 54.1293333333333, 3.6]
+ },
+ "id": "av93374448"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.22,
+ "place": "12 km S of Pa‘auilo, Hawaii",
+ "time": 1732215614300,
+ "updated": 1732229999870,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536572",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536572.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 76,
+ "net": "hv",
+ "code": "74536572",
+ "ids": ",hv74536572,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 39,
+ "dmin": 0.1409,
+ "rms": 0.3,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.2 - 12 km S of Pa‘auilo, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.373833333333, 19.9266666666667, 7.4]
+ },
+ "id": "hv74536572"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.13000011,
+ "place": "19 km SE of Pāhala, Hawaii",
+ "time": 1732214992740,
+ "updated": 1732215095570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536557",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536557.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 70,
+ "net": "hv",
+ "code": "74536557",
+ "ids": ",hv74536557,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.1313,
+ "rms": 0.180000007,
+ "gap": 232,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 19 km SE of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.358169555664, 19.0678329467773, 31.5699996948242]
+ },
+ "id": "hv74536557"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "85 km ESE of Egegik, Alaska",
+ "time": 1732214874060,
+ "updated": 1732249332340,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezg74pa",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezg74pa.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "ak",
+ "code": "024ezg74pa",
+ "ids": ",av93374438,us6000p6ts,ak024ezg74pa,",
+ "sources": ",av,us,ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.14,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 85 km ESE of Egegik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-156.0011, 57.9713, 13.6]
+ },
+ "id": "ak024ezg74pa"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.53,
+ "place": "3 km WSW of Anderson Springs, CA",
+ "time": 1732214736230,
+ "updated": 1732223972401,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088881",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088881.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "nc",
+ "code": "75088881",
+ "ids": ",nc75088881,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.001643,
+ "rms": 0.01,
+ "gap": 94,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.5 - 3 km WSW of Anderson Springs, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.724333333333, 38.76, 1.08]
+ },
+ "id": "nc75088881"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.61,
+ "place": "11 km W of Akutan, Alaska",
+ "time": 1732214660630,
+ "updated": 1732249925100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027224",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027224.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027224",
+ "ids": ",av93027224,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.012,
+ "rms": 0.09,
+ "gap": 83,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.6 - 11 km W of Akutan, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-165.948333333333, 54.1171666666667, 6.63]
+ },
+ "id": "av93027224"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732214496889,
+ "updated": 1732284080660,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxfr",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxfr.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024wxfr",
+ "ids": ",tx2024wxfr,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 25,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.295, 31.66, 7.6416] },
+ "id": "tx2024wxfr"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.45,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732214410790,
+ "updated": 1732215571432,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088876",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088876.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 32,
+ "net": "nc",
+ "code": "75088876",
+ "ids": ",nc75088876,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.01598,
+ "rms": 0.03,
+ "gap": 82,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.5 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.769332885742, 38.7864990234375, 2.75999999046326]
+ },
+ "id": "nc75088876"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.08,
+ "place": "42 km SW of Unalaska, Alaska",
+ "time": 1732213173880,
+ "updated": 1732247866200,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374418",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374418.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 18,
+ "net": "av",
+ "code": "93374418",
+ "ids": ",av93374418,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.198,
+ "rms": 0.21,
+ "gap": 202,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.1 - 42 km SW of Unalaska, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-166.986166666667, 53.6065, 13.08]
+ },
+ "id": "av93374418"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "72 km WSW of Cantwell, Alaska",
+ "time": 1732213140148,
+ "updated": 1732213265629,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezg10hq",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezg10hq.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024ezg10hq",
+ "ids": ",ak024ezg10hq,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 2.61,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 72 km WSW of Cantwell, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.3709, 63.2685, 103.2]
+ },
+ "id": "ak024ezg10hq"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.5,
+ "place": "14 km NNE of Ashford, Washington",
+ "time": 1732213004560,
+ "updated": 1732259510810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060861",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060861.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "uw",
+ "code": "62060861",
+ "ids": ",uw62060861,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.01051,
+ "rms": 0.09,
+ "gap": 140,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 14 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.94766666666666, 46.876666666666665, 8.16]
+ },
+ "id": "uw62060861"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.66,
+ "place": "13 km NNE of Ashford, Washington",
+ "time": 1732212953400,
+ "updated": 1732259161880,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uw62060856",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uw62060856.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 7,
+ "net": "uw",
+ "code": "62060856",
+ "ids": ",uw62060856,",
+ "sources": ",uw,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0.005355,
+ "rms": 0.09,
+ "gap": 107,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.7 - 13 km NNE of Ashford, Washington"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.95666666666666, 46.87166666666667, 9]
+ },
+ "id": "uw62060856"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.6,
+ "place": "59 km WNW of Happy Valley, Alaska",
+ "time": 1732212670731,
+ "updated": 1732212882362,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezfzbkx",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezfzbkx.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 39,
+ "net": "ak",
+ "code": "024ezfzbkx",
+ "ids": ",ak024ezfzbkx,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.6 - 59 km WNW of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.7495, 60.1043, 108.9]
+ },
+ "id": "ak024ezfzbkx"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.29,
+ "place": "75 km NW of Ninilchik, Alaska",
+ "time": 1732212500750,
+ "updated": 1732248206920,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374408",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374408.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 1,
+ "net": "av",
+ "code": "93374408",
+ "ids": ",av93374408,ak024ezfyolp,",
+ "sources": ",av,ak,",
+ "types": ",origin,phase-data,",
+ "nst": 8,
+ "dmin": 0.02132,
+ "rms": 0.05,
+ "gap": 157,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.3 - 75 km NW of Ninilchik, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.785333333333, 60.4458333333333, 5.28]
+ },
+ "id": "av93374408"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.79,
+ "place": "14 km S of Volcano, Hawaii",
+ "time": 1732212162340,
+ "updated": 1732212334100,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536527",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536527.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 49,
+ "net": "hv",
+ "code": "74536527",
+ "ids": ",hv74536527,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 46,
+ "dmin": 0.04,
+ "rms": 0.189999998,
+ "gap": 86,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 14 km S of Volcano, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.248168945312, 19.3146667480469, 2.13000011444092]
+ },
+ "id": "hv74536527"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.41,
+ "place": "3 km SE of Owasso, Oklahoma",
+ "time": 1732212115869,
+ "updated": 1732278802772,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ok2024wxee",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ok2024wxee.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 31,
+ "net": "ok",
+ "code": "2024wxee",
+ "ids": ",ok2024wxee,",
+ "sources": ",ok,",
+ "types": ",origin,phase-data,",
+ "nst": 38,
+ "dmin": 0.3437325479,
+ "rms": 0.54,
+ "gap": 204,
+ "magType": "ml",
+ "type": "quarry blast",
+ "title": "M 1.4 Quarry Blast - 3 km SE of Owasso, Oklahoma"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-95.82616667, 36.25333333, 0]
+ },
+ "id": "ok2024wxee"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732211172290,
+ "updated": 1732215849686,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wxdy",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wxdy.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "tx",
+ "code": "2024wxdy",
+ "ids": ",tx2024wxdy,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 29,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.298, 31.664, 6.8817]
+ },
+ "id": "tx2024wxdy"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.9,
+ "place": "14 km E of Fredonia, Arizona",
+ "time": 1732211172200,
+ "updated": 1732288490976,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086931",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086931.geojson",
+ "felt": 15,
+ "cdi": 3.8,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 135,
+ "net": "uu",
+ "code": "80086931",
+ "ids": ",uu80086931,us6000p6tn,",
+ "sources": ",uu,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.1551,
+ "rms": 0.26,
+ "gap": 103,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.9 - 14 km E of Fredonia, Arizona"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-112.368666666667, 36.946, 19.44]
+ },
+ "id": "uu80086931"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.22,
+ "place": "2 km NNW of The Geysers, CA",
+ "time": 1732211137490,
+ "updated": 1732211835984,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088871",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088871.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 23,
+ "net": "nc",
+ "code": "75088871",
+ "ids": ",nc75088871,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 15,
+ "dmin": 0.01397,
+ "rms": 0.03,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 2 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.768997192383, 38.7886657714844, 1.32000005245209]
+ },
+ "id": "nc75088871"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.68,
+ "place": "89 km NNW of Karluk, Alaska",
+ "time": 1732210289920,
+ "updated": 1732247487490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93027219",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93027219.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93027219",
+ "ids": ",av93027219,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.03111,
+ "rms": 0.21,
+ "gap": 125,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.7 - 89 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.014166666667, 58.3135, 3.49]
+ },
+ "id": "av93027219"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.54,
+ "place": "84 km NNW of Karluk, Alaska",
+ "time": 1732210206100,
+ "updated": 1732246950020,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374378",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374378.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 4,
+ "net": "av",
+ "code": "93374378",
+ "ids": ",av93374378,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.07514,
+ "rms": 0.2,
+ "gap": 167,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 0.5 - 84 km NNW of Karluk, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-154.922, 58.2871666666667, 4.49]
+ },
+ "id": "av93374378"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "2 km WSW of Fontana, CA",
+ "time": 1732210157770,
+ "updated": 1732211289112,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797711",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797711.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40797711",
+ "ids": ",ci40797711,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 21,
+ "dmin": 0.03255,
+ "rms": 0.16,
+ "gap": 59,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 2 km WSW of Fontana, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-117.4773333, 34.0936667, 5.07]
+ },
+ "id": "ci40797711"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "18 km SE of Miyazaki, Japan",
+ "time": 1732210102870,
+ "updated": 1732211711040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6tl",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6tl.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "6000p6tl",
+ "ids": ",us6000p6tl,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 69,
+ "dmin": 0.969,
+ "rms": 0.99,
+ "gap": 99,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - 18 km SE of Miyazaki, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [131.5415, 31.7853, 48.007]
+ },
+ "id": "us6000p6tl"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "6 km W of Mammoth Lakes, CA",
+ "time": 1732209777710,
+ "updated": 1732564170507,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088866",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088866.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "nc",
+ "code": "75088866",
+ "ids": ",nc75088866,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.01866,
+ "rms": 0.04,
+ "gap": 102,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km W of Mammoth Lakes, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-119.045833333333, 37.6225, -2.72]
+ },
+ "id": "nc75088866"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "74 km W of Yakutat, Alaska",
+ "time": 1732209725262,
+ "updated": 1732209865582,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezfg8fi",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezfg8fi.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024ezfg8fi",
+ "ids": ",ak024ezfg8fi,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.5,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 74 km W of Yakutat, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.0404, 59.5465, 9.6] },
+ "id": "ak024ezfg8fi"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "88 km E of McCarthy, Alaska",
+ "time": 1732209330404,
+ "updated": 1732209505857,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezfescw",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezfescw.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezfescw",
+ "ids": ",ak024ezfescw,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.67,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 88 km E of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.2648, 61.5072, 0] },
+ "id": "ak024ezfescw"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "3 km N of Carter Springs, Nevada",
+ "time": 1732208266432,
+ "updated": 1732229517988,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887803",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887803.geojson",
+ "felt": 1,
+ "cdi": 0,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "nn",
+ "code": "00887803",
+ "ids": ",nn00887803,",
+ "sources": ",nn,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 12,
+ "dmin": 0.023,
+ "rms": 0.1583,
+ "gap": 74.37,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 3 km N of Carter Springs, Nevada"
+ },
+ "geometry": { "type": "Point", "coordinates": [-119.6378, 38.8967, 0] },
+ "id": "nn00887803"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "67 km ENE of McCarthy, Alaska",
+ "time": 1732208211662,
+ "updated": 1732208321045,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezf26r2",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezf26r2.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezf26r2",
+ "ids": ",ak024ezf26r2,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.85,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 67 km ENE of McCarthy, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-141.8179, 61.73, 0] },
+ "id": "ak024ezf26r2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.96,
+ "place": "1 km NE of The Geysers, CA",
+ "time": 1732208158550,
+ "updated": 1732209136677,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088861",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088861.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 14,
+ "net": "nc",
+ "code": "75088861",
+ "ids": ",nc75088861,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 16,
+ "dmin": 0.008493,
+ "rms": 0.02,
+ "gap": 84,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.0 - 1 km NE of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.746002197266, 38.7876663208008, 1.61000001430511]
+ },
+ "id": "nc75088861"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.19,
+ "place": "1 km E of Finley Point, Montana",
+ "time": 1732207367350,
+ "updated": 1732209399570,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/mb90066548",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/mb90066548.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "mb",
+ "code": "90066548",
+ "ids": ",mb90066548,",
+ "sources": ",mb,",
+ "types": ",origin,phase-data,",
+ "nst": 5,
+ "dmin": 0.1265,
+ "rms": 0.07,
+ "gap": 100,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.2 - 1 km E of Finley Point, Montana"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-114.04, 47.7383333333333, 13.48]
+ },
+ "id": "mb90066548"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.66,
+ "place": "27 km SSE of Mammoth, Wyoming",
+ "time": 1732206681090,
+ "updated": 1732210104490,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086926",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086926.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 42,
+ "net": "uu",
+ "code": "80086926",
+ "ids": ",uu80086926,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.05396,
+ "rms": 0.15,
+ "gap": 126,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 27 km SSE of Mammoth, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.5115, 44.7716666666667, 4.04]
+ },
+ "id": "uu80086926"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 3.2,
+ "place": "181 km W of Langlois, Oregon",
+ "time": 1732206654217,
+ "updated": 1732210727482,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6si",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6si.geojson",
+ "felt": 1,
+ "cdi": 1,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 158,
+ "net": "us",
+ "code": "6000p6si",
+ "ids": ",us6000p6si,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 25,
+ "dmin": 1.931,
+ "rms": 0.86,
+ "gap": 276,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 3.2 - 181 km W of Langlois, Oregon"
+ },
+ "geometry": { "type": "Point", "coordinates": [-126.6474, 43.1968, 10] },
+ "id": "us6000p6si"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.89,
+ "place": "63 km WNW of Tyonek, Alaska",
+ "time": 1732206407730,
+ "updated": 1732245292550,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374348",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374348.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374348",
+ "ids": ",av93374348,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.0399,
+ "rms": 0.09,
+ "gap": 147,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.9 - 63 km WNW of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.235666666667, 61.274, 3.67]
+ },
+ "id": "av93374348"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.4,
+ "place": "16 km SW of Susitna, Alaska",
+ "time": 1732206268679,
+ "updated": 1732206418513,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezeva2b",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezeva2b.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 30,
+ "net": "ak",
+ "code": "024ezeva2b",
+ "ids": ",ak024ezeva2b,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.59,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.4 - 16 km SW of Susitna, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.7479, 61.4504, 96] },
+ "id": "ak024ezeva2b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.76,
+ "place": "6 km NNW of The Geysers, CA",
+ "time": 1732206230490,
+ "updated": 1732207637522,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088856",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088856.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "nc",
+ "code": "75088856",
+ "ids": ",nc75088856,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 25,
+ "dmin": 0.006823,
+ "rms": 0.02,
+ "gap": 54,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km NNW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.805000305176, 38.8178329467773, 2.91000008583069]
+ },
+ "id": "nc75088856"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.63,
+ "place": "7 km NW of The Geysers, CA",
+ "time": 1732206006330,
+ "updated": 1732207039553,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088851",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088851.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 41,
+ "net": "nc",
+ "code": "75088851",
+ "ids": ",nc75088851,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 9,
+ "dmin": 0.009734,
+ "rms": 0.02,
+ "gap": 91,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.6 - 7 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.821166992188, 38.816333770752, 1.1599999666214]
+ },
+ "id": "nc75088851"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "44 km E of Chase, Alaska",
+ "time": 1732204924125,
+ "updated": 1732205056178,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezeqif0",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezeqif0.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezeqif0",
+ "ids": ",ak024ezeqif0,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.99,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 44 km E of Chase, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.2538, 62.5231, 54.3]
+ },
+ "id": "ak024ezeqif0"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.11,
+ "place": "66 km WNW of Beluga, Alaska",
+ "time": 1732204898230,
+ "updated": 1732244910720,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374333",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374333.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374333",
+ "ids": ",av93374333,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.07643,
+ "rms": 0.07,
+ "gap": 124,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.1 - 66 km WNW of Beluga, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-152.27, 61.3178333333333, 0.24]
+ },
+ "id": "av93374333"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.71,
+ "place": "3 km NW of The Geysers, CA",
+ "time": 1732204699910,
+ "updated": 1732205839310,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088846",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088846.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 45,
+ "net": "nc",
+ "code": "75088846",
+ "ids": ",nc75088846,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 19,
+ "dmin": 0.007451,
+ "rms": 0.02,
+ "gap": 79,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 3 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.778503417969, 38.7919998168945, 1.3400000333786]
+ },
+ "id": "nc75088846"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": -0.41,
+ "place": "11 km W of Akutan, Alaska",
+ "time": 1732204687550,
+ "updated": 1732243956210,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/av93374328",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/av93374328.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 0,
+ "net": "av",
+ "code": "93374328",
+ "ids": ",av93374328,",
+ "sources": ",av,",
+ "types": ",origin,phase-data,",
+ "nst": 7,
+ "dmin": 0.009052,
+ "rms": 0.11,
+ "gap": 74,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M -0.4 - 11 km W of Akutan, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-165.950166666667, 54.1203333333333, 6.8]
+ },
+ "id": "av93374328"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "26 km SE of Mammoth, Wyoming",
+ "time": 1732204654950,
+ "updated": 1732214401840,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086921",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086921.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "uu",
+ "code": "80086921",
+ "ids": ",uu80086921,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 24,
+ "dmin": 0.05747,
+ "rms": 0.16,
+ "gap": 88,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 26 km SE of Mammoth, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.510833333333, 44.7751666666667, 2.96]
+ },
+ "id": "uu80086921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.16,
+ "place": "25 km SSE of Mammoth, Wyoming",
+ "time": 1732204563570,
+ "updated": 1732209932560,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086916",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086916.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 21,
+ "net": "uu",
+ "code": "80086916",
+ "ids": ",uu80086916,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 9,
+ "dmin": 0.1291,
+ "rms": 0.19,
+ "gap": 275,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 25 km SSE of Mammoth, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.522833333333, 44.7806666666667, 2.03]
+ },
+ "id": "uu80086916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.74000001,
+ "place": "5 km S of Pāhala, Hawaii",
+ "time": 1732204349680,
+ "updated": 1732204439810,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/hv74536477",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/hv74536477.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "hv",
+ "code": "74536477",
+ "ids": ",hv74536477,",
+ "sources": ",hv,",
+ "types": ",origin,phase-data,",
+ "nst": 43,
+ "dmin": 0.009034,
+ "rms": 0.150000006,
+ "gap": 136,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.7 - 5 km S of Pāhala, Hawaii"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-155.471664428711, 19.1556663513184, 32.2299995422363]
+ },
+ "id": "hv74536477"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 5.2,
+ "place": "178 km SSW of Merizo Village, Guam",
+ "time": 1732203592516,
+ "updated": 1732722607941,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6s7",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6s7.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 416,
+ "net": "us",
+ "code": "6000p6s7",
+ "ids": ",us6000p6s7,",
+ "sources": ",us,",
+ "types": ",oaf,origin,phase-data,",
+ "nst": 59,
+ "dmin": 1.972,
+ "rms": 0.82,
+ "gap": 112,
+ "magType": "mww",
+ "type": "earthquake",
+ "title": "M 5.2 - 178 km SSW of Merizo Village, Guam"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [144.1875, 11.7214, 39.455]
+ },
+ "id": "us6000p6s7"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.9,
+ "place": "5 km ESE of Dilley, Texas",
+ "time": 1732203537761,
+ "updated": 1732574212750,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wwzp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wwzp.geojson",
+ "felt": 2,
+ "cdi": 2,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 130,
+ "net": "tx",
+ "code": "2024wwzp",
+ "ids": ",tx2024wwzp,us6000p6s5,",
+ "sources": ",tx,us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 22,
+ "dmin": 0.2,
+ "rms": 0.1,
+ "gap": 63,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.9 - 5 km ESE of Dilley, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-99.114, 28.647, 8.252] },
+ "id": "tx2024wwzp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.09,
+ "place": "1 km WNW of Indios, Puerto Rico",
+ "time": 1732202618270,
+ "updated": 1732205102630,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/pr71466323",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/pr71466323.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 67,
+ "net": "pr",
+ "code": "71466323",
+ "ids": ",pr71466323,",
+ "sources": ",pr,",
+ "types": ",origin,phase-data,",
+ "nst": 6,
+ "dmin": 0.05086,
+ "rms": 0.05,
+ "gap": 166,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 2.1 - 1 km WNW of Indios, Puerto Rico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-66.8313333333333, 17.9976666666667, 14.76]
+ },
+ "id": "pr71466323"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.8,
+ "place": "250 km NW of Houma, Tonga",
+ "time": 1732202323530,
+ "updated": 1732203122040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6s1",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6s1.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 354,
+ "net": "us",
+ "code": "6000p6s1",
+ "ids": ",us6000p6s1,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 35,
+ "dmin": 4.636,
+ "rms": 0.75,
+ "gap": 106,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.8 - 250 km NW of Houma, Tonga"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-176.9211, -19.5014, 337.758]
+ },
+ "id": "us6000p6s1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.99,
+ "place": "11 km SW of Searles Valley, CA",
+ "time": 1732201882390,
+ "updated": 1732207095995,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ci40797663",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ci40797663.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 15,
+ "net": "ci",
+ "code": "40797663",
+ "ids": ",ci40797663,",
+ "sources": ",ci,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 26,
+ "dmin": 0.08222,
+ "rms": 0.11,
+ "gap": 78,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.0 - 11 km SW of Searles Valley, CA"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.508, 35.7105, 5.97] },
+ "id": "ci40797663"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "10 km SSW of Willow, Alaska",
+ "time": 1732201697345,
+ "updated": 1732202453718,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024eze6e4m",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024eze6e4m.geojson",
+ "felt": 2,
+ "cdi": 3.8,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024eze6e4m",
+ "ids": ",ak024eze6e4m,",
+ "sources": ",ak,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.53,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 10 km SSW of Willow, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.115, 61.6631, 0.1] },
+ "id": "ak024eze6e4m"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.25,
+ "place": "22 km SW of New Idria, CA",
+ "time": 1732201647690,
+ "updated": 1732645470896,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088841",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088841.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "nc",
+ "code": "75088841",
+ "ids": ",nc75088841,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 23,
+ "dmin": 0.03744,
+ "rms": 0.1,
+ "gap": 134,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.3 - 22 km SW of New Idria, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-120.8165, 36.2513333333333, 6.13]
+ },
+ "id": "nc75088841"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.4,
+ "place": "277 km WSW of Tual, Indonesia",
+ "time": 1732200289153,
+ "updated": 1732203550040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6ry",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6ry.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 298,
+ "net": "us",
+ "code": "6000p6ry",
+ "ids": ",us6000p6ry,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 1.705,
+ "rms": 0.78,
+ "gap": 121,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.4 - 277 km WSW of Tual, Indonesia"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [130.3111, -6.1899, 122.754]
+ },
+ "id": "us6000p6ry"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.7,
+ "place": "17 km NNW of Moose Pass, Alaska",
+ "time": 1732200207129,
+ "updated": 1732200354466,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezdshc8",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezdshc8.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 44,
+ "net": "ak",
+ "code": "024ezdshc8",
+ "ids": ",ak024ezdshc8,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.7 - 17 km NNW of Moose Pass, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-149.4445, 60.6405, 29.5]
+ },
+ "id": "ak024ezdshc8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "68 km ESE of Denali National Park, Alaska",
+ "time": 1732199471794,
+ "updated": 1732199653491,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezdpvkb",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezdpvkb.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "ak",
+ "code": "024ezdpvkb",
+ "ids": ",ak024ezdpvkb,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.34,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 68 km ESE of Denali National Park, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-150.4788, 63.2764, 117.5]
+ },
+ "id": "ak024ezdpvkb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "53 km W of Mentone, Texas",
+ "time": 1732199469726,
+ "updated": 1732202182827,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wwxk",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wwxk.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "tx",
+ "code": "2024wwxk",
+ "ids": ",tx2024wwxk,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 87,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 53 km W of Mentone, Texas"
+ },
+ "geometry": { "type": "Point", "coordinates": [-104.162, 31.7, 6.0358] },
+ "id": "tx2024wwxk"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.6,
+ "place": "6 km WSW of Yokohama, Japan",
+ "time": 1732199423458,
+ "updated": 1732209399040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6ru",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6ru.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 326,
+ "net": "us",
+ "code": "6000p6ru",
+ "ids": ",us6000p6ru,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 1.761,
+ "rms": 0.98,
+ "gap": 123,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.6 - 6 km WSW of Yokohama, Japan"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [141.1803, 41.0658, 55.791]
+ },
+ "id": "us6000p6ru"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.24,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732199321790,
+ "updated": 1732201767862,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088836",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088836.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 24,
+ "net": "nc",
+ "code": "75088836",
+ "ids": ",nc75088836,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 11,
+ "dmin": 0.008547,
+ "rms": 0.02,
+ "gap": 89,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.777000427246, 38.792667388916, 1.04999995231628]
+ },
+ "id": "nc75088836"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.83,
+ "place": "2 km NW of The Geysers, CA",
+ "time": 1732199317180,
+ "updated": 1732200735747,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088831",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088831.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 52,
+ "net": "nc",
+ "code": "75088831",
+ "ids": ",nc75088831,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 6,
+ "dmin": 0.009333,
+ "rms": 0.01,
+ "gap": 104,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 2 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.776168823242, 38.7915000915527, 1.16999995708466]
+ },
+ "id": "nc75088831"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.1,
+ "place": "53 km W of Mentone, Texas",
+ "time": 1732199228421,
+ "updated": 1732214827697,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wwxg",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wwxg.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "tx",
+ "code": "2024wwxg",
+ "ids": ",tx2024wwxg,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 18,
+ "dmin": 0.1,
+ "rms": 0.1,
+ "gap": 57,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 53 km W of Mentone, Texas"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.161, 31.695, 5.2924]
+ },
+ "id": "tx2024wwxg"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.75,
+ "place": "12 km E of Cloverdale, CA",
+ "time": 1732198976830,
+ "updated": 1732200137678,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088826",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088826.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 47,
+ "net": "nc",
+ "code": "75088826",
+ "ids": ",nc75088826,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 17,
+ "dmin": 0.01306,
+ "rms": 0.03,
+ "gap": 83,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 12 km E of Cloverdale, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.882331848145, 38.8325004577637, 1.52999997138977]
+ },
+ "id": "nc75088826"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732198952143,
+ "updated": 1732203000910,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wwxa",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wwxa.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "tx",
+ "code": "2024wwxa",
+ "ids": ",tx2024wwxa,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 32,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 71,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.454, 31.663, 5.2924]
+ },
+ "id": "tx2024wwxa"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.8,
+ "place": "51 km NNE of Chickaloon, Alaska",
+ "time": 1732198819018,
+ "updated": 1732198916742,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezdnj8t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezdnj8t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 50,
+ "net": "ak",
+ "code": "024ezdnj8t",
+ "ids": ",ak024ezdnj8t,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.29,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.8 - 51 km NNE of Chickaloon, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-148.1798, 62.237, 31.6] },
+ "id": "ak024ezdnj8t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.7,
+ "place": "49 km E of Yigo Village, Guam",
+ "time": 1732198654590,
+ "updated": 1732199668166,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6rp",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6rp.geojson",
+ "felt": 4,
+ "cdi": 3.4,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 341,
+ "net": "us",
+ "code": "6000p6rp",
+ "ids": ",us6000p6rp,",
+ "sources": ",us,",
+ "types": ",dyfi,origin,phase-data,",
+ "nst": 33,
+ "dmin": 0.458,
+ "rms": 0.76,
+ "gap": 63,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.7 - 49 km E of Yigo Village, Guam"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [145.3388, 13.5993, 84.767]
+ },
+ "id": "us6000p6rp"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.76,
+ "place": "6 km ESE of Marston, Missouri",
+ "time": 1732197903490,
+ "updated": 1732204971430,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nm60594136",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nm60594136.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 48,
+ "net": "nm",
+ "code": "60594136",
+ "ids": ",nm60594136,",
+ "sources": ",nm,",
+ "types": ",origin,phase-data,",
+ "nst": 28,
+ "dmin": 0.04794,
+ "rms": 0.04,
+ "gap": 45,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.8 - 6 km ESE of Marston, Missouri"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-89.5508333333333, 36.4915, 8.87]
+ },
+ "id": "nm60594136"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 0.63,
+ "place": "8 km NW of The Geysers, CA",
+ "time": 1732197580960,
+ "updated": 1732198638512,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088821",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088821.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 6,
+ "net": "nc",
+ "code": "75088821",
+ "ids": ",nc75088821,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 7,
+ "dmin": 0.00882,
+ "rms": 0.07,
+ "gap": 194,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 0.6 - 8 km NW of The Geysers, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-122.828163146973, 38.8176651000977, -0.370000004768372]
+ },
+ "id": "nc75088821"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "2 km S of Tyonek, Alaska",
+ "time": 1732197477337,
+ "updated": 1732197569500,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezda439",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezda439.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "ak",
+ "code": "024ezda439",
+ "ids": ",ak024ezda439,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.8,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 2 km S of Tyonek, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.1364, 61.0461, 83.3]
+ },
+ "id": "ak024ezda439"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.3,
+ "place": "57 km S of Whites City, New Mexico",
+ "time": 1732197400860,
+ "updated": 1732198826393,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/tx2024wwwc",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/tx2024wwwc.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 81,
+ "net": "tx",
+ "code": "2024wwwc",
+ "ids": ",tx2024wwwc,",
+ "sources": ",tx,",
+ "types": ",origin,phase-data,",
+ "nst": 19,
+ "dmin": 0,
+ "rms": 0.1,
+ "gap": 67,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.3 - 57 km S of Whites City, New Mexico"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-104.308, 31.664, 6.6125]
+ },
+ "id": "tx2024wwwc"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.3,
+ "place": "20 km WSW of Furnace Creek, California",
+ "time": 1732196960423,
+ "updated": 1732220681760,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nn00887796",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nn00887796.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 26,
+ "net": "nn",
+ "code": "00887796",
+ "ids": ",nn00887796,",
+ "sources": ",nn,",
+ "types": ",origin,phase-data,",
+ "nst": 16,
+ "dmin": 0.36,
+ "rms": 0.2144,
+ "gap": 100.52999999999997,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.3 - 20 km WSW of Furnace Creek, California"
+ },
+ "geometry": { "type": "Point", "coordinates": [-117.0513, 36.3494, 3.6] },
+ "id": "nn00887796"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 2.11,
+ "place": "26 km SE of Mammoth, Wyoming",
+ "time": 1732196447140,
+ "updated": 1732198934350,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/uu80086911",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/uu80086911.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 68,
+ "net": "uu",
+ "code": "80086911",
+ "ids": ",uu80086911,",
+ "sources": ",uu,",
+ "types": ",origin,phase-data,",
+ "nst": 17,
+ "dmin": 0.0669,
+ "rms": 0.22,
+ "gap": 91,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 2.1 - 26 km SE of Mammoth, Wyoming"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-110.5065, 44.7845, 1.96]
+ },
+ "id": "uu80086911"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 4.3,
+ "place": "119 km WSW of San Antonio de los Cobres, Argentina",
+ "time": 1732195770463,
+ "updated": 1732197246040,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/us6000p6re",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000p6re.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 284,
+ "net": "us",
+ "code": "6000p6re",
+ "ids": ",us6000p6re,",
+ "sources": ",us,",
+ "types": ",origin,phase-data,",
+ "nst": 23,
+ "dmin": 2.055,
+ "rms": 0.53,
+ "gap": 109,
+ "magType": "mb",
+ "type": "earthquake",
+ "title": "M 4.3 - 119 km WSW of San Antonio de los Cobres, Argentina"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-67.4734, -24.4369, 211.672]
+ },
+ "id": "us6000p6re"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.5,
+ "place": "11 km WSW of Happy Valley, Alaska",
+ "time": 1732195519691,
+ "updated": 1732195638625,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezd369t",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezd369t.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 35,
+ "net": "ak",
+ "code": "024ezd369t",
+ "ids": ",ak024ezd369t,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.36,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.5 - 11 km WSW of Happy Valley, Alaska"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-151.9258, 59.9054, 54.5]
+ },
+ "id": "ak024ezd369t"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.19,
+ "place": "7 km NNW of Pinnacles, CA",
+ "time": 1732195519540,
+ "updated": 1732666168300,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/nc75088816",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc75088816.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "reviewed",
+ "tsunami": 0,
+ "sig": 22,
+ "net": "nc",
+ "code": "75088816",
+ "ids": ",nc75088816,",
+ "sources": ",nc,",
+ "types": ",nearby-cities,origin,phase-data,scitech-link,",
+ "nst": 20,
+ "dmin": 0.0978,
+ "rms": 0.06,
+ "gap": 139,
+ "magType": "md",
+ "type": "earthquake",
+ "title": "M 1.2 - 7 km NNW of Pinnacles, CA"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-121.177666666667, 36.5841666666667, 3.7]
+ },
+ "id": "nc75088816"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "mag": 1.9,
+ "place": "60 km W of Cantwell, Alaska",
+ "time": 1732195187279,
+ "updated": 1732195355462,
+ "tz": null,
+ "url": "https://earthquake.usgs.gov/earthquakes/eventpage/ak024ezd1y3u",
+ "detail": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak024ezd1y3u.geojson",
+ "felt": null,
+ "cdi": null,
+ "mmi": null,
+ "alert": null,
+ "status": "automatic",
+ "tsunami": 0,
+ "sig": 56,
+ "net": "ak",
+ "code": "024ezd1y3u",
+ "ids": ",ak024ezd1y3u,",
+ "sources": ",ak,",
+ "types": ",origin,phase-data,",
+ "nst": null,
+ "dmin": null,
+ "rms": 0.31,
+ "gap": null,
+ "magType": "ml",
+ "type": "earthquake",
+ "title": "M 1.9 - 60 km W of Cantwell, Alaska"
+ },
+ "geometry": { "type": "Point", "coordinates": [-150.1545, 63.4024, 117] },
+ "id": "ak024ezd1y3u"
+ }
+ ],
+ "bbox": [-179.5178, -60.2725, -2.8399999141693, 179.8455, 66.246, 604.31]
+}
diff --git a/packages/examples/src/assets/geojson/indoor-3d.json b/packages/examples/src/assets/geojson/indoor-3d.json
new file mode 100755
index 000000000..ac81fd8ca
--- /dev/null
+++ b/packages/examples/src/assets/geojson/indoor-3d.json
@@ -0,0 +1,685 @@
+{
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Bird Exhibit",
+ "height": 0,
+ "base_height": 0,
+ "color": "orange"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.618312, 41.866282],
+ [-87.61832, 41.866674],
+ [-87.618087, 41.866676],
+ [-87.618087, 41.866661],
+ [-87.617423, 41.86667],
+ [-87.617416, 41.8663],
+ [-87.618312, 41.866282]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "06e8fa0b3f851e3ae0e1da5fc17e111e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Bird Exhibit",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617808, 41.866266],
+ [-87.617806, 41.866293],
+ [-87.617415, 41.866298],
+ [-87.617424, 41.866671],
+ [-87.617382, 41.866669],
+ [-87.617371, 41.866274],
+ [-87.617808, 41.866266]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "08a10ab2bf15c4d14669b588062f7f08"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "East Hallway",
+ "base_height": 0,
+ "height": 0,
+ "color": "indigo"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616704, 41.866141],
+ [-87.616707, 41.866338],
+ [-87.61572, 41.866355],
+ [-87.61572, 41.866148],
+ [-87.616704, 41.866141]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "09ead44537d94ece576c7bc001c33e53"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "East Entrance",
+ "base_height": 0,
+ "height": 0,
+ "color": "violet"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.61544, 41.866149],
+ [-87.615449, 41.866358],
+ [-87.615721, 41.866355],
+ [-87.61572, 41.866143],
+ [-87.61544, 41.866149]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "12251ebf764b36cf3b8c5ad42e2deb29"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "height": 0,
+ "base_height": 0,
+ "level": 1,
+ "name": "Under the Earth",
+ "color": "red"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616701, 41.865816],
+ [-87.616705, 41.866115],
+ [-87.615712, 41.866125],
+ [-87.615706, 41.865802],
+ [-87.615936, 41.865801],
+ [-87.615938, 41.865824],
+ [-87.616701, 41.865816]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "1ce4f8c186a40b9927006644e27bfd69"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Atrium",
+ "base_height": 0,
+ "height": 0,
+ "color": "yellow"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617365, 41.865799],
+ [-87.6167, 41.865815],
+ [-87.616718, 41.866672],
+ [-87.617384, 41.86667],
+ [-87.617365, 41.865799]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "369f5d8865e677120b7576b1de6082eb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Ancient Egypt",
+ "height": 0,
+ "base_height": 0,
+ "color": "blue"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.61807, 41.865761],
+ [-87.618299, 41.865758],
+ [-87.618307, 41.866139],
+ [-87.617407, 41.86615],
+ [-87.617399, 41.865799],
+ [-87.61807, 41.865789],
+ [-87.61807, 41.865761]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "3e9f198afe6d7dff01ac81c6eaa511fb"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "West Arch",
+ "height": 40,
+ "base_height": 30,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617424, 41.86667],
+ [-87.617384, 41.86667],
+ [-87.617365, 41.865799],
+ [-87.617405, 41.865799],
+ [-87.617424, 41.86667]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "402706f28b793d27c78d9615fff747f2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Bird Exhibit",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.618312, 41.866283],
+ [-87.61797, 41.866288],
+ [-87.617972, 41.866265],
+ [-87.618312, 41.866259],
+ [-87.618312, 41.866283]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "43e1e2fc8399dee075ad59764f2a2878"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Arch",
+ "level": 1,
+ "color": "grey",
+ "base_height": 30,
+ "height": 40
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617971, 41.866291],
+ [-87.617973, 41.866265],
+ [-87.617805, 41.866267],
+ [-87.617806, 41.866294],
+ [-87.617971, 41.866291]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "4528ad9b9264cbec65bb2e55ac0012c1"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "color": "grey",
+ "base_height": 30,
+ "height": 40,
+ "name": "Arch"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617979, 41.866167],
+ [-87.617797, 41.866168],
+ [-87.617799, 41.866145],
+ [-87.617976, 41.866144],
+ [-87.617979, 41.866167]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "4be6817c3b595042c8d971eebd0c4fd3"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kids Zone",
+ "level": 1,
+ "base_height": 0,
+ "height": 0,
+ "color": "green"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616718, 41.866675],
+ [-87.616709, 41.866371],
+ [-87.615725, 41.866381],
+ [-87.615732, 41.866711],
+ [-87.61596, 41.866711],
+ [-87.61596, 41.866688],
+ [-87.616718, 41.866675]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "5775eba03674ea1cb3550ffb38321432"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "color": "grey",
+ "name": "Arch",
+ "height": 40,
+ "base_height": 30
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616286, 41.866119],
+ [-87.616286, 41.866144],
+ [-87.616089, 41.866149],
+ [-87.616086, 41.86612],
+ [-87.616286, 41.866119]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "598832b1512dc9facc855c5367251531"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Arch",
+ "color": "grey",
+ "height": 40,
+ "base_height": 30
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616287, 41.866343],
+ [-87.616288, 41.866374],
+ [-87.616076, 41.866378],
+ [-87.616077, 41.866347],
+ [-87.616287, 41.866343]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "59ed13d4411ff5f88714d9af539788d2"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "color": "grey",
+ "name": "center_arch",
+ "base_height": 30,
+ "height": 40
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.61737, 41.866198],
+ [-87.617372, 41.86624],
+ [-87.616708, 41.866243],
+ [-87.616708, 41.866203],
+ [-87.61737, 41.866198]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "67f8952a18dfe21ee0744a3e86bc41d8"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Kids Zone",
+ "height": 0,
+ "base_height": 40,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.615719, 41.866354],
+ [-87.615718, 41.866381],
+ [-87.616077, 41.866378],
+ [-87.616077, 41.866347],
+ [-87.615719, 41.866354]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "6bb2c92386bcf4678113d6b3e400ae3b"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Under the Earth",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616089, 41.866149],
+ [-87.616089, 41.866119],
+ [-87.615711, 41.866124],
+ [-87.615713, 41.866147],
+ [-87.616089, 41.866149]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "844c87987089df6b9db3923f6a00e4d6"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Under the Earth",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616707, 41.866115],
+ [-87.616286, 41.866119],
+ [-87.616285, 41.866144],
+ [-87.616705, 41.866141],
+ [-87.616707, 41.866115]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "85547a1ecdbd2ca1fdc6324aea3c6b70"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "North Entrance",
+ "height": 0,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617386, 41.86667],
+ [-87.617388, 41.866786],
+ [-87.617228, 41.866786],
+ [-87.617226, 41.866848],
+ [-87.616867, 41.866849],
+ [-87.616868, 41.866791],
+ [-87.616718, 41.866791],
+ [-87.616718, 41.866672],
+ [-87.617386, 41.86667]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "91ab1ee01729c33568c7b57eb258e699"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Ancient Egypt",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617394, 41.865799],
+ [-87.617405, 41.86615],
+ [-87.617802, 41.866147],
+ [-87.6178, 41.866167],
+ [-87.617369, 41.866172],
+ [-87.617364, 41.865799],
+ [-87.617394, 41.865799]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "943171d55d207024791e15294def7e8f"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Ancient Egypt",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617976, 41.866166],
+ [-87.617976, 41.866143],
+ [-87.618309, 41.866139],
+ [-87.618309, 41.866161],
+ [-87.617976, 41.866166]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "a37230898905988cab9b72927dc99258"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "West Hallway",
+ "level": 1,
+ "base_height": 0,
+ "height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.618309, 41.866161],
+ [-87.618312, 41.86626],
+ [-87.61737, 41.866272],
+ [-87.61737, 41.86617],
+ [-87.618309, 41.866161]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "c7cc79da8711d746985f23a9b22c1d5e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "Kids Zone",
+ "height": 40,
+ "base_height": 0,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616286, 41.866343],
+ [-87.616286, 41.866374],
+ [-87.61671, 41.866371],
+ [-87.616708, 41.866338],
+ [-87.616286, 41.866343]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "cfbf2aee6a73a45c12e7fc7432d6009e"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "South Entrance",
+ "height": 0,
+ "base_height": 0,
+ "color": "teal"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.617359, 41.865801],
+ [-87.617355, 41.865674],
+ [-87.617221, 41.865677],
+ [-87.617219, 41.86559],
+ [-87.616824, 41.865595],
+ [-87.616826, 41.86568],
+ [-87.616695, 41.865683],
+ [-87.6167, 41.865813],
+ [-87.617359, 41.865801]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "d71ab89467076ad023161c37f4ff0d5f"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "East Arch",
+ "height": 40,
+ "base_height": 30,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.616688, 41.866675],
+ [-87.616716, 41.866675],
+ [-87.616699, 41.865814],
+ [-87.616665, 41.865814],
+ [-87.616688, 41.866675]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "dd2baec57e4079eb65dcae5be495da62"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "level": 1,
+ "name": "outer-walls",
+ "base_height": 0,
+ "height": 40,
+ "color": "grey"
+ },
+ "geometry": {
+ "coordinates": [
+ [
+ [-87.618087, 41.86666],
+ [-87.618087, 41.866674],
+ [-87.618319, 41.866674],
+ [-87.618298, 41.865757],
+ [-87.618326, 41.865756],
+ [-87.618347, 41.866693],
+ [-87.618068, 41.866696],
+ [-87.618067, 41.866675],
+ [-87.61741, 41.866684],
+ [-87.617416, 41.866802],
+ [-87.617247, 41.866803],
+ [-87.617246, 41.866866],
+ [-87.616846, 41.866868],
+ [-87.616848, 41.866807],
+ [-87.61669, 41.866811],
+ [-87.616693, 41.866693],
+ [-87.615992, 41.866701],
+ [-87.615992, 41.866729],
+ [-87.615703, 41.866733],
+ [-87.615689, 41.866377],
+ [-87.615412, 41.866382],
+ [-87.615411, 41.866122],
+ [-87.615689, 41.866119],
+ [-87.615682, 41.865781],
+ [-87.615966, 41.865779],
+ [-87.615969, 41.865798],
+ [-87.616669, 41.865794],
+ [-87.616663, 41.865662],
+ [-87.6168, 41.865661],
+ [-87.616796, 41.865571],
+ [-87.61726, 41.865559],
+ [-87.617258, 41.865654],
+ [-87.617388, 41.865652],
+ [-87.617395, 41.865778],
+ [-87.618045, 41.865773],
+ [-87.618044, 41.865742],
+ [-87.618325, 41.865739],
+ [-87.618326, 41.865758],
+ [-87.61807, 41.865761],
+ [-87.61807, 41.865789],
+ [-87.617356, 41.8658],
+ [-87.617356, 41.865672],
+ [-87.617218, 41.865677],
+ [-87.617215, 41.86559],
+ [-87.616822, 41.865595],
+ [-87.616827, 41.86568],
+ [-87.616694, 41.865681],
+ [-87.616697, 41.865813],
+ [-87.615939, 41.865824],
+ [-87.615937, 41.8658],
+ [-87.615706, 41.865802],
+ [-87.615713, 41.866143],
+ [-87.615441, 41.86615],
+ [-87.61545, 41.866357],
+ [-87.615724, 41.866353],
+ [-87.615733, 41.866712],
+ [-87.615959, 41.86671],
+ [-87.615959, 41.866688],
+ [-87.616719, 41.866672],
+ [-87.61672, 41.866791],
+ [-87.616869, 41.86679],
+ [-87.616868, 41.86685],
+ [-87.617223, 41.866847],
+ [-87.617227, 41.866786],
+ [-87.617387, 41.866785],
+ [-87.617383, 41.86667],
+ [-87.618087, 41.86666]
+ ]
+ ],
+ "type": "Polygon"
+ },
+ "id": "ef6512f46485e27963c248bcc945c3db"
+ }
+ ],
+ "type": "FeatureCollection"
+}
diff --git a/packages/examples/src/assets/geojson/new-york-city-districts.json b/packages/examples/src/assets/geojson/new-york-city-districts.json
new file mode 100755
index 000000000..e2eb4b045
--- /dev/null
+++ b/packages/examples/src/assets/geojson/new-york-city-districts.json
@@ -0,0 +1,12668 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "id": 0,
+ "properties": {
+ "communityDistrict": 101,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/101"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.011150343389346, 40.725777216880076],
+ [-74.010812382607256, 40.725789802555752],
+ [-73.999312417001448, 40.717550241777381],
+ [-74.000578392161202, 40.715570902924213],
+ [-74.000454630659604, 40.714365047598868],
+ [-74.000931743323804, 40.713263253045277],
+ [-74.000867814643087, 40.711568158862143],
+ [-74.000509860972329, 40.710984270453366],
+ [-74.001471402320803, 40.709746554323239],
+ [-73.999194511748954, 40.707947376351463],
+ [-74.00118685262828, 40.706859825771751],
+ [-74.000982767577753, 40.706416712992926],
+ [-74.001406666919536, 40.70617938802063],
+ [-74.000582970479797, 40.705433933648877],
+ [-74.001436612454427, 40.704872177705219],
+ [-74.002061425638047, 40.705417004635571],
+ [-74.002569650594666, 40.705523579523494],
+ [-74.00268512768794, 40.705449248118647],
+ [-74.001970704639859, 40.704737867482024],
+ [-74.002171848758593, 40.70460659646367],
+ [-74.002430710758645, 40.704677858004338],
+ [-74.002386708067192, 40.70479566367446],
+ [-74.003323072707872, 40.705628595220048],
+ [-74.003631871693258, 40.705429806751738],
+ [-74.002878430694565, 40.704831357989747],
+ [-74.002972464752858, 40.70476649143739],
+ [-74.003644461838661, 40.7054216846388],
+ [-74.004383444172248, 40.705113259854819],
+ [-74.004266870374281, 40.705011660202032],
+ [-74.004590038836724, 40.704787752945009],
+ [-74.003496320423238, 40.703796769267697],
+ [-74.003719870430402, 40.703654481944646],
+ [-74.004806289007448, 40.704642069051161],
+ [-74.005188051333647, 40.704420535690552],
+ [-74.004925805644064, 40.704211808384628],
+ [-74.005211609004022, 40.704405532235306],
+ [-74.005350272247554, 40.704310079961523],
+ [-74.004157421541649, 40.70323163208721],
+ [-74.004272587521001, 40.703015666411474],
+ [-74.005592426090061, 40.70408256373161],
+ [-74.006018627909228, 40.703873152890765],
+ [-74.006140105779309, 40.703978660271737],
+ [-74.006595919138746, 40.703685902451817],
+ [-74.005304125960777, 40.702559865633027],
+ [-74.005494278050946, 40.702431380950379],
+ [-74.005535461381754, 40.702645521106831],
+ [-74.005675223158875, 40.702584071694936],
+ [-74.00678502257081, 40.703568126900059],
+ [-74.009309076554814, 40.701954603022529],
+ [-74.008699643135671, 40.70113986754221],
+ [-74.007755491506387, 40.701548001671789],
+ [-74.007591362042191, 40.701328081048111],
+ [-74.008536115107745, 40.700919695745029],
+ [-74.008349275591002, 40.700669348388189],
+ [-74.00862036163862, 40.700552163210666],
+ [-74.009600522632866, 40.701865481917835],
+ [-74.011166642179234, 40.701477202208252],
+ [-74.01109588602678, 40.70127499934884],
+ [-74.011289839055237, 40.701249982244235],
+ [-74.01079959311005, 40.700207213006948],
+ [-74.011150335568374, 40.700898400100918],
+ [-74.011358362913541, 40.700851958636321],
+ [-74.011334093443821, 40.700568353682321],
+ [-74.011502911437105, 40.700815058974179],
+ [-74.011729268174747, 40.700770118059658],
+ [-74.011631479186491, 40.700458218248102],
+ [-74.011853785495887, 40.700738921450146],
+ [-74.012086682146915, 40.700681308739156],
+ [-74.011856726230292, 40.700107103408321],
+ [-74.011961961169177, 40.700037545595428],
+ [-74.012391600322843, 40.700620528093999],
+ [-74.012593923275091, 40.700570833472412],
+ [-74.012613820873639, 40.70010826581106],
+ [-74.012908818599925, 40.700523611693399],
+ [-74.013107478473714, 40.700507452180624],
+ [-74.013011893318946, 40.69981825663114],
+ [-74.013113038262944, 40.699774164880068],
+ [-74.013273495491219, 40.700496870227681],
+ [-74.013485608327386, 40.700478222908394],
+ [-74.013532850841372, 40.700108161423138],
+ [-74.013674792487578, 40.700125821450882],
+ [-74.01353047796475, 40.70031110034644],
+ [-74.013558269594867, 40.700939870830517],
+ [-74.013951526904748, 40.700990982460027],
+ [-74.014220632615192, 40.700111490863044],
+ [-74.014152388533361, 40.70057786578343],
+ [-74.014289207411338, 40.700644144765022],
+ [-74.014671200580324, 40.700210400694424],
+ [-74.014323843630166, 40.700661304127095],
+ [-74.014643231688751, 40.700817304325177],
+ [-74.015098322701249, 40.700334265523416],
+ [-74.014673656284756, 40.70083460852581],
+ [-74.015021136616781, 40.700992504013371],
+ [-74.015142318120994, 40.700842892354238],
+ [-74.017145080626577, 40.702705349976149],
+ [-74.017647975728948, 40.703494599879392],
+ [-74.017570357060592, 40.704183880986449],
+ [-74.01779454520279, 40.704234897096185],
+ [-74.017817586979461, 40.703937922496536],
+ [-74.017954740486616, 40.703975785608463],
+ [-74.017844411067244, 40.704242039937895],
+ [-74.018447702437726, 40.704162168231505],
+ [-74.018668307718912, 40.704435239616195],
+ [-74.017480861525726, 40.704667487696142],
+ [-74.018112961291152, 40.704553727487159],
+ [-74.018887466493652, 40.704729148837338],
+ [-74.019342546244602, 40.706093672024494],
+ [-74.019122759634115, 40.706975814337405],
+ [-74.018630583726988, 40.707139715269264],
+ [-74.01884889814508, 40.706970312350194],
+ [-74.018535132696684, 40.706918322014054],
+ [-74.018190293256907, 40.707821626109798],
+ [-74.018855009119662, 40.708047534447395],
+ [-74.017770142545032, 40.712834574789106],
+ [-74.017800378223441, 40.712345124158617],
+ [-74.016624244913388, 40.712157318995182],
+ [-74.016618400783045, 40.712756150029648],
+ [-74.016320066275796, 40.713407982478245],
+ [-74.017544433346572, 40.713611222664227],
+ [-74.017724962192943, 40.713070181622697],
+ [-74.016710186058233, 40.718624176057972],
+ [-74.013213227191926, 40.718315719895749],
+ [-74.012914487463306, 40.719708293225302],
+ [-74.013446940495854, 40.71978201978623],
+ [-74.013389069034446, 40.720042607273193],
+ [-74.014524158565024, 40.720187397445684],
+ [-74.014522790560747, 40.720532050327733],
+ [-74.012965585268248, 40.720328675587126],
+ [-74.012869091380381, 40.720833752211675],
+ [-74.013239373370197, 40.720887986728066],
+ [-74.013080101456367, 40.72154580719522],
+ [-74.012538758072623, 40.721503176576348],
+ [-74.011653265699422, 40.725871761851344],
+ [-74.015163241184226, 40.726319711936782],
+ [-74.015170840858616, 40.726579390657555],
+ [-74.011457631035512, 40.726155689262022],
+ [-74.011150343389346, 40.725777216880076]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 1,
+ "properties": {
+ "communityDistrict": 101,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/101"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.016747560960695, 40.693343368217576],
+ [-74.015403591416472, 40.693066497309104],
+ [-74.015389197682438, 40.693298134665497],
+ [-74.015174821365946, 40.693256680335523],
+ [-74.015259510356458, 40.693036814231853],
+ [-74.015123956349129, 40.693258069299645],
+ [-74.014931366964674, 40.693155771231396],
+ [-74.015156122255206, 40.693015514891542],
+ [-74.014221230848847, 40.692822905338872],
+ [-74.013435633645429, 40.692115441944722],
+ [-74.012502586751879, 40.692303580965522],
+ [-74.012297314925547, 40.692568254835074],
+ [-74.011811856472349, 40.692479335064341],
+ [-74.011757490512551, 40.692263739561525],
+ [-74.011903097225598, 40.692090583507841],
+ [-74.0122011411637, 40.692044905096068],
+ [-74.012461401651251, 40.692212624415852],
+ [-74.013332641496078, 40.692019970102329],
+ [-74.012608569254127, 40.691364103624494],
+ [-74.012034176165756, 40.691503076685656],
+ [-74.01259753218595, 40.691334335544411],
+ [-74.01252783209975, 40.691146337337933],
+ [-74.011825753549729, 40.691064816216127],
+ [-74.012195000900846, 40.691028847568795],
+ [-74.01221017410677, 40.690791696801242],
+ [-74.011971513188229, 40.690770955509493],
+ [-74.011980567612483, 40.690606407271751],
+ [-74.01223131146898, 40.690461330775094],
+ [-74.012306883044914, 40.689280182937559],
+ [-74.013169264027425, 40.68815477019799],
+ [-74.014880979750103, 40.687254570488513],
+ [-74.016047306055469, 40.687338006297615],
+ [-74.017049866092023, 40.686875986913826],
+ [-74.016646640847569, 40.686416347233312],
+ [-74.015143910219948, 40.686437034042989],
+ [-74.016673515960164, 40.686305168553382],
+ [-74.017530324340953, 40.685362987932443],
+ [-74.0176225750659, 40.685409783720679],
+ [-74.016781139571464, 40.686349037919165],
+ [-74.017120991670964, 40.686843337636425],
+ [-74.020543672930813, 40.685272067925943],
+ [-74.020206867105003, 40.684833832071881],
+ [-74.019398423919284, 40.685087404047174],
+ [-74.020952549442754, 40.684384431647281],
+ [-74.020278198464908, 40.684809135174461],
+ [-74.020612672358112, 40.685240390198018],
+ [-74.02259359581042, 40.684359695949922],
+ [-74.022132502528692, 40.683767671379918],
+ [-74.023055747495931, 40.682916945445115],
+ [-74.023194628346616, 40.683000498062128],
+ [-74.022368235576693, 40.683779916793952],
+ [-74.022758990959801, 40.6842844483321],
+ [-74.023541603701233, 40.684002983592528],
+ [-74.024648092412335, 40.683978566613014],
+ [-74.025671838242332, 40.684236456204879],
+ [-74.026334043084319, 40.684801697723984],
+ [-74.02662819083865, 40.685526804749628],
+ [-74.026425771771812, 40.686175339829745],
+ [-74.02020527500305, 40.692033923854076],
+ [-74.019733081945148, 40.693114107472361],
+ [-74.016747560960695, 40.693343368217576]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 2,
+ "properties": {
+ "communityDistrict": 101,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/101"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.039950407885129, 40.700890630642704],
+ [-74.037711247966357, 40.699344040347725],
+ [-74.038097862147737, 40.699039505244201],
+ [-74.038229544453898, 40.698368591697687],
+ [-74.039000438780278, 40.698369890390993],
+ [-74.039340376041153, 40.698115514836196],
+ [-74.041242618322201, 40.699536741434848],
+ [-74.041747688680147, 40.69914786356663],
+ [-74.03991248872623, 40.697702040398376],
+ [-74.041660519148408, 40.696452971639729],
+ [-74.043673712307779, 40.698020404330066],
+ [-74.042703958107225, 40.698800600586672],
+ [-74.042965051615113, 40.69899936232499],
+ [-74.041098612370703, 40.700492943389641],
+ [-74.0408008064624, 40.700268549926484],
+ [-74.040312509735287, 40.700625749192199],
+ [-74.040536377322127, 40.700782094775001],
+ [-74.040288088039475, 40.700643613467108],
+ [-74.039950407885129, 40.700890630642704]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 3,
+ "properties": {
+ "communityDistrict": 101,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/101"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.043877616399115, 40.69018767537122],
+ [-74.043505960785666, 40.689687359636089],
+ [-74.042704284267643, 40.690155204644299],
+ [-74.042553720373064, 40.689962759289585],
+ [-74.043467523102962, 40.689636990606026],
+ [-74.043640786274125, 40.688766559570141],
+ [-74.044385217772799, 40.688516178402672],
+ [-74.046275390036669, 40.689327425896721],
+ [-74.046802848985749, 40.689953256266016],
+ [-74.047476515283705, 40.689611369998012],
+ [-74.04772962763063, 40.689915318466007],
+ [-74.047585719247863, 40.689982506826126],
+ [-74.047431261235104, 40.689803890470891],
+ [-74.046892055005912, 40.690059098322621],
+ [-74.047200293662513, 40.690424815623736],
+ [-74.047170294894244, 40.690991329245044],
+ [-74.046147072086654, 40.691122646033158],
+ [-74.043877616399115, 40.69018767537122]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 4,
+ "properties": {
+ "communityDistrict": 106,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/106"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.97446922636118, 40.73579461792766],
+ [-73.974464612073135, 40.735668172664596],
+ [-73.974145397120765, 40.735672558313311],
+ [-73.973056987781192, 40.73517745341568],
+ [-73.972806617104609, 40.735523918521125],
+ [-73.972930319925283, 40.735607614396812],
+ [-73.972763083803528, 40.735505087473534],
+ [-73.972945206926113, 40.735065170070939],
+ [-73.973298951122089, 40.735242355077233],
+ [-73.973296273629643, 40.735040856642499],
+ [-73.973544728839599, 40.734944326101441],
+ [-73.974437009586197, 40.735316356129282],
+ [-73.973959050297111, 40.733421165538431],
+ [-73.973857300364941, 40.733216303638528],
+ [-73.973676276421273, 40.733205933888179],
+ [-73.973868108422749, 40.73306568719574],
+ [-73.973413217308575, 40.731282416428641],
+ [-73.971963403012467, 40.730000377217465],
+ [-73.971479949072489, 40.729249576693221],
+ [-73.971406179085193, 40.72871876425102],
+ [-73.971685149326461, 40.727405886636667],
+ [-73.971490391588958, 40.727350098110051],
+ [-73.971626972717061, 40.726628453499416],
+ [-73.988779316840834, 40.733965399235885],
+ [-73.986535000019614, 40.737050010973675],
+ [-73.98752047473161, 40.737462697305688],
+ [-73.987101005187782, 40.738053501438763],
+ [-73.987288637460722, 40.73813078597442],
+ [-73.986853452032989, 40.738714752172037],
+ [-73.98730154868953, 40.738903026036418],
+ [-73.987035927871261, 40.739266378549431],
+ [-73.986649696771138, 40.73910091152284],
+ [-73.986471949786832, 40.739362820927028],
+ [-73.985232246112872, 40.738840230794956],
+ [-73.979723464370466, 40.74640287633833],
+ [-73.982956909551802, 40.747764353690854],
+ [-73.980673452491104, 40.750905101457384],
+ [-73.980220899700072, 40.751521979626759],
+ [-73.976985707283106, 40.7501569597583],
+ [-73.968186878036107, 40.762226821325882],
+ [-73.958777908226992, 40.758270920848723],
+ [-73.960656381804739, 40.755923149550178],
+ [-73.962135590580857, 40.754573231473266],
+ [-73.965324056525631, 40.751047718272197],
+ [-73.970788347766415, 40.744406217690312],
+ [-73.970940630264991, 40.744471444025542],
+ [-73.97112503018549, 40.744189748947598],
+ [-73.970703174655839, 40.743990495411154],
+ [-73.97117346687061, 40.744107535510636],
+ [-73.971357530079473, 40.743838455359608],
+ [-73.971205463019672, 40.743771510301293],
+ [-73.971281018316773, 40.743651942051315],
+ [-73.971085334395738, 40.743664058345153],
+ [-73.971267100260576, 40.743389882433661],
+ [-73.971355634091523, 40.743539649852003],
+ [-73.97188888913044, 40.742724820355491],
+ [-73.971740597158458, 40.7426635795089],
+ [-73.971959558562531, 40.742337921543637],
+ [-73.972289920992168, 40.740721039031747],
+ [-73.972164773686572, 40.740675722129112],
+ [-73.972216854884024, 40.740307625061675],
+ [-73.97265743869113, 40.739222754277101],
+ [-73.972489941747398, 40.735803280107596],
+ [-73.97286939178467, 40.735770861285545],
+ [-73.974413858165306, 40.736414393858944],
+ [-73.974459750043906, 40.736294019718159],
+ [-73.974026921703768, 40.736125767245625],
+ [-73.974466471133596, 40.736278456830043],
+ [-73.97450375947156, 40.736064588443888],
+ [-73.974140620183718, 40.735955657167295],
+ [-73.97450488285962, 40.73604228053668],
+ [-73.97446922636118, 40.73579461792766]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 5,
+ "properties": {
+ "communityDistrict": 106,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/106"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.96421230461759, 40.746604318476848],
+ [-73.964583184269458, 40.746454400673308],
+ [-73.964159802884311, 40.746865547359548],
+ [-73.96421230461759, 40.746604318476848]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 6,
+ "properties": {
+ "communityDistrict": 108,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/108"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.938046406034374, 40.780829544275512],
+ [-73.937794487264156, 40.780781258755425],
+ [-73.937799442456779, 40.781031339796996],
+ [-73.937646318214831, 40.781001215892829],
+ [-73.937598946226217, 40.780467840861441],
+ [-73.938237735094006, 40.780259079465324],
+ [-73.938612008880597, 40.780338955869297],
+ [-73.939583789724765, 40.779576474007129],
+ [-73.939493298181716, 40.77987369131575],
+ [-73.938728029265945, 40.780510743704582],
+ [-73.938839518450365, 40.780599249799842],
+ [-73.938744230892752, 40.781043876042219],
+ [-73.938082132687143, 40.781418437777184],
+ [-73.937967577216469, 40.781289334060247],
+ [-73.938046406034374, 40.780829544275512]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 7,
+ "properties": {
+ "communityDistrict": 108,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/108"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.941800327955306, 40.769046926625016],
+ [-73.942855286207049, 40.768303494409288],
+ [-73.949431754971087, 40.76054861736116],
+ [-73.951778220259953, 40.758402549876948],
+ [-73.952540793368755, 40.757095314537246],
+ [-73.955195031174767, 40.754774523475923],
+ [-73.957914525592741, 40.752109854525536],
+ [-73.959039759212644, 40.751392485111388],
+ [-73.961173729608646, 40.74949844307389],
+ [-73.961583049385695, 40.749414301106484],
+ [-73.961550800706007, 40.749773889705843],
+ [-73.961110602079614, 40.750600469900924],
+ [-73.960011323298147, 40.7518315173348],
+ [-73.959500799950973, 40.752956382195713],
+ [-73.959016166274779, 40.75359505995737],
+ [-73.958458368056753, 40.753949236504852],
+ [-73.953391407339538, 40.759796762357688],
+ [-73.953124515710414, 40.760052758429794],
+ [-73.952977882160738, 40.759962107876866],
+ [-73.95208632266548, 40.760862154404805],
+ [-73.950937349280878, 40.762570495237789],
+ [-73.949971917502566, 40.763646030317027],
+ [-73.949086287915648, 40.764264027274926],
+ [-73.945844514238203, 40.768321228251388],
+ [-73.9457035733476, 40.768327934311777],
+ [-73.945481142892874, 40.768624779437786],
+ [-73.945627210934504, 40.768692953178856],
+ [-73.945563020487484, 40.768801776027082],
+ [-73.945245104074587, 40.768773268310689],
+ [-73.944724784974568, 40.769786271534819],
+ [-73.942126745807201, 40.772034700509074],
+ [-73.940887072116695, 40.772372515775992],
+ [-73.940274609873768, 40.772947436893276],
+ [-73.940076657516542, 40.772926186357935],
+ [-73.940282079241967, 40.772301406991204],
+ [-73.94020021779653, 40.771128305662707],
+ [-73.94035533477512, 40.770496574371023],
+ [-73.941117787180247, 40.769414408574626],
+ [-73.941800327955306, 40.769046926625016]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 8,
+ "properties": {
+ "communityDistrict": 108,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/108"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.943832566099459, 40.782859088972337],
+ [-73.943544207124773, 40.782880524325201],
+ [-73.943880681024979, 40.781532042861755],
+ [-73.94360047475412, 40.780159099466161],
+ [-73.943213862652243, 40.779317588659971],
+ [-73.943004239504674, 40.779639495474157],
+ [-73.942716006112036, 40.779544169476409],
+ [-73.942712374762181, 40.779214856939802],
+ [-73.942535563208523, 40.779090956062419],
+ [-73.942893408187928, 40.778614093246098],
+ [-73.942438481745029, 40.777315235765954],
+ [-73.942074188038774, 40.776917846977071],
+ [-73.942081605234875, 40.775957016317363],
+ [-73.942401009490482, 40.775726927526115],
+ [-73.94293043781397, 40.774676268035805],
+ [-73.943664318148436, 40.773840763674222],
+ [-73.946404189851748, 40.771269045619526],
+ [-73.948664164779615, 40.768857623394268],
+ [-73.950069793691654, 40.767025088383569],
+ [-73.954418260786042, 40.762184104951039],
+ [-73.958777908226992, 40.758270920848723],
+ [-73.973014871761208, 40.764278879445193],
+ [-73.955777359123232, 40.787913924471042],
+ [-73.943832566099459, 40.782859088972337]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 9,
+ "properties": {
+ "communityDistrict": 111,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/111"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.921337524193987, 40.800852106497004],
+ [-73.920314655212294, 40.799375459289976],
+ [-73.916629852478025, 40.797858139437068],
+ [-73.915454709664175, 40.797063466030956],
+ [-73.914438272333129, 40.795665517863839],
+ [-73.913804283429442, 40.794511846456366],
+ [-73.913783854367239, 40.793836285482563],
+ [-73.915141344262381, 40.792012481989708],
+ [-73.916305770099797, 40.791117369952083],
+ [-73.916170925658193, 40.791014190212024],
+ [-73.916865405848895, 40.790362063464158],
+ [-73.91710622312948, 40.790468616736746],
+ [-73.918562997749859, 40.78969533382589],
+ [-73.918508769590929, 40.789425089769374],
+ [-73.922188311576477, 40.785509278139244],
+ [-73.922852033462718, 40.783555693418094],
+ [-73.924480522804245, 40.782320490645802],
+ [-73.925718086785338, 40.782176557944538],
+ [-73.927324226409795, 40.78109062932468],
+ [-73.928101189873374, 40.780920320042107],
+ [-73.931053528078877, 40.78239659356656],
+ [-73.935023451345117, 40.783006382028802],
+ [-73.935812997987128, 40.783710080532359],
+ [-73.936070646831226, 40.784217215620586],
+ [-73.935712659976971, 40.785680489492528],
+ [-73.932707073379873, 40.78916719236426],
+ [-73.93240673527869, 40.789718503093077],
+ [-73.932243245112417, 40.789692515411133],
+ [-73.930841787392808, 40.79099143000154],
+ [-73.929724007819146, 40.791366178343004],
+ [-73.928072735756587, 40.790823391283006],
+ [-73.926104102528797, 40.790731606615168],
+ [-73.926160234220774, 40.791716073017177],
+ [-73.926568880358914, 40.791858736637195],
+ [-73.925587791616223, 40.791821859996837],
+ [-73.926739138723136, 40.79192875170461],
+ [-73.926368102603519, 40.791661834384179],
+ [-73.926488043237512, 40.791022393999491],
+ [-73.927868892411922, 40.790954837629243],
+ [-73.927893744985951, 40.791091111420904],
+ [-73.927135637942072, 40.791929306603507],
+ [-73.927801414723973, 40.791997479262321],
+ [-73.92826720296155, 40.792328523948157],
+ [-73.928322716753684, 40.793101989140595],
+ [-73.927353321466811, 40.794461894609896],
+ [-73.926936147674951, 40.795497062196624],
+ [-73.926889678941563, 40.796252010858005],
+ [-73.927118069448653, 40.797203860732957],
+ [-73.927185147783703, 40.797349896780219],
+ [-73.927706941271779, 40.797298662876955],
+ [-73.927202997703475, 40.797386747799791],
+ [-73.927439221853177, 40.797710538215981],
+ [-73.927475886034941, 40.798122899664904],
+ [-73.926882617543583, 40.799940768503205],
+ [-73.926695726295577, 40.80014697715243],
+ [-73.927247708554162, 40.800392957369368],
+ [-73.927114642306421, 40.800563756229515],
+ [-73.927169330224871, 40.80040585369612],
+ [-73.9266656554653, 40.800182714036197],
+ [-73.9265535165366, 40.800315172921408],
+ [-73.926742638929966, 40.800403498972756],
+ [-73.926538464561716, 40.800333898308317],
+ [-73.92668470687282, 40.800454757256233],
+ [-73.92655241808481, 40.800604825092257],
+ [-73.926869086133223, 40.800783676798822],
+ [-73.927046403640446, 40.800651743031686],
+ [-73.926886060219999, 40.80084064836889],
+ [-73.926509548673039, 40.800657031524516],
+ [-73.925775518117462, 40.801730600996272],
+ [-73.925275210201249, 40.801998522743332],
+ [-73.922633786610348, 40.801868738141479],
+ [-73.921910922295723, 40.801502666253519],
+ [-73.921337524193987, 40.800852106497004]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 10,
+ "properties": {
+ "communityDistrict": 111,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/111"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.933805899480205, 40.816512493247458],
+ [-73.934014767269787, 40.814483752624774],
+ [-73.933856526388169, 40.814481474419189],
+ [-73.933929846001945, 40.813347690633762],
+ [-73.934340809714726, 40.809927582749552],
+ [-73.934120734181533, 40.808656451977015],
+ [-73.933561193114812, 40.807600677386638],
+ [-73.931159499873274, 40.804966940262432],
+ [-73.930308764588275, 40.803786014865501],
+ [-73.929208175298285, 40.80114752061084],
+ [-73.929034902403089, 40.801080903851854],
+ [-73.928901523442235, 40.799855214160104],
+ [-73.929036401796253, 40.796762594101246],
+ [-73.929279367411709, 40.795853139520574],
+ [-73.929832540425238, 40.794949061140784],
+ [-73.930196644590794, 40.794593223850057],
+ [-73.933484753496273, 40.792774284832007],
+ [-73.935831067889069, 40.791094704870204],
+ [-73.937081043823014, 40.789366395709948],
+ [-73.936140733141229, 40.788949073410464],
+ [-73.936218598699526, 40.788800497574258],
+ [-73.937149654611034, 40.789168449059439],
+ [-73.938115701558502, 40.787184762756709],
+ [-73.939826196964617, 40.785256552415447],
+ [-73.942469704447731, 40.783896460947005],
+ [-73.943161419105394, 40.783411829992176],
+ [-73.943544207124773, 40.782880524325201],
+ [-73.943760053405853, 40.782828932219999],
+ [-73.955777359123232, 40.787913924471042],
+ [-73.944597513456074, 40.803228145255666],
+ [-73.946131310486734, 40.803877357584135],
+ [-73.944301945871231, 40.806390824581001],
+ [-73.942753672281938, 40.805744012794605],
+ [-73.934873438350309, 40.816527847015031],
+ [-73.933800194730466, 40.818349758873957],
+ [-73.933805899480205, 40.816512493247458]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 11,
+ "properties": {
+ "communityDistrict": 202,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/202"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.893854541204846, 40.827340036744992],
+ [-73.892932260349824, 40.82678703602916],
+ [-73.88789510901421, 40.826743185296529],
+ [-73.885418166585225, 40.828075591914555],
+ [-73.883784141345714, 40.828274292462368],
+ [-73.884387053537296, 40.826817283532826],
+ [-73.884646026497066, 40.823823537474574],
+ [-73.884294881451382, 40.822718204764747],
+ [-73.882447795528904, 40.819268322511505],
+ [-73.878062832621268, 40.816182632444068],
+ [-73.876634599637072, 40.815711508099156],
+ [-73.876731855729673, 40.815386496487271],
+ [-73.872501108859723, 40.813888128234041],
+ [-73.872394379662396, 40.813974335606552],
+ [-73.872436672350773, 40.813850934001572],
+ [-73.872097170271516, 40.813738021521729],
+ [-73.872129311473614, 40.813621168692571],
+ [-73.871657776833985, 40.813254261975977],
+ [-73.87095753684099, 40.812146180609446],
+ [-73.870568069279329, 40.812087317622392],
+ [-73.870553421254868, 40.811243380722175],
+ [-73.868112191400783, 40.806751832831814],
+ [-73.868463469591447, 40.805936548939023],
+ [-73.871698819308065, 40.801805271920422],
+ [-73.871603361925295, 40.801751811446437],
+ [-73.87174509307782, 40.801547366115415],
+ [-73.872380604536971, 40.8012901146327],
+ [-73.872469493370602, 40.80078919284297],
+ [-73.872236573268907, 40.800761622650334],
+ [-73.872346849988503, 40.800174763010446],
+ [-73.872978629446493, 40.800250689026448],
+ [-73.872877110637063, 40.800840089046126],
+ [-73.872627058779116, 40.800791861502255],
+ [-73.872705037586002, 40.801167176810573],
+ [-73.873550965725059, 40.800853302771834],
+ [-73.874677163141541, 40.8009794223616],
+ [-73.874730604526974, 40.801256637628583],
+ [-73.875265170373211, 40.801398152548423],
+ [-73.875857885813289, 40.801455987586372],
+ [-73.875929980717004, 40.80108422258855],
+ [-73.878142188199234, 40.801319290306445],
+ [-73.877968803753731, 40.801711115128157],
+ [-73.878062948534193, 40.802194319344977],
+ [-73.877906464952105, 40.802271801020126],
+ [-73.878432954473098, 40.802702734694172],
+ [-73.880054629848786, 40.802760151407597],
+ [-73.882430217740392, 40.802265572389985],
+ [-73.883695424224754, 40.802162123602869],
+ [-73.883964625196995, 40.801965148359628],
+ [-73.883723266659217, 40.801862843941031],
+ [-73.885051723367084, 40.802130906797998],
+ [-73.885365446650056, 40.802260639745306],
+ [-73.885155171267598, 40.802272453041276],
+ [-73.885914247387532, 40.802798516993619],
+ [-73.886163770565631, 40.803175684976807],
+ [-73.887270974132576, 40.803947002337296],
+ [-73.887380956242168, 40.804110681283873],
+ [-73.887247384584199, 40.804186140114211],
+ [-73.887958972900947, 40.804997925921285],
+ [-73.888592177064865, 40.804789274595215],
+ [-73.889278926528419, 40.805181828760674],
+ [-73.889441059022943, 40.805440093556442],
+ [-73.889224160911539, 40.805845351191977],
+ [-73.889995981707685, 40.804886286752726],
+ [-73.890150985016049, 40.804958182262588],
+ [-73.889374392536951, 40.805925273115257],
+ [-73.890059327586513, 40.805704324179331],
+ [-73.8914990373016, 40.805931237737916],
+ [-73.891441043434313, 40.80566189856539],
+ [-73.891786181356039, 40.805622892086156],
+ [-73.891979296004138, 40.806384708976807],
+ [-73.892706811326534, 40.806343948093499],
+ [-73.892531771394232, 40.805656551568312],
+ [-73.892273158435316, 40.805702433124786],
+ [-73.892163645476415, 40.805302592565404],
+ [-73.891284024139225, 40.804976281899151],
+ [-73.891866108093907, 40.805090487426632],
+ [-73.892197396715616, 40.805284687919361],
+ [-73.892300202614379, 40.805660605669537],
+ [-73.89256667738411, 40.805620710004632],
+ [-73.892748140374039, 40.806340261301983],
+ [-73.894632524172351, 40.806232331922672],
+ [-73.894573939134162, 40.806045773007185],
+ [-73.894726019096197, 40.806026246583485],
+ [-73.894853605358762, 40.80621490815868],
+ [-73.894729704605396, 40.805741101461038],
+ [-73.894842959836325, 40.805723997012123],
+ [-73.895098365535389, 40.806863639174125],
+ [-73.895506339685667, 40.806595305303638],
+ [-73.895279628078669, 40.805766184067295],
+ [-73.895591091579661, 40.806581343348064],
+ [-73.895722737787636, 40.806559657308213],
+ [-73.895670251387571, 40.806290130456915],
+ [-73.895838380731007, 40.806540607571883],
+ [-73.895977946877494, 40.806517615839574],
+ [-73.895874816654597, 40.805808511582981],
+ [-73.896108245840225, 40.806496150951808],
+ [-73.896230408031599, 40.806210471902737],
+ [-73.897260149991467, 40.806040959847245],
+ [-73.897496819538972, 40.806214400202485],
+ [-73.897414726985716, 40.805800059478059],
+ [-73.897638187411516, 40.806201320838781],
+ [-73.897761267148908, 40.80618993350209],
+ [-73.897728272510705, 40.805967494137263],
+ [-73.898013408961589, 40.806166604361785],
+ [-73.897871279245152, 40.805534981759003],
+ [-73.898161107526988, 40.806138070099877],
+ [-73.89829494887951, 40.80609757069832],
+ [-73.898125361334223, 40.80565076037449],
+ [-73.898526564504635, 40.805434309097329],
+ [-73.90097298881534, 40.804876097891125],
+ [-73.902049522779649, 40.804784140521519],
+ [-73.90222284699469, 40.804948113189532],
+ [-73.903417203736481, 40.811506882855625],
+ [-73.904465514767352, 40.812281959913648],
+ [-73.903009832143638, 40.816317791954702],
+ [-73.897569587585892, 40.829423000830893],
+ [-73.893854541204846, 40.827340036744992]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 12,
+ "properties": {
+ "communityDistrict": 202,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/202"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.898330362705565, 40.802412820940006],
+ [-73.896466688345711, 40.800790470891307],
+ [-73.898640387149953, 40.799101164621334],
+ [-73.900210050592804, 40.799264155896537],
+ [-73.899787388671314, 40.799509553369958],
+ [-73.899715638174442, 40.800798808502762],
+ [-73.900037358157405, 40.800908742050183],
+ [-73.899489194898067, 40.800901115930124],
+ [-73.899387486371879, 40.801935665070843],
+ [-73.898330362705565, 40.802412820940006]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 13,
+ "properties": {
+ "communityDistrict": 202,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/202"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.896808832237724, 40.795808445159786],
+ [-73.896938729987909, 40.795635872853559],
+ [-73.897968397837417, 40.795644839161987],
+ [-73.899194342499811, 40.796502456018196],
+ [-73.898520520714698, 40.796936194189776],
+ [-73.897882532401837, 40.797116532147022],
+ [-73.897131497956408, 40.796798077728297],
+ [-73.896785263412326, 40.796329166487091],
+ [-73.896808832237724, 40.795808445159786]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 14,
+ "properties": {
+ "communityDistrict": 228,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/228"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.807286471225694, 40.885931813816164],
+ [-73.805505767435776, 40.886092949181226],
+ [-73.794165557614448, 40.882993216348616],
+ [-73.793855272090696, 40.883643311333458],
+ [-73.793006526493372, 40.883358736880382],
+ [-73.793792374904456, 40.881970326764915],
+ [-73.794917055866705, 40.880543790984852],
+ [-73.795545798426531, 40.880691015373699],
+ [-73.795025962328438, 40.879747797211706],
+ [-73.796250974695724, 40.877011999777359],
+ [-73.79712701174671, 40.876190400903887],
+ [-73.797438154572845, 40.875135332953128],
+ [-73.798553307877214, 40.874401428274467],
+ [-73.798912454636195, 40.874645893142869],
+ [-73.799813895803368, 40.874159849716222],
+ [-73.799877137935695, 40.873484667292566],
+ [-73.800872704582531, 40.871590119893895],
+ [-73.801372354098561, 40.871461043107537],
+ [-73.802522847565967, 40.870506644696789],
+ [-73.803177265017268, 40.871683155070563],
+ [-73.802699397862455, 40.872214691294282],
+ [-73.803391175230843, 40.872505037631072],
+ [-73.804318494680786, 40.871159741570537],
+ [-73.803733393992871, 40.870962602823781],
+ [-73.803583149392509, 40.869948061028573],
+ [-73.802829598932007, 40.870076294030454],
+ [-73.803022036852639, 40.869155119796481],
+ [-73.804220270516112, 40.869002148670738],
+ [-73.80483122145958, 40.869313181785927],
+ [-73.805544959957629, 40.86895600501218],
+ [-73.805884100128822, 40.869068502184909],
+ [-73.805744860803301, 40.869692576552794],
+ [-73.808415968187987, 40.871189693367555],
+ [-73.808387310463317, 40.870571621611674],
+ [-73.807540636361821, 40.87037755217343],
+ [-73.807806731947451, 40.869787520428453],
+ [-73.806952752243959, 40.869657948175849],
+ [-73.80673074905107, 40.86877001307834],
+ [-73.805931795597871, 40.868371932067781],
+ [-73.8048726616979, 40.868233303334804],
+ [-73.804646045029216, 40.866647116436852],
+ [-73.803852807814479, 40.867166484800023],
+ [-73.803003881089523, 40.867041836568788],
+ [-73.803060414183491, 40.865815133705652],
+ [-73.802258160915642, 40.865608206409661],
+ [-73.797803772193078, 40.872256132273904],
+ [-73.794790446816052, 40.873200484033973],
+ [-73.79397363837721, 40.874566594568307],
+ [-73.793572108835932, 40.876121058303397],
+ [-73.793596053305095, 40.876720732725929],
+ [-73.7931670377871, 40.877055639066462],
+ [-73.794221699909329, 40.877382370466329],
+ [-73.794402945860938, 40.877641843501507],
+ [-73.79384702788164, 40.878594459790776],
+ [-73.791745839412485, 40.879890071652447],
+ [-73.790689274788264, 40.880158864278151],
+ [-73.790430465030781, 40.880797258029204],
+ [-73.78978716776686, 40.881207560463295],
+ [-73.789261610198153, 40.881205414623615],
+ [-73.789318357804476, 40.880578670091836],
+ [-73.789120206369176, 40.880080210993434],
+ [-73.790063328607687, 40.879594661514837],
+ [-73.789523093688004, 40.87899812706052],
+ [-73.788273134709058, 40.878873573154209],
+ [-73.785884969766514, 40.879067231752593],
+ [-73.784381681075658, 40.878420531670429],
+ [-73.784177383688245, 40.877721353928472],
+ [-73.784709640264509, 40.876357994847709],
+ [-73.786684932186148, 40.874293476045004],
+ [-73.787086784790404, 40.873536242216105],
+ [-73.787190875605049, 40.87273055372912],
+ [-73.786248744526105, 40.872382846772119],
+ [-73.785447599690173, 40.873132563371023],
+ [-73.785275090314329, 40.873543713799158],
+ [-73.785081396589362, 40.873589962220549],
+ [-73.785172790449749, 40.873119375965942],
+ [-73.785680998536805, 40.872387265559659],
+ [-73.785261520757146, 40.871745322332387],
+ [-73.784393117434774, 40.872784094928718],
+ [-73.78402157839551, 40.873692422099261],
+ [-73.783587384198384, 40.873780954679042],
+ [-73.783339679227083, 40.873512621378552],
+ [-73.78343142541371, 40.873178701948802],
+ [-73.784037169056248, 40.872826601262382],
+ [-73.783809068866674, 40.872533952915006],
+ [-73.783068534260309, 40.872153575922724],
+ [-73.783201754262976, 40.870670360853786],
+ [-73.783915783055775, 40.870422651370625],
+ [-73.784288027410639, 40.870001046741315],
+ [-73.784902160777733, 40.869763973240651],
+ [-73.785602453054537, 40.868341652223684],
+ [-73.78551744321166, 40.869169565720306],
+ [-73.785986798933223, 40.869592738286343],
+ [-73.786571038610106, 40.869777899884326],
+ [-73.787954461454163, 40.869845419063587],
+ [-73.789010597965216, 40.869663275452652],
+ [-73.789681974486442, 40.869361310772653],
+ [-73.790382076929404, 40.868994425624784],
+ [-73.791390325861258, 40.86814130746609],
+ [-73.79228914014459, 40.865814377219429],
+ [-73.792650957670688, 40.864136653184723],
+ [-73.791473171198916, 40.862207106248952],
+ [-73.791880145977544, 40.861255632209634],
+ [-73.791904549275102, 40.860829562711984],
+ [-73.793510297577185, 40.860551681290829],
+ [-73.793639620167468, 40.860241278168601],
+ [-73.793399855167067, 40.859948486200928],
+ [-73.793865684694509, 40.859778774829088],
+ [-73.794545623180255, 40.858888259161247],
+ [-73.794869838667495, 40.858075551760564],
+ [-73.794475669768275, 40.857004487669087],
+ [-73.794268485215355, 40.856800709291846],
+ [-73.794350059342818, 40.856527023803828],
+ [-73.795588801729494, 40.856513236766638],
+ [-73.796854616937296, 40.856264358212201],
+ [-73.797516168323412, 40.855600944659045],
+ [-73.797985334146603, 40.854848932594514],
+ [-73.798249502273819, 40.854795985109597],
+ [-73.798532741268701, 40.855005333104415],
+ [-73.798722556000868, 40.854914401172579],
+ [-73.799024193934059, 40.853957267649882],
+ [-73.798642743304413, 40.853357459921675],
+ [-73.797955833105576, 40.852988329711074],
+ [-73.797805229909031, 40.851949597591918],
+ [-73.798193659968462, 40.850592561406614],
+ [-73.799486814864125, 40.849748448477122],
+ [-73.800099127050487, 40.848298413397387],
+ [-73.800403876289963, 40.848108221174073],
+ [-73.800936284935133, 40.848303294251195],
+ [-73.801467352807393, 40.848770214063507],
+ [-73.801830564441303, 40.850130657058401],
+ [-73.804175579324081, 40.853340120189131],
+ [-73.804525267201058, 40.854851864882782],
+ [-73.80428420522334, 40.855130807845903],
+ [-73.803671165509698, 40.855307395995275],
+ [-73.80352718254764, 40.855603446309779],
+ [-73.804137847564007, 40.857841760375628],
+ [-73.804205857265345, 40.858959048932519],
+ [-73.804642938160924, 40.859968201571178],
+ [-73.804605277688765, 40.861217181495242],
+ [-73.804843331940049, 40.861609338035151],
+ [-73.805326642837855, 40.861885588492747],
+ [-73.805927164275786, 40.86194119699033],
+ [-73.806245719307697, 40.86142748444243],
+ [-73.805820412821205, 40.860034611465395],
+ [-73.806130570389229, 40.859881000645267],
+ [-73.806556299565372, 40.859817926100071],
+ [-73.807118849366489, 40.86031733388991],
+ [-73.807811834937127, 40.860359008154653],
+ [-73.808152553828904, 40.859667377902028],
+ [-73.80762141553879, 40.858828494078409],
+ [-73.807562729567763, 40.858604611631982],
+ [-73.807680481075678, 40.858538063289529],
+ [-73.808531735187501, 40.859914837673884],
+ [-73.80967350837895, 40.860909079181596],
+ [-73.810956267297698, 40.862391750453014],
+ [-73.812254953308496, 40.862745768762927],
+ [-73.812938672874893, 40.863217854003771],
+ [-73.813274239243441, 40.863220838566527],
+ [-73.813727805216701, 40.86387136662723],
+ [-73.814040896144206, 40.863860395031359],
+ [-73.81395857420803, 40.864102704217139],
+ [-73.814228804777102, 40.863863398535528],
+ [-73.814125721866517, 40.863727556313791],
+ [-73.814379977475767, 40.863254397843249],
+ [-73.814595792800048, 40.863088165896158],
+ [-73.815103153841548, 40.863057465367731],
+ [-73.815243951880475, 40.863238061876437],
+ [-73.814881025777368, 40.863919658148191],
+ [-73.815224556219917, 40.864444024975057],
+ [-73.815088914905544, 40.865243573512195],
+ [-73.815173202192526, 40.865601207766773],
+ [-73.816621294954487, 40.86417825384391],
+ [-73.816997602664316, 40.864459031143049],
+ [-73.815787640660815, 40.865758061438655],
+ [-73.814380390825434, 40.867944920257429],
+ [-73.814500123462409, 40.868169020068187],
+ [-73.815253956412633, 40.868190830623398],
+ [-73.815532178783414, 40.869238032274019],
+ [-73.815378700332133, 40.869609329414814],
+ [-73.815837741828261, 40.870388852931391],
+ [-73.816123379328559, 40.870158696482306],
+ [-73.816285199273864, 40.869671684783626],
+ [-73.817225787450198, 40.869009273791775],
+ [-73.817749773836908, 40.869009351051943],
+ [-73.818155735168091, 40.869297013765269],
+ [-73.818330262912852, 40.869879005860696],
+ [-73.818829363646742, 40.869484735937952],
+ [-73.818639536280841, 40.868831407545926],
+ [-73.818166106620325, 40.86843821749121],
+ [-73.817788383122604, 40.868284146726658],
+ [-73.817340854906604, 40.868344752024093],
+ [-73.817104588192251, 40.867763344241297],
+ [-73.817281150425131, 40.86732198498904],
+ [-73.81773424169495, 40.867925903501281],
+ [-73.818609314266297, 40.868522181140278],
+ [-73.818926693172955, 40.86904240959317],
+ [-73.819272602765253, 40.869185429212223],
+ [-73.81999722806917, 40.868990980473654],
+ [-73.820911412498333, 40.869735869284526],
+ [-73.821013660040862, 40.870315041045394],
+ [-73.821605402639989, 40.870130946426798],
+ [-73.821956413058629, 40.870515212965728],
+ [-73.821957836154581, 40.871669815305637],
+ [-73.821762766494743, 40.87203953477033],
+ [-73.82122952671989, 40.872281963235785],
+ [-73.821020468917922, 40.872816112833902],
+ [-73.821376896068926, 40.872868056822853],
+ [-73.821562833496316, 40.872539437295679],
+ [-73.821945677017013, 40.872682233653201],
+ [-73.821635979035207, 40.873123475139053],
+ [-73.82115079655469, 40.873025307180029],
+ [-73.820467842280863, 40.873548442409835],
+ [-73.821274072124169, 40.874180097808377],
+ [-73.821561579623577, 40.874156294928895],
+ [-73.821901763202149, 40.873727007305277],
+ [-73.82209812832312, 40.874774244603344],
+ [-73.820746084265579, 40.874141591391869],
+ [-73.820727498619661, 40.874482463430176],
+ [-73.820429484546125, 40.874380926556668],
+ [-73.820164174226178, 40.874013919985231],
+ [-73.820241525270902, 40.873784490984193],
+ [-73.82007094639313, 40.87343818793439],
+ [-73.819290197936084, 40.8734027074875],
+ [-73.818946440414578, 40.873669404542198],
+ [-73.819176194918938, 40.873830791830244],
+ [-73.819695672778451, 40.873677430120409],
+ [-73.819948032340946, 40.873825146790999],
+ [-73.819905271110997, 40.87403276547326],
+ [-73.819229695760583, 40.874074130063882],
+ [-73.819184277323799, 40.874478809747025],
+ [-73.819905193966491, 40.874222256573525],
+ [-73.820304724008537, 40.874890060435312],
+ [-73.820595453845471, 40.874764909339994],
+ [-73.821249800656744, 40.874813890097826],
+ [-73.821649162171596, 40.875145077031014],
+ [-73.821354158618391, 40.875320562484333],
+ [-73.820887952454655, 40.875094271245125],
+ [-73.820363897866187, 40.875268186919257],
+ [-73.820217054257299, 40.875717503979551],
+ [-73.819760134902495, 40.876260627290783],
+ [-73.819975343132455, 40.876796959096822],
+ [-73.820680264687653, 40.877254870148562],
+ [-73.820442818803329, 40.876036329303048],
+ [-73.82116398203064, 40.876698238746407],
+ [-73.820976958102321, 40.877006298972631],
+ [-73.821056874456744, 40.877566583073971],
+ [-73.820213054745494, 40.878132996736859],
+ [-73.820337447186176, 40.879398939831255],
+ [-73.820024095046662, 40.879778518881032],
+ [-73.820262937156286, 40.879926212743833],
+ [-73.820102176225475, 40.880950368080718],
+ [-73.819117097662769, 40.881322274248745],
+ [-73.819788821900133, 40.881645379201927],
+ [-73.819688740438423, 40.881929590243665],
+ [-73.819259461457762, 40.882089945098002],
+ [-73.819728550170865, 40.882231148309799],
+ [-73.819556473129978, 40.882429594155084],
+ [-73.819772595439417, 40.882635497927424],
+ [-73.819749494898545, 40.882830749568512],
+ [-73.819344974615547, 40.883562820315177],
+ [-73.819832753043684, 40.885669254071232],
+ [-73.816707785914204, 40.886480950542548],
+ [-73.813997483660131, 40.886782132483908],
+ [-73.811406452266354, 40.88663558731109],
+ [-73.807286471225694, 40.885931813816164]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 15,
+ "properties": {
+ "communityDistrict": 228,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/228"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.820367178696415, 40.860672329519964],
+ [-73.820464419586514, 40.860313118867928],
+ [-73.819992279485092, 40.859873839858892],
+ [-73.820522105791383, 40.859746757044775],
+ [-73.821002795027852, 40.859991139093061],
+ [-73.82098853684252, 40.859327211246026],
+ [-73.821445648814958, 40.859388827942176],
+ [-73.821444602248718, 40.859778642979862],
+ [-73.821692463706086, 40.860089660604622],
+ [-73.821659018742835, 40.860595151579169],
+ [-73.822775415668403, 40.860121783750671],
+ [-73.821973119358233, 40.860138821724135],
+ [-73.821925474502905, 40.859956021107486],
+ [-73.822407243871012, 40.859798401866385],
+ [-73.821685274628337, 40.859779015190846],
+ [-73.821613676662992, 40.859553541671254],
+ [-73.821991138091136, 40.859401852821051],
+ [-73.82196739639943, 40.85927999861542],
+ [-73.820548013072482, 40.859064618952502],
+ [-73.820266967957124, 40.859161635444742],
+ [-73.820239461929987, 40.859356695013624],
+ [-73.819084916892663, 40.859347272774315],
+ [-73.818570033099405, 40.859510918757401],
+ [-73.81844281128356, 40.859829347193468],
+ [-73.818639505627203, 40.860698297068993],
+ [-73.818223948927766, 40.861060710279276],
+ [-73.817245857421995, 40.860844644696044],
+ [-73.816755430994775, 40.861245874357031],
+ [-73.815876382575041, 40.861003864611391],
+ [-73.815682042425749, 40.861109764543748],
+ [-73.815492937079213, 40.860955286737095],
+ [-73.815263214152793, 40.861117747124979],
+ [-73.814796297573494, 40.861128956746732],
+ [-73.814852060240966, 40.860900990309851],
+ [-73.813818025868741, 40.860548278670713],
+ [-73.812731464950446, 40.858877541947749],
+ [-73.812306027084176, 40.854162026473197],
+ [-73.816408709078786, 40.854082255617271],
+ [-73.81684183576192, 40.853625213366122],
+ [-73.817208283531215, 40.851828165777306],
+ [-73.816915423173157, 40.851673525567058],
+ [-73.817124090422126, 40.851269573444732],
+ [-73.816858738707495, 40.850957375998682],
+ [-73.815713784946539, 40.850816203844829],
+ [-73.816035681338235, 40.850602669116299],
+ [-73.81596528550169, 40.850389525194451],
+ [-73.816194723498, 40.850377939842495],
+ [-73.816286190942321, 40.850194576448963],
+ [-73.815652790589127, 40.84934983712575],
+ [-73.815209650661131, 40.849230762977548],
+ [-73.815141919186615, 40.849080612735015],
+ [-73.816301191523266, 40.848572171900926],
+ [-73.820140436144655, 40.848020598550626],
+ [-73.820484056174038, 40.848501025630163],
+ [-73.825582670132235, 40.845863048703436],
+ [-73.825510223104729, 40.845561537336977],
+ [-73.825731497689787, 40.846221403535914],
+ [-73.82601153990079, 40.846140331928488],
+ [-73.82672495578035, 40.847536585233968],
+ [-73.827253112516388, 40.849113817722724],
+ [-73.82724661416367, 40.850342189500786],
+ [-73.826878543486032, 40.851669910025606],
+ [-73.827184237589023, 40.851711205793777],
+ [-73.826759482485102, 40.853006819225811],
+ [-73.827378357662539, 40.852817959669302],
+ [-73.827230260601695, 40.853350756947847],
+ [-73.828601971653228, 40.855717847594697],
+ [-73.829083187060064, 40.85567601369614],
+ [-73.829916239097486, 40.856180818225276],
+ [-73.829999038307903, 40.858211136045725],
+ [-73.821567035368972, 40.861050450239098],
+ [-73.820236846595549, 40.861594655331636],
+ [-73.818954255954097, 40.862474561691158],
+ [-73.818871964361207, 40.862245545597347],
+ [-73.81937709260572, 40.861795585132008],
+ [-73.81951371932054, 40.861470910473351],
+ [-73.820261572145583, 40.861103901029999],
+ [-73.820367178696415, 40.860672329519964]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 16,
+ "properties": {
+ "communityDistrict": 228,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/228"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.818116669097236, 40.865568970472111],
+ [-73.819102114707547, 40.865197113256819],
+ [-73.819368452942115, 40.8659447219651],
+ [-73.817988969449502, 40.86608815411433],
+ [-73.818116669097236, 40.865568970472111]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 17,
+ "properties": {
+ "communityDistrict": 318,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/318"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.913323083105226, 40.602611643275132],
+ [-73.913000175893131, 40.602740291683936],
+ [-73.913475115442381, 40.602349295873353],
+ [-73.913298546357993, 40.602250351246404],
+ [-73.913116587996583, 40.602220255929296],
+ [-73.912738668623376, 40.602708677016409],
+ [-73.91285319795081, 40.602507405574627],
+ [-73.912723986223568, 40.602453262946085],
+ [-73.912886934853972, 40.602484703640549],
+ [-73.913096913069495, 40.602214452920414],
+ [-73.911584276893379, 40.602135488403363],
+ [-73.912541702483722, 40.602364439955899],
+ [-73.91165189296602, 40.602278257844787],
+ [-73.911544111829883, 40.602439323103887],
+ [-73.912610986765316, 40.602532006593854],
+ [-73.912572903417242, 40.60268329902901],
+ [-73.912518892580451, 40.602540309303571],
+ [-73.912488828204971, 40.602674149766628],
+ [-73.911515058570771, 40.602460243059369],
+ [-73.910940079824542, 40.60249781432195],
+ [-73.910946343467089, 40.602364642186537],
+ [-73.910865365857774, 40.602490483288435],
+ [-73.910876834441382, 40.602342354837091],
+ [-73.91151957260341, 40.602396868569848],
+ [-73.911542343691778, 40.602224540785613],
+ [-73.910939995739767, 40.602128474221928],
+ [-73.91155529140805, 40.602155464729762],
+ [-73.910758308465034, 40.602027500983375],
+ [-73.910751239722586, 40.602437299862515],
+ [-73.90903689530532, 40.60267734322013],
+ [-73.909018485670813, 40.6025248276692],
+ [-73.910711545229745, 40.602419493178793],
+ [-73.91070633053954, 40.602144515265316],
+ [-73.909409342387235, 40.602190765754784],
+ [-73.910731229473271, 40.602021376027118],
+ [-73.909796499923544, 40.602043013003993],
+ [-73.908942251380367, 40.601607040698681],
+ [-73.90767859330397, 40.602291665714738],
+ [-73.906572239358681, 40.602344003720653],
+ [-73.905387303619193, 40.602649653479247],
+ [-73.904574527674043, 40.602525481995166],
+ [-73.903934495086688, 40.602725102786415],
+ [-73.90332866108642, 40.602456303985541],
+ [-73.90319707837952, 40.602649958503889],
+ [-73.902898174107335, 40.602639059702987],
+ [-73.901430138271664, 40.603272677456545],
+ [-73.89983493364754, 40.603339791384869],
+ [-73.898921580767379, 40.603636282503757],
+ [-73.89956904192465, 40.602412570694703],
+ [-73.900880013300039, 40.601144727461488],
+ [-73.902066250183523, 40.6003727267112],
+ [-73.904661993081348, 40.599306196646161],
+ [-73.905850073500105, 40.59864709311632],
+ [-73.907015680028906, 40.597668327163234],
+ [-73.907566254868499, 40.596990830449805],
+ [-73.908179747074485, 40.595825567882109],
+ [-73.908467298364798, 40.594658205974177],
+ [-73.908063734206834, 40.591305397344236],
+ [-73.908363621879133, 40.5896826681902],
+ [-73.908844606755878, 40.58874136481694],
+ [-73.909534712230965, 40.587878983459746],
+ [-73.910397823750145, 40.58713291762222],
+ [-73.911783401795049, 40.586311865535293],
+ [-73.91195662784709, 40.586794206925674],
+ [-73.911882489600387, 40.587045267664308],
+ [-73.911676208775503, 40.587041561344442],
+ [-73.911576775157897, 40.587262624885831],
+ [-73.911910801352448, 40.588467433873632],
+ [-73.911485790056219, 40.591108753018489],
+ [-73.91202436365306, 40.593096233906437],
+ [-73.912042340156376, 40.594506954288882],
+ [-73.912578344447553, 40.595553121746448],
+ [-73.913198003375996, 40.596178950158723],
+ [-73.913645623968833, 40.597099977182289],
+ [-73.914187394823074, 40.59735702628366],
+ [-73.914485735682206, 40.59794198139339],
+ [-73.915444715695202, 40.599042194935073],
+ [-73.916903895183509, 40.599837301551631],
+ [-73.917566445215286, 40.600016547952663],
+ [-73.917836588591982, 40.600404306991507],
+ [-73.918126036009426, 40.600438631387874],
+ [-73.918591903952574, 40.600796389566781],
+ [-73.920165737981449, 40.601087838804787],
+ [-73.920180701199982, 40.60128267508793],
+ [-73.921399870129946, 40.601703002236192],
+ [-73.92151689981948, 40.601923654141125],
+ [-73.921682553138595, 40.601770058459181],
+ [-73.922674443742466, 40.601592236484933],
+ [-73.923241203678273, 40.601079393459585],
+ [-73.924003078546136, 40.599730145227909],
+ [-73.924570428667792, 40.599723602731885],
+ [-73.926280230723265, 40.600621514101952],
+ [-73.928322552373729, 40.602218382314526],
+ [-73.928786511954229, 40.602211838396776],
+ [-73.928948688134525, 40.602512604013675],
+ [-73.929506712027873, 40.602709233504306],
+ [-73.929615897491772, 40.603189639979398],
+ [-73.929011696537628, 40.603685418468331],
+ [-73.929274585377399, 40.603993574805209],
+ [-73.929874929969188, 40.603742325988733],
+ [-73.930142525818823, 40.604029594336566],
+ [-73.930565232803801, 40.60372682581901],
+ [-73.931003361431678, 40.603935803661365],
+ [-73.931962271303803, 40.603121637615807],
+ [-73.932116087738137, 40.602688516646566],
+ [-73.9317620040799, 40.602596384218188],
+ [-73.931025398878774, 40.601672099959572],
+ [-73.930730188218035, 40.601592761861333],
+ [-73.930306809869052, 40.601171674640838],
+ [-73.929649361733979, 40.601204457578781],
+ [-73.929342680392352, 40.600969151121987],
+ [-73.92941042444437, 40.600759763522717],
+ [-73.92927494215013, 40.600801237011865],
+ [-73.929366537820698, 40.600647008853727],
+ [-73.929226983256797, 40.60048810851643],
+ [-73.928652504797654, 40.600385591829124],
+ [-73.928592306000738, 40.600611615976227],
+ [-73.928376810262336, 40.600350095304492],
+ [-73.927847991663555, 40.600316057979349],
+ [-73.927202404004518, 40.599910080434135],
+ [-73.922901855339759, 40.596447563816319],
+ [-73.921775363243555, 40.595030926201105],
+ [-73.920321410523968, 40.594718846993032],
+ [-73.918674399732794, 40.593332078578698],
+ [-73.917956670352055, 40.592910465509611],
+ [-73.917263905961335, 40.591979118031276],
+ [-73.916908494439397, 40.59174368656948],
+ [-73.916559401060709, 40.591092587438105],
+ [-73.915099543282551, 40.590420492117495],
+ [-73.914858379017886, 40.590070611858046],
+ [-73.914540591210979, 40.58994422917548],
+ [-73.914619213958716, 40.589327155779593],
+ [-73.91420586362733, 40.589224387756893],
+ [-73.914344276717856, 40.588886889304987],
+ [-73.917254822306234, 40.587477879512186],
+ [-73.918092564808362, 40.586570335004716],
+ [-73.929568583093001, 40.596820264919806],
+ [-73.928131396709531, 40.597777928146151],
+ [-73.933551171536052, 40.602687280824874],
+ [-73.934262667258807, 40.60223071136695],
+ [-73.938434935758409, 40.605973863058743],
+ [-73.938098083418382, 40.606195209680678],
+ [-73.937890508110314, 40.606587861063474],
+ [-73.938347084371415, 40.607000456057875],
+ [-73.938489866191787, 40.606921943503181],
+ [-73.939049627748119, 40.607433297476042],
+ [-73.939012468730184, 40.607599477306643],
+ [-73.944055609321495, 40.611992841734242],
+ [-73.947326721606174, 40.629166566706836],
+ [-73.944155352558241, 40.629508285207962],
+ [-73.94551095521949, 40.630791482901316],
+ [-73.944550391147104, 40.631071787088281],
+ [-73.943573087771142, 40.630994155128782],
+ [-73.940596866801016, 40.63138939981696],
+ [-73.937592735704854, 40.632267856999128],
+ [-73.924646949371436, 40.638979128753839],
+ [-73.915930862438344, 40.645774695237954],
+ [-73.901284781690606, 40.655364648675672],
+ [-73.900117158572513, 40.656754643748044],
+ [-73.899637864081498, 40.657981441794959],
+ [-73.899565589760869, 40.658956575610681],
+ [-73.899217608282456, 40.659111403689977],
+ [-73.898806984995034, 40.657406661805041],
+ [-73.899041803889048, 40.657371657570884],
+ [-73.898002558137307, 40.653801223955682],
+ [-73.897610132424404, 40.653453815618008],
+ [-73.893546770738467, 40.655202714083629],
+ [-73.891365435872459, 40.652364719446901],
+ [-73.884948358388002, 40.646802172920793],
+ [-73.881318570509691, 40.643871119271594],
+ [-73.878647053832296, 40.641065856068501],
+ [-73.878684931736686, 40.640538552066083],
+ [-73.877973413343511, 40.63980711772134],
+ [-73.878415893479939, 40.63891218920341],
+ [-73.878656760109294, 40.63941038736008],
+ [-73.879309545371214, 40.640067074221321],
+ [-73.879894043976549, 40.640363279157192],
+ [-73.880256256660374, 40.640970109035969],
+ [-73.880483869226254, 40.640978034547473],
+ [-73.880736235465093, 40.641565957470583],
+ [-73.880292480685711, 40.641404915733119],
+ [-73.880026164262659, 40.641718113295966],
+ [-73.880067141324247, 40.64200344662671],
+ [-73.881393062306202, 40.642347339979111],
+ [-73.882241081656574, 40.643453492409051],
+ [-73.882148325625707, 40.643743727840565],
+ [-73.883245545281994, 40.644437584642581],
+ [-73.883419992690065, 40.644523815650125],
+ [-73.883995410705623, 40.644367935456771],
+ [-73.884807504111279, 40.643946303680252],
+ [-73.885577621490782, 40.644040949287195],
+ [-73.887434446424379, 40.64593668177308],
+ [-73.88766589163491, 40.646504924553206],
+ [-73.887726112332246, 40.64714302919986],
+ [-73.88751623247262, 40.64741516069423],
+ [-73.887712111560973, 40.64787443463652],
+ [-73.888636384341012, 40.64802449261564],
+ [-73.889246779360249, 40.648745653606738],
+ [-73.890088261399555, 40.649332612101858],
+ [-73.890335291412256, 40.649347769001956],
+ [-73.890137010169738, 40.649170412116426],
+ [-73.890347347597611, 40.649033605778691],
+ [-73.890822829589439, 40.649364177365939],
+ [-73.891050569773398, 40.649313177891521],
+ [-73.891205207162443, 40.649119284846883],
+ [-73.891083306053702, 40.648792575695985],
+ [-73.889450742936518, 40.647173955597054],
+ [-73.889350865998793, 40.647034698864168],
+ [-73.889481525760701, 40.646912755068207],
+ [-73.888796908486725, 40.646050258056327],
+ [-73.889413872856167, 40.646938438988954],
+ [-73.888895689493339, 40.647218818907895],
+ [-73.888610048693863, 40.647081360931907],
+ [-73.888516375685228, 40.647360691521939],
+ [-73.888200507266575, 40.647140869529082],
+ [-73.888189908388483, 40.64677356952388],
+ [-73.888449537033324, 40.646728658746333],
+ [-73.888081388840732, 40.646620569628709],
+ [-73.888094419357316, 40.646212786549306],
+ [-73.88828981420744, 40.646044215545579],
+ [-73.888000520929907, 40.646027705355245],
+ [-73.887409602224835, 40.645329280124841],
+ [-73.887916907235365, 40.645067549205365],
+ [-73.888083831649922, 40.645164230626321],
+ [-73.887964064428687, 40.645032573829319],
+ [-73.887343617316645, 40.645224153871652],
+ [-73.886912033885338, 40.64447377760721],
+ [-73.886548889559975, 40.644312490378404],
+ [-73.886236467918053, 40.643816787720972],
+ [-73.884691815025974, 40.643121146973009],
+ [-73.883735787637875, 40.642450349188387],
+ [-73.880788897257347, 40.639757432635506],
+ [-73.880551238822548, 40.639158819737261],
+ [-73.879538880170813, 40.638217839320674],
+ [-73.879117877980704, 40.638266587440519],
+ [-73.878966860711415, 40.638459543695525],
+ [-73.878700391413375, 40.638337724746442],
+ [-73.879529940553823, 40.636735475194122],
+ [-73.880855331614271, 40.6348278444787],
+ [-73.884411945355552, 40.631196435763421],
+ [-73.884713766375938, 40.630533821156703],
+ [-73.884711168378757, 40.629681606929665],
+ [-73.884861601131192, 40.629467534443293],
+ [-73.885258892262101, 40.629371448944006],
+ [-73.886509981051617, 40.62959021423152],
+ [-73.888366302384483, 40.628916235442098],
+ [-73.894238388147627, 40.625081555366457],
+ [-73.895575737927075, 40.623830567800098],
+ [-73.896324544313771, 40.622792244270393],
+ [-73.89826103023735, 40.622989159843556],
+ [-73.901146854264525, 40.625685387597379],
+ [-73.904127932076264, 40.626306200134294],
+ [-73.916331954277183, 40.632038731553166],
+ [-73.916878842111046, 40.631925102345122],
+ [-73.917460875525407, 40.631537631149719],
+ [-73.917518232095503, 40.631340259516669],
+ [-73.917319990124554, 40.631007152718503],
+ [-73.915354603015416, 40.629991694065488],
+ [-73.902693332719778, 40.624213334873239],
+ [-73.902962459204261, 40.623873423211059],
+ [-73.902881856369973, 40.623541946245076],
+ [-73.902351418311468, 40.623476698946902],
+ [-73.901973121459747, 40.622910587526071],
+ [-73.900987175163692, 40.622541386348161],
+ [-73.900704611160549, 40.621628794321403],
+ [-73.89811767568176, 40.621851561121147],
+ [-73.89692451128272, 40.621655115945117],
+ [-73.89721859912828, 40.620771582590024],
+ [-73.89741841090644, 40.619262631799373],
+ [-73.897129439496211, 40.61464003410893],
+ [-73.897310664603424, 40.610300130960375],
+ [-73.898392534810242, 40.606778889433883],
+ [-73.898647189184786, 40.605297980361108],
+ [-73.899161817246934, 40.605528085351267],
+ [-73.899868803638654, 40.605524640544026],
+ [-73.900870374187036, 40.606919460776233],
+ [-73.900565953040314, 40.607474509790052],
+ [-73.900476857148135, 40.609217469826852],
+ [-73.900251067894501, 40.609517405479053],
+ [-73.900156198705872, 40.61007643818634],
+ [-73.901349974006564, 40.611088615101949],
+ [-73.901333034586528, 40.611717882905936],
+ [-73.901614616502044, 40.611864048098319],
+ [-73.901987146031232, 40.611745400968069],
+ [-73.902289894253414, 40.611961574676791],
+ [-73.902493930512463, 40.611814999032823],
+ [-73.901192535313967, 40.610563817547117],
+ [-73.901329626594062, 40.61048104310327],
+ [-73.901248368655672, 40.610580274499064],
+ [-73.902535551210548, 40.611826211199393],
+ [-73.902650779467862, 40.611780621164144],
+ [-73.902360320962103, 40.611980412182518],
+ [-73.90271854260655, 40.611826025295905],
+ [-73.902638277474097, 40.611906522555302],
+ [-73.902926669834358, 40.612159441976388],
+ [-73.903043928125001, 40.612095214987221],
+ [-73.90291750370362, 40.612186543448558],
+ [-73.902629182453495, 40.611925809170778],
+ [-73.902422747175791, 40.612033560004718],
+ [-73.905871052773719, 40.615063313977224],
+ [-73.905734559671941, 40.614882973944304],
+ [-73.90603328990818, 40.614953389220034],
+ [-73.905879376209299, 40.615077461411374],
+ [-73.906962836450759, 40.616114017578788],
+ [-73.907172911498478, 40.616009875338371],
+ [-73.906738487323594, 40.616295919990634],
+ [-73.907256856310099, 40.616087581377279],
+ [-73.907083469683371, 40.616221367023186],
+ [-73.90722592371317, 40.616351525931819],
+ [-73.907442554120721, 40.616258535700595],
+ [-73.907021606784454, 40.616533600356725],
+ [-73.907105953990239, 40.616609860214233],
+ [-73.90752735132169, 40.616344432548892],
+ [-73.90724169448653, 40.616551501888097],
+ [-73.907475037057168, 40.616712744568424],
+ [-73.907589771735402, 40.616629376451222],
+ [-73.907652295122034, 40.616915756619228],
+ [-73.907968065386143, 40.617046586776979],
+ [-73.907764597670081, 40.617217174557318],
+ [-73.907813886033438, 40.617374067585814],
+ [-73.90815289957095, 40.617161891990783],
+ [-73.90839229831542, 40.617388428518858],
+ [-73.908603515934217, 40.617265497054177],
+ [-73.908790880836008, 40.617436396721871],
+ [-73.908633339129693, 40.617167854909361],
+ [-73.908836910448244, 40.617311646627101],
+ [-73.909071451539532, 40.617160438331808],
+ [-73.908354032146789, 40.616530998961501],
+ [-73.908794208191651, 40.616872957324595],
+ [-73.909138531866503, 40.616531621729024],
+ [-73.908105604763421, 40.615669016428463],
+ [-73.907973063905189, 40.615736844061168],
+ [-73.90815663917553, 40.615601124052056],
+ [-73.909176751053977, 40.616521946980207],
+ [-73.908814562085894, 40.616890441882397],
+ [-73.908957061287225, 40.616991484819309],
+ [-73.909644061063162, 40.616575371500019],
+ [-73.909597409103441, 40.616392669799318],
+ [-73.908650246762718, 40.615484555687146],
+ [-73.907855961970597, 40.615205954146468],
+ [-73.907405828864313, 40.614753403411832],
+ [-73.907301533842869, 40.614808913007636],
+ [-73.905443787031089, 40.613014508002877],
+ [-73.904241038593369, 40.612362273218736],
+ [-73.904374107663003, 40.612225386296942],
+ [-73.90429103725161, 40.612014856128788],
+ [-73.904043325293443, 40.611998686431654],
+ [-73.904140891451718, 40.611896139383681],
+ [-73.903509807822431, 40.611406490372566],
+ [-73.903310470125035, 40.611547163863662],
+ [-73.903494074477777, 40.611389008742627],
+ [-73.90313578772971, 40.610967538157638],
+ [-73.902745046034383, 40.61093146873197],
+ [-73.902258599662815, 40.610422772599911],
+ [-73.901642118560318, 40.605763360739431],
+ [-73.905243009921023, 40.604910090324367],
+ [-73.905424400032231, 40.605540297589343],
+ [-73.905974611778589, 40.606384028704312],
+ [-73.908110012335158, 40.606273265343567],
+ [-73.908639595354302, 40.606658722047818],
+ [-73.908829198661337, 40.606564964995272],
+ [-73.908492366851078, 40.605772137123033],
+ [-73.908241104174948, 40.605322778618245],
+ [-73.908033061637624, 40.60535860211774],
+ [-73.908403615745314, 40.605243297059779],
+ [-73.908295868972118, 40.605305501489951],
+ [-73.908885744881061, 40.606536518828904],
+ [-73.909338049831504, 40.606477603024715],
+ [-73.909845283266492, 40.606168305507104],
+ [-73.909851548454697, 40.605999722177678],
+ [-73.90885691315674, 40.605060073797084],
+ [-73.908325369011152, 40.604073373919114],
+ [-73.910922700211813, 40.603505476100665],
+ [-73.913651198255423, 40.603982513837451],
+ [-73.916735565521449, 40.606814561550628],
+ [-73.916604421479519, 40.607089393444681],
+ [-73.916721157590416, 40.607624846780119],
+ [-73.916322300175267, 40.608675662668979],
+ [-73.916783944328813, 40.608773883387016],
+ [-73.916570739834256, 40.609423539545915],
+ [-73.916839811187685, 40.608760014720509],
+ [-73.916509245359308, 40.608629754090003],
+ [-73.916889645213701, 40.608710013686427],
+ [-73.916828032437593, 40.608906057366703],
+ [-73.917088385033153, 40.608820854898525],
+ [-73.917028228078465, 40.608974877413914],
+ [-73.916819644637584, 40.608931385879508],
+ [-73.916656765334722, 40.609436749970754],
+ [-73.916799531566355, 40.609494192231516],
+ [-73.916566040658282, 40.609437822677712],
+ [-73.916385851452148, 40.610088892904862],
+ [-73.916060771325888, 40.610430509362885],
+ [-73.916164751036774, 40.610515575076569],
+ [-73.914495422059829, 40.611653223664838],
+ [-73.914934187904336, 40.613958155054931],
+ [-73.913860531267645, 40.614642268066177],
+ [-73.914079859342507, 40.614888233399455],
+ [-73.914226195958079, 40.614803351891275],
+ [-73.914112061584206, 40.614901478013294],
+ [-73.914222386659901, 40.614932456703144],
+ [-73.916420990034979, 40.613569354692672],
+ [-73.915914521106856, 40.61384537631232],
+ [-73.915768072906161, 40.613540333335273],
+ [-73.915971731754041, 40.613807835366607],
+ [-73.916247689595963, 40.61362610079118],
+ [-73.915884908521221, 40.613328587196875],
+ [-73.915745852963511, 40.613384859698321],
+ [-73.915965725002678, 40.613236396468906],
+ [-73.91588941550161, 40.613309799605631],
+ [-73.916264528326067, 40.613605612704532],
+ [-73.916395867458888, 40.613446834034669],
+ [-73.915993071975024, 40.612881939344767],
+ [-73.915870865363658, 40.612910037390506],
+ [-73.916003188494813, 40.612859738591276],
+ [-73.916499121039905, 40.613520542097959],
+ [-73.916628043711569, 40.613443589265444],
+ [-73.915731819930826, 40.611830844514259],
+ [-73.916746523893053, 40.611178455468142],
+ [-73.916589364860442, 40.61109075400428],
+ [-73.916673112740312, 40.611005823250551],
+ [-73.916829208124511, 40.611118077722899],
+ [-73.918110366790131, 40.61020839405812],
+ [-73.917731855171169, 40.609782538235258],
+ [-73.917866386269637, 40.609327233800819],
+ [-73.917678707573998, 40.609662863943683],
+ [-73.917962700830714, 40.608785937120309],
+ [-73.917819727714303, 40.609304300065872],
+ [-73.918029644532609, 40.608846696737977],
+ [-73.918556661205955, 40.608498309043348],
+ [-73.918005005671404, 40.608149778515092],
+ [-73.918187286560439, 40.608024580911184],
+ [-73.91857357570953, 40.608487946287326],
+ [-73.91900737147327, 40.608267254971075],
+ [-73.918248934341136, 40.607588872927273],
+ [-73.918138148899715, 40.607645386907613],
+ [-73.918362467376383, 40.607501369418706],
+ [-73.918307945325878, 40.607610507708422],
+ [-73.919023107653118, 40.608256868199412],
+ [-73.919353984841123, 40.608042922287694],
+ [-73.918378269401543, 40.607174021935734],
+ [-73.918252690929535, 40.607229350640552],
+ [-73.918503004139211, 40.607071236026989],
+ [-73.918401593596457, 40.607154852898063],
+ [-73.919371004958634, 40.608032641242289],
+ [-73.9195220973007, 40.607738797434308],
+ [-73.915600860384487, 40.603936252151392],
+ [-73.91541600735404, 40.603950005930187],
+ [-73.914768531639453, 40.603360221672659],
+ [-73.914893581025112, 40.603288883760023],
+ [-73.91442813396344, 40.602863919562736],
+ [-73.913894348653656, 40.602703577769148],
+ [-73.913820201628283, 40.602888180050066],
+ [-73.913687185100414, 40.602850421012633],
+ [-73.913855244580375, 40.602690251507255],
+ [-73.913640756674013, 40.602524181704261],
+ [-73.913327003990247, 40.602763777769795],
+ [-73.913470727149473, 40.602911690690441],
+ [-73.913296510964173, 40.602765614678383],
+ [-73.913660893389221, 40.602468910027405],
+ [-73.91349826413736, 40.602366975062587],
+ [-73.913323083105226, 40.602611643275132]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 18,
+ "properties": {
+ "communityDistrict": 318,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/318"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.915133319181948, 40.586269385400662],
+ [-73.913499617113288, 40.586095825613775],
+ [-73.912829769759938, 40.585751395437839],
+ [-73.914363157380365, 40.585006824693593],
+ [-73.915828900194313, 40.584525154085185],
+ [-73.917069826937279, 40.58573698211103],
+ [-73.916975987480086, 40.585888855000192],
+ [-73.915133319181948, 40.586269385400662]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 19,
+ "properties": {
+ "communityDistrict": 318,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/318"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.919900642701606, 40.599600521587142],
+ [-73.91998332969213, 40.599535966521771],
+ [-73.919158569027303, 40.599609280918834],
+ [-73.918658876640052, 40.599472428371115],
+ [-73.918435482830461, 40.599166390831741],
+ [-73.916263931083407, 40.598161137312736],
+ [-73.91601641815879, 40.597508438313881],
+ [-73.915074203666535, 40.596494077729304],
+ [-73.914415081730411, 40.596045016532877],
+ [-73.913817651620448, 40.595042289874698],
+ [-73.913383058171888, 40.594721552778495],
+ [-73.913063400012618, 40.594072110687009],
+ [-73.913261803404268, 40.592228776245946],
+ [-73.912951226319819, 40.592054329969521],
+ [-73.914394226777929, 40.591511657998147],
+ [-73.91524478304683, 40.591587508178527],
+ [-73.916049928296374, 40.592202597528249],
+ [-73.916010469245279, 40.592428520705624],
+ [-73.916368279630845, 40.592747071997081],
+ [-73.916441129022289, 40.59312680944047],
+ [-73.917875435580356, 40.594722181524851],
+ [-73.920199545372057, 40.596183345280501],
+ [-73.920829477087906, 40.596334690682852],
+ [-73.920896820953033, 40.596612654032633],
+ [-73.921822777319036, 40.597332932872483],
+ [-73.921864236690837, 40.597798222612703],
+ [-73.92227201543723, 40.598376818436108],
+ [-73.922130493533984, 40.598662596177299],
+ [-73.920848936826744, 40.59954139732843],
+ [-73.919900642701606, 40.599600521587142]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 20,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.833422307441211, 40.626781982958533],
+ [-73.834643772909445, 40.62742707942521],
+ [-73.833041008417993, 40.628261271059564],
+ [-73.833422307441211, 40.626781982958533]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 21,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.833422307441211, 40.626781982958533],
+ [-73.834018881344932, 40.614381166419641],
+ [-73.834341681223037, 40.614365437197335],
+ [-73.835422886833214, 40.614610454435812],
+ [-73.8355164942013, 40.61494874641209],
+ [-73.835855726237611, 40.615208999052925],
+ [-73.836344035609827, 40.615119337103678],
+ [-73.836284435938893, 40.615232255018945],
+ [-73.836508101646686, 40.615295842085757],
+ [-73.836636263553302, 40.615145526978331],
+ [-73.837791674841498, 40.61555965034286],
+ [-73.837711541022514, 40.615704325319804],
+ [-73.837218651088662, 40.61581026439319],
+ [-73.836909891500014, 40.616150949617747],
+ [-73.836530384724426, 40.616121410087388],
+ [-73.835941625295291, 40.616545261917032],
+ [-73.834962226455815, 40.617780308811803],
+ [-73.83496699975143, 40.617962186463657],
+ [-73.835168923913756, 40.618037024293209],
+ [-73.83500397387175, 40.618173451720985],
+ [-73.834975852294562, 40.618591855212685],
+ [-73.835356507812051, 40.618713090179781],
+ [-73.835520778115281, 40.61937899354335],
+ [-73.835747065585778, 40.619611526329756],
+ [-73.835512362934878, 40.619958106145269],
+ [-73.834958150636965, 40.619839287733718],
+ [-73.83510471828653, 40.619497833016538],
+ [-73.834772060069199, 40.619844145468207],
+ [-73.8353120185363, 40.620145370808721],
+ [-73.834942912476919, 40.620434142902717],
+ [-73.834987161653117, 40.62101129988978],
+ [-73.834751173638011, 40.621262137758649],
+ [-73.834861106703826, 40.621526647054374],
+ [-73.834645138716724, 40.621997727390685],
+ [-73.83534733990389, 40.623695778843874],
+ [-73.835143558597295, 40.625487082796596],
+ [-73.833422307441211, 40.626781982958533]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 22,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.834462656861888, 40.607192532943309],
+ [-73.83587601623168, 40.605636907042943],
+ [-73.836101566288491, 40.607362793823242],
+ [-73.834283426860807, 40.609185681351356],
+ [-73.834462656861888, 40.607192532943309]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 23,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.836237315318655, 40.631110861230788],
+ [-73.841102054474305, 40.624556436515142],
+ [-73.844457115281983, 40.629847794440863],
+ [-73.842423745767576, 40.631532548239093],
+ [-73.837651743622843, 40.632839733458596],
+ [-73.836237315318655, 40.631110861230788]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 24,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.843044212967726, 40.617737696390421],
+ [-73.842835735287878, 40.616609436163593],
+ [-73.844008501359014, 40.617041366152684],
+ [-73.844541934736924, 40.614867921675142],
+ [-73.840999425396205, 40.613029126216112],
+ [-73.83825667290786, 40.613847215211237],
+ [-73.840794424083697, 40.60564326638265],
+ [-73.847148096217126, 40.603614242191107],
+ [-73.851794022152021, 40.606897168583714],
+ [-73.851240929104534, 40.607719613414879],
+ [-73.847790134058457, 40.609235385262757],
+ [-73.848167694336311, 40.612534228298287],
+ [-73.847311055362383, 40.613438460922488],
+ [-73.846395227119331, 40.616036814801703],
+ [-73.846148045138392, 40.617728420366348],
+ [-73.843044212967726, 40.617737696390421]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 25,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.847218348323608, 40.631965685700877],
+ [-73.848589966439235, 40.630131986806497],
+ [-73.858558363479801, 40.630458288195591],
+ [-73.856137418759047, 40.635081546014625],
+ [-73.846679148402288, 40.638731711757067],
+ [-73.843520076313055, 40.636503685327014],
+ [-73.845048592788757, 40.633174837994446],
+ [-73.847218348323608, 40.631965685700877]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 26,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.847343506669901, 40.629094739716251],
+ [-73.849846302333859, 40.626224490746822],
+ [-73.847278377939475, 40.626621669792719],
+ [-73.84504991718363, 40.625411061883646],
+ [-73.843580108214738, 40.623178164185298],
+ [-73.84614754008561, 40.622223608602596],
+ [-73.848477815812799, 40.622418784790526],
+ [-73.856655102577093, 40.619993649189155],
+ [-73.859476976260282, 40.618665216838188],
+ [-73.86107132148318, 40.617712079369774],
+ [-73.863649887949336, 40.617878773642374],
+ [-73.864041062764926, 40.619207596714062],
+ [-73.863439107895033, 40.618942175130613],
+ [-73.861518254852314, 40.619049218399184],
+ [-73.861470006978479, 40.621239246179449],
+ [-73.86102883449351, 40.624138986994915],
+ [-73.863478809469996, 40.623388609315775],
+ [-73.863349556702303, 40.625924908777712],
+ [-73.861376324657158, 40.625979152987796],
+ [-73.860410822708729, 40.625166912977534],
+ [-73.85861338934734, 40.627962022328013],
+ [-73.857677790282153, 40.627983758948417],
+ [-73.857863093830019, 40.628444902668264],
+ [-73.856505509775957, 40.629097353726614],
+ [-73.856134798412384, 40.628280911272874],
+ [-73.853965441911441, 40.627610943897864],
+ [-73.854369310627746, 40.628817676543868],
+ [-73.850716961085823, 40.628002992109479],
+ [-73.848468681302037, 40.629643330752288],
+ [-73.847343506669901, 40.629094739716251]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 27,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.855230676318996, 40.616131453358022],
+ [-73.855303254651133, 40.61314541357283],
+ [-73.852367043848488, 40.613155989076695],
+ [-73.853768459620767, 40.614087596516825],
+ [-73.852631951127989, 40.615094081909795],
+ [-73.849739863064869, 40.615156058143342],
+ [-73.850108574894236, 40.61021219334512],
+ [-73.855155922883498, 40.606120513001521],
+ [-73.857086381732401, 40.606468242933566],
+ [-73.857040527277292, 40.608299488876],
+ [-73.859017553182824, 40.609475753925068],
+ [-73.8592485545241, 40.611254829869118],
+ [-73.858020931463358, 40.612643816910541],
+ [-73.856483608151819, 40.613190694864585],
+ [-73.858580567827772, 40.616917087221836],
+ [-73.855230676318996, 40.616131453358022]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 28,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.852433358070158, 40.597333397795225],
+ [-73.853995596653377, 40.596683486347558],
+ [-73.854658631560497, 40.596578388928357],
+ [-73.854926485816705, 40.596301663368024],
+ [-73.856733643949738, 40.596075764353991],
+ [-73.860444205340698, 40.59647190559631],
+ [-73.860549779851922, 40.597063020191605],
+ [-73.862748207928433, 40.599071204919397],
+ [-73.863286632000836, 40.599810042163973],
+ [-73.863359991476116, 40.600322202771117],
+ [-73.862975062609721, 40.601018272615569],
+ [-73.861871898472387, 40.60216432581587],
+ [-73.861128142904803, 40.602550331075065],
+ [-73.860781691668635, 40.602608400256287],
+ [-73.86048884213514, 40.602339347394647],
+ [-73.859059143279765, 40.602061430568817],
+ [-73.854825958489116, 40.601867195354465],
+ [-73.854712007292875, 40.601649025325031],
+ [-73.854273872948781, 40.601430436696212],
+ [-73.853720903406895, 40.60140066517851],
+ [-73.852768382217732, 40.600948854026711],
+ [-73.851760453056073, 40.599697513812572],
+ [-73.850767480015577, 40.598839443837313],
+ [-73.851531228937787, 40.598433936220417],
+ [-73.852433358070158, 40.597333397795225]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 29,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.857745989451743, 40.64534345473534],
+ [-73.857292275994581, 40.64453058000386],
+ [-73.857169782982112, 40.643678558885966],
+ [-73.858940976021444, 40.643217036205726],
+ [-73.862013010277479, 40.642887041020067],
+ [-73.862894632903661, 40.642550679683232],
+ [-73.865311737311032, 40.640751191444558],
+ [-73.866704119737776, 40.640021763495398],
+ [-73.865353899691172, 40.638951293675724],
+ [-73.865573487437715, 40.638769566216482],
+ [-73.866815282012496, 40.639963527666708],
+ [-73.867322910067358, 40.639871983952069],
+ [-73.868672828950878, 40.640925079203399],
+ [-73.86991239405414, 40.643278202994296],
+ [-73.870017082735799, 40.644071372405413],
+ [-73.870614924610607, 40.644856741886713],
+ [-73.871191729496417, 40.645305356312434],
+ [-73.872570431028919, 40.645575612359622],
+ [-73.873465582586235, 40.646816632969191],
+ [-73.872184733324943, 40.647945070028953],
+ [-73.870185652936257, 40.649323181866038],
+ [-73.86052767845527, 40.654705962076605],
+ [-73.859755336732675, 40.654104176189733],
+ [-73.858980029791553, 40.652675457835485],
+ [-73.856958702918249, 40.650587373974275],
+ [-73.857524293743538, 40.649996190231342],
+ [-73.857834693503435, 40.648302338286832],
+ [-73.858376052516888, 40.647274415312644],
+ [-73.858317963140621, 40.646330203179751],
+ [-73.857745989451743, 40.64534345473534]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 30,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.867061494062, 40.582087976792614],
+ [-73.868147281910026, 40.581988903219255],
+ [-73.868962922104103, 40.581693794788585],
+ [-73.870003136429162, 40.582636614815868],
+ [-73.870505979183505, 40.583341953013694],
+ [-73.870614978603442, 40.584915351061063],
+ [-73.871159226754301, 40.586873887967243],
+ [-73.869813565480257, 40.589460926788952],
+ [-73.86849671647208, 40.590089850289559],
+ [-73.86759275775205, 40.591005791690613],
+ [-73.866350520981669, 40.591892676563944],
+ [-73.864308266925434, 40.591414744326379],
+ [-73.863272735587572, 40.590908075693349],
+ [-73.862741560945892, 40.590366407100753],
+ [-73.862723484980762, 40.590074510753354],
+ [-73.861932162217428, 40.588898945374645],
+ [-73.861494011115354, 40.588542473601962],
+ [-73.861252993773746, 40.587988085921154],
+ [-73.861674479333843, 40.586144794994475],
+ [-73.86327471071958, 40.583876848531801],
+ [-73.863834428895288, 40.583651782174115],
+ [-73.864492453356903, 40.583614938178727],
+ [-73.867061494062, 40.582087976792614]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 31,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.870846031282611, 40.61696742645676],
+ [-73.878247793242437, 40.615444608331543],
+ [-73.874813868650435, 40.623587189183631],
+ [-73.866843841425307, 40.627829242860287],
+ [-73.864981934959204, 40.625660706040968],
+ [-73.866065331063382, 40.621493325743927],
+ [-73.866261276659415, 40.618456347018778],
+ [-73.870846031282611, 40.61696742645676]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 32,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.867023994751605, 40.608068178769379],
+ [-73.868743175591732, 40.607035179279215],
+ [-73.868684688267507, 40.608241158183823],
+ [-73.867775016270826, 40.608539488779094],
+ [-73.867023994751605, 40.608068178769379]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 33,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.867029052515065, 40.603743388854653],
+ [-73.867681942201543, 40.603070766678101],
+ [-73.868308084648135, 40.603139160140962],
+ [-73.867935053727038, 40.603961135452899],
+ [-73.867026072870331, 40.604171584008192],
+ [-73.867029052515065, 40.603743388854653]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 34,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.873270312552421, 40.643903214344888],
+ [-73.87297320666589, 40.643839231064526],
+ [-73.872756357709676, 40.643248964655484],
+ [-73.871948801165544, 40.642394084538722],
+ [-73.870845034222725, 40.640556620183141],
+ [-73.870085441584493, 40.639844181365497],
+ [-73.870079584070169, 40.639211694016971],
+ [-73.869895833862472, 40.638934528919535],
+ [-73.869524351893631, 40.638645701918662],
+ [-73.867997096681293, 40.638115265209613],
+ [-73.869609721365634, 40.637085534608715],
+ [-73.869695498189529, 40.637147389615038],
+ [-73.869208461106396, 40.637465809260981],
+ [-73.86955902490304, 40.637947484327491],
+ [-73.87123896009048, 40.637322621761044],
+ [-73.872553371192211, 40.636493365069448],
+ [-73.873479391545018, 40.636285545798785],
+ [-73.87515014178723, 40.637049704310506],
+ [-73.877169097243296, 40.638658069683245],
+ [-73.878415893479939, 40.63891218920341],
+ [-73.876199330988996, 40.643257173093566],
+ [-73.874953578076429, 40.64514158369775],
+ [-73.873901277361, 40.646368367861236],
+ [-73.873185933309543, 40.645445013361588],
+ [-73.873443445211635, 40.644671914241847],
+ [-73.873270312552421, 40.643903214344888]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 35,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.869527075489316, 40.598713750354435],
+ [-73.869670707114992, 40.596688563622074],
+ [-73.870208997702946, 40.596954232788583],
+ [-73.869527075489316, 40.598713750354435]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 36,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.869664428925589, 40.606540123412152],
+ [-73.871093307680823, 40.604694173994694],
+ [-73.871056567120831, 40.606285088494985],
+ [-73.872455798118807, 40.608185530348528],
+ [-73.873001227247684, 40.610555458459856],
+ [-73.87180082802044, 40.610280413579517],
+ [-73.871038701117101, 40.609723582526534],
+ [-73.870760086072281, 40.608705400908789],
+ [-73.869664428925589, 40.606540123412152]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 37,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.870194915558855, 40.598996405902625],
+ [-73.871081418114812, 40.598901147470094],
+ [-73.870494119807162, 40.602604446205277],
+ [-73.870262805651123, 40.601681221253372],
+ [-73.870194915558855, 40.598996405902625]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 38,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.900216748183468, 40.587811296362901],
+ [-73.899952340706349, 40.58804159869684],
+ [-73.900811520622284, 40.588069101722184],
+ [-73.902099538022881, 40.587356541176923],
+ [-73.902855975575463, 40.587366270666756],
+ [-73.904260373803012, 40.586912024996224],
+ [-73.905879198392384, 40.587497876025246],
+ [-73.905887184259242, 40.587877372914328],
+ [-73.906518746780563, 40.588025473338561],
+ [-73.906859725533252, 40.587882675906322],
+ [-73.907125024723115, 40.587529702962854],
+ [-73.906493512866831, 40.587344674870486],
+ [-73.906335176127399, 40.587131926250777],
+ [-73.906473778076318, 40.587020988409812],
+ [-73.908108850359724, 40.586796505301521],
+ [-73.910885541711906, 40.585947645004453],
+ [-73.911405009060545, 40.586042676438716],
+ [-73.911783401795049, 40.586311865535293],
+ [-73.910397823750145, 40.58713291762222],
+ [-73.909534712230965, 40.587878983459746],
+ [-73.908844606755878, 40.58874136481694],
+ [-73.908363621879133, 40.5896826681902],
+ [-73.908063734206834, 40.591305397344236],
+ [-73.908467298364798, 40.594658205974177],
+ [-73.908179747074485, 40.595825567882109],
+ [-73.907566254868499, 40.596990830449805],
+ [-73.907015680028906, 40.597668327163234],
+ [-73.905850073500105, 40.59864709311632],
+ [-73.904661993081348, 40.599306196646161],
+ [-73.902066250183523, 40.6003727267112],
+ [-73.900880013300039, 40.601144727461488],
+ [-73.89956904192465, 40.602412570694703],
+ [-73.898921580767379, 40.603636282503757],
+ [-73.89843337987341, 40.603591942405608],
+ [-73.897931780982319, 40.603325340514878],
+ [-73.897383379603895, 40.603417225594455],
+ [-73.895309202854506, 40.603121080155418],
+ [-73.894678671396733, 40.603317877590953],
+ [-73.893797387988499, 40.603189292915353],
+ [-73.893264473746754, 40.60347798898237],
+ [-73.892196095557594, 40.603388483616961],
+ [-73.891170965362903, 40.603596153992335],
+ [-73.89080178893353, 40.603980913420862],
+ [-73.888976277621609, 40.6045481331631],
+ [-73.8888014129423, 40.60480845810303],
+ [-73.887644371040935, 40.605277047313571],
+ [-73.884775398474858, 40.605144843965988],
+ [-73.88398042953051, 40.605566519720711],
+ [-73.882693588590215, 40.604224970148472],
+ [-73.882969455211736, 40.603785355673054],
+ [-73.882899830553868, 40.603501613044664],
+ [-73.883326736563703, 40.603053929143421],
+ [-73.883294520201119, 40.60291610455554],
+ [-73.882595045482063, 40.601755950735651],
+ [-73.882146660712607, 40.600237396524179],
+ [-73.881627807705328, 40.599446482601266],
+ [-73.881472083136941, 40.597872095451812],
+ [-73.880714457420524, 40.59639309736496],
+ [-73.880719060394654, 40.594826329723055],
+ [-73.879907132590034, 40.592047994322421],
+ [-73.879408070135582, 40.592103406892242],
+ [-73.879899028519318, 40.592020638852063],
+ [-73.879714922939314, 40.591398891829691],
+ [-73.879357292718225, 40.590843735298165],
+ [-73.878968904387406, 40.590896773117542],
+ [-73.878924119311534, 40.590712780281464],
+ [-73.879293263772993, 40.5906614318706],
+ [-73.879234398324485, 40.590266408953994],
+ [-73.878968312590857, 40.589900935048277],
+ [-73.87913901161356, 40.589373200231236],
+ [-73.878787604105142, 40.588030460661315],
+ [-73.878202002437703, 40.586867942359859],
+ [-73.876716725479966, 40.584914430201486],
+ [-73.879702317299177, 40.580135100698826],
+ [-73.881742900220999, 40.579591700764603],
+ [-73.881867244608245, 40.579454625786937],
+ [-73.881746769838941, 40.579158807212444],
+ [-73.882069582695621, 40.579073978697224],
+ [-73.882146941433064, 40.579189970817581],
+ [-73.882873429436174, 40.579128240680213],
+ [-73.884346610864995, 40.578597975718978],
+ [-73.887348246504686, 40.578075224626211],
+ [-73.888714251396777, 40.578135914938272],
+ [-73.889755335858453, 40.577788416491956],
+ [-73.891184138246615, 40.577872112051452],
+ [-73.892075829025742, 40.577473870119974],
+ [-73.894547721192808, 40.576839509809091],
+ [-73.895523809412566, 40.576769818435793],
+ [-73.896049426728894, 40.578221367947613],
+ [-73.896941231133098, 40.579456684063992],
+ [-73.897087558386517, 40.579886959270468],
+ [-73.89703676910014, 40.580703700748892],
+ [-73.896489743418925, 40.582016519227942],
+ [-73.896555911893969, 40.583005018951113],
+ [-73.897031381981918, 40.583987579865408],
+ [-73.898135425434987, 40.585185655060386],
+ [-73.89789705159707, 40.585821255728398],
+ [-73.898305062270467, 40.586841185003401],
+ [-73.898915999088047, 40.587537436061019],
+ [-73.89973341305182, 40.587165212109873],
+ [-73.898993717351743, 40.587627946686858],
+ [-73.899527840202339, 40.587965313179623],
+ [-73.899810605250266, 40.588014457055479],
+ [-73.899906044604862, 40.58779408924822],
+ [-73.899943450593142, 40.587983416525596],
+ [-73.900009325809094, 40.587818348812398],
+ [-73.900216748183468, 40.587811296362901]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 39,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.884047261493848, 40.629560118546493],
+ [-73.882632484334039, 40.628274273126877],
+ [-73.883692315715024, 40.627559373913996],
+ [-73.885129540897452, 40.628827258672004],
+ [-73.885721669712623, 40.628446715725644],
+ [-73.886041171972863, 40.628697246481572],
+ [-73.887373346266926, 40.628395565263077],
+ [-73.888168922809498, 40.627975719367313],
+ [-73.890487103961519, 40.626224779064536],
+ [-73.890904714466913, 40.625016198472672],
+ [-73.8925262599371, 40.623631912941178],
+ [-73.89300558930276, 40.623356469096578],
+ [-73.893590825939299, 40.623390049802694],
+ [-73.895470239040336, 40.622570616355276],
+ [-73.895941110311568, 40.622547127108675],
+ [-73.896024503670091, 40.622746511826399],
+ [-73.896324544313771, 40.622792244270393],
+ [-73.895575737927075, 40.623830567800098],
+ [-73.894238388147627, 40.625081555366457],
+ [-73.888366302384483, 40.628916235442098],
+ [-73.886509981051617, 40.62959021423152],
+ [-73.885258892262101, 40.629371448944006],
+ [-73.884861601131192, 40.629467534443293],
+ [-73.884711168378757, 40.629681606929665],
+ [-73.884713766375938, 40.630533821156703],
+ [-73.884411945355552, 40.631196435763421],
+ [-73.880855331614271, 40.6348278444787],
+ [-73.879529940553823, 40.636735475194122],
+ [-73.878700391413375, 40.638337724746442],
+ [-73.87843722459165, 40.637948690274534],
+ [-73.878634881363553, 40.637551781294277],
+ [-73.877836750560249, 40.636902310588937],
+ [-73.877144348685974, 40.635976498007516],
+ [-73.877493816927, 40.635390423977043],
+ [-73.878205904897825, 40.634572943662576],
+ [-73.879987675038436, 40.633514883481006],
+ [-73.880376294890993, 40.632980262363269],
+ [-73.880933201882669, 40.632587061793551],
+ [-73.883221812796364, 40.631442312589925],
+ [-73.883644517282306, 40.630943312138591],
+ [-73.883755016602507, 40.630556438012576],
+ [-73.883769327963776, 40.630221761342369],
+ [-73.883454129234707, 40.629907669934823],
+ [-73.884047261493848, 40.629560118546493]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 40,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.896664881957193, 40.621477350157726],
+ [-73.896441232809423, 40.621394756189495],
+ [-73.896288477369623, 40.62073649997398],
+ [-73.896222433122702, 40.620840221009459],
+ [-73.895729329956083, 40.620240915258151],
+ [-73.895777403446999, 40.620019920532073],
+ [-73.895613885019301, 40.619801287150629],
+ [-73.89571934668956, 40.619529950159304],
+ [-73.895610447436113, 40.619350533385017],
+ [-73.89585293851259, 40.619144619870369],
+ [-73.896083577459663, 40.618382791386949],
+ [-73.89645347974438, 40.61807557101038],
+ [-73.896643352913415, 40.617347712142831],
+ [-73.896453811969437, 40.616769981770169],
+ [-73.896460027079542, 40.616129873890458],
+ [-73.896170524591383, 40.616001183703645],
+ [-73.896173369775823, 40.615654491230984],
+ [-73.895734451529648, 40.6148877471201],
+ [-73.89602881667841, 40.614804600051983],
+ [-73.895861128941874, 40.614518137494748],
+ [-73.89427581474105, 40.613882643248729],
+ [-73.892499262497665, 40.613792311178592],
+ [-73.891340284519615, 40.613256206397978],
+ [-73.89095414564683, 40.612834047317094],
+ [-73.891044106447879, 40.612509560997907],
+ [-73.8914143047419, 40.612125447699476],
+ [-73.892096337686567, 40.611960578803185],
+ [-73.892152844637053, 40.612073909123751],
+ [-73.892748795211659, 40.61172983013126],
+ [-73.893932400721994, 40.611536596724171],
+ [-73.893963850609026, 40.611214222580756],
+ [-73.893580855394859, 40.611165724957999],
+ [-73.893549388530431, 40.61100089763643],
+ [-73.891893891525555, 40.611534670245319],
+ [-73.890997093231917, 40.612052452416187],
+ [-73.891159507512569, 40.612177193161607],
+ [-73.891077946326192, 40.612276861868501],
+ [-73.890333906982747, 40.612011473226673],
+ [-73.889791631960961, 40.61168591567516],
+ [-73.889696317805203, 40.611453559591595],
+ [-73.889784517761953, 40.610955244005332],
+ [-73.890302113894904, 40.610317656862499],
+ [-73.891944614468116, 40.609102252148276],
+ [-73.891968508419112, 40.609377725924951],
+ [-73.892267355249174, 40.609165273147262],
+ [-73.892372108775163, 40.60872812515516],
+ [-73.89222320475713, 40.608627086858128],
+ [-73.892423272076968, 40.608558242738695],
+ [-73.892170359374816, 40.608544721357269],
+ [-73.892483241074387, 40.608153305067908],
+ [-73.892729449992501, 40.607227192316458],
+ [-73.893346214200164, 40.606743446234631],
+ [-73.894861684343596, 40.606404763206385],
+ [-73.89591344490745, 40.60584471127703],
+ [-73.898647189184786, 40.605297980361108],
+ [-73.898392534810242, 40.606778889433883],
+ [-73.897310664603424, 40.610300130960375],
+ [-73.897129439496211, 40.61464003410893],
+ [-73.89741841090644, 40.619262631799373],
+ [-73.89721859912828, 40.620771582590024],
+ [-73.89692451128272, 40.621655115945117],
+ [-73.896664881957193, 40.621477350157726]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 41,
+ "properties": {
+ "communityDistrict": 356,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/356"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.912367902888107, 40.584526174247223],
+ [-73.912608477191839, 40.584319948275976],
+ [-73.912635813980188, 40.583950297523209],
+ [-73.912504600356684, 40.583886356213227],
+ [-73.912690149043485, 40.583875153606506],
+ [-73.91271079739758, 40.583699941669224],
+ [-73.912406606087004, 40.583424805506446],
+ [-73.913046609504633, 40.583007548495551],
+ [-73.913054394377966, 40.583186716453817],
+ [-73.914631662753095, 40.58275763490532],
+ [-73.914897419705753, 40.582872610367573],
+ [-73.91498685614684, 40.58315284032804],
+ [-73.916141994073627, 40.582857437633351],
+ [-73.916525374471448, 40.583140338215237],
+ [-73.917310745923572, 40.583218131188922],
+ [-73.91681104385313, 40.582762048557058],
+ [-73.916326405681005, 40.58281886992296],
+ [-73.91596151080897, 40.582435758340196],
+ [-73.915412909008111, 40.582364073798658],
+ [-73.91485429686405, 40.582494093108757],
+ [-73.914386676360053, 40.582383158049318],
+ [-73.914464293027933, 40.582609277816019],
+ [-73.914236925111041, 40.582597251923154],
+ [-73.914173228160024, 40.582801361662483],
+ [-73.91372600624895, 40.582728893874226],
+ [-73.91335911446285, 40.582954021014288],
+ [-73.912969051678701, 40.582972802623949],
+ [-73.912981888790512, 40.582707197183474],
+ [-73.912890427705548, 40.582997583475631],
+ [-73.912501110839386, 40.583079193149999],
+ [-73.912220523386324, 40.582963339545948],
+ [-73.912490094645676, 40.582886169676399],
+ [-73.911936070844163, 40.582967843354794],
+ [-73.911556050379659, 40.58277088589314],
+ [-73.911273753834109, 40.582263099080521],
+ [-73.911571003472915, 40.581782987640167],
+ [-73.913711299861632, 40.58162873719516],
+ [-73.914440816093659, 40.581712697227573],
+ [-73.915014204029703, 40.581539295517018],
+ [-73.91648646817093, 40.58176142729036],
+ [-73.921653837255917, 40.583124280624475],
+ [-73.923741369444727, 40.583511631151772],
+ [-73.927125318368056, 40.583579273883316],
+ [-73.929632480749021, 40.583398808625454],
+ [-73.929983417987728, 40.584233435272964],
+ [-73.927958938223824, 40.584208058662867],
+ [-73.923501978477461, 40.583762093407728],
+ [-73.919858851711794, 40.583741239089569],
+ [-73.917135902032598, 40.584077310796957],
+ [-73.91575404754839, 40.584423268116637],
+ [-73.915828900194313, 40.584525154085185],
+ [-73.914363157380365, 40.585006824693593],
+ [-73.912829769759938, 40.585751395437839],
+ [-73.912553916912557, 40.585526336006218],
+ [-73.912505989414967, 40.58470730696645],
+ [-73.912367902888107, 40.584526174247223]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 42,
+ "properties": {
+ "communityDistrict": 401,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/401"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.906494929233617, 40.790180990344616],
+ [-73.902063278868297, 40.789494405495212],
+ [-73.900326297438198, 40.789007662825682],
+ [-73.896939935625639, 40.786624668969687],
+ [-73.896512049136135, 40.786068659025986],
+ [-73.896352513884565, 40.786179310203849],
+ [-73.896502548339797, 40.786057467844039],
+ [-73.896378559822296, 40.785908981094423],
+ [-73.896218035229182, 40.786016022871259],
+ [-73.896043766681316, 40.785799987480438],
+ [-73.896242597932613, 40.785740432991922],
+ [-73.896140150898162, 40.785607167288276],
+ [-73.895929629755244, 40.785648944313785],
+ [-73.896126326987897, 40.785593168306868],
+ [-73.895829143770584, 40.78522152738347],
+ [-73.898748976383985, 40.782781155766017],
+ [-73.90114577552113, 40.782711106090566],
+ [-73.902178153160023, 40.781780561863449],
+ [-73.902677235821074, 40.780594131742376],
+ [-73.902579296062328, 40.780289120835],
+ [-73.902343038826785, 40.780187244804544],
+ [-73.902183037067331, 40.780359366146897],
+ [-73.902035657901152, 40.781203101962909],
+ [-73.901291276189255, 40.781858419270328],
+ [-73.900349607802639, 40.782164410529965],
+ [-73.898654378440369, 40.781995420320776],
+ [-73.894377779341355, 40.784243203484188],
+ [-73.894294823567591, 40.784117567826975],
+ [-73.896063777384313, 40.783157201805174],
+ [-73.894774291196541, 40.782253592494826],
+ [-73.895357505675136, 40.781657657133408],
+ [-73.894600917745905, 40.78225315898132],
+ [-73.895344478422928, 40.78158556631125],
+ [-73.894164691208644, 40.782472046766621],
+ [-73.893060906920638, 40.781848289707114],
+ [-73.892307502036445, 40.782466041573706],
+ [-73.892749178764134, 40.782965706684728],
+ [-73.891654591898416, 40.782194781531302],
+ [-73.892241910974491, 40.78241079906109],
+ [-73.893009862463089, 40.781798023562793],
+ [-73.892278645315614, 40.781300321679552],
+ [-73.892111488546817, 40.781395179209063],
+ [-73.892246270262362, 40.781254752297876],
+ [-73.891665855943828, 40.780843263979861],
+ [-73.891591641598353, 40.780581120521788],
+ [-73.892534844987864, 40.779770519587842],
+ [-73.892540182116662, 40.779551834272063],
+ [-73.891668597689559, 40.779492539410455],
+ [-73.891195897044014, 40.778563287887067],
+ [-73.892522599270023, 40.777404628989657],
+ [-73.892253657035397, 40.777204522526318],
+ [-73.892860400757385, 40.777159074348354],
+ [-73.89423247497794, 40.778153613229705],
+ [-73.896564775519536, 40.776247024325471],
+ [-73.893242367511419, 40.77394301864571],
+ [-73.889423743511657, 40.7730459285143],
+ [-73.888725513387399, 40.768916239120159],
+ [-73.888221093892724, 40.768592289569682],
+ [-73.887706618200212, 40.766838598051493],
+ [-73.890290345895338, 40.766345197795559],
+ [-73.891835357963473, 40.766227080049347],
+ [-73.891444897473946, 40.76607465363174],
+ [-73.89349605945462, 40.765950930000749],
+ [-73.894323719553626, 40.766146471734785],
+ [-73.89506657695074, 40.764331328290297],
+ [-73.896411384035417, 40.763150082767652],
+ [-73.899677475248268, 40.758296863879046],
+ [-73.899860475258407, 40.757337462519111],
+ [-73.899693726865962, 40.756446609266966],
+ [-73.899004381288009, 40.755203849703776],
+ [-73.898114063841007, 40.754221658567843],
+ [-73.910674748970507, 40.752995076827389],
+ [-73.910354929924694, 40.752749908536124],
+ [-73.90984318646106, 40.751638679830499],
+ [-73.91314339244947, 40.750967052175753],
+ [-73.91525600931422, 40.750845626448282],
+ [-73.920539001504366, 40.749750828355175],
+ [-73.92101480198528, 40.750972609970056],
+ [-73.921612080252757, 40.751371552124191],
+ [-73.922550430677518, 40.751576479635112],
+ [-73.924633695362473, 40.751643345661869],
+ [-73.931526606555877, 40.751166158062539],
+ [-73.933939394171531, 40.750269645776555],
+ [-73.936834805464585, 40.748394551916306],
+ [-73.93739653782103, 40.748916440465884],
+ [-73.937443629422873, 40.749735692271038],
+ [-73.943835367463777, 40.752530123056758],
+ [-73.948767078346719, 40.754904275765433],
+ [-73.949112951995133, 40.754523619821526],
+ [-73.950807638183491, 40.755263680114297],
+ [-73.945705256407351, 40.761488157056597],
+ [-73.943502820327339, 40.7644990407438],
+ [-73.941311749414496, 40.766918004769607],
+ [-73.939835593491225, 40.767988005939294],
+ [-73.939365872238881, 40.768159701376995],
+ [-73.938955024533541, 40.767958186217037],
+ [-73.938203834860715, 40.76872757186392],
+ [-73.937576325834357, 40.768923994185279],
+ [-73.936814606547287, 40.768903947478385],
+ [-73.936707379230867, 40.769252609073739],
+ [-73.936403818023152, 40.769474884014642],
+ [-73.935740214326245, 40.769367229866518],
+ [-73.93489533894558, 40.770041862889499],
+ [-73.934694990670806, 40.770425337519953],
+ [-73.935147154025984, 40.770541956058381],
+ [-73.935008138722239, 40.771162394866529],
+ [-73.934904812826503, 40.771270641186653],
+ [-73.934527301094391, 40.771176775103349],
+ [-73.93448548303904, 40.771306523218421],
+ [-73.934953987149882, 40.771372943016843],
+ [-73.93448015155154, 40.771323068200687],
+ [-73.934435257431772, 40.771462362333395],
+ [-73.934826227616995, 40.771576958073254],
+ [-73.934806814102686, 40.771734138890245],
+ [-73.937466385370769, 40.772531495125172],
+ [-73.937813359695099, 40.773562894647895],
+ [-73.937654830247027, 40.775085685383281],
+ [-73.936089196990991, 40.777184322077012],
+ [-73.935854526415042, 40.77721168462417],
+ [-73.935082325582613, 40.777944233728107],
+ [-73.93474353011284, 40.77807633537698],
+ [-73.933908403140279, 40.778117129316264],
+ [-73.932774778676674, 40.77792238877791],
+ [-73.93272210453965, 40.778034767117937],
+ [-73.931788343051565, 40.777870607104816],
+ [-73.931049642989436, 40.777441897312016],
+ [-73.931073771467538, 40.777260594398122],
+ [-73.930628565541639, 40.776590902749554],
+ [-73.929880585661977, 40.776221631902224],
+ [-73.928605150233494, 40.776592675100957],
+ [-73.926318334039053, 40.77824177518491],
+ [-73.924233630075165, 40.779101193765463],
+ [-73.922956526901373, 40.780441008122203],
+ [-73.922099654994398, 40.780851874636909],
+ [-73.919090347406623, 40.783367646004429],
+ [-73.918188630053081, 40.783932966114129],
+ [-73.917171186464302, 40.784193484371407],
+ [-73.917182006796821, 40.784552063179362],
+ [-73.91683277016422, 40.785191392487349],
+ [-73.915751728945622, 40.786107578578083],
+ [-73.915260140022198, 40.786192216641986],
+ [-73.915587102058879, 40.7864296311663],
+ [-73.912599859776151, 40.789376329634351],
+ [-73.912229524263608, 40.789179279966142],
+ [-73.911951109055735, 40.789401797220982],
+ [-73.912079750905434, 40.789521814990032],
+ [-73.911774455694072, 40.789722510408495],
+ [-73.911618312921007, 40.789586154429976],
+ [-73.911249591052751, 40.78974393630314],
+ [-73.911130568735956, 40.790114076095286],
+ [-73.909858629919043, 40.790945493782388],
+ [-73.906779914208443, 40.79037510815057],
+ [-73.906494929233617, 40.790180990344616]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 43,
+ "properties": {
+ "communityDistrict": 401,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/401"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.88885148496334, 40.798706328958744],
+ [-73.88821348851279, 40.798665304638547],
+ [-73.888392505859969, 40.798566296265406],
+ [-73.888233533136486, 40.798242884285898],
+ [-73.887559675145184, 40.798368732436401],
+ [-73.886651085245887, 40.798038196699899],
+ [-73.883757415901599, 40.795708565419787],
+ [-73.883623475110525, 40.795672726309917],
+ [-73.883655167566602, 40.795967230065109],
+ [-73.883203943037444, 40.79554499746223],
+ [-73.882096336874682, 40.795159861042997],
+ [-73.879804933770174, 40.794892251170332],
+ [-73.878374377466315, 40.794520806766528],
+ [-73.875830754856608, 40.793150117287233],
+ [-73.874493185239601, 40.792057450589184],
+ [-73.872884574456663, 40.791452108207132],
+ [-73.871750205060849, 40.790658509529656],
+ [-73.87121154209629, 40.79003612173787],
+ [-73.870808885673341, 40.787896692185612],
+ [-73.871630653734584, 40.786797905340492],
+ [-73.872788470695184, 40.786077976353127],
+ [-73.8728092001611, 40.785903109099948],
+ [-73.873514525248552, 40.785750091197244],
+ [-73.876530899553174, 40.785837496764998],
+ [-73.878306800576482, 40.785356620508438],
+ [-73.885374422110317, 40.786669126798465],
+ [-73.887701263725305, 40.786872274573241],
+ [-73.88905212443278, 40.787372559755497],
+ [-73.88961097109059, 40.788199991008838],
+ [-73.890301355651417, 40.789876726832738],
+ [-73.89079999909832, 40.79020757619849],
+ [-73.891605871154511, 40.790160700450578],
+ [-73.892181829849392, 40.79039426960896],
+ [-73.892822836770648, 40.792817081952037],
+ [-73.891792896204464, 40.79677524575802],
+ [-73.890731390283321, 40.797660899806523],
+ [-73.890874216789967, 40.797829748226327],
+ [-73.89062148332674, 40.797748923449163],
+ [-73.890795051271482, 40.798021836850438],
+ [-73.890607858242561, 40.797767507137728],
+ [-73.890169163687148, 40.797964657929953],
+ [-73.889212838980995, 40.797801204104076],
+ [-73.888352480983627, 40.798139358695764],
+ [-73.888562045875673, 40.798353403824443],
+ [-73.888392826113417, 40.798375280868441],
+ [-73.888503646971813, 40.798588443915349],
+ [-73.888996542227574, 40.798680754990379],
+ [-73.88885148496334, 40.798706328958744]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 44,
+ "properties": {
+ "communityDistrict": 410,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/410"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.858980029791553, 40.652675457835485],
+ [-73.857319415155118, 40.651237099007837],
+ [-73.856958702918249, 40.650587373974275],
+ [-73.858980029791553, 40.652675457835485]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 45,
+ "properties": {
+ "communityDistrict": 410,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/410"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.858980029791553, 40.652675457835485],
+ [-73.859755336732675, 40.654104176189733],
+ [-73.859410229428022, 40.653864736919751],
+ [-73.859444740270447, 40.653637548104264],
+ [-73.859045292297978, 40.653107976083902],
+ [-73.858980029791553, 40.652675457835485]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 46,
+ "properties": {
+ "communityDistrict": 410,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/410"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.859755336732675, 40.654104176189733],
+ [-73.86098917353911, 40.655209767105148],
+ [-73.860454631708663, 40.655067107366129],
+ [-73.859792427507358, 40.65447615737699],
+ [-73.859755336732675, 40.654104176189733]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 47,
+ "properties": {
+ "communityDistrict": 410,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/410"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.830327253370641, 40.655132805803277],
+ [-73.830266018514934, 40.655428646784728],
+ [-73.829889199220091, 40.655522822584949],
+ [-73.830327253370641, 40.655132805803277]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 48,
+ "properties": {
+ "communityDistrict": 410,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/410"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.801155385972294, 40.671799120843829],
+ [-73.801250796429386, 40.668385945324694],
+ [-73.801530526033375, 40.666837159491756],
+ [-73.802032076901142, 40.665248024829793],
+ [-73.804320505709427, 40.665120733367026],
+ [-73.804136996254044, 40.665074269678932],
+ [-73.806101631845792, 40.66482819089773],
+ [-73.807301763182991, 40.66064934416174],
+ [-73.807707117047059, 40.66045767119212],
+ [-73.811978652677936, 40.661247346357953],
+ [-73.81165574286338, 40.662607339097477],
+ [-73.811166087138048, 40.663177473599781],
+ [-73.812816163855132, 40.662724436132628],
+ [-73.814969224858544, 40.662472668234564],
+ [-73.823052105664587, 40.663553878135765],
+ [-73.825843937952683, 40.663388471568034],
+ [-73.829487160418353, 40.663824539974208],
+ [-73.832032188073299, 40.664838606129969],
+ [-73.832118468037351, 40.665032818438817],
+ [-73.832477682801439, 40.664968212813172],
+ [-73.829913356874101, 40.659665668181994],
+ [-73.829314202188229, 40.658898656746459],
+ [-73.828599424046956, 40.657196973015992],
+ [-73.827013243975188, 40.650859899128911],
+ [-73.829869487666528, 40.650429629639156],
+ [-73.830011722887463, 40.650917353242733],
+ [-73.830994418680191, 40.65176986404429],
+ [-73.831331514692621, 40.65274755744359],
+ [-73.831292142957295, 40.653470924468422],
+ [-73.831613147936949, 40.653748953236189],
+ [-73.829014175579744, 40.656107884452439],
+ [-73.829666775861511, 40.655599040015325],
+ [-73.830150326207459, 40.655664602843395],
+ [-73.830443281379146, 40.655519472445441],
+ [-73.830602459747709, 40.654806889777511],
+ [-73.831708144775362, 40.653931174297838],
+ [-73.832054451305424, 40.654046418067587],
+ [-73.832000528707468, 40.65444081896505],
+ [-73.832216985185795, 40.654460386292961],
+ [-73.831493301030093, 40.654979820539722],
+ [-73.831161008098817, 40.655919232731982],
+ [-73.830212132269992, 40.656337192506477],
+ [-73.830033014565558, 40.656567168336082],
+ [-73.82937603410717, 40.65650633521588],
+ [-73.829236537990496, 40.656664527519006],
+ [-73.829309746953385, 40.656932457535163],
+ [-73.828967787402959, 40.657205247920054],
+ [-73.829179198005733, 40.657799778545254],
+ [-73.830130287406448, 40.65840264271597],
+ [-73.8295998696928, 40.65865680591115],
+ [-73.830149501047586, 40.659808684957298],
+ [-73.830012141849878, 40.659163163878787],
+ [-73.829695201493919, 40.658655928692433],
+ [-73.830199107209282, 40.658508969065096],
+ [-73.830244270393905, 40.65834996934813],
+ [-73.829223938368727, 40.65770651238293],
+ [-73.829094348911966, 40.657334218664261],
+ [-73.829498261079621, 40.656905907954389],
+ [-73.829502651858405, 40.65664743198424],
+ [-73.830091725696818, 40.656736357448622],
+ [-73.830505320573778, 40.656342367316157],
+ [-73.831271125655846, 40.656003271480358],
+ [-73.831553091773017, 40.655242971869569],
+ [-73.831852384792839, 40.654885038266954],
+ [-73.832181861340146, 40.654894751955723],
+ [-73.832903095245953, 40.657483771623035],
+ [-73.832781943614734, 40.657548460383488],
+ [-73.832084971008584, 40.656131028511304],
+ [-73.831943946442465, 40.656171427254378],
+ [-73.83260036370605, 40.657826591627277],
+ [-73.832014917081622, 40.658077531631555],
+ [-73.830969079966678, 40.658230294172334],
+ [-73.831284461836205, 40.6584066826304],
+ [-73.833384394725442, 40.658051859207973],
+ [-73.831270550940246, 40.650067831824579],
+ [-73.835722754121917, 40.649378229928423],
+ [-73.838785175031305, 40.661088448434775],
+ [-73.838058010146199, 40.662006063339959],
+ [-73.838736085559617, 40.662454060021062],
+ [-73.839979499756197, 40.66190427386222],
+ [-73.839725403531006, 40.660950658874675],
+ [-73.839787526129271, 40.660485998048003],
+ [-73.836813345751565, 40.649249415001961],
+ [-73.837387788457477, 40.649118149467526],
+ [-73.836330747212955, 40.645321149279546],
+ [-73.840006464643693, 40.64513606888876],
+ [-73.840583946775922, 40.6448630260453],
+ [-73.840892586851211, 40.644969036711764],
+ [-73.845996083007051, 40.644568319494461],
+ [-73.849506990841746, 40.644133765678745],
+ [-73.85183280803858, 40.645860055708248],
+ [-73.852286533930908, 40.646588210517749],
+ [-73.852416686220792, 40.64738809796718],
+ [-73.851590891323511, 40.649096478442104],
+ [-73.850905524614092, 40.649168196000353],
+ [-73.850781859960165, 40.649806092222747],
+ [-73.85058099294757, 40.649862205947777],
+ [-73.850586656335423, 40.650337980994941],
+ [-73.850377083496539, 40.6502744998756],
+ [-73.850422610127211, 40.650476994825411],
+ [-73.849257268408238, 40.651031532550874],
+ [-73.849397664063218, 40.651434878950354],
+ [-73.84992253250303, 40.651657963602808],
+ [-73.85078499726184, 40.651532851904271],
+ [-73.851491163699208, 40.651197973179862],
+ [-73.851786065770938, 40.650815639458479],
+ [-73.852509496121542, 40.650551403708079],
+ [-73.85403329487967, 40.650660311574136],
+ [-73.855492467953567, 40.651281160672092],
+ [-73.855919329685904, 40.651309261732408],
+ [-73.856276127155638, 40.651654533706605],
+ [-73.856327639638934, 40.652128334634689],
+ [-73.85671288994665, 40.652801664474126],
+ [-73.857053883475899, 40.652966700127728],
+ [-73.857723317739669, 40.652726229071639],
+ [-73.85828132383817, 40.652994872151808],
+ [-73.858520266581451, 40.653311189403738],
+ [-73.858758079915916, 40.654161627335029],
+ [-73.859154983800366, 40.654402468870231],
+ [-73.859305735544226, 40.654972383384226],
+ [-73.860840306999151, 40.656171574779137],
+ [-73.861363819503893, 40.656414754165247],
+ [-73.861360383612606, 40.656594205207035],
+ [-73.860674145860571, 40.656584591665592],
+ [-73.860616693956814, 40.656464657207714],
+ [-73.86061557040891, 40.656640542174522],
+ [-73.860208395010588, 40.657010374446457],
+ [-73.860067778195386, 40.6567798610495],
+ [-73.860055696404459, 40.65697225515617],
+ [-73.859833635214883, 40.656977063220438],
+ [-73.860074997982238, 40.657048611079986],
+ [-73.859810276096766, 40.657322411493674],
+ [-73.859938973455343, 40.657720177151162],
+ [-73.859572048222887, 40.658035349762315],
+ [-73.859635586693756, 40.658457772056451],
+ [-73.860258478900818, 40.658629711739039],
+ [-73.860232363275529, 40.658897130559993],
+ [-73.860451829914268, 40.658796719827869],
+ [-73.86051208601954, 40.658497671521033],
+ [-73.860980775124304, 40.658381303196599],
+ [-73.860857730767876, 40.658719926940364],
+ [-73.860490004522958, 40.658994143157507],
+ [-73.860612073772174, 40.659326534605924],
+ [-73.861249434390288, 40.658720910027128],
+ [-73.861272803153568, 40.658265167666364],
+ [-73.860958920979996, 40.658060942981727],
+ [-73.860112216392679, 40.658326815089417],
+ [-73.859768396548986, 40.658281936346533],
+ [-73.86021363811534, 40.657913469551566],
+ [-73.860575516926374, 40.657836051942695],
+ [-73.860407142018786, 40.657761341568133],
+ [-73.860341646388733, 40.657247905697162],
+ [-73.860623724034753, 40.657205456083666],
+ [-73.86087597606182, 40.656908162030184],
+ [-73.861613711636181, 40.65699651025276],
+ [-73.861703012764409, 40.658024889422251],
+ [-73.86269778299534, 40.657618309012356],
+ [-73.863170833405064, 40.658276512446257],
+ [-73.860359782060087, 40.659645829012177],
+ [-73.857615372515767, 40.6601189331546],
+ [-73.858429508573025, 40.663453360931832],
+ [-73.855684612211434, 40.663867492372923],
+ [-73.857633231743705, 40.671656194038832],
+ [-73.860389379181342, 40.671268775444425],
+ [-73.862345805351268, 40.679164785644275],
+ [-73.853923891622188, 40.679686155801697],
+ [-73.846714643074961, 40.681858493694463],
+ [-73.810632983108889, 40.6919473825767],
+ [-73.807336218687112, 40.686125446991142],
+ [-73.803230276536013, 40.677681057005721],
+ [-73.801428368462453, 40.673666833941454],
+ [-73.801155385972294, 40.671799120843829]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 49,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.805097201750854, 40.596755816302348],
+ [-73.8051340625276, 40.596607588970514],
+ [-73.805192434942171, 40.597190375995567],
+ [-73.805097201750854, 40.596755816302348]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 50,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.804991988551109, 40.596752358877495],
+ [-73.804875652149164, 40.596748535931631],
+ [-73.805111854799122, 40.597151047998082],
+ [-73.804711122261523, 40.597674663184449],
+ [-73.803933389224028, 40.597943498583902],
+ [-73.802979433257462, 40.598844304552955],
+ [-73.801670926801776, 40.598896309269414],
+ [-73.800948678628203, 40.599151664619853],
+ [-73.800915006239649, 40.599390761135751],
+ [-73.800776547076225, 40.599162360478289],
+ [-73.800495263719782, 40.599204368068541],
+ [-73.800473792277955, 40.599331559123712],
+ [-73.800451317956899, 40.599182567873989],
+ [-73.799160400091949, 40.599258137594539],
+ [-73.79914327503613, 40.599418798862885],
+ [-73.799140241966754, 40.599258494215867],
+ [-73.798430786553936, 40.599173714084209],
+ [-73.795546376870618, 40.599496762150217],
+ [-73.794573615957191, 40.599419024301199],
+ [-73.793875581522741, 40.5995994554969],
+ [-73.793309073876785, 40.599968465598728],
+ [-73.792332564495126, 40.599954391425754],
+ [-73.790254616867159, 40.601241996459954],
+ [-73.787857555675942, 40.603111171928859],
+ [-73.786353328118238, 40.603194659038429],
+ [-73.786178840413839, 40.60303206237181],
+ [-73.787162418552043, 40.602326431574852],
+ [-73.78792994192969, 40.600995302045931],
+ [-73.789534621966183, 40.599971814927841],
+ [-73.790340066169207, 40.599191676361279],
+ [-73.790432337711863, 40.598649089022807],
+ [-73.791070793707505, 40.597198362371721],
+ [-73.790931898041805, 40.59598317572511],
+ [-73.791025366527634, 40.595527157215884],
+ [-73.790838268301428, 40.594996876518053],
+ [-73.790152637147472, 40.594768202273954],
+ [-73.790316254762288, 40.596048198939393],
+ [-73.790424814722712, 40.596053932153865],
+ [-73.79017830067248, 40.596071319705622],
+ [-73.790281511773571, 40.596051416106185],
+ [-73.790131194916199, 40.59482287479846],
+ [-73.789739018898231, 40.594743668554557],
+ [-73.789873606483951, 40.596204443784551],
+ [-73.78999909505022, 40.596208943504472],
+ [-73.789698723608154, 40.596228039911331],
+ [-73.789841102328836, 40.596206946879811],
+ [-73.789673896758288, 40.594860475900141],
+ [-73.789402427099745, 40.594949785523696],
+ [-73.789113066673167, 40.595474756332102],
+ [-73.789268580962712, 40.596453723748787],
+ [-73.789068291215017, 40.598019927382602],
+ [-73.787102312265887, 40.599443300892389],
+ [-73.786624094636437, 40.600018633178273],
+ [-73.785971098321568, 40.600316491815896],
+ [-73.785793788135976, 40.600568927993244],
+ [-73.786143586986356, 40.60064861875167],
+ [-73.785780066178773, 40.600593261894268],
+ [-73.785642052732683, 40.600797194520837],
+ [-73.785983591177867, 40.600918237941904],
+ [-73.785632764392275, 40.600816383629677],
+ [-73.785393580870348, 40.601518021708451],
+ [-73.784482332363382, 40.601800098584157],
+ [-73.783505609053122, 40.60256343874272],
+ [-73.78312802406073, 40.603760991847885],
+ [-73.783481382715877, 40.604047835811038],
+ [-73.783947649711962, 40.604824425116817],
+ [-73.783666962925693, 40.60532443592912],
+ [-73.779401439223918, 40.609226260682348],
+ [-73.77856806939954, 40.609643663428983],
+ [-73.77727898274847, 40.60984911309189],
+ [-73.776265383302572, 40.609649037889106],
+ [-73.775351647457171, 40.6097374069643],
+ [-73.774222344113966, 40.608893231635228],
+ [-73.774222693634329, 40.60860112864026],
+ [-73.774814410089164, 40.608399563112322],
+ [-73.774217376874077, 40.607636638970106],
+ [-73.774325414813433, 40.607456943493247],
+ [-73.774602945990722, 40.607417648882524],
+ [-73.774849519697497, 40.60785731537004],
+ [-73.774590094698425, 40.607297656090211],
+ [-73.774584476756345, 40.606525967320714],
+ [-73.775187113272779, 40.604500256319753],
+ [-73.774687989646367, 40.604324648389188],
+ [-73.774913738996631, 40.604112513232366],
+ [-73.775376083168453, 40.604157308867805],
+ [-73.77588140582175, 40.603471681753412],
+ [-73.776053918270051, 40.60275289440353],
+ [-73.775588955005418, 40.603040299589189],
+ [-73.775688143627008, 40.602814740670482],
+ [-73.776057935551094, 40.602513317422172],
+ [-73.776479242549897, 40.602448176643371],
+ [-73.776625458024839, 40.602207778288083],
+ [-73.776489886229839, 40.602171725685167],
+ [-73.777803023878405, 40.600966552222047],
+ [-73.778083277655284, 40.60079984370023],
+ [-73.778368729431392, 40.600838780122686],
+ [-73.778075652814223, 40.600700774367887],
+ [-73.778180869783085, 40.600385541085771],
+ [-73.780109000851084, 40.600727429033746],
+ [-73.780810832315808, 40.599947754024384],
+ [-73.781906810076435, 40.599114165342222],
+ [-73.781936013570103, 40.598531144243289],
+ [-73.781358744407939, 40.597969371289565],
+ [-73.781329739981246, 40.597753037446907],
+ [-73.780183344260735, 40.597212569703231],
+ [-73.780054936955622, 40.596861344908795],
+ [-73.779718402451806, 40.597352548285215],
+ [-73.779043644052436, 40.597649399323501],
+ [-73.777421748107642, 40.598812404361318],
+ [-73.777198506293203, 40.599576959253007],
+ [-73.776001638509683, 40.601394323904813],
+ [-73.775600496330185, 40.601648453143056],
+ [-73.774972073537811, 40.601744487091899],
+ [-73.774742127256189, 40.600963426437694],
+ [-73.774481340306949, 40.600987703852027],
+ [-73.77474724721813, 40.600949790343257],
+ [-73.774640336297324, 40.600837656349505],
+ [-73.774742850289243, 40.600743783092135],
+ [-73.774119950970515, 40.599881381289961],
+ [-73.774223385237789, 40.599005217739162],
+ [-73.773744328390791, 40.598670153981473],
+ [-73.77358545236558, 40.598120473145563],
+ [-73.773005924908361, 40.597867499657163],
+ [-73.771676253985262, 40.597985021223622],
+ [-73.771109414685327, 40.598307584199212],
+ [-73.770372914473057, 40.598091768117563],
+ [-73.769477251095211, 40.598257769449894],
+ [-73.768122854422586, 40.59782435947605],
+ [-73.767935922888, 40.598139706381495],
+ [-73.768265494831368, 40.598332444290641],
+ [-73.769700719870357, 40.598640130523684],
+ [-73.770336348164733, 40.598984223332735],
+ [-73.770930865400771, 40.598857599126355],
+ [-73.771160524363367, 40.599422452073753],
+ [-73.771111034458613, 40.600546028547377],
+ [-73.770737333848331, 40.601535502254812],
+ [-73.770839175946023, 40.601810916097534],
+ [-73.770743833186785, 40.601945318621048],
+ [-73.77061758814915, 40.601868730479012],
+ [-73.77018588340033, 40.602748823326387],
+ [-73.770399644079518, 40.602944060431383],
+ [-73.770162237800221, 40.603090072501153],
+ [-73.770468295182653, 40.603919326498534],
+ [-73.770565214128652, 40.604840409258301],
+ [-73.770009324522022, 40.605336715807816],
+ [-73.770063423237488, 40.605656345789498],
+ [-73.76983622747764, 40.606278008427658],
+ [-73.770015200373052, 40.607215570508998],
+ [-73.769772268766403, 40.607537749989511],
+ [-73.76977547704135, 40.607933144519848],
+ [-73.769218982221446, 40.608449891166863],
+ [-73.76893999327109, 40.609130768376403],
+ [-73.769000780349543, 40.609391552984825],
+ [-73.769179765608271, 40.609700873756218],
+ [-73.769818183886201, 40.610087875416802],
+ [-73.771251018138898, 40.610389836095294],
+ [-73.771846622792879, 40.610824244209553],
+ [-73.772234503004654, 40.611501676751587],
+ [-73.773403890789879, 40.611090448779038],
+ [-73.772962686865483, 40.61015276294571],
+ [-73.773767677531254, 40.611256222475461],
+ [-73.773938277539102, 40.612120151753672],
+ [-73.774171846797032, 40.611829669946303],
+ [-73.773837381283514, 40.612907640396337],
+ [-73.773385979719876, 40.613675066322834],
+ [-73.77296761790663, 40.613559360790745],
+ [-73.771741567079445, 40.613961050127415],
+ [-73.769330851312233, 40.613974525075875],
+ [-73.768354650177827, 40.614227148473475],
+ [-73.766691397711782, 40.614254655450026],
+ [-73.765164008292018, 40.613754202686593],
+ [-73.76501580220102, 40.613475187493172],
+ [-73.765154294791216, 40.613085895213516],
+ [-73.765117372500185, 40.612482972482681],
+ [-73.764977724859378, 40.612331642578326],
+ [-73.765059617451229, 40.612035230611767],
+ [-73.762299440904286, 40.611359206045904],
+ [-73.761724137888805, 40.61184724275769],
+ [-73.760236357569767, 40.610820864950277],
+ [-73.761782429606043, 40.609151670054459],
+ [-73.761550519058929, 40.609031365800782],
+ [-73.7599844704079, 40.610879377848072],
+ [-73.759491198333848, 40.610815795910852],
+ [-73.759720990736824, 40.610151597645192],
+ [-73.759280121246817, 40.6103686383845],
+ [-73.756550624785874, 40.61015521257152],
+ [-73.755855316302629, 40.610317659811784],
+ [-73.75560837015594, 40.610077919637384],
+ [-73.755874129121437, 40.610385185054774],
+ [-73.755563690841555, 40.610118427946269],
+ [-73.754995010860256, 40.610132208028936],
+ [-73.754732195725722, 40.610405241678407],
+ [-73.753458361310578, 40.610519862404715],
+ [-73.7500877107679, 40.611640553827151],
+ [-73.74821585882674, 40.612011077589457],
+ [-73.747993073172537, 40.612310157967791],
+ [-73.747614189291866, 40.61199801088484],
+ [-73.747215678851958, 40.612178838650685],
+ [-73.746855390243553, 40.611574100059599],
+ [-73.745761501786774, 40.611991654748707],
+ [-73.74386981848707, 40.608892484481096],
+ [-73.743072479393803, 40.607886097386661],
+ [-73.743324933339352, 40.607536869922171],
+ [-73.743146552147536, 40.607259865593235],
+ [-73.740291389763399, 40.604598231778397],
+ [-73.739225125630739, 40.604142366826849],
+ [-73.738151431246237, 40.602710440166767],
+ [-73.737997026891563, 40.601601233656858],
+ [-73.738308718854157, 40.598208373679491],
+ [-73.738089252424317, 40.597688297089732],
+ [-73.738648719086015, 40.597344265996696],
+ [-73.738489004667414, 40.59735889424168],
+ [-73.738719681428336, 40.596948817327913],
+ [-73.738584667376315, 40.597253194615618],
+ [-73.738787975276821, 40.596975355326471],
+ [-73.739380236726618, 40.597239072903385],
+ [-73.739927472153823, 40.597054949536492],
+ [-73.740117735878343, 40.596727747135958],
+ [-73.739798757236002, 40.596428603789164],
+ [-73.740097142626709, 40.596208647291704],
+ [-73.740391538349769, 40.596182195673151],
+ [-73.740360127495279, 40.596774995540095],
+ [-73.740643843108202, 40.597001198658269],
+ [-73.741083153429429, 40.59682306657745],
+ [-73.741573803524233, 40.596903946084851],
+ [-73.741830835398147, 40.596695551418819],
+ [-73.741512392350501, 40.596528612515918],
+ [-73.740520598247656, 40.596571855970808],
+ [-73.740547013623981, 40.59611968571793],
+ [-73.739927930509324, 40.596061587314807],
+ [-73.739579049975021, 40.596376337848689],
+ [-73.73949353556857, 40.5970071106861],
+ [-73.73912307710917, 40.596784519793061],
+ [-73.738584314032565, 40.596860947776136],
+ [-73.738122208752728, 40.59738610213892],
+ [-73.738037491250012, 40.595913151336106],
+ [-73.737636793795659, 40.594415399676095],
+ [-73.738170245434347, 40.594539628279222],
+ [-73.738487439717758, 40.594352263490826],
+ [-73.738771531460458, 40.594525207029328],
+ [-73.738816625826047, 40.594359763952333],
+ [-73.738786450446568, 40.594529565561693],
+ [-73.739072124175294, 40.594596476534612],
+ [-73.739294306281224, 40.594453005560659],
+ [-73.739564653313906, 40.594561578577427],
+ [-73.73958763363882, 40.594426524607414],
+ [-73.739619651565164, 40.594580041877308],
+ [-73.739958015923634, 40.59450076878705],
+ [-73.739986787493251, 40.594632859899633],
+ [-73.740135803645757, 40.594511572738874],
+ [-73.740628319981909, 40.594721652270586],
+ [-73.740901705963793, 40.594488248750601],
+ [-73.740895202749371, 40.594611579191884],
+ [-73.741318206253254, 40.594792592881127],
+ [-73.741620916923381, 40.594786493135167],
+ [-73.741697663002824, 40.594641744052772],
+ [-73.74222603163004, 40.594905883325737],
+ [-73.742429263343823, 40.594868517806461],
+ [-73.742387425848761, 40.594729256060141],
+ [-73.743349516691524, 40.594795148277733],
+ [-73.743484422820444, 40.594590516990564],
+ [-73.744624997931837, 40.594661774797856],
+ [-73.746629178791196, 40.594301493560657],
+ [-73.748951162481305, 40.593412875624963],
+ [-73.750226047963494, 40.592710867784824],
+ [-73.751557564859723, 40.59141760314229],
+ [-73.753542419444358, 40.590945287751623],
+ [-73.755954636230655, 40.590874198049775],
+ [-73.757891898618723, 40.591356988277667],
+ [-73.761343116783237, 40.591726633850392],
+ [-73.762952755721358, 40.591611177431027],
+ [-73.767969730065033, 40.590729482964342],
+ [-73.76872708525147, 40.590870068955567],
+ [-73.7708802041345, 40.590553839080009],
+ [-73.775930428218601, 40.590181408327943],
+ [-73.775836886611941, 40.590324598758976],
+ [-73.776662435467372, 40.590066332167815],
+ [-73.777613520768597, 40.590053471208655],
+ [-73.779184954220341, 40.589593108896565],
+ [-73.780430361018958, 40.589596621429031],
+ [-73.784533110484915, 40.588478055217863],
+ [-73.787683707157456, 40.587922937712015],
+ [-73.78878406873126, 40.587450288867238],
+ [-73.789450655917847, 40.587623242907014],
+ [-73.794344605232823, 40.586756677983445],
+ [-73.796020465766929, 40.586319047176985],
+ [-73.796701744175493, 40.586367271524558],
+ [-73.798466405460132, 40.585843680652943],
+ [-73.799491749932074, 40.585814180978304],
+ [-73.800915112417471, 40.585407060934237],
+ [-73.801840184001662, 40.585351710846219],
+ [-73.803302295477792, 40.584886156490391],
+ [-73.803775571031679, 40.585014696486219],
+ [-73.80562313030147, 40.584511183784208],
+ [-73.806517542775126, 40.584464685756608],
+ [-73.807835029654626, 40.584014950352874],
+ [-73.808870342033572, 40.584023970841656],
+ [-73.809514919591194, 40.58382343175392],
+ [-73.813524487275586, 40.583473149046696],
+ [-73.8192881203056, 40.581766974354117],
+ [-73.822227513099222, 40.58111503216292],
+ [-73.827173788849834, 40.579444512955192],
+ [-73.831460933314546, 40.578419437622735],
+ [-73.83386923172182, 40.577649897608943],
+ [-73.837784912390674, 40.575923683474464],
+ [-73.843783591410968, 40.573887452042634],
+ [-73.852202023996654, 40.570745103001478],
+ [-73.853965565770864, 40.570312548872685],
+ [-73.857134221297514, 40.569126875589227],
+ [-73.86022276711229, 40.567921097324401],
+ [-73.862552860950544, 40.566810012301602],
+ [-73.862868922773117, 40.566830571546319],
+ [-73.863169302136242, 40.567739271748323],
+ [-73.864309695511167, 40.567391616473806],
+ [-73.865334325933745, 40.568784783429223],
+ [-73.864466329331336, 40.569141785522433],
+ [-73.866628120238744, 40.573057648924618],
+ [-73.863611329523778, 40.573823057018551],
+ [-73.863406293712146, 40.574114331255878],
+ [-73.863992097390479, 40.575060722125805],
+ [-73.862803619928798, 40.575933034765349],
+ [-73.862883018909045, 40.576059761254719],
+ [-73.853055495851152, 40.581255267855006],
+ [-73.850443851491946, 40.582130243581354],
+ [-73.848610535384182, 40.582188141641041],
+ [-73.845210168651917, 40.581579826263678],
+ [-73.839295979822523, 40.581863544472959],
+ [-73.838971793019255, 40.582484991432921],
+ [-73.838553065170373, 40.582791714300129],
+ [-73.835840800314998, 40.582878939361152],
+ [-73.828524712614694, 40.584854219377185],
+ [-73.828036924068158, 40.586052538385907],
+ [-73.824764278750962, 40.587039215772236],
+ [-73.824813339071213, 40.587151322035965],
+ [-73.824743523558126, 40.587045141974613],
+ [-73.822936885655992, 40.587491649726466],
+ [-73.821459719917726, 40.586769924921221],
+ [-73.817415861474373, 40.588917014109661],
+ [-73.817638004505142, 40.589285799485154],
+ [-73.816741975823589, 40.589319169845879],
+ [-73.815248323752286, 40.589989055790241],
+ [-73.814747846724543, 40.590588126172214],
+ [-73.814058031641721, 40.590624239258318],
+ [-73.813409833446386, 40.59091782311171],
+ [-73.813256715664281, 40.591046302490938],
+ [-73.81358856612637, 40.591697685823519],
+ [-73.813234744325968, 40.591070740017607],
+ [-73.813129917356505, 40.591246626342773],
+ [-73.812243382913024, 40.59132582310334],
+ [-73.811703448363474, 40.591593746637905],
+ [-73.811513031827104, 40.591783490316779],
+ [-73.811494235858689, 40.592901326696804],
+ [-73.811325545678187, 40.591746495140569],
+ [-73.811007666510378, 40.591768297260813],
+ [-73.810817918746423, 40.592090268695991],
+ [-73.810950189527318, 40.592503059144519],
+ [-73.811385930861022, 40.592442318453436],
+ [-73.811407512271629, 40.592871257238656],
+ [-73.811072870210452, 40.593022330572055],
+ [-73.811373839358097, 40.592861101607589],
+ [-73.81137331289645, 40.592703054284186],
+ [-73.810749749133308, 40.592792113552541],
+ [-73.811373473214886, 40.592684499634153],
+ [-73.811358293157838, 40.592462584044938],
+ [-73.810939658945998, 40.592546847806624],
+ [-73.810805379044211, 40.592092095735104],
+ [-73.809911300159968, 40.59225371768246],
+ [-73.810061845699863, 40.593077610898355],
+ [-73.809903403660741, 40.593080776052787],
+ [-73.809731383937134, 40.592404186053301],
+ [-73.809807497824437, 40.59271040950582],
+ [-73.809709824363892, 40.592439608339404],
+ [-73.809505568667603, 40.592775197356815],
+ [-73.809611963788569, 40.593576984263677],
+ [-73.806874567465215, 40.592264953369614],
+ [-73.806028073939217, 40.592009309003394],
+ [-73.805727703930117, 40.590758738264448],
+ [-73.805822015347431, 40.591864571006582],
+ [-73.804339542428764, 40.591310584081207],
+ [-73.804165691030391, 40.591854709832766],
+ [-73.807818704742004, 40.593365437837399],
+ [-73.808046886839676, 40.59365031287615],
+ [-73.807811428310686, 40.593907379875425],
+ [-73.807976875983016, 40.594161415948129],
+ [-73.807112539520276, 40.595284075424281],
+ [-73.806041498073853, 40.595554555213525],
+ [-73.80485298477258, 40.595056336043314],
+ [-73.804114598887352, 40.594319170452238],
+ [-73.804008833519234, 40.593767724911018],
+ [-73.804125679493424, 40.593513805102035],
+ [-73.803809022312024, 40.592891163925337],
+ [-73.803617394554379, 40.592941337743781],
+ [-73.803031539993597, 40.592577189489987],
+ [-73.802438463562396, 40.592640063836221],
+ [-73.802509650872821, 40.593948128041497],
+ [-73.803135034407248, 40.593757943071175],
+ [-73.803180821249597, 40.59394537812981],
+ [-73.802513042829872, 40.593966851792352],
+ [-73.802568375351385, 40.59427226699303],
+ [-73.80324253171004, 40.594087239865395],
+ [-73.803287938930197, 40.594282115891687],
+ [-73.80260442851133, 40.594287751039829],
+ [-73.802709839250042, 40.594306433033239],
+ [-73.802345139115943, 40.59449597525802],
+ [-73.803185744044143, 40.5946630028416],
+ [-73.803440170414518, 40.594434209176832],
+ [-73.803196753649559, 40.594678199883226],
+ [-73.803364588713151, 40.594855366109407],
+ [-73.803200106891296, 40.59487284642524],
+ [-73.803384723494716, 40.594949579585069],
+ [-73.803207044072423, 40.59500968361705],
+ [-73.803390972619724, 40.595006512492979],
+ [-73.803214942512568, 40.595145648450575],
+ [-73.803895069408043, 40.594990875366086],
+ [-73.803314537952971, 40.595179560935421],
+ [-73.803684687616553, 40.59519779018494],
+ [-73.804991988551109, 40.596752358877495]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 51,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.739558565710183, 40.596980387153806],
+ [-73.739883060073041, 40.596770974189518],
+ [-73.739648533722729, 40.596567152060764],
+ [-73.739747240887922, 40.596542604836564],
+ [-73.739909946901903, 40.596772744520273],
+ [-73.739558565710183, 40.596980387153806]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 52,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.790549485544929, 40.595201020105094],
+ [-73.790806262076217, 40.596093395885447],
+ [-73.790594429740352, 40.596108384772755],
+ [-73.790549485544929, 40.595201020105094]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 53,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.820758925048892, 40.61523267901503],
+ [-73.816526811785394, 40.614947009154939],
+ [-73.816547527966193, 40.614470136259079],
+ [-73.816233666846472, 40.614231046198611],
+ [-73.814718126278621, 40.614496088551924],
+ [-73.814440323452345, 40.614749038670666],
+ [-73.814080624329307, 40.614558409236245],
+ [-73.814164498977007, 40.614291069640778],
+ [-73.814682626764906, 40.613975157855023],
+ [-73.814867259721311, 40.614010649752792],
+ [-73.81485722289095, 40.614299226214804],
+ [-73.815495266375777, 40.614039815133161],
+ [-73.814795632553185, 40.61319402998128],
+ [-73.815036384946268, 40.612976213749398],
+ [-73.815239565604784, 40.612983579258277],
+ [-73.815469483171881, 40.613342929008397],
+ [-73.816156266324995, 40.612942115509753],
+ [-73.815598588452843, 40.610672516330631],
+ [-73.815403662557813, 40.610384802016526],
+ [-73.814502615667081, 40.611058473505409],
+ [-73.814498768277858, 40.610735453659274],
+ [-73.814968306882463, 40.610420655016895],
+ [-73.815205675961337, 40.609896894749745],
+ [-73.814770737924761, 40.608851028780172],
+ [-73.814865399224217, 40.608020598483087],
+ [-73.815061298787299, 40.607317030279894],
+ [-73.815741740638231, 40.606465245235491],
+ [-73.815460664833509, 40.60642813700737],
+ [-73.815528166563425, 40.606163069944003],
+ [-73.815525367236631, 40.606407380281972],
+ [-73.815959620025453, 40.606262483353412],
+ [-73.815888297784625, 40.605929034359178],
+ [-73.816425299890341, 40.605224123574907],
+ [-73.817391921065138, 40.605158124286795],
+ [-73.817253705935258, 40.603940324189246],
+ [-73.817720327046359, 40.602224999742049],
+ [-73.818311211203877, 40.601339711710835],
+ [-73.818490661207505, 40.599389559479164],
+ [-73.81928142201636, 40.597529610876578],
+ [-73.819735918315686, 40.597516843269069],
+ [-73.820384063784601, 40.596568761663583],
+ [-73.820533858165987, 40.596136840072852],
+ [-73.820446056590313, 40.595748414779912],
+ [-73.82071206778113, 40.595170514924312],
+ [-73.821357582862362, 40.594691009243327],
+ [-73.824802511925313, 40.595083161352946],
+ [-73.825899747351542, 40.594861457270653],
+ [-73.829136261177098, 40.594806869296526],
+ [-73.830482059614525, 40.594585938270122],
+ [-73.832412096649904, 40.59461849262108],
+ [-73.834655995149873, 40.595168458652232],
+ [-73.834846828131802, 40.595543436106873],
+ [-73.834396127032733, 40.59646420544253],
+ [-73.833517482123568, 40.596983091348413],
+ [-73.833360877221878, 40.59723551139863],
+ [-73.832150952054278, 40.597679598291968],
+ [-73.83239364453685, 40.597803353382325],
+ [-73.831541059401516, 40.597951026055036],
+ [-73.830628521790189, 40.597433425724198],
+ [-73.830389225482065, 40.597734019585268],
+ [-73.829483418232513, 40.598133941902582],
+ [-73.829097774223385, 40.597763455220644],
+ [-73.828061596754267, 40.597680402648805],
+ [-73.827846915054309, 40.597999837760881],
+ [-73.827220929986353, 40.598331194068038],
+ [-73.827103145590627, 40.598688685509686],
+ [-73.826895272580117, 40.598705251807601],
+ [-73.825979859898936, 40.599472066988668],
+ [-73.82584854764572, 40.599440239578854],
+ [-73.825906295311071, 40.599109957895514],
+ [-73.825567907404334, 40.598548147853805],
+ [-73.825076108345229, 40.598214643589344],
+ [-73.82465420663263, 40.598149246703848],
+ [-73.824317337071818, 40.598313104974878],
+ [-73.823958710582957, 40.598876896677218],
+ [-73.824522712764107, 40.598951263990536],
+ [-73.824770890584247, 40.598391843875142],
+ [-73.824526248585457, 40.59912902722327],
+ [-73.824390043150629, 40.599098113026429],
+ [-73.824517336554592, 40.598965808733041],
+ [-73.824077913550155, 40.598909203832996],
+ [-73.824218704432923, 40.599074487919353],
+ [-73.824165698886688, 40.599299379667059],
+ [-73.823766123471813, 40.600040070821855],
+ [-73.823117409747809, 40.600079492525346],
+ [-73.823031951668838, 40.599930516884278],
+ [-73.822927578112072, 40.600061428163038],
+ [-73.823004365507828, 40.599925619397304],
+ [-73.821944417597919, 40.599801155978447],
+ [-73.821469298338329, 40.599993722267676],
+ [-73.822343622818678, 40.600225661407706],
+ [-73.824436438284138, 40.600344983350595],
+ [-73.824452180748864, 40.600796962689479],
+ [-73.823989001242523, 40.601001986624425],
+ [-73.823511302942592, 40.601545771160659],
+ [-73.823577998264938, 40.602271895751457],
+ [-73.823049063577642, 40.602344916155658],
+ [-73.822944847404813, 40.602582909467806],
+ [-73.822765634779145, 40.60420260456651],
+ [-73.82290283003627, 40.60468726854139],
+ [-73.822467467684234, 40.605524982823674],
+ [-73.822904633777881, 40.605851276424389],
+ [-73.822360008762317, 40.606469260660056],
+ [-73.82211377846275, 40.606471956171156],
+ [-73.821264703428525, 40.60700285041046],
+ [-73.820904561260789, 40.607781246218202],
+ [-73.820032434977733, 40.608923655757238],
+ [-73.819982279473635, 40.609560385707859],
+ [-73.819617953621545, 40.610479041064274],
+ [-73.820518879430779, 40.611949948725474],
+ [-73.820434036152335, 40.612066786503547],
+ [-73.820878417901426, 40.612257345820069],
+ [-73.821284210530294, 40.611096928280915],
+ [-73.821062285333539, 40.610763848370802],
+ [-73.820626981522594, 40.610529995216034],
+ [-73.820487006215586, 40.610224379293498],
+ [-73.820858785058661, 40.609231058271199],
+ [-73.821146370184891, 40.609062411070283],
+ [-73.821382681256324, 40.608545544946793],
+ [-73.821614600891323, 40.608480319227709],
+ [-73.821825313399287, 40.608963997185924],
+ [-73.821667978390025, 40.609232316607368],
+ [-73.821862052414858, 40.609869212065874],
+ [-73.822330798471327, 40.610287703255707],
+ [-73.822892333485754, 40.610337022194045],
+ [-73.823346542136051, 40.611154638919864],
+ [-73.823824685953213, 40.611498664910194],
+ [-73.823798479832121, 40.612129421391451],
+ [-73.822349611034923, 40.614260025694712],
+ [-73.821639219398293, 40.614870614894677],
+ [-73.820758925048892, 40.61523267901503]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 54,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.890502353004464, 40.568183235403161],
+ [-73.890164959211916, 40.5682285247753],
+ [-73.889594924492002, 40.567941890234025],
+ [-73.888790007804076, 40.567931334052794],
+ [-73.888368030309763, 40.568144925425216],
+ [-73.888056609833143, 40.568016918935612],
+ [-73.887473784750966, 40.568130238724478],
+ [-73.886546839364428, 40.568470978109382],
+ [-73.88536860326866, 40.566857011351175],
+ [-73.895540627401388, 40.564020699657355],
+ [-73.896132624453045, 40.565358427566814],
+ [-73.895332594197484, 40.566340904173956],
+ [-73.895659806615086, 40.567059460980218],
+ [-73.895312104179681, 40.567022188552968],
+ [-73.893454678476061, 40.568235018557957],
+ [-73.892610134456206, 40.568587247286672],
+ [-73.890502353004464, 40.568183235403161]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 55,
+ "properties": {
+ "communityDistrict": 414,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/414"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.911925519097821, 40.565813862377183],
+ [-73.911858090293947, 40.564995438003244],
+ [-73.910798176830681, 40.565110995831496],
+ [-73.910100845491669, 40.564956201652386],
+ [-73.910037629057854, 40.564793710601897],
+ [-73.909716849259581, 40.565287425461172],
+ [-73.910621846301268, 40.563810518111225],
+ [-73.909810705132671, 40.561501916940301],
+ [-73.908353957480756, 40.560754480086381],
+ [-73.90923653142832, 40.560756522500952],
+ [-73.909267706566482, 40.560450279142728],
+ [-73.909282997928784, 40.556997241629283],
+ [-73.908797305577167, 40.55482950838892],
+ [-73.9194812221196, 40.550624815346517],
+ [-73.926419093968107, 40.548155780319931],
+ [-73.931775808843369, 40.557899562384854],
+ [-73.926157232754193, 40.561552609723073],
+ [-73.924214612366782, 40.562001318824393],
+ [-73.921078228813826, 40.562079852884835],
+ [-73.920368102804517, 40.562218832467586],
+ [-73.920259631730588, 40.562612292555905],
+ [-73.920098401484069, 40.562571180609986],
+ [-73.920331201426691, 40.562226054886516],
+ [-73.917660819000858, 40.56282614968643],
+ [-73.914553369612861, 40.564353432433784],
+ [-73.91386749626399, 40.564608096141825],
+ [-73.913131801280045, 40.564638243946],
+ [-73.91220200769321, 40.56505456984992],
+ [-73.911883196630029, 40.564990405238653],
+ [-73.911954643661858, 40.565811322672808],
+ [-73.91216181893266, 40.565836251568051],
+ [-73.911736153400696, 40.56587265348567],
+ [-73.911925519097821, 40.565813862377183]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 56,
+ "properties": {
+ "communityDistrict": 483,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/483"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.800728892362457, 40.665269376517465],
+ [-73.795822963931485, 40.664953255151815],
+ [-73.785025138063148, 40.663421072397398],
+ [-73.783939817926694, 40.6627828314193],
+ [-73.778799852846348, 40.660562153298919],
+ [-73.776413927202583, 40.659870722897544],
+ [-73.775253079707582, 40.659320044127135],
+ [-73.769743641745009, 40.655948254796364],
+ [-73.768327401635787, 40.655600115136018],
+ [-73.767390970865605, 40.655838168699717],
+ [-73.766695938389375, 40.655802847501583],
+ [-73.748069339703548, 40.645214897211616],
+ [-73.743990632320248, 40.641247069543333],
+ [-73.744597963429428, 40.639521173264775],
+ [-73.746815510650123, 40.637893389559757],
+ [-73.746855526383953, 40.638060511478443],
+ [-73.746588368896525, 40.638385914697793],
+ [-73.746541325441498, 40.638696787983321],
+ [-73.746669358640474, 40.638706040635917],
+ [-73.746528714952277, 40.638726508213743],
+ [-73.746323680185355, 40.639327794567528],
+ [-73.74634658524856, 40.639879572067358],
+ [-73.74617119726274, 40.640388755690743],
+ [-73.746354914280602, 40.640678793985636],
+ [-73.746314678679468, 40.64139431318155],
+ [-73.747291538998795, 40.643186686373788],
+ [-73.748135607144548, 40.644070010510177],
+ [-73.748751212616085, 40.644471103350313],
+ [-73.748781033322445, 40.645118880997387],
+ [-73.749002487134987, 40.645168209712786],
+ [-73.749452742805218, 40.644931234224877],
+ [-73.751713024669144, 40.64650059076871],
+ [-73.753270905585765, 40.647333762520518],
+ [-73.753403654221103, 40.647162374608811],
+ [-73.75323328269441, 40.647052114686126],
+ [-73.753541919018645, 40.647196312320638],
+ [-73.753292106749029, 40.647343402721916],
+ [-73.753889643709442, 40.647542603555351],
+ [-73.754278098565848, 40.647886422581436],
+ [-73.754755924859637, 40.647812198891934],
+ [-73.754927686429099, 40.647572721038436],
+ [-73.75461208504008, 40.647200458956853],
+ [-73.753792894355072, 40.646705604184277],
+ [-73.753737708263486, 40.646960423577781],
+ [-73.75340189507159, 40.646807461209242],
+ [-73.753611341704342, 40.646856182257849],
+ [-73.753761463613714, 40.646686322658034],
+ [-73.750570328119565, 40.644728556673847],
+ [-73.748707014965262, 40.643343492337415],
+ [-73.747420958996273, 40.641413643684459],
+ [-73.74754412782535, 40.641132167984523],
+ [-73.74743443985416, 40.640238928133542],
+ [-73.747528778547562, 40.639324434692718],
+ [-73.748124885188162, 40.636872731643294],
+ [-73.748398155361713, 40.63665363731986],
+ [-73.748554783949118, 40.63541155957563],
+ [-73.749354469661213, 40.634947256339679],
+ [-73.750696070401133, 40.63462797576701],
+ [-73.752437585727677, 40.633676780243277],
+ [-73.753483977247441, 40.633514291079059],
+ [-73.754791003049206, 40.63288248836318],
+ [-73.755500137490301, 40.632760973905889],
+ [-73.755680219128678, 40.632585029175225],
+ [-73.757388100559879, 40.632107760630781],
+ [-73.757735576201711, 40.631823811050481],
+ [-73.759009554007022, 40.631489296882449],
+ [-73.76053159775509, 40.630663317188194],
+ [-73.762194078137867, 40.630259432956471],
+ [-73.763087896708427, 40.629658898501972],
+ [-73.764530026372881, 40.629221136356946],
+ [-73.765002226606342, 40.629416298671856],
+ [-73.764742896690706, 40.629168084896222],
+ [-73.766398630952693, 40.628350134062543],
+ [-73.767000061817015, 40.627527790061855],
+ [-73.767777029884328, 40.625918463915689],
+ [-73.768276749971989, 40.625335218515225],
+ [-73.768782363293354, 40.624322796032764],
+ [-73.768842284403519, 40.6239348217523],
+ [-73.768553089207842, 40.623187208766346],
+ [-73.768686610750109, 40.622681953217416],
+ [-73.769446523564, 40.622015448432059],
+ [-73.769521349574944, 40.622118488458298],
+ [-73.769815580974694, 40.621377350999772],
+ [-73.771563827241664, 40.621360526782418],
+ [-73.770914999462732, 40.62240388815033],
+ [-73.770820697079657, 40.623282997944855],
+ [-73.771438836640115, 40.623284616704936],
+ [-73.771727602851385, 40.623585028030327],
+ [-73.771699083400179, 40.623438988204526],
+ [-73.771973183249045, 40.623272116308378],
+ [-73.77188149343587, 40.623203602050609],
+ [-73.772145469706487, 40.623046105200409],
+ [-73.772031313654097, 40.622991212901702],
+ [-73.772188240280315, 40.62299579379507],
+ [-73.773500672940273, 40.621343909174371],
+ [-73.772209507038269, 40.623005232487024],
+ [-73.772403136391745, 40.623095302298807],
+ [-73.772168978669896, 40.623055547338588],
+ [-73.772004605753082, 40.623261929018994],
+ [-73.772170183347725, 40.623359631169123],
+ [-73.771996692703979, 40.623281559487609],
+ [-73.771818828377349, 40.623499017984308],
+ [-73.771987765145695, 40.623597581460785],
+ [-73.77173897581244, 40.6236057260734],
+ [-73.77323537306475, 40.624994162478217],
+ [-73.773486164790853, 40.625085118325693],
+ [-73.773832586605849, 40.624944848252142],
+ [-73.773494616145911, 40.625142569370908],
+ [-73.774841892209537, 40.626554650782616],
+ [-73.776408845460551, 40.627534615323164],
+ [-73.777366895851884, 40.627693821486389],
+ [-73.77850001189644, 40.627583743917782],
+ [-73.779239523448268, 40.627317034407348],
+ [-73.779994207638438, 40.626689298072549],
+ [-73.780776882033848, 40.625808503671628],
+ [-73.781361958916335, 40.624842746114815],
+ [-73.784878887408908, 40.626631470707885],
+ [-73.783465583752346, 40.628118140757195],
+ [-73.782843352402566, 40.629405706177543],
+ [-73.782645434359353, 40.630247968083616],
+ [-73.783777286090398, 40.630634115647759],
+ [-73.784347642421466, 40.631373320433489],
+ [-73.785702938064233, 40.632094989481992],
+ [-73.786906667504653, 40.632261900730128],
+ [-73.788323394405111, 40.63342507906026],
+ [-73.789354064345488, 40.634010308818432],
+ [-73.789427172616541, 40.634263034959979],
+ [-73.789716000367491, 40.634067249776564],
+ [-73.79076947464462, 40.633848725717314],
+ [-73.790664495089445, 40.634152939444888],
+ [-73.790792842990996, 40.634282043205047],
+ [-73.798037518347144, 40.631196239807494],
+ [-73.797968294379473, 40.631101307473635],
+ [-73.798118722262046, 40.631037509261098],
+ [-73.798276154152958, 40.631252179365795],
+ [-73.798055371690992, 40.631224458598119],
+ [-73.79081111250504, 40.634310355510713],
+ [-73.791081328386269, 40.634232634366981],
+ [-73.791308778542017, 40.634401300656009],
+ [-73.791228985097376, 40.634857064069848],
+ [-73.792223179716558, 40.635890088278771],
+ [-73.7934336926225, 40.636086690345898],
+ [-73.794259643337256, 40.636564203549703],
+ [-73.794743874990942, 40.636629367395663],
+ [-73.797257429330486, 40.638007613758838],
+ [-73.79863891856661, 40.638403779071048],
+ [-73.799237119838622, 40.63842010970356],
+ [-73.801772201854504, 40.639760283951532],
+ [-73.804659302414393, 40.640905209496616],
+ [-73.805659395866542, 40.641601983125142],
+ [-73.806702006757646, 40.641776184672835],
+ [-73.808645686505727, 40.642814927879265],
+ [-73.810757494440978, 40.643492391255826],
+ [-73.812033336832954, 40.64430357504574],
+ [-73.813506850931759, 40.644636653826815],
+ [-73.816430716134306, 40.645998005631185],
+ [-73.817612540643339, 40.64614028670853],
+ [-73.81830607821486, 40.646386982850117],
+ [-73.818953648171046, 40.646864599411764],
+ [-73.820154351221277, 40.64826502638541],
+ [-73.821247972839984, 40.64913861606],
+ [-73.821921568602534, 40.650111834874359],
+ [-73.822627236846131, 40.652885188905955],
+ [-73.823149183736035, 40.654022771066593],
+ [-73.823483811107465, 40.655369912718655],
+ [-73.823404069826324, 40.656080242093545],
+ [-73.822336881096575, 40.659363084259319],
+ [-73.821611255101359, 40.659935285598202],
+ [-73.821691394394207, 40.660035086743051],
+ [-73.821568935755749, 40.659958693873207],
+ [-73.81970074186691, 40.660724086809722],
+ [-73.819714199092246, 40.660873726175851],
+ [-73.819657252870172, 40.660741919045357],
+ [-73.818695315586893, 40.661105051055159],
+ [-73.817644023338019, 40.660949032430004],
+ [-73.817672964986983, 40.661059722777054],
+ [-73.817504914315435, 40.661048326201481],
+ [-73.817567271191436, 40.660936734262023],
+ [-73.816567593080663, 40.66074251661712],
+ [-73.81598180388724, 40.660835816548563],
+ [-73.816052030347123, 40.660711574205116],
+ [-73.814681487913788, 40.660515214761716],
+ [-73.81457011758252, 40.66063459763906],
+ [-73.814625339698452, 40.660506673653096],
+ [-73.812621255836689, 40.660157049899404],
+ [-73.811438337780274, 40.660254210772422],
+ [-73.811244353571055, 40.660544639567767],
+ [-73.811514484121844, 40.660767142802158],
+ [-73.818671843741612, 40.662132776928665],
+ [-73.823383242857503, 40.660205747027625],
+ [-73.824080064698649, 40.658488346812213],
+ [-73.824095096450506, 40.658316524229107],
+ [-73.823879515199479, 40.658257808338846],
+ [-73.824086253494556, 40.658289354849266],
+ [-73.824264108676573, 40.657779092686539],
+ [-73.824059291337164, 40.657695954020156],
+ [-73.824267759743677, 40.657746511637463],
+ [-73.824980703785471, 40.655431971183667],
+ [-73.823706050165313, 40.651106718909737],
+ [-73.823392852371612, 40.649354073094571],
+ [-73.823181059388915, 40.649157488027498],
+ [-73.82290717766891, 40.648093446005717],
+ [-73.823194441115561, 40.648011161680266],
+ [-73.823903647256657, 40.648866720139452],
+ [-73.823927499132722, 40.649165548068609],
+ [-73.824662300205844, 40.64972399750841],
+ [-73.824827621318732, 40.649668474784704],
+ [-73.824743880789924, 40.64943427558304],
+ [-73.824998465161983, 40.649376930882873],
+ [-73.825361847913527, 40.649913565692387],
+ [-73.825487708808538, 40.649892156942471],
+ [-73.825600897366655, 40.649528486982902],
+ [-73.825859621020726, 40.649475601539343],
+ [-73.826144830596633, 40.650081840942562],
+ [-73.826300148118193, 40.650022985779664],
+ [-73.826172045928232, 40.649526935747048],
+ [-73.826439319693762, 40.649238243912009],
+ [-73.826272599719687, 40.648405025855141],
+ [-73.826392428444905, 40.648324348615581],
+ [-73.828599424046956, 40.657196973015992],
+ [-73.829314202188229, 40.658898656746459],
+ [-73.829913356874101, 40.659665668181994],
+ [-73.832477682801439, 40.664968212813172],
+ [-73.832118468037351, 40.665032818438817],
+ [-73.832032188073299, 40.664838606129969],
+ [-73.829487160418353, 40.663824539974208],
+ [-73.825843937952683, 40.663388471568034],
+ [-73.823052105664587, 40.663553878135765],
+ [-73.814969224858544, 40.662472668234564],
+ [-73.812816163855132, 40.662724436132628],
+ [-73.811166087138048, 40.663177473599781],
+ [-73.81165574286338, 40.662607339097477],
+ [-73.811978652677936, 40.661247346357953],
+ [-73.807707117047059, 40.66045767119212],
+ [-73.807301763182991, 40.66064934416174],
+ [-73.806101631845792, 40.66482819089773],
+ [-73.804136996254044, 40.665074269678932],
+ [-73.804320505709427, 40.665120733367026],
+ [-73.800728892362457, 40.665269376517465]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 57,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.766708277815923, 40.614910865180356],
+ [-73.768252880033941, 40.614877725169357],
+ [-73.773976920847829, 40.616003575672757],
+ [-73.768734548220266, 40.62090086721642],
+ [-73.767459268845869, 40.620511322061184],
+ [-73.766708277815923, 40.614910865180356]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 58,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.770770167543517, 40.620031182310008],
+ [-73.771281602701947, 40.620084812749766],
+ [-73.771654546884108, 40.620416427319391],
+ [-73.771716994473039, 40.620961678797983],
+ [-73.771563827241664, 40.621360526782418],
+ [-73.769815580974694, 40.621377350999772],
+ [-73.769755856302879, 40.621106620392709],
+ [-73.770084670568053, 40.620912927335517],
+ [-73.770461550241293, 40.620197779244613],
+ [-73.770770167543517, 40.620031182310008]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 59,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.781361958916335, 40.624842746114815],
+ [-73.784194832978713, 40.620892669910248],
+ [-73.78511041590447, 40.620281221956162],
+ [-73.785208702659432, 40.619237347917803],
+ [-73.785159200060193, 40.618647282483352],
+ [-73.784781118167928, 40.618335676678662],
+ [-73.784811064750059, 40.618015042893305],
+ [-73.784518826787476, 40.617982670589299],
+ [-73.784581849887175, 40.617855050601207],
+ [-73.784355690211029, 40.617764490587398],
+ [-73.784452737345617, 40.617556590931514],
+ [-73.784299192876873, 40.617353117964207],
+ [-73.784460870682111, 40.617027834124478],
+ [-73.783900609388525, 40.616431913460453],
+ [-73.783818029213393, 40.616140444208952],
+ [-73.783445971759704, 40.615958589860782],
+ [-73.783225545300184, 40.615578730723236],
+ [-73.782489931275109, 40.615567549886762],
+ [-73.782310426569907, 40.615447257365311],
+ [-73.782295274714372, 40.615168153677551],
+ [-73.781890902838029, 40.615047433891085],
+ [-73.781717009124677, 40.615176848796558],
+ [-73.780793765035241, 40.61458756709235],
+ [-73.780708871952882, 40.614026809005857],
+ [-73.78114906073202, 40.613998270977177],
+ [-73.780883608343572, 40.613640354636296],
+ [-73.781159997780847, 40.613601712787045],
+ [-73.781260511018743, 40.61331793350503],
+ [-73.782615574676214, 40.612497968636781],
+ [-73.782879014151121, 40.612488674791607],
+ [-73.783024505639958, 40.612200083190437],
+ [-73.783552214374041, 40.611924451980869],
+ [-73.783943736042986, 40.612040244785],
+ [-73.784474375672815, 40.611850295948472],
+ [-73.784640866528932, 40.612019520908184],
+ [-73.784975234192913, 40.611929570089337],
+ [-73.78522423150612, 40.611415951242975],
+ [-73.785778093158072, 40.610993477070728],
+ [-73.786218432451605, 40.610911064583924],
+ [-73.786469728009379, 40.610678968981574],
+ [-73.786845186972897, 40.610794723588171],
+ [-73.787198974124848, 40.610655841164551],
+ [-73.787199848103768, 40.610381664913326],
+ [-73.787415445683294, 40.610262110594398],
+ [-73.787707426376429, 40.610365467259747],
+ [-73.787913262145324, 40.610285062197889],
+ [-73.787858943300833, 40.610194384978328],
+ [-73.788659106275574, 40.610090594226783],
+ [-73.788760116609609, 40.609637895678915],
+ [-73.789081601659035, 40.609552805967276],
+ [-73.789018403046072, 40.609222206945802],
+ [-73.789953893623576, 40.608981566325944],
+ [-73.790111671493037, 40.608859453331682],
+ [-73.790012643385936, 40.608685463308149],
+ [-73.790472694918137, 40.608456187914328],
+ [-73.790380206145684, 40.608245490172983],
+ [-73.790856213913827, 40.608048067246578],
+ [-73.790876591000625, 40.607695589287474],
+ [-73.791338996044473, 40.607738045853857],
+ [-73.79139721012227, 40.607610854244768],
+ [-73.791598950081109, 40.607809510119282],
+ [-73.791511146905904, 40.6081545214168],
+ [-73.791157513044581, 40.608251801389201],
+ [-73.791172876726378, 40.608474598606151],
+ [-73.791474100746925, 40.608702811509161],
+ [-73.792749486264782, 40.608646365872914],
+ [-73.793651040956462, 40.608985814969103],
+ [-73.793948936171418, 40.609255631536136],
+ [-73.793896884610689, 40.609468516216808],
+ [-73.794541665147051, 40.609748744979655],
+ [-73.794467468786749, 40.609851429330277],
+ [-73.794806339413157, 40.610378359477203],
+ [-73.795660269392272, 40.610546345846572],
+ [-73.796965819916437, 40.611143529178555],
+ [-73.797367317226758, 40.611154028935601],
+ [-73.797456761956994, 40.611318204396184],
+ [-73.798378692403531, 40.611312481263603],
+ [-73.79852584053728, 40.611515924285683],
+ [-73.798985293946416, 40.611482456713979],
+ [-73.799173180598146, 40.612026245926614],
+ [-73.800257000702388, 40.611597282888134],
+ [-73.800539516772304, 40.611651630324424],
+ [-73.800801259194785, 40.611933904481582],
+ [-73.800239489191554, 40.612081960169185],
+ [-73.799990670713726, 40.612573580330768],
+ [-73.800089789901591, 40.612727977608898],
+ [-73.799934352716051, 40.613143870030349],
+ [-73.799316941432821, 40.613358220592694],
+ [-73.79968510153104, 40.613777474043054],
+ [-73.799517670332108, 40.613906926584448],
+ [-73.799402243669547, 40.614903069234934],
+ [-73.799002520536234, 40.615362599332336],
+ [-73.799039035353061, 40.615550542545627],
+ [-73.798786725820364, 40.615544826071122],
+ [-73.798544656714625, 40.61588959617427],
+ [-73.798163006777045, 40.615716090284735],
+ [-73.798065997171904, 40.615926450481766],
+ [-73.798210992948114, 40.616060366080433],
+ [-73.798060903937483, 40.616326916562805],
+ [-73.797275925503186, 40.616660412961487],
+ [-73.797433340878925, 40.61691923278687],
+ [-73.797410338274062, 40.617146713217906],
+ [-73.797133173535684, 40.617381379159319],
+ [-73.797242981463924, 40.617593763471909],
+ [-73.796783043015438, 40.617704722747298],
+ [-73.79700484712896, 40.618379943956811],
+ [-73.796355679042406, 40.618454684535351],
+ [-73.796188308909194, 40.619609853029196],
+ [-73.795595343085751, 40.620211012602105],
+ [-73.795545309774042, 40.620929798485754],
+ [-73.795011888011814, 40.621330743657417],
+ [-73.795237513433932, 40.621657155463311],
+ [-73.794819379792486, 40.621891449970164],
+ [-73.794440154822979, 40.62185157331524],
+ [-73.794435371238066, 40.622061632956715],
+ [-73.794697012275492, 40.62226136198732],
+ [-73.794466577571228, 40.622691306554799],
+ [-73.793390009177386, 40.62275300952426],
+ [-73.792263513520282, 40.622369089072997],
+ [-73.791428026324567, 40.622277657342764],
+ [-73.789678702058964, 40.62261481917205],
+ [-73.784878887408908, 40.626631470707885],
+ [-73.781361958916335, 40.624842746114815]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 60,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.7942017268998, 40.607730675614519],
+ [-73.793521526495354, 40.606327591394695],
+ [-73.793997549525926, 40.606080153462585],
+ [-73.79509002319466, 40.607271059100455],
+ [-73.794247990991664, 40.605900380032772],
+ [-73.796963277950383, 40.604117848767729],
+ [-73.801200197338218, 40.603912200653262],
+ [-73.801802851167906, 40.604211431452249],
+ [-73.80428530744544, 40.604519279531651],
+ [-73.805206765173736, 40.606739538099035],
+ [-73.804196956564184, 40.608744198031538],
+ [-73.801592067441149, 40.610230962501213],
+ [-73.798781987460444, 40.610333275690245],
+ [-73.796306542154369, 40.609338032538169],
+ [-73.796094539816792, 40.608826483942622],
+ [-73.795598327396277, 40.608725356302216],
+ [-73.795299779144713, 40.608229878318468],
+ [-73.7942017268998, 40.607730675614519]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 61,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.797835333985176, 40.627408716571502],
+ [-73.797838480913057, 40.627013465297303],
+ [-73.79744863612693, 40.627110476260938],
+ [-73.795662567260948, 40.626114004327739],
+ [-73.799214934277671, 40.624084712988463],
+ [-73.796983476504252, 40.624864689744726],
+ [-73.794037417545738, 40.625635195956107],
+ [-73.793629274813441, 40.625156476194896],
+ [-73.798090931071741, 40.623062948244311],
+ [-73.799510856737413, 40.62117553302096],
+ [-73.799920576986594, 40.618575240167075],
+ [-73.801724986401652, 40.619967008731727],
+ [-73.800962923082935, 40.617772369398182],
+ [-73.801280495040928, 40.6158798397475],
+ [-73.802703438678122, 40.613580652321716],
+ [-73.80339821027151, 40.613172104349616],
+ [-73.805089060122967, 40.613432560419461],
+ [-73.804669689868064, 40.614301826295602],
+ [-73.804765926825112, 40.615800991372005],
+ [-73.80575302222276, 40.616694857538306],
+ [-73.805659450605575, 40.617600255343717],
+ [-73.807641169620737, 40.621199654693342],
+ [-73.807283313292842, 40.62166643562194],
+ [-73.807689177631573, 40.622277660423599],
+ [-73.806985023151, 40.623871998828832],
+ [-73.805571478884474, 40.624969001573788],
+ [-73.805162488469563, 40.624656224185962],
+ [-73.802713449636173, 40.625934787346893],
+ [-73.802515779469118, 40.626329137692345],
+ [-73.800111772116225, 40.626927441988194],
+ [-73.80092841499382, 40.627524103889321],
+ [-73.797835333985176, 40.627408716571502]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 62,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.813396652892891, 40.60436407224644],
+ [-73.811841302647963, 40.603134665085676],
+ [-73.810853651866509, 40.603223713014252],
+ [-73.810536367586735, 40.602495988814688],
+ [-73.809863337912333, 40.601895790006751],
+ [-73.81003425937601, 40.601610908460422],
+ [-73.809912581665984, 40.601320209932737],
+ [-73.810042932313465, 40.600954710545167],
+ [-73.809850645023943, 40.600365616758531],
+ [-73.810001329484464, 40.600028682815221],
+ [-73.810144175230306, 40.600054855642156],
+ [-73.809974653176781, 40.599836702804964],
+ [-73.810188964345883, 40.599860400365998],
+ [-73.810294938573207, 40.599689389650045],
+ [-73.810290115860653, 40.59899167007233],
+ [-73.810961697245546, 40.59855703088099],
+ [-73.811387196123263, 40.5985032621372],
+ [-73.811575503455316, 40.598141199259501],
+ [-73.81222073287762, 40.598553908477733],
+ [-73.813293730271823, 40.599816592704812],
+ [-73.814447381362342, 40.600543168853648],
+ [-73.815014715687084, 40.602056290558394],
+ [-73.814286936326482, 40.604455666220517],
+ [-73.813396652892891, 40.60436407224644]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 63,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.813072338926176, 40.629261099642676],
+ [-73.813525021228912, 40.627306172685863],
+ [-73.812585561040919, 40.628371916184761],
+ [-73.811294322736117, 40.624703779001401],
+ [-73.811355819958663, 40.622937515040668],
+ [-73.81185181296344, 40.6220976183739],
+ [-73.812100453342993, 40.621100596814898],
+ [-73.811714504186654, 40.620703573736179],
+ [-73.811719236618018, 40.620094234140481],
+ [-73.811505425397925, 40.619796809946244],
+ [-73.811094511578759, 40.617910252281831],
+ [-73.81024066504996, 40.616487640654213],
+ [-73.810899904816168, 40.616218471340915],
+ [-73.812007178393188, 40.617179371484418],
+ [-73.812113445243426, 40.617925546835458],
+ [-73.812882139145046, 40.618910919655669],
+ [-73.813703540002933, 40.621386744586061],
+ [-73.814495433027133, 40.622394944300147],
+ [-73.814182786255998, 40.623694631559125],
+ [-73.815182032212078, 40.624744171144378],
+ [-73.81612703184858, 40.62534899918068],
+ [-73.81679073502562, 40.626348918121131],
+ [-73.813832885963151, 40.625926233996523],
+ [-73.813828994934539, 40.626135076638931],
+ [-73.816270260439921, 40.627145805917088],
+ [-73.817209356614313, 40.629106351151314],
+ [-73.817305769936084, 40.630621973798867],
+ [-73.81637181200449, 40.631372727243971],
+ [-73.815067884414589, 40.631164058577959],
+ [-73.813917332200802, 40.630776391212969],
+ [-73.813072338926176, 40.629261099642676]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 64,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.82337597260657, 40.638987047176713],
+ [-73.822771054386862, 40.635576914085021],
+ [-73.822098680837911, 40.63407230114656],
+ [-73.821846042528037, 40.632040188437323],
+ [-73.821075055995564, 40.629733773562052],
+ [-73.819910140681529, 40.627840653116984],
+ [-73.817964147736035, 40.6271055656957],
+ [-73.818007522949401, 40.626476343857767],
+ [-73.81769796593268, 40.625961622496213],
+ [-73.81611483429549, 40.62460465517298],
+ [-73.816086434707955, 40.624315410309308],
+ [-73.816729980585762, 40.623871514072555],
+ [-73.81795284720684, 40.624093280117371],
+ [-73.818917080398336, 40.623090267163292],
+ [-73.818893890474627, 40.622629158032559],
+ [-73.818253036973459, 40.622094238585781],
+ [-73.817786332880971, 40.621937777634699],
+ [-73.817787183106887, 40.621626331776085],
+ [-73.81697007886828, 40.621491557102146],
+ [-73.816910650598174, 40.621869647095309],
+ [-73.816530742595788, 40.622002518747934],
+ [-73.815714680446263, 40.621489551516952],
+ [-73.815431747042794, 40.620116531242161],
+ [-73.817180538784584, 40.61926727449319],
+ [-73.81744426111274, 40.618911754906527],
+ [-73.817446451391106, 40.618110895991165],
+ [-73.817774298345128, 40.617501121695639],
+ [-73.817517178801467, 40.616396411662905],
+ [-73.817168462030352, 40.615843197723251],
+ [-73.817118936222116, 40.61528219234544],
+ [-73.816526811785394, 40.614947009154939],
+ [-73.820758925048892, 40.61523267901503],
+ [-73.821570601597116, 40.614908690828926],
+ [-73.822349611034923, 40.614260025694712],
+ [-73.823798479832121, 40.612129421391451],
+ [-73.823824685953213, 40.611498664910194],
+ [-73.824100484590318, 40.612319568794369],
+ [-73.824321663829522, 40.612588470368202],
+ [-73.824448212399176, 40.612341126657874],
+ [-73.824674516379474, 40.612419914122576],
+ [-73.824685844134748, 40.613076418757572],
+ [-73.825753221052878, 40.614192081540033],
+ [-73.82725636567055, 40.613378714123492],
+ [-73.827581929048634, 40.613667659283571],
+ [-73.827875254717938, 40.613697628598395],
+ [-73.827241537270012, 40.6140650205719],
+ [-73.827502226095433, 40.614204666720191],
+ [-73.828455031825015, 40.61421603915165],
+ [-73.830919960014242, 40.615005487033436],
+ [-73.832029709067726, 40.614897699357961],
+ [-73.834018881344932, 40.614381166419641],
+ [-73.833422307441211, 40.626781982958533],
+ [-73.833041008417993, 40.628261271059564],
+ [-73.832865287316821, 40.628408350262525],
+ [-73.832895489567733, 40.62890347873293],
+ [-73.832360366712265, 40.629142257747247],
+ [-73.83196080768144, 40.629652729879275],
+ [-73.831896663981922, 40.630572394052074],
+ [-73.83114086389277, 40.632749395288428],
+ [-73.831331128641423, 40.633617691427617],
+ [-73.831938784067233, 40.634236225427472],
+ [-73.831957877866927, 40.634978880565782],
+ [-73.832490944357133, 40.635578551835529],
+ [-73.833406079792184, 40.638501355899017],
+ [-73.832899743611975, 40.638862685066805],
+ [-73.832216588191812, 40.638928490220756],
+ [-73.82866782109744, 40.636614718447966],
+ [-73.828085673532783, 40.635879726836556],
+ [-73.825916579632008, 40.635747412819988],
+ [-73.825050982906006, 40.635905260443749],
+ [-73.824430325632861, 40.636216520036534],
+ [-73.82413577690069, 40.638787996704544],
+ [-73.824573798903302, 40.639353873239195],
+ [-73.824193272931581, 40.639953274487731],
+ [-73.82337597260657, 40.638987047176713]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 65,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.827182821070537, 40.607919778091201],
+ [-73.826795374971454, 40.60772044059307],
+ [-73.82629763015818, 40.607817072229679],
+ [-73.826173610758204, 40.607554111783294],
+ [-73.826391178187762, 40.607357433652211],
+ [-73.825982128424016, 40.607157997600353],
+ [-73.825900927207712, 40.606465930649414],
+ [-73.826496187957787, 40.606224463717723],
+ [-73.826905245846845, 40.606423897977251],
+ [-73.828616714576626, 40.60583848413755],
+ [-73.828660600902253, 40.606256158374755],
+ [-73.82815085191217, 40.607950289832957],
+ [-73.827182821070537, 40.607919778091201]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 66,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.826074726045476, 40.608437799546074],
+ [-73.826610510087889, 40.608196205841651],
+ [-73.827711042359923, 40.608398668130668],
+ [-73.828050772600591, 40.610046296865278],
+ [-73.826883264807563, 40.609596678070396],
+ [-73.826074726045476, 40.608437799546074]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 67,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.826719435468533, 40.649578819319281],
+ [-73.826392428444905, 40.648324348615581],
+ [-73.826869574645244, 40.6487990451825],
+ [-73.828598743519819, 40.649169794434549],
+ [-73.829869487666528, 40.650429629639156],
+ [-73.827013243975188, 40.650859899128911],
+ [-73.826719435468533, 40.649578819319281]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 68,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.832442073584232, 40.605929448531562],
+ [-73.834541441096718, 40.605477383765837],
+ [-73.83587601623168, 40.605636907042943],
+ [-73.834462656861888, 40.607192532943309],
+ [-73.834283426860807, 40.609185681351356],
+ [-73.833732759732015, 40.609286033073346],
+ [-73.833803115155916, 40.609550591858003],
+ [-73.832521923413054, 40.61038499360474],
+ [-73.830329479060268, 40.608487878911355],
+ [-73.830458153927424, 40.606669201403157],
+ [-73.832442073584232, 40.605929448531562]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 69,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.831669027678075, 40.647972211017652],
+ [-73.834480693621742, 40.648109047247502],
+ [-73.835278773069163, 40.648283844700721],
+ [-73.835676748637013, 40.648612360146451],
+ [-73.835722754121917, 40.649378229928423],
+ [-73.831270550940246, 40.650067831824579],
+ [-73.831046725155105, 40.648634775422813],
+ [-73.831222092058482, 40.648276844993312],
+ [-73.831669027678075, 40.647972211017652]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 70,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.836682741067051, 40.5949466970158],
+ [-73.836709208259379, 40.594711963293435],
+ [-73.836244564860706, 40.594496397754135],
+ [-73.835271993899497, 40.594473517514437],
+ [-73.835117203194415, 40.594365843590147],
+ [-73.835113485986497, 40.593968265053959],
+ [-73.834332126848892, 40.593660767746748],
+ [-73.834224631394008, 40.593348241995777],
+ [-73.833611639525699, 40.593277512302294],
+ [-73.833295450780128, 40.592890225452791],
+ [-73.833083773965058, 40.592986625446372],
+ [-73.833124343233067, 40.592264069064825],
+ [-73.832574981063743, 40.592118209113977],
+ [-73.832675969852147, 40.591895394119966],
+ [-73.833067018018994, 40.591936256584773],
+ [-73.833141905317703, 40.591581773930606],
+ [-73.833440300342659, 40.592036192044155],
+ [-73.833757288409018, 40.592101122149245],
+ [-73.833782583954488, 40.591848646617308],
+ [-73.834081531194059, 40.592082786090323],
+ [-73.834226383582802, 40.591932562815465],
+ [-73.833924213031239, 40.591577534575535],
+ [-73.834227770673266, 40.591373813822607],
+ [-73.833114412373902, 40.591302358495739],
+ [-73.832835633422519, 40.591460444804774],
+ [-73.832561110359904, 40.591325729777552],
+ [-73.832535695509648, 40.590218935799292],
+ [-73.833427726754167, 40.590013387771485],
+ [-73.833589565666514, 40.590115701568266],
+ [-73.834002327386344, 40.589922884840057],
+ [-73.834639808756606, 40.590052746674161],
+ [-73.834954227677045, 40.589728155617955],
+ [-73.834055631282439, 40.589742979420819],
+ [-73.833829656434034, 40.589925321265312],
+ [-73.833227415183046, 40.589795506083398],
+ [-73.833478667112772, 40.589368748711827],
+ [-73.834588835529857, 40.589292449605921],
+ [-73.835222669372016, 40.589470656034564],
+ [-73.835947054550061, 40.589366926730968],
+ [-73.836934535836491, 40.589747101007937],
+ [-73.837195411358607, 40.589699117362954],
+ [-73.837412896569433, 40.59010505698776],
+ [-73.838654801292478, 40.590928816163128],
+ [-73.838667436476968, 40.591533251750882],
+ [-73.83946303752542, 40.592256568488203],
+ [-73.839963400872662, 40.591873539011893],
+ [-73.83943345801903, 40.59243960947456],
+ [-73.839890701909241, 40.592800211493802],
+ [-73.840810160810221, 40.592919686203714],
+ [-73.840987566265497, 40.592412220518852],
+ [-73.841358238350168, 40.592133357919657],
+ [-73.841463776137417, 40.592208719980825],
+ [-73.841166508523813, 40.59244606437192],
+ [-73.841840224417368, 40.592713368098053],
+ [-73.842205074437217, 40.593158004692768],
+ [-73.843046605900199, 40.59345196410186],
+ [-73.843858940180127, 40.593425311959727],
+ [-73.84358788589671, 40.594160675791443],
+ [-73.843311537734692, 40.594423032976096],
+ [-73.842916021710977, 40.594447384027504],
+ [-73.842643253652795, 40.594729103032336],
+ [-73.842208030239803, 40.594667662710265],
+ [-73.840319738252703, 40.595870355646724],
+ [-73.839029642480895, 40.596253484748651],
+ [-73.83743435500341, 40.5958004430138],
+ [-73.836623772040127, 40.595062851868427],
+ [-73.836682741067051, 40.5949466970158]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 71,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.836261097903744, 40.645351677049206],
+ [-73.836589550426282, 40.6458924647579],
+ [-73.837387788457477, 40.649118149467526],
+ [-73.836813345751565, 40.649249415001961],
+ [-73.835923200732836, 40.645499790674947],
+ [-73.836261097903744, 40.645351677049206]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 72,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.865334325933745, 40.568784783429223],
+ [-73.864309695511167, 40.567391616473806],
+ [-73.863169302136242, 40.567739271748323],
+ [-73.862676080486921, 40.566513013806166],
+ [-73.863004829437855, 40.566875957730836],
+ [-73.863493063602093, 40.567034311733984],
+ [-73.865537572574112, 40.566571610437293],
+ [-73.866617205546305, 40.566091942910305],
+ [-73.866309412324398, 40.565546064124852],
+ [-73.86663005715063, 40.566090111654034],
+ [-73.866884009939341, 40.566083976275301],
+ [-73.868486948458781, 40.565527010301508],
+ [-73.86825117550174, 40.565069489459624],
+ [-73.86862321827094, 40.565538008774986],
+ [-73.870622148152492, 40.564813309494113],
+ [-73.870275884646986, 40.564174653597355],
+ [-73.870640942165053, 40.564809945218073],
+ [-73.870913162064838, 40.564764585510702],
+ [-73.87263971280457, 40.564084184026747],
+ [-73.872378780474875, 40.563575115556318],
+ [-73.872749255476037, 40.564109556041863],
+ [-73.87321952896157, 40.564063906186348],
+ [-73.874593375738584, 40.563631163057003],
+ [-73.874644819210516, 40.563501462300337],
+ [-73.876330399683312, 40.563086553272896],
+ [-73.880284025952221, 40.561511408315269],
+ [-73.880296751109597, 40.561374955249477],
+ [-73.881282492213131, 40.561372133879573],
+ [-73.882415867282972, 40.560910897001527],
+ [-73.882374416797418, 40.560760430809786],
+ [-73.882520569346909, 40.560881395412721],
+ [-73.883247415622392, 40.560855921485079],
+ [-73.88488436886675, 40.560182368041154],
+ [-73.884859494798661, 40.560042807457975],
+ [-73.885112777329837, 40.560150961736582],
+ [-73.886111096844729, 40.559921919029136],
+ [-73.886961706830817, 40.559558154144504],
+ [-73.886975108011583, 40.559400482998484],
+ [-73.887071829972456, 40.559542104885786],
+ [-73.88789256106385, 40.559510651379519],
+ [-73.889385921666658, 40.558920400147862],
+ [-73.889639475428964, 40.558664351794015],
+ [-73.890216535536695, 40.558811548619012],
+ [-73.890795896962629, 40.558619378907785],
+ [-73.89192354828397, 40.558160421525031],
+ [-73.892138643962753, 40.557871540991428],
+ [-73.892527450993938, 40.558119293542525],
+ [-73.893470650505563, 40.557945578638559],
+ [-73.894951424994204, 40.557293925409397],
+ [-73.894918172664831, 40.55707879529308],
+ [-73.895184586969549, 40.55738503715083],
+ [-73.895511887710853, 40.557414270149657],
+ [-73.896995229426608, 40.556891791638733],
+ [-73.897079561167672, 40.556657433084581],
+ [-73.897356886193151, 40.55699842304179],
+ [-73.897995147968118, 40.557102137180223],
+ [-73.899117184923, 40.556800353794728],
+ [-73.899129952148897, 40.556641173154262],
+ [-73.900275959850873, 40.556603894283498],
+ [-73.900585817868091, 40.556422209024262],
+ [-73.90070115515833, 40.556633568543205],
+ [-73.901299152569791, 40.556767815604125],
+ [-73.903018294732988, 40.556701743189244],
+ [-73.906585749210876, 40.55571062532816],
+ [-73.908797305577167, 40.55482950838892],
+ [-73.909282997928784, 40.556997241629283],
+ [-73.909267706566482, 40.560450279142728],
+ [-73.90923653142832, 40.560756522500952],
+ [-73.908353957480756, 40.560754480086381],
+ [-73.909810705132671, 40.561501916940301],
+ [-73.910621846301268, 40.563810518111225],
+ [-73.910032339741406, 40.564788804202941],
+ [-73.909811035714327, 40.564327155477528],
+ [-73.909277082149558, 40.563997124153524],
+ [-73.908515835745405, 40.563939048431287],
+ [-73.907948214866508, 40.564158323984337],
+ [-73.907996023468201, 40.563614657179869],
+ [-73.907699461610832, 40.563289628091567],
+ [-73.906976141944369, 40.562899705722351],
+ [-73.90611446821741, 40.562743210897715],
+ [-73.904223748765304, 40.562995158675477],
+ [-73.902922955789151, 40.56347776231528],
+ [-73.90220568634598, 40.5629654858012],
+ [-73.901086926736454, 40.563038115470661],
+ [-73.899055797342982, 40.563812948642855],
+ [-73.896132624453045, 40.565358427566814],
+ [-73.895540627401388, 40.564020699657355],
+ [-73.88536860326866, 40.566857011351175],
+ [-73.886546839364428, 40.568470978109382],
+ [-73.885341830196779, 40.568599348654601],
+ [-73.884896782201992, 40.568499584876847],
+ [-73.884309731052852, 40.568696119538657],
+ [-73.884887071247249, 40.568470205668682],
+ [-73.88475594832849, 40.568289139187421],
+ [-73.884707910774409, 40.568429673593911],
+ [-73.884336847748187, 40.568487934477972],
+ [-73.884736898650431, 40.568268513241271],
+ [-73.884456657761845, 40.567895763405943],
+ [-73.88416646626051, 40.568001951563964],
+ [-73.884256054500042, 40.568157133402345],
+ [-73.88414806727036, 40.56800897730114],
+ [-73.883989074502139, 40.568060160694188],
+ [-73.884071719351468, 40.568195014133465],
+ [-73.883974125313131, 40.568064973133488],
+ [-73.88379103703096, 40.568123911324527],
+ [-73.884023400924065, 40.568503115610817],
+ [-73.883780867561157, 40.568127185959867],
+ [-73.883576706068169, 40.568209769753544],
+ [-73.883691950437196, 40.568395359723333],
+ [-73.883478500156542, 40.568473114104222],
+ [-73.883904278844128, 40.568906204259243],
+ [-73.883687280963358, 40.568843404832307],
+ [-73.883369273162856, 40.568331859248289],
+ [-73.882629706406789, 40.568368929825084],
+ [-73.88192258910145, 40.568731441525557],
+ [-73.878674673616985, 40.568639939837951],
+ [-73.877400179667973, 40.568926178831227],
+ [-73.86663956227197, 40.574099218934428],
+ [-73.862883018909045, 40.576059761254719],
+ [-73.862803619928798, 40.575933034765349],
+ [-73.863992097390479, 40.575060722125805],
+ [-73.863406293712146, 40.574114331255878],
+ [-73.863611329523778, 40.573823057018551],
+ [-73.866628120238744, 40.573057648924618],
+ [-73.864466329331336, 40.569141785522433],
+ [-73.865334325933745, 40.568784783429223]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 73,
+ "properties": {
+ "communityDistrict": 484,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/484"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.931775808843369, 40.557899562384854],
+ [-73.926419093968107, 40.548155780319931],
+ [-73.930546822433598, 40.546421979128752],
+ [-73.936120220423533, 40.544507415973499],
+ [-73.938899459428356, 40.543228013576652],
+ [-73.940474038573043, 40.542850072149172],
+ [-73.940559058617026, 40.541846776959794],
+ [-73.940736817313052, 40.541820087155529],
+ [-73.940129757299161, 40.548002561293096],
+ [-73.940128090006269, 40.549516289012665],
+ [-73.940652732456144, 40.552497817408472],
+ [-73.940171109941161, 40.554075540252313],
+ [-73.938997162970708, 40.555425499740892],
+ [-73.936650812011209, 40.556816174391713],
+ [-73.935433777460617, 40.557305667247839],
+ [-73.933226850549801, 40.55737939674038],
+ [-73.931775808843369, 40.557899562384854]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 74,
+ "properties": {
+ "communityDistrict": 501,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/501"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.15945602371967, 40.641448332319776],
+ [-74.159978756996153, 40.641446480836365],
+ [-74.161112425881512, 40.64183545373627],
+ [-74.161460360052928, 40.644294969764857],
+ [-74.157987595406453, 40.643861788966056],
+ [-74.157433492009872, 40.643302857778991],
+ [-74.157915893407846, 40.643082694453689],
+ [-74.158134516033471, 40.642632530662979],
+ [-74.158550437705401, 40.642497501306387],
+ [-74.158810938112723, 40.641758634739404],
+ [-74.15945602371967, 40.641448332319776]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 75,
+ "properties": {
+ "communityDistrict": 501,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/501"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.082212729149362, 40.648280162290064],
+ [-74.08142228269665, 40.648504724943756],
+ [-74.080728387623722, 40.648274873846255],
+ [-74.079809964287037, 40.648383312987917],
+ [-74.078995463992428, 40.648142554421945],
+ [-74.076506571528583, 40.646968818183339],
+ [-74.074452825635859, 40.645067487718052],
+ [-74.073958399764663, 40.645193205445509],
+ [-74.073591079192767, 40.64499892804298],
+ [-74.073498514336009, 40.645083373474655],
+ [-74.073856536847245, 40.645424816099599],
+ [-74.073338139229662, 40.645783116161816],
+ [-74.073245394648524, 40.645704925269506],
+ [-74.073690118064434, 40.645305724054779],
+ [-74.073238538107603, 40.644963863909808],
+ [-74.073025205731824, 40.645131238319735],
+ [-74.073202259546974, 40.644943941243504],
+ [-74.073055598817206, 40.6448079178409],
+ [-74.073425908135121, 40.645000567509591],
+ [-74.073121841835089, 40.644714799468929],
+ [-74.072798503414944, 40.644910123768732],
+ [-74.072587754878882, 40.644790863174045],
+ [-74.072703082676014, 40.644645595627509],
+ [-74.072564682329528, 40.644719748858144],
+ [-74.072666308371851, 40.644620920659086],
+ [-74.072532219597477, 40.64455679217064],
+ [-74.072724670790976, 40.644620883766493],
+ [-74.072698287990249, 40.644441273467329],
+ [-74.071687373767304, 40.645050328200554],
+ [-74.072309191127175, 40.644577753051713],
+ [-74.072018432132381, 40.644411932940834],
+ [-74.072291902818208, 40.644266047820402],
+ [-74.072184886016672, 40.644110465395116],
+ [-74.071860809368559, 40.644201761769722],
+ [-74.071756480877809, 40.644011845498589],
+ [-74.072058174400553, 40.643900427699009],
+ [-74.071649694085195, 40.643786885724602],
+ [-74.071596792011576, 40.643460157488612],
+ [-74.071356121766328, 40.643497304556021],
+ [-74.071482024326187, 40.643292625063495],
+ [-74.070937844714763, 40.643345963840545],
+ [-74.071443317063157, 40.643270561330581],
+ [-74.071131057209342, 40.643205263678269],
+ [-74.071502631474019, 40.643129304192875],
+ [-74.071477773885945, 40.642808293774557],
+ [-74.071648921989933, 40.642679931679616],
+ [-74.071703519672667, 40.642796335279961],
+ [-74.072184349030593, 40.642714093289484],
+ [-74.072109524446319, 40.642463216792741],
+ [-74.070374309905972, 40.642691403053135],
+ [-74.070329237153899, 40.642526128132289],
+ [-74.073238292495745, 40.64218473608193],
+ [-74.073144005859206, 40.641852973474933],
+ [-74.070246587646395, 40.642206974296464],
+ [-74.070193995592192, 40.642007502805278],
+ [-74.073086898193836, 40.641636814969594],
+ [-74.072890056096284, 40.640922672876023],
+ [-74.070018491487403, 40.641278132237495],
+ [-74.069983546539504, 40.641068943116778],
+ [-74.072850411949361, 40.640803688445011],
+ [-74.072776900770862, 40.640528963146913],
+ [-74.073077258377438, 40.640513311796305],
+ [-74.073090355787841, 40.638618999685832],
+ [-74.072929333847483, 40.638592649838223],
+ [-74.073014445621524, 40.638409383616214],
+ [-74.072379411293809, 40.638162726074071],
+ [-74.072606327975492, 40.638136308346994],
+ [-74.072572752126078, 40.637871909875891],
+ [-74.073483538017243, 40.637787357935579],
+ [-74.073487373035618, 40.637233529236205],
+ [-74.070539597051976, 40.637471404624279],
+ [-74.070494122138385, 40.637161886839557],
+ [-74.073415626987909, 40.636893950965103],
+ [-74.073373428880359, 40.636610725639386],
+ [-74.072094838075088, 40.636647277624547],
+ [-74.073358220455944, 40.636536094165137],
+ [-74.072831843444632, 40.633666032826071],
+ [-74.073328213823743, 40.632058442989894],
+ [-74.07298474612324, 40.630308978981432],
+ [-74.068021735439515, 40.628787585185442],
+ [-74.068130192479913, 40.628539046091475],
+ [-74.072911779365583, 40.629996379406478],
+ [-74.072292230800102, 40.627151707706574],
+ [-74.072783822049217, 40.62704855517876],
+ [-74.072255009557722, 40.624608750193943],
+ [-74.071061793964915, 40.622793154505416],
+ [-74.070719940369244, 40.622577481823278],
+ [-74.069755430883276, 40.621208139872358],
+ [-74.066493352963832, 40.618897601595144],
+ [-74.06596065271782, 40.619359015593702],
+ [-74.066409890192546, 40.618864467566667],
+ [-74.06619908020825, 40.618722481288387],
+ [-74.065572808412114, 40.619274543599914],
+ [-74.065445861354391, 40.61920262828891],
+ [-74.066682079829235, 40.618067495938504],
+ [-74.066415587151766, 40.617872498165553],
+ [-74.066049915359073, 40.618195410352712],
+ [-74.065698647441423, 40.617956415586576],
+ [-74.065465499527548, 40.618107070280772],
+ [-74.064961892804305, 40.617772398565229],
+ [-74.064357051586668, 40.618245944865585],
+ [-74.064257217515916, 40.618171687585544],
+ [-74.065099084072074, 40.617510956125443],
+ [-74.064436620050259, 40.617062414602543],
+ [-74.064012117679468, 40.617402225630514],
+ [-74.063908922403627, 40.617328825149038],
+ [-74.064327458580493, 40.616988503022149],
+ [-74.063761299297369, 40.61679875004328],
+ [-74.063766687440761, 40.616603630839904],
+ [-74.061307095502713, 40.614192250765576],
+ [-74.060336807920152, 40.611901880219641],
+ [-74.059854443286241, 40.612102958608112],
+ [-74.060016251162338, 40.612763687895388],
+ [-74.060197727296526, 40.612786375932281],
+ [-74.059999197116355, 40.612783899618634],
+ [-74.059769307381828, 40.612056647139333],
+ [-74.060272248099452, 40.611819639939192],
+ [-74.059533067489113, 40.611714254064239],
+ [-74.059270762436427, 40.611493132507562],
+ [-74.058901334215236, 40.61100228648629],
+ [-74.059123339398155, 40.610822289089086],
+ [-74.059085843087047, 40.610633677254484],
+ [-74.057163838789791, 40.608742783103651],
+ [-74.056858123804815, 40.608056357545159],
+ [-74.065170912507782, 40.604213508846286],
+ [-74.063640585538337, 40.602541948797345],
+ [-74.063505655942024, 40.602150054328227],
+ [-74.065506631910367, 40.602719880932405],
+ [-74.072066828498649, 40.605186347263952],
+ [-74.073999653080435, 40.605725567455515],
+ [-74.076567346693892, 40.606121664158529],
+ [-74.082809497974466, 40.606410978567631],
+ [-74.085427562483389, 40.607022390529522],
+ [-74.093056856199297, 40.610119935737288],
+ [-74.095558297685201, 40.6106247780369],
+ [-74.108344179355655, 40.610234767859801],
+ [-74.110009340522865, 40.610336205547725],
+ [-74.113274079507065, 40.611097937548465],
+ [-74.115087453690194, 40.611209431432336],
+ [-74.116874581820213, 40.610971825929809],
+ [-74.12452618721494, 40.609022318954672],
+ [-74.128748974405028, 40.608391741032456],
+ [-74.14287916669754, 40.60758543877516],
+ [-74.144561010299299, 40.607615025580579],
+ [-74.146281773651552, 40.607886273731602],
+ [-74.148396149821664, 40.608555443501373],
+ [-74.150186665170978, 40.60949781115437],
+ [-74.157926737964715, 40.615457424605061],
+ [-74.162354577564145, 40.61833563791938],
+ [-74.168080862736844, 40.620936256187974],
+ [-74.172362609579181, 40.62163579886596],
+ [-74.17459706258596, 40.62236401199165],
+ [-74.176100527930913, 40.62340624288138],
+ [-74.178883905737052, 40.625932871736872],
+ [-74.179937060479205, 40.626601296520917],
+ [-74.183687910928427, 40.628737925050686],
+ [-74.195559752592104, 40.635023985627974],
+ [-74.195185772436517, 40.635415781046561],
+ [-74.195200969000993, 40.635707944646256],
+ [-74.194422568546429, 40.636582105207943],
+ [-74.194542126457549, 40.637070027626741],
+ [-74.194786897484448, 40.63713151166305],
+ [-74.19462310145191, 40.637391183563665],
+ [-74.193973086275008, 40.637309114196334],
+ [-74.19358317694855, 40.637469116884624],
+ [-74.193719646219492, 40.637566814230084],
+ [-74.186524968975974, 40.643388662171425],
+ [-74.186232097436843, 40.643187396856327],
+ [-74.185908966678539, 40.643631439501739],
+ [-74.185114316148841, 40.643806238289976],
+ [-74.185247936632621, 40.643943526192238],
+ [-74.184835945808473, 40.644128266338718],
+ [-74.184424449663439, 40.643650691575999],
+ [-74.184113190644339, 40.643530083625755],
+ [-74.184064832320573, 40.643323990445751],
+ [-74.18437046839783, 40.643099576888872],
+ [-74.184214440660014, 40.643116895768415],
+ [-74.1839549073662, 40.642494160700039],
+ [-74.183650671300413, 40.642239641049599],
+ [-74.184026111920147, 40.643100408569687],
+ [-74.183845759369106, 40.643266156807364],
+ [-74.183474271664551, 40.642949209571711],
+ [-74.183242122791384, 40.642963677097839],
+ [-74.183800449424226, 40.64443190122303],
+ [-74.18366745872008, 40.644610485050038],
+ [-74.182889316218336, 40.644800282946029],
+ [-74.181184342439266, 40.644586159244859],
+ [-74.180872125132211, 40.644851429678326],
+ [-74.180481739536589, 40.644278924776472],
+ [-74.180040780152098, 40.644288140672614],
+ [-74.179906714553951, 40.644378720664236],
+ [-74.179965072740217, 40.645266982302886],
+ [-74.179884063614196, 40.645110240366471],
+ [-74.179774527332953, 40.645166679847954],
+ [-74.179729878180169, 40.644380702110858],
+ [-74.179331172494315, 40.64440051177251],
+ [-74.179251234066442, 40.645041876969223],
+ [-74.179074665838939, 40.644646507056514],
+ [-74.179035559945405, 40.643394787019638],
+ [-74.179404828020324, 40.643128966476397],
+ [-74.179587137873881, 40.641917683463006],
+ [-74.179187280672934, 40.642987538991306],
+ [-74.178790784368701, 40.642498503459507],
+ [-74.178483138270849, 40.642521174727875],
+ [-74.178256621460278, 40.642129227868175],
+ [-74.178341269459821, 40.642589475996779],
+ [-74.177812376087743, 40.642599844142083],
+ [-74.177686362998415, 40.642948596519531],
+ [-74.177211186369306, 40.643122778602034],
+ [-74.176823868959005, 40.642859145983287],
+ [-74.176704891511747, 40.642416911283973],
+ [-74.176357866175337, 40.642327220562848],
+ [-74.176687237912247, 40.64255213862117],
+ [-74.176667955382442, 40.643386844771591],
+ [-74.175981831919231, 40.643463622280727],
+ [-74.175602509544291, 40.643311298672387],
+ [-74.175471662552781, 40.644123105461098],
+ [-74.175684707425773, 40.644710284895076],
+ [-74.175466911571974, 40.644646521102288],
+ [-74.175296915450573, 40.645075076818912],
+ [-74.174896205251343, 40.645146047962854],
+ [-74.174586215433052, 40.645016931528538],
+ [-74.1743657300959, 40.645136258644435],
+ [-74.172941238916536, 40.644204522855837],
+ [-74.173001546516318, 40.643585405078611],
+ [-74.172447844850666, 40.643421570750803],
+ [-74.172361653865792, 40.643256267551841],
+ [-74.172721453711674, 40.642948498995587],
+ [-74.172440278618851, 40.64281204715865],
+ [-74.171963305659915, 40.642858132693299],
+ [-74.17150811099728, 40.643134442090826],
+ [-74.171335872818062, 40.642855765051948],
+ [-74.171860425825784, 40.642522928518844],
+ [-74.171750128528785, 40.642516755691176],
+ [-74.171849273111008, 40.642380402707083],
+ [-74.17172186950495, 40.64193954418144],
+ [-74.171478789894493, 40.641702509993578],
+ [-74.171587219237338, 40.641029593394471],
+ [-74.172023159181975, 40.640989214656706],
+ [-74.172979905820711, 40.640486067195631],
+ [-74.172062005806751, 40.640941613388478],
+ [-74.171569946854234, 40.641011532092747],
+ [-74.171386518592243, 40.641422735518901],
+ [-74.171373823505107, 40.642085015268052],
+ [-74.171050172398921, 40.642593819129949],
+ [-74.171275245115865, 40.642111682766703],
+ [-74.171192609512076, 40.641739626513946],
+ [-74.17028635441109, 40.641775308255845],
+ [-74.170078786510445, 40.642086160575445],
+ [-74.169152955691374, 40.641872859874347],
+ [-74.169064316288654, 40.642130016798554],
+ [-74.167740940513568, 40.641727774498477],
+ [-74.167576070925065, 40.641844793608016],
+ [-74.166533757928363, 40.641422637883643],
+ [-74.166215999170504, 40.642424100227899],
+ [-74.16609989896034, 40.64240658700119],
+ [-74.166318872924606, 40.641436675004918],
+ [-74.16580110755902, 40.641224511449465],
+ [-74.165634098297758, 40.641214371374701],
+ [-74.165443100823978, 40.642280546708534],
+ [-74.164941390411826, 40.64220899988927],
+ [-74.165190418242133, 40.640642305778407],
+ [-74.164734265368068, 40.640391467024799],
+ [-74.164571324327042, 40.64141866159494],
+ [-74.164414596491127, 40.641396784726048],
+ [-74.164596565974563, 40.640315745042379],
+ [-74.164168868136315, 40.639994110230305],
+ [-74.164001790673964, 40.641065860005838],
+ [-74.16386249420357, 40.641052797343782],
+ [-74.164047315166428, 40.639946658799516],
+ [-74.163849765838691, 40.639891508927292],
+ [-74.163454456819991, 40.639856560398229],
+ [-74.163228558441304, 40.640948510329906],
+ [-74.162793560280207, 40.641029624006705],
+ [-74.161675346942346, 40.640610784766757],
+ [-74.162284652520839, 40.638765652772292],
+ [-74.161818566122577, 40.638646278777607],
+ [-74.161449178267702, 40.639428336668288],
+ [-74.161302218015479, 40.639393734457009],
+ [-74.161660107729688, 40.638664993312332],
+ [-74.16124015814863, 40.638595010611006],
+ [-74.160904907044156, 40.639386140816924],
+ [-74.160736549384524, 40.639351014474506],
+ [-74.161081618248801, 40.638567768311582],
+ [-74.1608112684074, 40.638632958888806],
+ [-74.160348199931647, 40.63844372645346],
+ [-74.159864103990643, 40.639927823693668],
+ [-74.16023470596285, 40.638410316923874],
+ [-74.160057540660986, 40.638722352749845],
+ [-74.159856977678999, 40.638729202219416],
+ [-74.159577123979133, 40.637992583211876],
+ [-74.159319540370362, 40.637810404740293],
+ [-74.159056223788937, 40.63803931031979],
+ [-74.15900957887429, 40.638822577909771],
+ [-74.158895324168228, 40.63881527713027],
+ [-74.158932992266401, 40.638264017818067],
+ [-74.157892629538807, 40.637965051231099],
+ [-74.157841222729132, 40.638873914966119],
+ [-74.157733525063719, 40.638879035166184],
+ [-74.157773659367919, 40.637957159243463],
+ [-74.157187827165458, 40.637950805229806],
+ [-74.157101266907091, 40.639277718600141],
+ [-74.156977232942552, 40.639275401191803],
+ [-74.157070773715589, 40.637947135640061],
+ [-74.156102765568633, 40.637939590885196],
+ [-74.156114883307126, 40.637530747163517],
+ [-74.155698620531524, 40.637517938904132],
+ [-74.155618293261497, 40.638470220024672],
+ [-74.155492690002774, 40.63846677952548],
+ [-74.155586437589122, 40.637730775865379],
+ [-74.154829323958822, 40.637723855419651],
+ [-74.154692638645258, 40.639193968114199],
+ [-74.154778290119864, 40.63772154555086],
+ [-74.154596701633267, 40.637343344069009],
+ [-74.154252701394924, 40.637172310887372],
+ [-74.153414065977898, 40.637272719079263],
+ [-74.152797035773759, 40.637132754851656],
+ [-74.152697004496673, 40.63764184172463],
+ [-74.152218069504514, 40.637692581715953],
+ [-74.152297861755002, 40.638274288263553],
+ [-74.152136758999148, 40.638290747955637],
+ [-74.152046392332664, 40.637667215315453],
+ [-74.151195450071768, 40.637730788536139],
+ [-74.151395176136489, 40.639396513057427],
+ [-74.151248280325476, 40.639409342885038],
+ [-74.151129650904835, 40.638500680073882],
+ [-74.150556389080592, 40.638559330666375],
+ [-74.149967820905445, 40.638150075249214],
+ [-74.149678898308863, 40.637517674260572],
+ [-74.149458182203119, 40.637410320840566],
+ [-74.149312356633075, 40.637525958139513],
+ [-74.149418817743154, 40.6382916405461],
+ [-74.149194181556865, 40.638668331371903],
+ [-74.148881754777946, 40.638705207974063],
+ [-74.148558150922057, 40.637437837527223],
+ [-74.148777920058848, 40.638876251127691],
+ [-74.146021731017186, 40.639094549700694],
+ [-74.146057336183873, 40.639229257689863],
+ [-74.145192794815401, 40.639378497654711],
+ [-74.144671332341687, 40.639304267726772],
+ [-74.143861635958729, 40.638887962516513],
+ [-74.143749599189036, 40.638961577750599],
+ [-74.143817345302693, 40.63920747892395],
+ [-74.143573085937888, 40.639226785257094],
+ [-74.143361030768105, 40.639709845180249],
+ [-74.142577694020247, 40.639534137500974],
+ [-74.142387951493262, 40.639641210829893],
+ [-74.142297669809651, 40.64030580709364],
+ [-74.141556230383287, 40.640366768816186],
+ [-74.141480474694248, 40.640092194294624],
+ [-74.140762536452783, 40.640589396911182],
+ [-74.137575749044601, 40.641001152370336],
+ [-74.137344015292967, 40.641148322830105],
+ [-74.137370018159558, 40.641295463488142],
+ [-74.134352696396093, 40.641886797404375],
+ [-74.134302812513468, 40.64175379490851],
+ [-74.133497197666713, 40.64171690148109],
+ [-74.133415392332793, 40.641547116550989],
+ [-74.132991724594632, 40.641416936663838],
+ [-74.132402836431027, 40.641704388983726],
+ [-74.131255811802561, 40.64159683076381],
+ [-74.131461998307955, 40.641310104074272],
+ [-74.130183700791861, 40.640723826082287],
+ [-74.129677851002484, 40.641385312553595],
+ [-74.129490576373669, 40.64135483519582],
+ [-74.129977401967466, 40.640729872856312],
+ [-74.129307131868501, 40.640337411210957],
+ [-74.129229772610614, 40.640484372352375],
+ [-74.128933012099012, 40.640413929487828],
+ [-74.128907290334524, 40.641194827586133],
+ [-74.12881201847128, 40.640226977503893],
+ [-74.127526773068567, 40.640155304715712],
+ [-74.127147745638979, 40.639311056850197],
+ [-74.127027360209041, 40.639319077984275],
+ [-74.127053622052642, 40.640241737638952],
+ [-74.126448239190239, 40.640377994199007],
+ [-74.126069828621993, 40.64025447268741],
+ [-74.126199962916516, 40.641264314302909],
+ [-74.126368086889812, 40.641332380486901],
+ [-74.12564026804624, 40.641418492082984],
+ [-74.12613276551231, 40.641264388028233],
+ [-74.12599542488428, 40.640231242627998],
+ [-74.124155784450096, 40.640134716640013],
+ [-74.122856305552446, 40.640820508346273],
+ [-74.122572804791574, 40.640622340094168],
+ [-74.122907248985683, 40.641019266617086],
+ [-74.12276203509289, 40.641426635297123],
+ [-74.121841470615479, 40.641405894773463],
+ [-74.121990838075391, 40.641554639499418],
+ [-74.121853295978212, 40.64158069227954],
+ [-74.121806610820684, 40.641412159075522],
+ [-74.121779111975115, 40.641592547116957],
+ [-74.121558865605863, 40.641621632250015],
+ [-74.121760526686245, 40.641574314056548],
+ [-74.121723753188704, 40.64142866444385],
+ [-74.121326171116507, 40.641606569228848],
+ [-74.121311948296679, 40.641452531325015],
+ [-74.121194889577779, 40.641675009060279],
+ [-74.121280747943644, 40.64143249598709],
+ [-74.121077274050251, 40.641607419583508],
+ [-74.121180394417195, 40.641383445380214],
+ [-74.120713175886905, 40.64104578219083],
+ [-74.119934800889112, 40.641197604383819],
+ [-74.119971112135858, 40.641314814562264],
+ [-74.119607167478691, 40.641380309354147],
+ [-74.119956998757644, 40.642209453429054],
+ [-74.119854439420948, 40.642235613904766],
+ [-74.119529861057543, 40.641469914321874],
+ [-74.119097205597001, 40.641473466522669],
+ [-74.119400295324553, 40.642379378532716],
+ [-74.11900348200308, 40.641464614510056],
+ [-74.11861635170294, 40.641530365029681],
+ [-74.11896077402352, 40.642504515993195],
+ [-74.118836246169423, 40.642541864060327],
+ [-74.118401850835497, 40.641529800542855],
+ [-74.118007670936564, 40.641805497533284],
+ [-74.118156357438579, 40.642131298298722],
+ [-74.118048911563619, 40.642157461011791],
+ [-74.117917286831343, 40.641825876952097],
+ [-74.117288144803766, 40.641594377204576],
+ [-74.117112356995563, 40.641655967138846],
+ [-74.117507025232882, 40.642420408430098],
+ [-74.117137064693367, 40.641898064630418],
+ [-74.116721876638877, 40.642031756096564],
+ [-74.117224700825446, 40.643027359962574],
+ [-74.11666607646228, 40.642106766333903],
+ [-74.116300000827437, 40.642202665102246],
+ [-74.116670413826867, 40.643189824892815],
+ [-74.1161420863572, 40.642216454150315],
+ [-74.115719170422963, 40.642351819214007],
+ [-74.116226918394361, 40.643307105862725],
+ [-74.11564823433703, 40.642374682329233],
+ [-74.11535082182931, 40.642470540158172],
+ [-74.115117148180389, 40.642784992677186],
+ [-74.113796660860089, 40.643609515807867],
+ [-74.114040531460219, 40.644042502119753],
+ [-74.113950941344626, 40.64413659167456],
+ [-74.112888065109672, 40.644532444637527],
+ [-74.113890108903234, 40.643989669126007],
+ [-74.11354450863908, 40.643954120067256],
+ [-74.113330232584374, 40.643723496580492],
+ [-74.111161294692565, 40.645096423181258],
+ [-74.111766466500242, 40.64470616034491],
+ [-74.109739325644838, 40.645463728184716],
+ [-74.104722215997626, 40.645563657399435],
+ [-74.104123563017453, 40.645740432200093],
+ [-74.10168264441667, 40.645406732986693],
+ [-74.101618289547375, 40.645526538871444],
+ [-74.1016426644115, 40.645396548926129],
+ [-74.100100073566978, 40.645059416094547],
+ [-74.098800668198265, 40.645047034311347],
+ [-74.098499816255071, 40.645370361953738],
+ [-74.096045553475619, 40.645372747442117],
+ [-74.092988282536297, 40.645972780751919],
+ [-74.093005072963066, 40.646076314816817],
+ [-74.09135697876026, 40.646700724101017],
+ [-74.08940351627777, 40.647305776658257],
+ [-74.087674426814999, 40.648235293614761],
+ [-74.085707543782121, 40.648880553370446],
+ [-74.084844032157164, 40.64889114733942],
+ [-74.082212729149362, 40.648280162290064]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 76,
+ "properties": {
+ "communityDistrict": 502,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/502"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.073466270662578, 40.578385685897373],
+ [-74.073304267553226, 40.578437855716786],
+ [-74.073551466574784, 40.578198393000477],
+ [-74.073496696754617, 40.578327959714429],
+ [-74.075082881926207, 40.579160158755549],
+ [-74.074994130735135, 40.579236557416301],
+ [-74.073466270662578, 40.578385685897373]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 77,
+ "properties": {
+ "communityDistrict": 502,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/502"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.054988678394466, 40.606660696911753],
+ [-74.055287196971321, 40.606538890078674],
+ [-74.055160011223208, 40.606730491350852],
+ [-74.054988678394466, 40.606660696911753]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 78,
+ "properties": {
+ "communityDistrict": 502,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/502"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.195686092233828, 40.635016864640079],
+ [-74.183687910928427, 40.628737925050686],
+ [-74.179937060479205, 40.626601296520917],
+ [-74.178883905737052, 40.625932871736872],
+ [-74.176100527930913, 40.62340624288138],
+ [-74.17459706258596, 40.62236401199165],
+ [-74.172362609579181, 40.62163579886596],
+ [-74.168080862736844, 40.620936256187974],
+ [-74.164841903853699, 40.619572404903359],
+ [-74.161630103265651, 40.617934935404165],
+ [-74.157926737964715, 40.615457424605061],
+ [-74.150186665170978, 40.60949781115437],
+ [-74.148869613388399, 40.60877157754846],
+ [-74.147243818170523, 40.608142117747342],
+ [-74.145499035237336, 40.607730377977234],
+ [-74.143550365070041, 40.607574723911554],
+ [-74.128748974405028, 40.608391741032456],
+ [-74.12452618721494, 40.609022318954672],
+ [-74.116874581820213, 40.610971825929809],
+ [-74.115087453690194, 40.611209431432336],
+ [-74.113274079507065, 40.611097937548465],
+ [-74.110479565020825, 40.610418656144716],
+ [-74.108901462239771, 40.610251584996156],
+ [-74.097769686979348, 40.610623592940705],
+ [-74.094824891188239, 40.610548057360035],
+ [-74.093056856199297, 40.610119935737288],
+ [-74.085427562483389, 40.607022390529522],
+ [-74.082809497974466, 40.606410978567631],
+ [-74.076567346693892, 40.606121664158529],
+ [-74.073999653080435, 40.605725567455515],
+ [-74.072066828498649, 40.605186347263952],
+ [-74.065506631910367, 40.602719880932405],
+ [-74.062564742929581, 40.601768091639556],
+ [-74.061956178680347, 40.601236455949824],
+ [-74.061055178967933, 40.599825891891832],
+ [-74.063759332922046, 40.59893485952216],
+ [-74.060560175404959, 40.594911514274571],
+ [-74.062793646958696, 40.593418545407623],
+ [-74.063164153052256, 40.593313809432964],
+ [-74.063360505573101, 40.592906556906662],
+ [-74.066625595022956, 40.590342019201351],
+ [-74.069391458526098, 40.587608032507489],
+ [-74.07144369874274, 40.585058382216687],
+ [-74.07275277759048, 40.584061527877466],
+ [-74.075251617283882, 40.581519567163788],
+ [-74.079150923809053, 40.578049972735876],
+ [-74.08853447613059, 40.572558506073889],
+ [-74.09204451514826, 40.56889233874098],
+ [-74.092770582239822, 40.567943410603036],
+ [-74.104709791417761, 40.574005939404699],
+ [-74.105242903772805, 40.573094039890904],
+ [-74.102958492987696, 40.571720971899971],
+ [-74.103939495406848, 40.570683061496204],
+ [-74.103681941735786, 40.570207754278179],
+ [-74.105303581836907, 40.57012777121389],
+ [-74.10660439327259, 40.568778268768853],
+ [-74.097631534169039, 40.564483335819247],
+ [-74.101737326858654, 40.559905578356037],
+ [-74.110139471719478, 40.564310666831886],
+ [-74.112112397874341, 40.565505557758527],
+ [-74.11429866700621, 40.562675724084087],
+ [-74.124899043723033, 40.568949142444467],
+ [-74.122789672075257, 40.570429844769556],
+ [-74.121502136573639, 40.57172155879838],
+ [-74.121343520823828, 40.572675734242111],
+ [-74.121830798297381, 40.57421708896559],
+ [-74.1217262391975, 40.574906985080723],
+ [-74.123183664838706, 40.575751816185644],
+ [-74.125133339042605, 40.57587998803136],
+ [-74.127087213660431, 40.576371608635171],
+ [-74.127653582682726, 40.575234942562744],
+ [-74.132610229910227, 40.57353016327037],
+ [-74.145804742060221, 40.571847768978088],
+ [-74.146990577390923, 40.572013320979188],
+ [-74.147235683628423, 40.571461058997379],
+ [-74.150145947937858, 40.571274061782518],
+ [-74.16256475586016, 40.56672939998014],
+ [-74.164386651215594, 40.565624861530104],
+ [-74.164996165540586, 40.561446970875082],
+ [-74.165894046428647, 40.560283362649464],
+ [-74.171462961420787, 40.561375429472051],
+ [-74.174887504223975, 40.562826419265335],
+ [-74.176593660742427, 40.563241329320675],
+ [-74.177945442082788, 40.563983366606685],
+ [-74.179306524568119, 40.569063994948522],
+ [-74.181230616124168, 40.569683482121739],
+ [-74.183065345501376, 40.571039242206346],
+ [-74.184284852693679, 40.571232751339103],
+ [-74.186099217618988, 40.572528016968889],
+ [-74.18918024989307, 40.575525564952748],
+ [-74.188989105236971, 40.573088766867933],
+ [-74.189195379703634, 40.570931206773466],
+ [-74.190251823459448, 40.571057138069015],
+ [-74.189896371152869, 40.57328262168204],
+ [-74.18998091618559, 40.574494878995075],
+ [-74.190462070348673, 40.576679119717888],
+ [-74.191768442451163, 40.576623635620471],
+ [-74.197628736767314, 40.579135411352787],
+ [-74.199298456486517, 40.579121899043635],
+ [-74.200726270672561, 40.579324901293269],
+ [-74.203546719545116, 40.579999792220157],
+ [-74.205957711403229, 40.579310888059489],
+ [-74.205992550814912, 40.580410383935892],
+ [-74.205724032897137, 40.580965688932132],
+ [-74.20541737056935, 40.581069486480246],
+ [-74.205081369872346, 40.581599468802622],
+ [-74.205088544746687, 40.582208190070169],
+ [-74.204709119027257, 40.582797669406794],
+ [-74.204739011926392, 40.58317590192997],
+ [-74.204400764996123, 40.583712945840752],
+ [-74.204633902740255, 40.584323238800081],
+ [-74.204364338990828, 40.58463414937065],
+ [-74.204414717297013, 40.585523675326144],
+ [-74.204119403242558, 40.585895541074571],
+ [-74.204274942826004, 40.586110054126955],
+ [-74.204265330028932, 40.58732053504292],
+ [-74.204580656947968, 40.588217603682608],
+ [-74.204272704020738, 40.588482555463038],
+ [-74.204122009644706, 40.588881474420035],
+ [-74.204323021423932, 40.589136617473308],
+ [-74.204574220727864, 40.588719138822881],
+ [-74.204705298486275, 40.588772370830547],
+ [-74.204435484007817, 40.589218397291695],
+ [-74.204646089432089, 40.589285745465801],
+ [-74.204408926175176, 40.589706763810376],
+ [-74.204203006091618, 40.589642971741675],
+ [-74.203858866092759, 40.590249525361621],
+ [-74.203699743358015, 40.590199906474787],
+ [-74.203885504562166, 40.589786109736252],
+ [-74.20265866971728, 40.59072214527977],
+ [-74.202377636097225, 40.590644712479786],
+ [-74.20201405533291, 40.590895798622427],
+ [-74.202467759565849, 40.590838824857329],
+ [-74.203052549115029, 40.591140541809821],
+ [-74.202963401956453, 40.591230922776631],
+ [-74.202454950631363, 40.590951125851966],
+ [-74.202027339207007, 40.590999079291961],
+ [-74.202123782333885, 40.591253326955652],
+ [-74.201840929244383, 40.591636483358869],
+ [-74.202003498130267, 40.591780764795011],
+ [-74.202316457683239, 40.591523965102695],
+ [-74.200925404963584, 40.59286637930483],
+ [-74.200471268808357, 40.592811752116404],
+ [-74.19974061000579, 40.59356466927909],
+ [-74.199362123456254, 40.594094082794371],
+ [-74.199483449275874, 40.594320936252963],
+ [-74.198732326196634, 40.595011798309336],
+ [-74.198561371435872, 40.595552781012294],
+ [-74.197950028516019, 40.596470354803671],
+ [-74.197513576527768, 40.596798986037868],
+ [-74.19749670863952, 40.597724259604533],
+ [-74.197306197797545, 40.598059522239787],
+ [-74.198759582052986, 40.601711975176229],
+ [-74.200148667599109, 40.603683350098684],
+ [-74.201385274065814, 40.604636966209604],
+ [-74.202218498510561, 40.605969679616479],
+ [-74.202816283745918, 40.608270827967296],
+ [-74.202301790141078, 40.611875642039003],
+ [-74.202443744495241, 40.613284693931924],
+ [-74.200383484286689, 40.616428097238582],
+ [-74.200589865119795, 40.617028927388283],
+ [-74.200828043861975, 40.617094288048229],
+ [-74.200914232382829, 40.617798822398584],
+ [-74.200874787401318, 40.618100410855853],
+ [-74.200541563318183, 40.617997639493566],
+ [-74.200352038562485, 40.618342198554707],
+ [-74.200839915165957, 40.618804302606122],
+ [-74.200680713488723, 40.619168454348056],
+ [-74.201069974031242, 40.620381539773575],
+ [-74.200505881958662, 40.620299672100074],
+ [-74.200428001919192, 40.620495411016812],
+ [-74.200873315820488, 40.620591154721112],
+ [-74.201258473101177, 40.621554830872171],
+ [-74.201432399980391, 40.621612608965307],
+ [-74.201230891375275, 40.622074210990583],
+ [-74.201275342631334, 40.622688276286041],
+ [-74.201545533347684, 40.622698052023075],
+ [-74.201632010381573, 40.62312156545854],
+ [-74.201584944355631, 40.623498333681397],
+ [-74.201344089053492, 40.623552568644286],
+ [-74.20139733073573, 40.62373612103805],
+ [-74.201076627903333, 40.624078346589755],
+ [-74.201060800332996, 40.625895179006818],
+ [-74.201182523538165, 40.626110215709417],
+ [-74.201416706679112, 40.626070513895712],
+ [-74.200986254994461, 40.62934414810745],
+ [-74.200804796812804, 40.629332571444237],
+ [-74.200754838954396, 40.629594634113431],
+ [-74.20047681715856, 40.629657077505016],
+ [-74.200425737851162, 40.629821165953324],
+ [-74.200408127716173, 40.630250100694539],
+ [-74.200787299827866, 40.630346273462649],
+ [-74.200403115770925, 40.630292362268506],
+ [-74.200184621590523, 40.631328669464182],
+ [-74.200403803732854, 40.6314458206799],
+ [-74.200172654077321, 40.631361080530979],
+ [-74.198500805625883, 40.632797911274352],
+ [-74.198343583296847, 40.633141487706276],
+ [-74.197959390075354, 40.63326685737902],
+ [-74.19759109214786, 40.633081284581166],
+ [-74.197286752228678, 40.633291931082091],
+ [-74.197193196760679, 40.633882317445554],
+ [-74.196469651591343, 40.634135533685338],
+ [-74.196029046914518, 40.634995848806987],
+ [-74.195686092233828, 40.635016864640079]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 79,
+ "properties": {
+ "communityDistrict": 503,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/503"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.133195801013827, 40.536306742050556],
+ [-74.13301207668799, 40.536256065042828],
+ [-74.133383128530525, 40.536324420329031],
+ [-74.133195801013827, 40.536306742050556]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 80,
+ "properties": {
+ "communityDistrict": 503,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/503"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.133075857686634, 40.536397488039498],
+ [-74.132942664536216, 40.536322033081916],
+ [-74.133172359750915, 40.536355197218271],
+ [-74.133075857686634, 40.536397488039498]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 81,
+ "properties": {
+ "communityDistrict": 503,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/503"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.131415827643934, 40.538039545740887],
+ [-74.13181387201773, 40.538307358685685],
+ [-74.132112444955595, 40.53805229667767],
+ [-74.13169767667948, 40.5378571233149],
+ [-74.131846272134752, 40.537734643798721],
+ [-74.132135605124574, 40.5380331271827],
+ [-74.132424385792007, 40.537774960734161],
+ [-74.13191182124632, 40.537532840976937],
+ [-74.132079522796616, 40.537395034140332],
+ [-74.132453027641674, 40.537760281363965],
+ [-74.13275480490114, 40.537504536479908],
+ [-74.132235962692448, 40.537262550736571],
+ [-74.132398016499479, 40.537118863926686],
+ [-74.13277603711704, 40.537484010915854],
+ [-74.13307445571553, 40.537229123304009],
+ [-74.132557862049481, 40.536991407756553],
+ [-74.132735602333057, 40.536854535243158],
+ [-74.133094575113702, 40.537212016922552],
+ [-74.133391873773434, 40.536957984347538],
+ [-74.132874382810044, 40.536719632302329],
+ [-74.133035088395317, 40.536574875625867],
+ [-74.133410043653669, 40.536939721870915],
+ [-74.133860542062592, 40.536597962493047],
+ [-74.129938431897855, 40.539947135558201],
+ [-74.130208693615856, 40.539702663817231],
+ [-74.129683755086958, 40.539471719592427],
+ [-74.129845555034976, 40.539326856961551],
+ [-74.130227543637304, 40.539683717555505],
+ [-74.130521643489232, 40.539425558118857],
+ [-74.130002728808307, 40.539172393657736],
+ [-74.130169357325897, 40.539032878024102],
+ [-74.130541765211632, 40.539409306255664],
+ [-74.130839068518938, 40.539147592892448],
+ [-74.130322448992999, 40.538900471244453],
+ [-74.130485282947404, 40.538758916255979],
+ [-74.130859188541024, 40.53913133980231],
+ [-74.131153287152671, 40.538873574103619],
+ [-74.130654281077085, 40.538617311132228],
+ [-74.130799719621692, 40.538492490313338],
+ [-74.131174370507509, 40.538855160392629],
+ [-74.131474242153288, 40.538598314882712],
+ [-74.130975091159897, 40.538341749902081],
+ [-74.131119622826859, 40.53821889282775],
+ [-74.131497401382603, 40.538581380372193],
+ [-74.131793508156591, 40.538325991991705],
+ [-74.131415827643934, 40.538039545740887]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 82,
+ "properties": {
+ "communityDistrict": 503,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/503"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.131298618201498, 40.537950649956692],
+ [-74.131195456893906, 40.537872408774533],
+ [-74.13152564883184, 40.537718542638316],
+ [-74.131298618201498, 40.537950649956692]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 83,
+ "properties": {
+ "communityDistrict": 503,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/503"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.127753756744383, 40.543566025183466],
+ [-74.128030684975002, 40.543550558278895],
+ [-74.127629940380828, 40.543608893115554],
+ [-74.127753756744383, 40.543566025183466]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 84,
+ "properties": {
+ "communityDistrict": 503,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/503"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.200726270672561, 40.579324901293269],
+ [-74.199298456486517, 40.579121899043635],
+ [-74.197628736767314, 40.579135411352787],
+ [-74.191768442451163, 40.576623635620471],
+ [-74.190462070348673, 40.576679119717888],
+ [-74.18998091618559, 40.574494878995075],
+ [-74.189896371152869, 40.57328262168204],
+ [-74.190251823459448, 40.571057138069015],
+ [-74.189195379703634, 40.570931206773466],
+ [-74.188989105236971, 40.573088766867933],
+ [-74.18918024989307, 40.575525564952748],
+ [-74.186099217618988, 40.572528016968889],
+ [-74.184284852693679, 40.571232751339103],
+ [-74.183065345501376, 40.571039242206346],
+ [-74.181230616124168, 40.569683482121739],
+ [-74.179306524568119, 40.569063994948522],
+ [-74.177945442082788, 40.563983366606685],
+ [-74.176593660742427, 40.563241329320675],
+ [-74.174887504223975, 40.562826419265335],
+ [-74.17085970519922, 40.561234430690405],
+ [-74.165894046428647, 40.560283362649464],
+ [-74.164996165540586, 40.561446970875082],
+ [-74.164386651215594, 40.565624861530104],
+ [-74.16256475586016, 40.56672939998014],
+ [-74.150145947937858, 40.571274061782518],
+ [-74.147235683628423, 40.571461058997379],
+ [-74.146990577390923, 40.572013320979188],
+ [-74.145804742060221, 40.571847768978088],
+ [-74.132953228990914, 40.573444774952655],
+ [-74.127653582682726, 40.575234942562744],
+ [-74.127087213660431, 40.576371608635171],
+ [-74.125133339042605, 40.57587998803136],
+ [-74.123183664838706, 40.575751816185644],
+ [-74.1217262391975, 40.574906985080723],
+ [-74.121830798297381, 40.57421708896559],
+ [-74.121343520823828, 40.572675734242111],
+ [-74.121502136573639, 40.57172155879838],
+ [-74.122789672075257, 40.570429844769556],
+ [-74.124899043723033, 40.568949142444467],
+ [-74.11429866700621, 40.562675724084087],
+ [-74.112112397874341, 40.565505557758527],
+ [-74.110139471719478, 40.564310666831886],
+ [-74.101737326858654, 40.559905578356037],
+ [-74.102505970611759, 40.559003251481698],
+ [-74.105728424764209, 40.556195227033406],
+ [-74.106461777747839, 40.5552783983727],
+ [-74.108910796341036, 40.553423629089828],
+ [-74.108852076983197, 40.553006299401069],
+ [-74.109447925597848, 40.552378801196859],
+ [-74.112749551671939, 40.55143532523725],
+ [-74.111652681883271, 40.55037651255796],
+ [-74.11252568934222, 40.549858451684074],
+ [-74.113684352105182, 40.550948084608379],
+ [-74.116762688174788, 40.548991391102973],
+ [-74.119574803796326, 40.551630751913834],
+ [-74.119458592911627, 40.552221906044522],
+ [-74.12730057821922, 40.557295172447724],
+ [-74.130424595729252, 40.554437042058417],
+ [-74.134558682258472, 40.551255078203482],
+ [-74.137697315929699, 40.549383546429411],
+ [-74.138617985475591, 40.548492384772743],
+ [-74.137006296887094, 40.546967771006322],
+ [-74.135857125660365, 40.546451695709621],
+ [-74.136411531190305, 40.546252350041833],
+ [-74.136516134391726, 40.545914747132521],
+ [-74.137096278087512, 40.545952217654381],
+ [-74.137179871957542, 40.545792864659795],
+ [-74.136260852809329, 40.544963297435942],
+ [-74.136115406581752, 40.545019845680606],
+ [-74.136383798019608, 40.544854671506251],
+ [-74.136284333069426, 40.544947040588518],
+ [-74.137192875197158, 40.545784294700034],
+ [-74.137508335088512, 40.545577557238666],
+ [-74.136733702272622, 40.544803742023028],
+ [-74.1365890713694, 40.544845486095127],
+ [-74.136873486308659, 40.544682593910004],
+ [-74.136748888229093, 40.544782584479712],
+ [-74.137949660505484, 40.546000336575453],
+ [-74.138869512745345, 40.545130197608046],
+ [-74.137624307451389, 40.544253566418256],
+ [-74.137756207556691, 40.544144928778152],
+ [-74.137679182441829, 40.544258625718768],
+ [-74.138755347034603, 40.544933958426824],
+ [-74.139019650793117, 40.544715561029903],
+ [-74.137989900985417, 40.543990043790089],
+ [-74.137867985245393, 40.544052544130921],
+ [-74.138043468977017, 40.543904561961156],
+ [-74.139033071786272, 40.544704910300027],
+ [-74.139539379816284, 40.544295140871327],
+ [-74.139432530026482, 40.544217217516142],
+ [-74.139145413461264, 40.5445095801199],
+ [-74.139032659903179, 40.544428097333082],
+ [-74.139420693378824, 40.544205943537179],
+ [-74.139287672952904, 40.544116589404581],
+ [-74.138974542267647, 40.544376101819672],
+ [-74.139220328597077, 40.544066699668619],
+ [-74.13908266920896, 40.543968224883123],
+ [-74.138875703883599, 40.544243557934806],
+ [-74.138728124459604, 40.544130022535029],
+ [-74.139077506586446, 40.543960153165628],
+ [-74.138834605855138, 40.543791358387857],
+ [-74.138585812249914, 40.544104638489486],
+ [-74.13841535772832, 40.543978427317093],
+ [-74.138823254616597, 40.543784054895831],
+ [-74.138539963341046, 40.543587927686737],
+ [-74.138206673329549, 40.543773678359244],
+ [-74.138279645219455, 40.543866694569722],
+ [-74.138150686211034, 40.543772036757112],
+ [-74.138526498104639, 40.543578542305248],
+ [-74.138341512886143, 40.54355182780882],
+ [-74.138522828351412, 40.543401550749273],
+ [-74.138459720337551, 40.543506285990695],
+ [-74.138590053062742, 40.54345034036659],
+ [-74.138533145425541, 40.543544367340843],
+ [-74.13956971698569, 40.544272274830497],
+ [-74.139836977860995, 40.544052462340794],
+ [-74.138706323972798, 40.543291410834378],
+ [-74.138906365394533, 40.543131777602298],
+ [-74.138771402268389, 40.543291332202919],
+ [-74.139036719229651, 40.543226993940607],
+ [-74.138983556086032, 40.543384411372891],
+ [-74.139676404806892, 40.543888995858616],
+ [-74.1398889740626, 40.543752471884915],
+ [-74.139703506941842, 40.543908777186225],
+ [-74.139865272643448, 40.544026844009466],
+ [-74.140012838359254, 40.543830426844771],
+ [-74.140385730736227, 40.544033185007827],
+ [-74.140328486944938, 40.543802087271068],
+ [-74.139349948419081, 40.543096085094135],
+ [-74.139219934858858, 40.543166085137841],
+ [-74.139408100773892, 40.543016584082643],
+ [-74.140295719471681, 40.543640457155497],
+ [-74.140126382196044, 40.543513393416866],
+ [-74.140287346049973, 40.543385071118294],
+ [-74.139361328040323, 40.542825863998644],
+ [-74.139536815480199, 40.542682150869759],
+ [-74.13947877271562, 40.542768492576869],
+ [-74.140306342581368, 40.54336711011436],
+ [-74.140627155669534, 40.543113029692485],
+ [-74.139755848904471, 40.542481155655167],
+ [-74.139631690741666, 40.542541097566179],
+ [-74.139858598916788, 40.542357175129133],
+ [-74.139774847764841, 40.542464047798703],
+ [-74.140646148698224, 40.543094214902098],
+ [-74.140845203697253, 40.542938844978202],
+ [-74.141324267942451, 40.543094133830195],
+ [-74.140406853347756, 40.542360855450418],
+ [-74.140165100374617, 40.542366218433486],
+ [-74.140335282297514, 40.542228209259491],
+ [-74.140207236065791, 40.542365224298329],
+ [-74.140406562348133, 40.542327082552873],
+ [-74.141410735604069, 40.543022415080344],
+ [-74.141078921849413, 40.542791171850759],
+ [-74.14108436804699, 40.542638913703847],
+ [-74.141326531058169, 40.54274704748731],
+ [-74.141143112990719, 40.542587658851346],
+ [-74.141335471929779, 40.542588792470205],
+ [-74.140262904007017, 40.541961511522587],
+ [-74.140495810113123, 40.542060855323918],
+ [-74.140679980930472, 40.541908592971026],
+ [-74.14061919911957, 40.542056021643823],
+ [-74.141349014454804, 40.542577523130745],
+ [-74.141461515854417, 40.542483902223871],
+ [-74.141294421236935, 40.542335875885676],
+ [-74.14148097474451, 40.542467709070451],
+ [-74.141348546945508, 40.542290464870867],
+ [-74.141549579059784, 40.54241061750453],
+ [-74.14179720022932, 40.542200415381544],
+ [-74.140894510246355, 40.541571110188322],
+ [-74.140639842380125, 40.541694542036439],
+ [-74.140958168328922, 40.541432077964956],
+ [-74.140894775834056, 40.541537094860487],
+ [-74.141873079719289, 40.542166658129382],
+ [-74.141672262430845, 40.542335464095203],
+ [-74.142292974326395, 40.542263372587776],
+ [-74.142183442866795, 40.542017861051676],
+ [-74.142476622359553, 40.541333709774797],
+ [-74.141776613832604, 40.540088456334708],
+ [-74.142004592824776, 40.53956795916433],
+ [-74.141728926512968, 40.53933948409702],
+ [-74.142303512758517, 40.539069975289628],
+ [-74.142338315774893, 40.538949190408331],
+ [-74.141765878596431, 40.538542040998934],
+ [-74.14226513073875, 40.53814035366387],
+ [-74.141837893882652, 40.538421620426753],
+ [-74.142229922946555, 40.538114452874623],
+ [-74.142078935782365, 40.538003964285885],
+ [-74.14216718019145, 40.537932761068127],
+ [-74.141218653355523, 40.537253998432462],
+ [-74.141041579163385, 40.53734688446206],
+ [-74.141298254718251, 40.537138177948336],
+ [-74.141241131174667, 40.537234691733246],
+ [-74.142185749075452, 40.537917777285458],
+ [-74.142389636895999, 40.537753260002191],
+ [-74.141582876908927, 40.537087577952377],
+ [-74.143701200154382, 40.537211482642043],
+ [-74.144182834205608, 40.536794031387394],
+ [-74.14474069813582, 40.535801044211155],
+ [-74.145363246527637, 40.535856356896431],
+ [-74.146020082847699, 40.53555352822287],
+ [-74.145996695492187, 40.53539039281268],
+ [-74.146255129277151, 40.535538684733424],
+ [-74.147015251838084, 40.535324472444607],
+ [-74.149217332639694, 40.534241587760867],
+ [-74.14977717489235, 40.533887868801514],
+ [-74.149758464892486, 40.533424302752941],
+ [-74.150695536182781, 40.532545838937075],
+ [-74.151120256905244, 40.532741382506636],
+ [-74.151757988316177, 40.532401794028019],
+ [-74.151682412700112, 40.532276422862083],
+ [-74.151853377444851, 40.532164021023299],
+ [-74.152456609366894, 40.532067944000872],
+ [-74.154131107911027, 40.530722911256341],
+ [-74.154047499498077, 40.530594564841628],
+ [-74.154214677686397, 40.530665367090272],
+ [-74.154641119999013, 40.530334638424307],
+ [-74.15454357374459, 40.530062136303606],
+ [-74.154928948493989, 40.53022548357562],
+ [-74.155647824051854, 40.529642984094743],
+ [-74.1555035725126, 40.529438026337672],
+ [-74.155731534349243, 40.529600904029813],
+ [-74.155990003215535, 40.529419602722839],
+ [-74.156448681501359, 40.528931842203903],
+ [-74.156187319183175, 40.528611371593342],
+ [-74.15667105208162, 40.528993311607181],
+ [-74.157018619462718, 40.528977655809541],
+ [-74.15826103107301, 40.528300499162917],
+ [-74.157972394579062, 40.528067085844384],
+ [-74.158326451269886, 40.528278426783096],
+ [-74.159701345202066, 40.527295992831519],
+ [-74.160304263795837, 40.52755574681855],
+ [-74.161582174235221, 40.527013477776677],
+ [-74.162271961086446, 40.527194261805704],
+ [-74.163720015948641, 40.526350032996007],
+ [-74.164746570686106, 40.52608034550147],
+ [-74.168844318197671, 40.523590681151397],
+ [-74.169997112273322, 40.523045772451368],
+ [-74.170488598100206, 40.523084171644676],
+ [-74.171102636961692, 40.52354970667362],
+ [-74.172063201754753, 40.523320569364707],
+ [-74.17601245544931, 40.520875962828022],
+ [-74.177582955221055, 40.519230866865989],
+ [-74.178318766924733, 40.519945785601138],
+ [-74.179243813604344, 40.519984216896972],
+ [-74.17939137555561, 40.520278278914645],
+ [-74.179810168830699, 40.520552337707066],
+ [-74.181040812088867, 40.520705036287126],
+ [-74.182335556210873, 40.520352238061292],
+ [-74.183148109621271, 40.519870832266172],
+ [-74.183423705834059, 40.519889724567996],
+ [-74.184831165456174, 40.519341358599746],
+ [-74.18656733191348, 40.518115850404868],
+ [-74.18849353678938, 40.516340024578327],
+ [-74.189268755573266, 40.515344976872342],
+ [-74.18884297863984, 40.515087166607557],
+ [-74.189712184983989, 40.515320378534291],
+ [-74.191789226636246, 40.51305164412549],
+ [-74.193443183641023, 40.511567309612047],
+ [-74.194096438022214, 40.51064124236111],
+ [-74.195213400649209, 40.509977652954525],
+ [-74.196499369914235, 40.509923530610259],
+ [-74.198608317073791, 40.511197023110867],
+ [-74.199672053615387, 40.51142685045631],
+ [-74.200037123128538, 40.512677598824574],
+ [-74.198925727938686, 40.512777305998362],
+ [-74.199361274081028, 40.513010194415095],
+ [-74.200828982542419, 40.513030703958414],
+ [-74.207597017286147, 40.511835156151754],
+ [-74.208618656886273, 40.511448235147107],
+ [-74.209687893974404, 40.510797369342384],
+ [-74.209189968250399, 40.510499056955176],
+ [-74.209322004642004, 40.510398628895395],
+ [-74.20971374205881, 40.510777703242951],
+ [-74.209853381943944, 40.51067192532355],
+ [-74.210519496438764, 40.509991368889487],
+ [-74.211791831979937, 40.508173273494968],
+ [-74.213381699327996, 40.506766288192786],
+ [-74.213531308036693, 40.50639747722785],
+ [-74.213855338227177, 40.506607024534247],
+ [-74.214342501297224, 40.506518911287245],
+ [-74.215108158616331, 40.506059755681747],
+ [-74.215912420643122, 40.505371087983754],
+ [-74.217582401605483, 40.503341392601186],
+ [-74.217945702554999, 40.503360090191769],
+ [-74.219770164173994, 40.502742688470335],
+ [-74.223046578555454, 40.502478179081756],
+ [-74.225002321943251, 40.501770295065306],
+ [-74.227294135107513, 40.502297499484285],
+ [-74.229715842370666, 40.502085687587616],
+ [-74.23033892500186, 40.501804178371934],
+ [-74.230538045497326, 40.501946091311268],
+ [-74.2311449502442, 40.501851215880635],
+ [-74.233599041855769, 40.500912531599873],
+ [-74.235264959918837, 40.500606028517716],
+ [-74.236788456515754, 40.500000835335342],
+ [-74.237667704255927, 40.499123254932378],
+ [-74.237987373799754, 40.499165980869343],
+ [-74.238513216353454, 40.498896075363632],
+ [-74.239880172796916, 40.497573626399522],
+ [-74.244327982506704, 40.497546740156288],
+ [-74.245489389405321, 40.497044773874713],
+ [-74.24676102774194, 40.496133987611785],
+ [-74.248027474200029, 40.496190036869436],
+ [-74.24917156868959, 40.496567297053339],
+ [-74.250854894222471, 40.498006163595143],
+ [-74.251167732457546, 40.498993090653308],
+ [-74.252599827399848, 40.499643075886254],
+ [-74.25335537967338, 40.500413197913403],
+ [-74.253845906621052, 40.501635669316968],
+ [-74.254274076567199, 40.502161180509617],
+ [-74.25530969808149, 40.504136410744337],
+ [-74.255307103776204, 40.506536454118979],
+ [-74.255542691639405, 40.507837742496136],
+ [-74.255248177531726, 40.508243230712992],
+ [-74.254628567099076, 40.508674825727006],
+ [-74.254972903709643, 40.50880566213322],
+ [-74.254618507282132, 40.508683909302434],
+ [-74.253997530795829, 40.508970314985028],
+ [-74.254038045678541, 40.509252671645669],
+ [-74.254388778028684, 40.509344184133134],
+ [-74.254314541693105, 40.509413694648956],
+ [-74.254020695053384, 40.509272975787439],
+ [-74.253689118810598, 40.509425596439115],
+ [-74.254646512629094, 40.509826245924366],
+ [-74.254526217322365, 40.509973014880948],
+ [-74.253648125182551, 40.509470530436268],
+ [-74.253315798051304, 40.509861504540929],
+ [-74.253063945530855, 40.511055257369726],
+ [-74.253258068856695, 40.511088689380777],
+ [-74.253008472775534, 40.511193989705362],
+ [-74.253526850767102, 40.511677766031831],
+ [-74.253036353815546, 40.511433160458736],
+ [-74.253089508793749, 40.512121961416213],
+ [-74.25195197554325, 40.512997002545767],
+ [-74.252125913970602, 40.513710379799946],
+ [-74.251353314148872, 40.514392897558395],
+ [-74.250545004972395, 40.514716839715405],
+ [-74.25004587756581, 40.515108510494251],
+ [-74.250555264135556, 40.515716342428838],
+ [-74.250455099238252, 40.515772007109007],
+ [-74.250156265826206, 40.515361188197971],
+ [-74.249888248749983, 40.515521545192932],
+ [-74.250560073376747, 40.516106740528372],
+ [-74.250415359213875, 40.516188335025859],
+ [-74.249356609239001, 40.515005928193688],
+ [-74.249337752436915, 40.515140814379315],
+ [-74.249215287419545, 40.515084861297822],
+ [-74.249632201750941, 40.515545377949586],
+ [-74.249513936786784, 40.51569398097643],
+ [-74.249941588080418, 40.516137488190971],
+ [-74.249430968990893, 40.515687885597472],
+ [-74.248647646321061, 40.516112628496771],
+ [-74.24875958315144, 40.516356221134217],
+ [-74.248545892916752, 40.51616991714841],
+ [-74.248600808230506, 40.516313331917836],
+ [-74.248284220838897, 40.516486949553666],
+ [-74.248946245997573, 40.5171945397881],
+ [-74.249407707889091, 40.516980830418461],
+ [-74.248514491218913, 40.517475626263582],
+ [-74.24891910653055, 40.517208433692424],
+ [-74.247518118355316, 40.515735864778598],
+ [-74.246930480084771, 40.516066454417739],
+ [-74.24664175789384, 40.516121936076615],
+ [-74.246440396509527, 40.515965027503306],
+ [-74.24612857679287, 40.516137392573704],
+ [-74.246749971940659, 40.51649561324043],
+ [-74.246510402676776, 40.516669855305942],
+ [-74.246995569965947, 40.517182085195529],
+ [-74.246478997053288, 40.516687327210789],
+ [-74.246377365012961, 40.516739093357486],
+ [-74.246536829001187, 40.516959960378045],
+ [-74.24634969801771, 40.51675337193489],
+ [-74.245208615283545, 40.517289743624097],
+ [-74.245669890672389, 40.517789708049847],
+ [-74.245634731699454, 40.51807558074573],
+ [-74.245088044605396, 40.518066839404177],
+ [-74.24429835217606, 40.518515003107723],
+ [-74.243652285115999, 40.518294614623123],
+ [-74.242324778332758, 40.518326525021742],
+ [-74.241259686752144, 40.519180469822921],
+ [-74.241031229185424, 40.519542512687885],
+ [-74.240490696218444, 40.519191628971384],
+ [-74.239822583167765, 40.520090711443757],
+ [-74.240732846146173, 40.52056915165241],
+ [-74.24117293552203, 40.521060131431966],
+ [-74.241332195755234, 40.520894517580196],
+ [-74.242932351023697, 40.521227161131364],
+ [-74.242583757053083, 40.522198648999165],
+ [-74.24276246783721, 40.522726789127518],
+ [-74.242613978384341, 40.523080937524476],
+ [-74.242801570095736, 40.524007296286648],
+ [-74.243357926854998, 40.524818912815192],
+ [-74.243965008247216, 40.524905366336405],
+ [-74.243338839497198, 40.525853805178542],
+ [-74.242828607906958, 40.527418880173265],
+ [-74.242886713153439, 40.528200130827386],
+ [-74.242510289315049, 40.528445934764704],
+ [-74.242455410252418, 40.528954699545892],
+ [-74.242188017623107, 40.529437551660209],
+ [-74.242245280714556, 40.529822779506333],
+ [-74.241507333228967, 40.531041342795142],
+ [-74.241810616215332, 40.532562675421495],
+ [-74.242177995973634, 40.532576138477971],
+ [-74.242282003381547, 40.533387496517719],
+ [-74.241964589363278, 40.533633718431766],
+ [-74.242045702860082, 40.534346377050404],
+ [-74.242366102673031, 40.534734232561931],
+ [-74.242580242530238, 40.534767541105666],
+ [-74.242857762382698, 40.535353440320286],
+ [-74.243663480908481, 40.536074719267091],
+ [-74.2441249598849, 40.536196295728971],
+ [-74.243976551065742, 40.536460498559144],
+ [-74.244147826045733, 40.536881409915587],
+ [-74.244587539107243, 40.536932927072797],
+ [-74.244936930485935, 40.536663876918517],
+ [-74.24533651176057, 40.536905994434612],
+ [-74.245261339131503, 40.537152213112961],
+ [-74.244800695993305, 40.537409145437984],
+ [-74.24444259737659, 40.538066765991516],
+ [-74.245271007033836, 40.539241870191226],
+ [-74.245602056324458, 40.540949594578699],
+ [-74.245992847905612, 40.541278932157802],
+ [-74.246486148157899, 40.542213392655597],
+ [-74.247677781054904, 40.543125403301389],
+ [-74.248034637356938, 40.543093240441387],
+ [-74.246184223835186, 40.545633624849131],
+ [-74.243363466186551, 40.547865135234417],
+ [-74.243584476513547, 40.54762399087852],
+ [-74.242935859290199, 40.547113219245205],
+ [-74.242203184630725, 40.546948677294942],
+ [-74.24039182810057, 40.547663310173725],
+ [-74.238371913701172, 40.549141566812921],
+ [-74.237619635332194, 40.550123468577198],
+ [-74.236416234489695, 40.550508626843339],
+ [-74.236174624446562, 40.55142706190513],
+ [-74.23652110289828, 40.552020815905308],
+ [-74.236415597951648, 40.552328066310814],
+ [-74.234898658666978, 40.553005216669895],
+ [-74.233777550774789, 40.552514199512324],
+ [-74.233324000803222, 40.552509143565857],
+ [-74.232291129331657, 40.553363697975662],
+ [-74.231933314449435, 40.554149830117133],
+ [-74.23071036198121, 40.555557594258914],
+ [-74.230249520876214, 40.55538674616394],
+ [-74.229319541857137, 40.55549158696271],
+ [-74.229352538255455, 40.555750600620364],
+ [-74.229051621876366, 40.556107082105058],
+ [-74.228332143720053, 40.55639035431139],
+ [-74.227436827305326, 40.556038533516393],
+ [-74.226404945429508, 40.556255712845854],
+ [-74.223903341344936, 40.555897065544464],
+ [-74.223864214980864, 40.556097694082837],
+ [-74.223442650404166, 40.556046569904765],
+ [-74.223786067087914, 40.555880267004532],
+ [-74.223161290086352, 40.555787142690463],
+ [-74.222972196328627, 40.555503373622606],
+ [-74.22257486867268, 40.55540620977834],
+ [-74.22179863887051, 40.555417070759034],
+ [-74.221570066131989, 40.555648982957671],
+ [-74.221298646044602, 40.55536622468555],
+ [-74.220867150934012, 40.555940202277704],
+ [-74.220553401510614, 40.555885284170301],
+ [-74.220297118748434, 40.555597921061462],
+ [-74.220106271647779, 40.554928812423157],
+ [-74.219743569307226, 40.554612672072437],
+ [-74.219080608993451, 40.554847002197931],
+ [-74.21933701278985, 40.55569136698103],
+ [-74.219217163709331, 40.555796969878585],
+ [-74.218958326330622, 40.554857582913186],
+ [-74.218593257828076, 40.55467421024774],
+ [-74.218750368805601, 40.556027740537253],
+ [-74.218173601933955, 40.555600523248472],
+ [-74.217753423258443, 40.555005284777387],
+ [-74.21604246060636, 40.555544118782983],
+ [-74.214740531988184, 40.556242389132088],
+ [-74.214992570306649, 40.556794932794659],
+ [-74.21462340478287, 40.556913362220882],
+ [-74.214226987883535, 40.556557317918198],
+ [-74.213955374495612, 40.556657154294328],
+ [-74.213764673175888, 40.556396943325282],
+ [-74.213274572913832, 40.556624934276563],
+ [-74.21313586263048, 40.557051009892199],
+ [-74.212643437989115, 40.55728972655433],
+ [-74.212673026654826, 40.557647560008029],
+ [-74.211998432303091, 40.558378067479701],
+ [-74.211756204551293, 40.559124757276152],
+ [-74.211970292347104, 40.559297737575712],
+ [-74.211880423216812, 40.559596937861762],
+ [-74.211178266081816, 40.560446842907183],
+ [-74.211340053472242, 40.561230353084035],
+ [-74.211096003550736, 40.562131470789168],
+ [-74.211379978587786, 40.563492205274827],
+ [-74.210962774012273, 40.564290450150224],
+ [-74.210623437439438, 40.565520200174497],
+ [-74.209541259233049, 40.567514584873244],
+ [-74.209534672329085, 40.567928048658032],
+ [-74.209321752683351, 40.568025300756887],
+ [-74.209241685472435, 40.568409858879768],
+ [-74.20886661112192, 40.568909793929137],
+ [-74.208926363286693, 40.569624298449973],
+ [-74.208017053814189, 40.570517957400732],
+ [-74.208168511021881, 40.570719423414239],
+ [-74.207835590149756, 40.572610000446446],
+ [-74.207262982732203, 40.574113027771538],
+ [-74.207078004104162, 40.574266340216582],
+ [-74.207226502060522, 40.574486796411705],
+ [-74.207070243002704, 40.574743025323485],
+ [-74.207284314131755, 40.575254532872584],
+ [-74.206812056267751, 40.575922020188194],
+ [-74.206886555877631, 40.576217271059569],
+ [-74.207089171794976, 40.576305590338762],
+ [-74.20655509342086, 40.576711094171273],
+ [-74.206531254956033, 40.576901637367683],
+ [-74.206816167047521, 40.577154042628074],
+ [-74.206230057073981, 40.577739435727366],
+ [-74.205917325093964, 40.578616647553616],
+ [-74.205957711403229, 40.579310888059489],
+ [-74.203546719545116, 40.579999792220157],
+ [-74.200726270672561, 40.579324901293269]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 85,
+ "properties": {
+ "communityDistrict": 595,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/595"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.118341692271045, 40.550459695296496],
+ [-74.116762688174788, 40.548991391102973],
+ [-74.113684352105182, 40.550948084608379],
+ [-74.11252568934222, 40.549858451684074],
+ [-74.111652681883271, 40.55037651255796],
+ [-74.112749551671939, 40.55143532523725],
+ [-74.109447925597848, 40.552378801196859],
+ [-74.110284573216532, 40.551496357418159],
+ [-74.112788469578973, 40.547884262221665],
+ [-74.113010461044652, 40.547780065430068],
+ [-74.113383406162768, 40.548073375150679],
+ [-74.114737811652688, 40.547996610676556],
+ [-74.115461778211795, 40.547515362250195],
+ [-74.116080047490129, 40.547864946834189],
+ [-74.116545321769834, 40.547872393146555],
+ [-74.117299888803487, 40.547464026193026],
+ [-74.118041330178258, 40.547306612895241],
+ [-74.119778100831297, 40.545470456741306],
+ [-74.121580703280799, 40.545208604005694],
+ [-74.122453060503901, 40.544770545629802],
+ [-74.124244497127776, 40.543110380910733],
+ [-74.12638185131074, 40.540520755459198],
+ [-74.130711842726697, 40.534535075436182],
+ [-74.133564434321698, 40.531511174806326],
+ [-74.136188489933488, 40.529620796687219],
+ [-74.136907990104831, 40.529281918883385],
+ [-74.13728504251867, 40.529740467984801],
+ [-74.138146354877321, 40.52967775847403],
+ [-74.138830307305511, 40.52988935670605],
+ [-74.139017859847655, 40.530270923920916],
+ [-74.139150760138222, 40.531520111621703],
+ [-74.140270152695919, 40.533300017195849],
+ [-74.140610927031204, 40.534130600190132],
+ [-74.140586071933313, 40.534699936841122],
+ [-74.140324753935673, 40.535284579722322],
+ [-74.13995163489804, 40.535457088527622],
+ [-74.138224291190653, 40.535208267323917],
+ [-74.135075093257001, 40.53524117062301],
+ [-74.133810051556324, 40.535642939339226],
+ [-74.128133262740079, 40.540552966012825],
+ [-74.12756314969576, 40.541453976706059],
+ [-74.127387895879167, 40.542295429661387],
+ [-74.127731434273556, 40.543423084803656],
+ [-74.127557605144531, 40.543480354726803],
+ [-74.127638968544574, 40.543628190093472],
+ [-74.127818934465552, 40.543564399644538],
+ [-74.129018646331659, 40.545059241749136],
+ [-74.130114047150812, 40.545975725630484],
+ [-74.131550261918889, 40.54652452900347],
+ [-74.133086643400929, 40.546834295077929],
+ [-74.134355033650678, 40.546788934314158],
+ [-74.135857125660365, 40.546451695709621],
+ [-74.137006296887094, 40.546967771006322],
+ [-74.138617985475591, 40.548492384772743],
+ [-74.137697315929699, 40.549383546429411],
+ [-74.134558682258472, 40.551255078203482],
+ [-74.130424595729252, 40.554437042058417],
+ [-74.12730057821922, 40.557295172447724],
+ [-74.119458592911627, 40.552221906044522],
+ [-74.119574803796326, 40.551630751913834],
+ [-74.118341692271045, 40.550459695296496]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 86,
+ "properties": {
+ "communityDistrict": 595,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/595"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.050508064032456, 40.566422034160802],
+ [-74.049983525625734, 40.566395924928266],
+ [-74.049316403620864, 40.56588774778043],
+ [-74.049236298420439, 40.565362736368094],
+ [-74.050026200927391, 40.565318180621404],
+ [-74.050906017050877, 40.566094342130583],
+ [-74.050679167486123, 40.566310845736389],
+ [-74.051071598037751, 40.566722493397791],
+ [-74.050508064032456, 40.566422034160802]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 87,
+ "properties": {
+ "communityDistrict": 595,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/595"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.053140367551109, 40.577702714540862],
+ [-74.054060449398733, 40.577116445238865],
+ [-74.054897781448872, 40.577782440920132],
+ [-74.054693169074852, 40.579691632229419],
+ [-74.054851346253884, 40.579707593077593],
+ [-74.05484560052173, 40.579945791427598],
+ [-74.053686291504178, 40.580548759614402],
+ [-74.052931906398157, 40.579902474665836],
+ [-74.053140367551109, 40.577702714540862]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 88,
+ "properties": {
+ "communityDistrict": 595,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/595"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.055521261223674, 40.606482892568643],
+ [-74.055287196971321, 40.606538890078674],
+ [-74.055059740958058, 40.606265420452822],
+ [-74.053810698054406, 40.605912718852977],
+ [-74.053607296748808, 40.60523880941804],
+ [-74.054020399589731, 40.604934719911071],
+ [-74.053539644801134, 40.603633557567207],
+ [-74.053033306933116, 40.601466470680279],
+ [-74.053383967571051, 40.600895213818603],
+ [-74.053407058394598, 40.600522661043833],
+ [-74.052245317332876, 40.599748014152865],
+ [-74.052871538433891, 40.599867255467061],
+ [-74.054474223339042, 40.598755539548435],
+ [-74.057193698387195, 40.596395078812293],
+ [-74.059726906431635, 40.59390821671235],
+ [-74.059641205961526, 40.593709388392959],
+ [-74.059766606876437, 40.593835257510129],
+ [-74.060553537029875, 40.5933797554232],
+ [-74.062152744325459, 40.592025040541969],
+ [-74.065033323561806, 40.588990997865274],
+ [-74.064541861337744, 40.588433992394222],
+ [-74.064778330329943, 40.588488310725658],
+ [-74.067222768168875, 40.586734449257492],
+ [-74.070963101820453, 40.583181990402586],
+ [-74.071491805871489, 40.582168782652033],
+ [-74.070657815378155, 40.581625625037709],
+ [-74.071466708670883, 40.582027243898501],
+ [-74.073353895248744, 40.580678939139332],
+ [-74.075082881926207, 40.579160158755549],
+ [-74.075798195407131, 40.578309250650612],
+ [-74.075234536179607, 40.577998803253159],
+ [-74.075346225824049, 40.577887969571719],
+ [-74.076015969779007, 40.578244912290231],
+ [-74.076399283985182, 40.577994855052509],
+ [-74.076297410184395, 40.57789862509334],
+ [-74.076492830772963, 40.577960846125308],
+ [-74.076882264720226, 40.577636788906311],
+ [-74.07673747682658, 40.577372509324988],
+ [-74.076938815286425, 40.577534344586134],
+ [-74.077374724565132, 40.57728215840342],
+ [-74.079263212569074, 40.575671292205683],
+ [-74.078679339389154, 40.575081825223322],
+ [-74.079336405382577, 40.575627204016868],
+ [-74.080906832830635, 40.574689804751543],
+ [-74.084690759914295, 40.571477913939738],
+ [-74.086548587606771, 40.569632319135032],
+ [-74.08691263719129, 40.568985842683055],
+ [-74.086216322242592, 40.568532698147088],
+ [-74.087250783161068, 40.569081678192831],
+ [-74.088356998476343, 40.568266707590865],
+ [-74.089249060751357, 40.5670155705347],
+ [-74.08998259932838, 40.567380011533089],
+ [-74.090999054670405, 40.566737129097518],
+ [-74.094049684097314, 40.562981647611039],
+ [-74.09407071109429, 40.562731619461154],
+ [-74.095110633612919, 40.563173273434572],
+ [-74.095423718622285, 40.563154635568011],
+ [-74.095671980613716, 40.562775598245366],
+ [-74.096118471354586, 40.562587574490067],
+ [-74.098197671960264, 40.559836476805167],
+ [-74.098290308236997, 40.559332614156808],
+ [-74.097821270899061, 40.559053466217158],
+ [-74.098764154150018, 40.559423551651427],
+ [-74.099380314327362, 40.558964193361156],
+ [-74.099717845473364, 40.559141300031079],
+ [-74.099929141354139, 40.559070685653047],
+ [-74.100799639281107, 40.558321821115825],
+ [-74.101243541398716, 40.557660831315509],
+ [-74.101846376747048, 40.556216988779987],
+ [-74.101840329648994, 40.555944639241218],
+ [-74.101374775957126, 40.555692372106684],
+ [-74.101405168449404, 40.55553852616503],
+ [-74.102650763602455, 40.556134404785205],
+ [-74.10309839177431, 40.555904641450532],
+ [-74.10465943491397, 40.554120467311208],
+ [-74.105089079474538, 40.553235468010655],
+ [-74.104844476363382, 40.553025814556236],
+ [-74.106428220651679, 40.553853373621237],
+ [-74.106481508123196, 40.554156828372925],
+ [-74.107047384495033, 40.554195450541982],
+ [-74.10768623398171, 40.553976671478146],
+ [-74.109286477685686, 40.552606897257768],
+ [-74.108852076983197, 40.553006299401069],
+ [-74.108910796341036, 40.553423629089828],
+ [-74.106461777747839, 40.5552783983727],
+ [-74.105728424764209, 40.556195227033406],
+ [-74.102505970611759, 40.559003251481698],
+ [-74.097631534169039, 40.564483335819247],
+ [-74.10660439327259, 40.568778268768853],
+ [-74.105303581836907, 40.57012777121389],
+ [-74.103681941735786, 40.570207754278179],
+ [-74.103939495406848, 40.570683061496204],
+ [-74.102958492987696, 40.571720971899971],
+ [-74.105242903772805, 40.573094039890904],
+ [-74.104709791417761, 40.574005939404699],
+ [-74.092770582239822, 40.567943410603036],
+ [-74.09204451514826, 40.56889233874098],
+ [-74.08853447613059, 40.572558506073889],
+ [-74.079150923809053, 40.578049972735876],
+ [-74.075251617283882, 40.581519567163788],
+ [-74.07275277759048, 40.584061527877466],
+ [-74.07144369874274, 40.585058382216687],
+ [-74.069391458526098, 40.587608032507489],
+ [-74.066625595022956, 40.590342019201351],
+ [-74.063360505573101, 40.592906556906662],
+ [-74.063164153052256, 40.593313809432964],
+ [-74.062793646958696, 40.593418545407623],
+ [-74.060560175404959, 40.594911514274571],
+ [-74.063759332922046, 40.59893485952216],
+ [-74.061055178967933, 40.599825891891832],
+ [-74.061956178680347, 40.601236455949824],
+ [-74.062564742929581, 40.601768091639556],
+ [-74.063505655942024, 40.602150054328227],
+ [-74.063640585538337, 40.602541948797345],
+ [-74.065170912507782, 40.604213508846286],
+ [-74.056858123804815, 40.608056357545159],
+ [-74.05649565936767, 40.607247648256205],
+ [-74.055521261223674, 40.606482892568643]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 89,
+ "properties": {
+ "communityDistrict": 315,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/315"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.937044800018953, 40.583124991022267],
+ [-73.937124597984507, 40.583346730164195],
+ [-73.938119176950934, 40.583340478995126],
+ [-73.938094206277697, 40.583116810716952],
+ [-73.938552763024276, 40.583337984991608],
+ [-73.938477128858722, 40.583177897271135],
+ [-73.93866846657744, 40.58316442817501],
+ [-73.938627557651174, 40.583067021797454],
+ [-73.939296404506692, 40.583167268735288],
+ [-73.939301530189695, 40.583333215054104],
+ [-73.939825389164895, 40.583331446250838],
+ [-73.939828840505442, 40.583170535692517],
+ [-73.939858516427236, 40.583331334095774],
+ [-73.940577458289098, 40.58332822557346],
+ [-73.940566089477699, 40.583087368308057],
+ [-73.940109036170483, 40.583075068681325],
+ [-73.940676578022732, 40.583065805567323],
+ [-73.940588728099328, 40.583206947456418],
+ [-73.940700194488329, 40.583327624731751],
+ [-73.940916454907381, 40.583302406531288],
+ [-73.940897105433365, 40.583087607080088],
+ [-73.940738406046293, 40.583075612817524],
+ [-73.941025179186852, 40.583070361906188],
+ [-73.940934220853563, 40.5833023064367],
+ [-73.941156996754884, 40.583299227468054],
+ [-73.941201557288863, 40.583090465204968],
+ [-73.941209298239841, 40.583298504883025],
+ [-73.941440508572043, 40.583340147476164],
+ [-73.94157408083575, 40.583607555939359],
+ [-73.942551335652936, 40.583514476170805],
+ [-73.942020333527509, 40.583110423782443],
+ [-73.942701678289026, 40.583508797614286],
+ [-73.943047097119248, 40.583492129464553],
+ [-73.942563161909774, 40.583127347516431],
+ [-73.943195062239454, 40.583489662633575],
+ [-73.943544675309226, 40.583471014361066],
+ [-73.943093348473809, 40.583134545214705],
+ [-73.943691530045712, 40.583467754265953],
+ [-73.94406764167104, 40.583472009110366],
+ [-73.943635897957421, 40.583145573909533],
+ [-73.944234035871347, 40.583479951646517],
+ [-73.944618286662347, 40.583496626087666],
+ [-73.944174584578462, 40.583158291217906],
+ [-73.944320597521582, 40.583159424877294],
+ [-73.944775440812947, 40.583507804409805],
+ [-73.945174777816149, 40.583521378244193],
+ [-73.944712710301502, 40.583165044530588],
+ [-73.944845129409146, 40.583164234340913],
+ [-73.945349925034748, 40.583529052110372],
+ [-73.945730148645495, 40.583544874558406],
+ [-73.945266701246254, 40.583182518567234],
+ [-73.945376052378805, 40.5831819316505],
+ [-73.945899118880888, 40.583552662610209],
+ [-73.946286346919536, 40.583568684702762],
+ [-73.945799412588912, 40.583194640230253],
+ [-73.946434290593515, 40.583563152592404],
+ [-73.946789450687774, 40.583550467614117],
+ [-73.946316036487531, 40.583206940210658],
+ [-73.946917962761049, 40.583546033249696],
+ [-73.947268327053067, 40.58353318156928],
+ [-73.946822029471946, 40.583191191871023],
+ [-73.947468678613191, 40.583528195362383],
+ [-73.953493220486791, 40.582988198260963],
+ [-73.953301359956768, 40.58200274963346],
+ [-73.94969672499397, 40.582319401066641],
+ [-73.94274062592514, 40.580995589559244],
+ [-73.933812806639096, 40.581132925742033],
+ [-73.935134076389716, 40.58118378955735],
+ [-73.935108791151904, 40.581303817020974],
+ [-73.93340042885238, 40.581215388869218],
+ [-73.933758013561231, 40.581132041605827],
+ [-73.933003489164122, 40.58114467541715],
+ [-73.932971619566004, 40.581283630075156],
+ [-73.932909587448179, 40.581145767361072],
+ [-73.932872950224024, 40.581286000473149],
+ [-73.932806364933853, 40.581147418686825],
+ [-73.932580066339554, 40.581264741203796],
+ [-73.931062884016683, 40.576163099718514],
+ [-73.931502567440589, 40.575660505126763],
+ [-73.934860928304303, 40.57552779666814],
+ [-73.934893564551913, 40.575221646500196],
+ [-73.935078618963487, 40.575509466010551],
+ [-73.936471075865896, 40.575860496356356],
+ [-73.936707525374729, 40.575418427216235],
+ [-73.936831162282289, 40.575560016725824],
+ [-73.942509078284274, 40.575373554531744],
+ [-73.942557122617387, 40.575564330899105],
+ [-73.944279114060762, 40.575800511747424],
+ [-73.944633191296063, 40.575691196747087],
+ [-73.944596428809746, 40.57524561778304],
+ [-73.944748418059618, 40.575512024748612],
+ [-73.945723520466885, 40.575559439722625],
+ [-73.946182376011237, 40.575298836219396],
+ [-73.945923903017515, 40.575115432309694],
+ [-73.952077916478672, 40.574398602865294],
+ [-73.952543410273947, 40.574223979504254],
+ [-73.953994234050796, 40.574266317041776],
+ [-73.954083334518174, 40.574073272183533],
+ [-73.95428546787106, 40.575731336515922],
+ [-73.953651717053447, 40.575823980895507],
+ [-73.954438286024342, 40.579599959422239],
+ [-73.955071116580399, 40.581680175764198],
+ [-73.954940242385263, 40.581968904738119],
+ [-73.955919977208097, 40.582447832319147],
+ [-73.956041468004543, 40.582736254319975],
+ [-73.956457291257294, 40.582658850555148],
+ [-73.957031342462898, 40.583035332919756],
+ [-73.959007400390789, 40.582838127802084],
+ [-73.960047986674823, 40.583269872406589],
+ [-73.960516672384173, 40.589452911647577],
+ [-73.97433591765278, 40.587941518707822],
+ [-73.974216992455439, 40.590111555499078],
+ [-73.983721526152465, 40.595821078217057],
+ [-73.9732398353256, 40.596978818056797],
+ [-73.972177428008635, 40.604194711537346],
+ [-73.972994340048416, 40.60881414180237],
+ [-73.953598887869589, 40.610949865606109],
+ [-73.951667768069612, 40.611313185999862],
+ [-73.950777930201639, 40.611635456791277],
+ [-73.949119702127703, 40.613053217667755],
+ [-73.944827709962937, 40.616046209109363],
+ [-73.944055609321495, 40.611992841734242],
+ [-73.939012468730184, 40.607599477306643],
+ [-73.939049627748119, 40.607433297476042],
+ [-73.938489866191787, 40.606921943503181],
+ [-73.938347084371415, 40.607000456057875],
+ [-73.937890508110314, 40.606587861063474],
+ [-73.938098083418382, 40.606195209680678],
+ [-73.938434935758409, 40.605973863058743],
+ [-73.934262667258807, 40.60223071136695],
+ [-73.933551171536052, 40.602687280824874],
+ [-73.928131396709531, 40.597777928146151],
+ [-73.929568583093001, 40.596820264919806],
+ [-73.91805568651229, 40.586436545676733],
+ [-73.91919033106555, 40.585962493141999],
+ [-73.919611163540722, 40.58616907889423],
+ [-73.92017117347487, 40.585939908784958],
+ [-73.920404982311013, 40.586089779645668],
+ [-73.920821568760772, 40.585995773200665],
+ [-73.920669808659596, 40.585773626519611],
+ [-73.92089145806905, 40.585903061300435],
+ [-73.920906038363853, 40.585590581533602],
+ [-73.921012183320244, 40.585753595858655],
+ [-73.921899551879449, 40.58569317567391],
+ [-73.921848191077729, 40.585838421436357],
+ [-73.922118512898621, 40.585810514153025],
+ [-73.922353373772992, 40.586023936562341],
+ [-73.922964098263606, 40.585894457063759],
+ [-73.92353515890872, 40.585977723872134],
+ [-73.923895018840881, 40.585800713812297],
+ [-73.924042621471685, 40.585899717842175],
+ [-73.924021820754263, 40.585773535332557],
+ [-73.924679452837736, 40.585637746453415],
+ [-73.925203615142465, 40.58580627115542],
+ [-73.925418357534781, 40.586196514062841],
+ [-73.927207741889035, 40.58772275918674],
+ [-73.927682877473231, 40.587361600134038],
+ [-73.927247505213728, 40.587753274719788],
+ [-73.927356809288938, 40.588022176276155],
+ [-73.927945983511307, 40.587658820005039],
+ [-73.927916257411638, 40.587548735386818],
+ [-73.92807906817859, 40.58770246052319],
+ [-73.927369357535397, 40.588044598802959],
+ [-73.927404523116664, 40.588206445198104],
+ [-73.927901758069154, 40.587953409280338],
+ [-73.928021852764232, 40.588068756350872],
+ [-73.927923180483148, 40.587996187276786],
+ [-73.927454677909921, 40.588299564074042],
+ [-73.927761436391137, 40.588660609758797],
+ [-73.92395294850094, 40.591139850525039],
+ [-73.924199633926591, 40.591364280188685],
+ [-73.924601299385657, 40.591199325003124],
+ [-73.928159051230963, 40.588825249589981],
+ [-73.928620264991991, 40.58912043629617],
+ [-73.928881396844318, 40.588853719575326],
+ [-73.928631587027041, 40.589126361638932],
+ [-73.928734264673039, 40.589147165167702],
+ [-73.929258352174131, 40.588932373437252],
+ [-73.928757034994192, 40.589152966924985],
+ [-73.929981878661906, 40.589515997878614],
+ [-73.929361283544694, 40.589250661977275],
+ [-73.929766157734122, 40.589292068442461],
+ [-73.930577057182575, 40.589890641203155],
+ [-73.930103259887659, 40.589606105071411],
+ [-73.930375432473355, 40.589940459710405],
+ [-73.930297880916754, 40.590035167629964],
+ [-73.93058940447365, 40.589952591132516],
+ [-73.930628493644264, 40.59025299033776],
+ [-73.930467689171536, 40.590061372588018],
+ [-73.930674343554628, 40.590590721315145],
+ [-73.9305250722865, 40.590333113429786],
+ [-73.930471350802236, 40.590859601196989],
+ [-73.930623441806503, 40.590918694275757],
+ [-73.930647499486284, 40.590619683169187],
+ [-73.930641067665022, 40.590944566419722],
+ [-73.930460136618791, 40.591001219020896],
+ [-73.930696415921219, 40.591018541399791],
+ [-73.930449601729251, 40.591079691929131],
+ [-73.930725787957527, 40.591089860265519],
+ [-73.930371977849546, 40.591211400876297],
+ [-73.930604443069598, 40.591186176220965],
+ [-73.930600669062329, 40.591484582041666],
+ [-73.930574953010165, 40.591229731613936],
+ [-73.930465367658201, 40.591273407596098],
+ [-73.930405416622051, 40.591730942142931],
+ [-73.930605806565865, 40.59154136250843],
+ [-73.930450919227113, 40.59224503726179],
+ [-73.930399056021386, 40.591755596428975],
+ [-73.930364436033003, 40.592480093513544],
+ [-73.930362216339915, 40.59231177060942],
+ [-73.930176166341994, 40.592406220970382],
+ [-73.930353645245049, 40.592554950294414],
+ [-73.930265108613881, 40.592619404932535],
+ [-73.930189706582809, 40.592454118288771],
+ [-73.930023010262047, 40.592683046384785],
+ [-73.930212514893668, 40.592678370292404],
+ [-73.929912502223758, 40.592853394873416],
+ [-73.93009899390043, 40.592872440452723],
+ [-73.93005244539404, 40.59300024352072],
+ [-73.929890669643669, 40.592870791368057],
+ [-73.929712820366021, 40.593120048248032],
+ [-73.930042384195886, 40.593060879318038],
+ [-73.92995591843642, 40.593308572326194],
+ [-73.929975936292905, 40.593173815413437],
+ [-73.929741473226528, 40.593143922445535],
+ [-73.92982317336849, 40.593372695598802],
+ [-73.930039224626, 40.593348430884191],
+ [-73.929780817420578, 40.593436741471585],
+ [-73.930016509521863, 40.594094535056954],
+ [-73.930215194703152, 40.593972944184507],
+ [-73.930081594531387, 40.593595462871228],
+ [-73.930227562800411, 40.593930620896849],
+ [-73.930524887278011, 40.593880240701182],
+ [-73.930359688756027, 40.593975941323578],
+ [-73.930546790707112, 40.594199304085528],
+ [-73.930299344703215, 40.593938054510616],
+ [-73.930040119476928, 40.594104887330424],
+ [-73.930432460636794, 40.594402674949485],
+ [-73.930761229054937, 40.594381900521164],
+ [-73.930623056186292, 40.594204497659469],
+ [-73.930834465024674, 40.594413571304578],
+ [-73.930663035101119, 40.594463950932813],
+ [-73.930935161146081, 40.594459949860976],
+ [-73.931220560048402, 40.594183317263102],
+ [-73.931325121460702, 40.594276256189993],
+ [-73.930954634264012, 40.594465945206167],
+ [-73.931184257461297, 40.594501165706284],
+ [-73.930781313796189, 40.594498955276755],
+ [-73.931933649839792, 40.59469240430235],
+ [-73.932308263954042, 40.594916340487096],
+ [-73.932563438393345, 40.594763472296982],
+ [-73.932477028886822, 40.594916096675931],
+ [-73.932671473270631, 40.594911753314058],
+ [-73.932826549188206, 40.594803744969504],
+ [-73.932676539757509, 40.594236417967579],
+ [-73.931758907430861, 40.592830104899178],
+ [-73.9317109079429, 40.593050300520481],
+ [-73.931534952933262, 40.592692830518892],
+ [-73.931740875119829, 40.59279439369439],
+ [-73.931436756138055, 40.592167134518093],
+ [-73.931139561234943, 40.592008928747859],
+ [-73.931399979863869, 40.59180489056213],
+ [-73.931009893431579, 40.591931042480915],
+ [-73.930994659732264, 40.591818198986061],
+ [-73.931353010206649, 40.591791193962251],
+ [-73.931425654397444, 40.591604184147364],
+ [-73.93104847941612, 40.591726290866369],
+ [-73.931076021598102, 40.591597592767727],
+ [-73.931230571089529, 40.591641983133421],
+ [-73.93130541636036, 40.591360358668304],
+ [-73.931245924948186, 40.591636976995822],
+ [-73.931422527160365, 40.591588570390883],
+ [-73.931543347331072, 40.591350471183389],
+ [-73.931432724208165, 40.591239241307946],
+ [-73.931559394416198, 40.59129296407076],
+ [-73.931212948589547, 40.589531308119263],
+ [-73.930685680598131, 40.588821954226788],
+ [-73.930091382132943, 40.588988862378528],
+ [-73.930650219275236, 40.588669869770712],
+ [-73.930399675975096, 40.588465520415262],
+ [-73.929728463801865, 40.588613915829733],
+ [-73.930385452562675, 40.588441616078839],
+ [-73.929722326467314, 40.587560082903785],
+ [-73.931349178240637, 40.587328167229479],
+ [-73.93118073044306, 40.586798733713387],
+ [-73.928573940023924, 40.587061502371817],
+ [-73.928082329715892, 40.586697693937623],
+ [-73.928149693795206, 40.586178107762912],
+ [-73.927919337858469, 40.586135806046094],
+ [-73.928276724976143, 40.586106943570066],
+ [-73.92815700695617, 40.585864523066064],
+ [-73.927743111531484, 40.586050065209321],
+ [-73.927369557858881, 40.586006585316326],
+ [-73.927586418299001, 40.586254135332325],
+ [-73.927516219296891, 40.58639826671498],
+ [-73.927304338238798, 40.585865928419864],
+ [-73.926380419469922, 40.585295756348145],
+ [-73.926548209633268, 40.58557531538758],
+ [-73.925493543583087, 40.585019292003146],
+ [-73.926345420747182, 40.585276154753124],
+ [-73.925305275572356, 40.584641788088561],
+ [-73.924553439264201, 40.584611818712624],
+ [-73.92344966315008, 40.584817853965369],
+ [-73.921012555475045, 40.584575018612249],
+ [-73.920195630533783, 40.58463453786981],
+ [-73.918841775393432, 40.585043116291097],
+ [-73.918795907379931, 40.585223868594795],
+ [-73.918422224994771, 40.585371996276294],
+ [-73.918246860347239, 40.585423445237751],
+ [-73.918240285134715, 40.585316704032117],
+ [-73.917069826937279, 40.58573698211103],
+ [-73.91575404754839, 40.584423268116637],
+ [-73.918310079023996, 40.583889113218525],
+ [-73.921163825588323, 40.583694549307914],
+ [-73.929983417987728, 40.584233435272964],
+ [-73.929632480749021, 40.583398808625454],
+ [-73.930671919416767, 40.583159811896472],
+ [-73.930890532312461, 40.582930194084],
+ [-73.930740694334773, 40.582758947695154],
+ [-73.930960032104991, 40.582728610786468],
+ [-73.93171422041415, 40.582811778842334],
+ [-73.931942589519693, 40.583109750227074],
+ [-73.931928111867549, 40.58286976893524],
+ [-73.932376957428247, 40.5829185099781],
+ [-73.932013799611525, 40.582925981744872],
+ [-73.93201839411536, 40.583111124618526],
+ [-73.932598770539386, 40.582919267816408],
+ [-73.93349145637734, 40.583058717260258],
+ [-73.934209714869667, 40.582979798893412],
+ [-73.934379702092329, 40.583139033674037],
+ [-73.934559929029476, 40.583165413126302],
+ [-73.934560571019816, 40.583020173832239],
+ [-73.935690716397673, 40.583275093189116],
+ [-73.935673531459869, 40.58301942441252],
+ [-73.935824392098567, 40.583021115551659],
+ [-73.935766572110879, 40.58327750984968],
+ [-73.936132335907573, 40.58331447456537],
+ [-73.936287231894042, 40.5830009035583],
+ [-73.936096686913586, 40.582948745832866],
+ [-73.936566070950661, 40.582957648786788],
+ [-73.936300312726843, 40.583002955675838],
+ [-73.936317161954562, 40.583179051201462],
+ [-73.936575924407833, 40.583240505589949],
+ [-73.93697427463762, 40.583230326411289],
+ [-73.936987678970041, 40.583016272171555],
+ [-73.936633074225071, 40.582972211904064],
+ [-73.93763269743296, 40.583096268284059],
+ [-73.937044800018953, 40.583124991022267]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 90,
+ "properties": {
+ "communityDistrict": 303,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/303"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.918046068924596, 40.687213247770437],
+ [-73.916301198615528, 40.678577111931439],
+ [-73.916464860322691, 40.676647040549057],
+ [-73.952063452586728, 40.67858633071836],
+ [-73.958292168077833, 40.679831133494801],
+ [-73.960292816681118, 40.690346249915414],
+ [-73.961749948352178, 40.696846168402978],
+ [-73.961898378242424, 40.698188332531487],
+ [-73.957019931894408, 40.698973914349807],
+ [-73.941930788822305, 40.700725234695796],
+ [-73.918046068924596, 40.687213247770437]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 91,
+ "properties": {
+ "communityDistrict": 311,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/311"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.972994340048416, 40.60881414180237],
+ [-73.972177428008635, 40.604194711537346],
+ [-73.9732398353256, 40.596978818056797],
+ [-73.9850613649743, 40.595670918819373],
+ [-73.985200273048463, 40.596398126116434],
+ [-73.991539344444476, 40.590390903081278],
+ [-73.993308549669493, 40.589583898580422],
+ [-73.994215546083012, 40.588868530985344],
+ [-73.997956397392883, 40.587269506365622],
+ [-73.994876776953689, 40.588771746675121],
+ [-73.995347376612173, 40.589331380439951],
+ [-74.000114495384025, 40.586951640902576],
+ [-74.000108860195041, 40.586560729096725],
+ [-74.000317343032677, 40.586453335023251],
+ [-74.000489120678509, 40.587042855123975],
+ [-74.000382071157219, 40.58713305734944],
+ [-73.997883112510394, 40.588343437922781],
+ [-73.99867293309633, 40.589195549939632],
+ [-73.999236903969589, 40.588935328269052],
+ [-73.99946446811073, 40.589233269380699],
+ [-73.998378348821092, 40.58977044508854],
+ [-73.99883618014573, 40.589625489542264],
+ [-73.998443870794901, 40.589860399177489],
+ [-73.998778006555142, 40.590314355341867],
+ [-73.998443259368671, 40.590240105494416],
+ [-73.9977597276729, 40.590952469613761],
+ [-73.997111685715367, 40.591277977443738],
+ [-73.997189827457603, 40.59160618053734],
+ [-73.99806438267683, 40.591209464731477],
+ [-73.998128693953362, 40.591288664257938],
+ [-73.997282697697145, 40.59171481486807],
+ [-73.997548510584039, 40.591917578170403],
+ [-73.999167618620803, 40.591149134810472],
+ [-73.999573291993897, 40.591092566583306],
+ [-74.000043149870848, 40.591204286761624],
+ [-74.000230752858585, 40.591478489805247],
+ [-73.999012172191215, 40.592335117001213],
+ [-73.999483049383045, 40.592969199897588],
+ [-73.998388310836191, 40.59353139160627],
+ [-73.998544213158269, 40.593596761754178],
+ [-74.001057484457178, 40.592537005062248],
+ [-74.001933202083251, 40.593894695412757],
+ [-74.001844151354732, 40.593977667237873],
+ [-74.003458755732638, 40.595924684008843],
+ [-74.005526220520593, 40.597539154070653],
+ [-74.009217239049079, 40.599844045152338],
+ [-74.011150366434961, 40.600830664233975],
+ [-74.012998870333746, 40.601559207546529],
+ [-74.015824048287158, 40.602294980866354],
+ [-74.017590780265849, 40.602503018992188],
+ [-74.018323472168518, 40.60241765113043],
+ [-74.019135639688301, 40.602612754504833],
+ [-74.019427608897502, 40.602871578347951],
+ [-74.015498550096368, 40.606841524276888],
+ [-74.017019101547376, 40.607654416971123],
+ [-73.997181753413983, 40.626710155836285],
+ [-73.995858841456965, 40.626001434103557],
+ [-73.99473485679259, 40.625614741105977],
+ [-73.974972646644076, 40.613668110171787],
+ [-73.97489295756634, 40.613186368916608],
+ [-73.973993194613954, 40.614029893739918],
+ [-73.972994340048416, 40.60881414180237]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 92,
+ "properties": {
+ "communityDistrict": 404,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/404"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.847508202780645, 40.739007807039158],
+ [-73.851303526722035, 40.737511727542568],
+ [-73.856285677109298, 40.736426042505471],
+ [-73.864470862450929, 40.734007274929702],
+ [-73.876283024266357, 40.730313093919648],
+ [-73.879693540885071, 40.729010159418607],
+ [-73.881309176877039, 40.728680826521192],
+ [-73.88559330979848, 40.728274440980165],
+ [-73.886288846014665, 40.730601703116925],
+ [-73.88838317163345, 40.735758382811248],
+ [-73.891270179531759, 40.741428249292163],
+ [-73.894446887503449, 40.746535270812807],
+ [-73.861117076624396, 40.750024228366328],
+ [-73.852204505658563, 40.752660682362709],
+ [-73.850864397100324, 40.749995641874605],
+ [-73.854425752537722, 40.748851726381922],
+ [-73.850115566364181, 40.740723562798379],
+ [-73.847801646205241, 40.740049676962151],
+ [-73.847579807180352, 40.739721354438394],
+ [-73.847778442173137, 40.739344835748881],
+ [-73.847508202780645, 40.739007807039158]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 93,
+ "properties": {
+ "communityDistrict": 226,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/226"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.867890437136481, 40.902986954152283],
+ [-73.868202703053413, 40.902355382773607],
+ [-73.870103695755844, 40.900741946981086],
+ [-73.874820415511664, 40.898445438024375],
+ [-73.875894654551544, 40.897559458644736],
+ [-73.876437430650199, 40.896870593459653],
+ [-73.87711974105801, 40.895468663643506],
+ [-73.880042130590851, 40.895222284586509],
+ [-73.880397478720596, 40.893313814019997],
+ [-73.880340936250946, 40.892482417609223],
+ [-73.879189418923602, 40.890307031497287],
+ [-73.878004672029277, 40.887321997061434],
+ [-73.878149446345148, 40.886873807364744],
+ [-73.881244225415543, 40.882709633005554],
+ [-73.882748332946534, 40.883397386800993],
+ [-73.883683368565229, 40.883157615331406],
+ [-73.884216964431815, 40.883197728058455],
+ [-73.886834866747876, 40.884342025562752],
+ [-73.887586126088365, 40.884255619662973],
+ [-73.899782521419539, 40.886529123507984],
+ [-73.896757900749378, 40.892645443571681],
+ [-73.896431707170763, 40.893655279926804],
+ [-73.897157171654328, 40.899371826677211],
+ [-73.896357859714925, 40.90320013158378],
+ [-73.896633337970684, 40.911417374845669],
+ [-73.867890437136481, 40.902986954152283]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 94,
+ "properties": {
+ "communityDistrict": 203,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/203"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.880720815142809, 40.837521264519715],
+ [-73.881935889571224, 40.835462124985533],
+ [-73.884246295471797, 40.832592072106017],
+ [-73.885097701531322, 40.831152824784617],
+ [-73.885423176302581, 40.830116849951096],
+ [-73.885783262303434, 40.82789690839796],
+ [-73.88789510901421, 40.826743185296529],
+ [-73.892932260349824, 40.82678703602916],
+ [-73.897569587585892, 40.829423000830893],
+ [-73.901292776271063, 40.820475442111587],
+ [-73.909908941380024, 40.822551107614807],
+ [-73.911816157567358, 40.82203502241245],
+ [-73.917565994430134, 40.823883672432409],
+ [-73.916087827917409, 40.824837851830807],
+ [-73.916613685086176, 40.824992308005278],
+ [-73.912169826444909, 40.827902220983532],
+ [-73.905979403756234, 40.83850519529944],
+ [-73.90268810050182, 40.84458147228532],
+ [-73.900939994262416, 40.844384982674271],
+ [-73.901511519957126, 40.843367968965346],
+ [-73.900333303501938, 40.842989379513547],
+ [-73.899637495566893, 40.844233825028809],
+ [-73.894819425613477, 40.843683770968212],
+ [-73.895378361807317, 40.84293877895653],
+ [-73.889417248691998, 40.839422733380196],
+ [-73.88869040830879, 40.839158026467977],
+ [-73.888137521593393, 40.839862002384741],
+ [-73.886598023451214, 40.839279050108473],
+ [-73.88610978780433, 40.840470994132311],
+ [-73.880720815142809, 40.837521264519715]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 95,
+ "properties": {
+ "communityDistrict": 308,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/308"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.958292168077833, 40.679831133494801],
+ [-73.952063452586728, 40.67858633071836],
+ [-73.921823610157915, 40.676938358472917],
+ [-73.922752572204345, 40.667097332962072],
+ [-73.928722045946031, 40.664495569685258],
+ [-73.92834967165949, 40.668647194188125],
+ [-73.955269636547627, 40.67012490485407],
+ [-73.962575314326202, 40.671644198394539],
+ [-73.966602780071014, 40.672797589726898],
+ [-73.968172958547754, 40.673029414357451],
+ [-73.968942063512657, 40.67288749127016],
+ [-73.968718221691745, 40.673924233914761],
+ [-73.96907731857624, 40.674839670814826],
+ [-73.969545567592618, 40.675276968647239],
+ [-73.970089425133466, 40.675502122885774],
+ [-73.970561113766706, 40.675488575617806],
+ [-73.97104919104342, 40.675237112802613],
+ [-73.975143167228509, 40.680871905306589],
+ [-73.974104486558176, 40.680649672443714],
+ [-73.973977575889506, 40.680983275465891],
+ [-73.974391442014991, 40.681046170246681],
+ [-73.973951353597755, 40.682280730693151],
+ [-73.967678283782007, 40.680955455311469],
+ [-73.967531966996447, 40.681768783617386],
+ [-73.958292168077833, 40.679831133494801]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 96,
+ "properties": {
+ "communityDistrict": 403,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/403"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.862754901969751, 40.766764524925783],
+ [-73.862157856617117, 40.766191757929498],
+ [-73.859490724013014, 40.762562615399062],
+ [-73.858920563126119, 40.762406401185167],
+ [-73.858922981827305, 40.76212234551636],
+ [-73.858645104879514, 40.762514395909015],
+ [-73.858887226601666, 40.762133609397758],
+ [-73.858691102683196, 40.762221190500853],
+ [-73.85884371440261, 40.762058766275757],
+ [-73.858619152818733, 40.761935596998889],
+ [-73.857654736162289, 40.763079823351106],
+ [-73.858415386829904, 40.763453130422633],
+ [-73.858500812554723, 40.763376432579889],
+ [-73.85834319309086, 40.76356256045537],
+ [-73.858395314095347, 40.763477059121733],
+ [-73.857638965359143, 40.763099448633781],
+ [-73.856838887017759, 40.764000179114866],
+ [-73.856963559398054, 40.764074427863086],
+ [-73.856674822962489, 40.763930188325318],
+ [-73.856802909562902, 40.763980845460821],
+ [-73.857582854707033, 40.763072900626561],
+ [-73.856690352230004, 40.762635632858732],
+ [-73.85658675388774, 40.762722840114236],
+ [-73.856782368973924, 40.76250827740575],
+ [-73.856711693994811, 40.762615686952479],
+ [-73.85760424037187, 40.76305328178897],
+ [-73.858176310705304, 40.762396294223826],
+ [-73.856627729414726, 40.761629062393183],
+ [-73.858194331325322, 40.762374107984542],
+ [-73.858585262183468, 40.761917008596093],
+ [-73.857476624355371, 40.761308916687319],
+ [-73.856273206400701, 40.760902408430319],
+ [-73.855376334539542, 40.760669385032251],
+ [-73.855209871879779, 40.760809300774767],
+ [-73.855334545940195, 40.760658154889434],
+ [-73.854782737595954, 40.759848300268381],
+ [-73.853440252213829, 40.75916843724049],
+ [-73.852582524700622, 40.758283451187701],
+ [-73.852165079894235, 40.757459673296168],
+ [-73.85382000610656, 40.757185697572261],
+ [-73.852617253522425, 40.753405065527922],
+ [-73.852204505658563, 40.752660682362709],
+ [-73.861117076624396, 40.750024228366328],
+ [-73.894446887503449, 40.746535270812807],
+ [-73.897339428810128, 40.75141956802932],
+ [-73.897456323526626, 40.752736715644019],
+ [-73.898052843905987, 40.753802473148923],
+ [-73.898114063841007, 40.754221658567843],
+ [-73.899235837136814, 40.755530017451171],
+ [-73.89976862080843, 40.756664237360127],
+ [-73.899845926539342, 40.757562153543596],
+ [-73.899567439398879, 40.758545262512868],
+ [-73.896411384035417, 40.763150082767652],
+ [-73.89506657695074, 40.764331328290297],
+ [-73.894323719553626, 40.766146471734785],
+ [-73.89349605945462, 40.765950930000749],
+ [-73.891444897473946, 40.76607465363174],
+ [-73.891835357963473, 40.766227080049347],
+ [-73.888816539324708, 40.76659534946171],
+ [-73.886025541989028, 40.767282958202564],
+ [-73.882772418262519, 40.768529441437451],
+ [-73.878549156737705, 40.77077199556588],
+ [-73.877045371828999, 40.771316529076699],
+ [-73.873805246241815, 40.771767978456097],
+ [-73.872235776965908, 40.771695659019592],
+ [-73.870714474925975, 40.771390690036839],
+ [-73.868893827245572, 40.770649021897334],
+ [-73.867281938151308, 40.769650003291389],
+ [-73.865092940828532, 40.768015315239843],
+ [-73.863402148656107, 40.766455512262858],
+ [-73.862754901969751, 40.766764524925783]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 97,
+ "properties": {
+ "communityDistrict": 102,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/102"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.996839939264902, 40.737360889398197],
+ [-73.989902959700501, 40.734434790136874],
+ [-73.989868521395636, 40.733527114554889],
+ [-73.990505586035965, 40.730564956235149],
+ [-73.991363881381531, 40.727559783459121],
+ [-73.994807790213102, 40.718457426350312],
+ [-73.996058727443753, 40.7162316402109],
+ [-73.998589255680329, 40.7170995115371],
+ [-73.999312417001448, 40.717550241777381],
+ [-74.010812382607256, 40.725789802555752],
+ [-74.011150343389346, 40.725777216880076],
+ [-74.011457631035512, 40.726155689262022],
+ [-74.015170840858616, 40.726579390657555],
+ [-74.015123565494619, 40.726793942564534],
+ [-74.011542018976044, 40.726447346927067],
+ [-74.01138323604755, 40.728229272367152],
+ [-74.014390699323883, 40.728463047520115],
+ [-74.014037969247994, 40.730694218843873],
+ [-74.011161956964756, 40.730450676349022],
+ [-74.010941274402015, 40.733020313341193],
+ [-74.014002202806751, 40.733068001795353],
+ [-74.013999571748954, 40.733332277517789],
+ [-74.010903898832851, 40.733297617139542],
+ [-74.010737738232308, 40.733419854772428],
+ [-74.010869999225406, 40.733594693906447],
+ [-74.010832846292743, 40.734007093508339],
+ [-74.012017920104739, 40.734063744456307],
+ [-74.012001242223832, 40.734338400663589],
+ [-74.010813594130397, 40.734283443647627],
+ [-74.010476598144194, 40.738063940595033],
+ [-74.01108706635948, 40.738092750081265],
+ [-74.011139156025621, 40.738389862813037],
+ [-74.01045432864592, 40.738364505222982],
+ [-74.010393031345544, 40.739174296059154],
+ [-74.01158045502315, 40.739264536111989],
+ [-74.011527450203985, 40.739873770444717],
+ [-74.011612580173406, 40.739707600549352],
+ [-74.012369174000341, 40.739751646372113],
+ [-74.012310012788447, 40.740194756203955],
+ [-74.011576869242319, 40.740160099501516],
+ [-74.011514917365346, 40.73997286369876],
+ [-74.011460739553399, 40.740584214752488],
+ [-74.012659282084897, 40.74074763849741],
+ [-74.009631455717553, 40.740645367374221],
+ [-74.009411403322076, 40.741154093312794],
+ [-74.012162329092163, 40.741491889682614],
+ [-74.012117458721391, 40.741758516211554],
+ [-74.009519472110711, 40.741490301193359],
+ [-74.009166082830475, 40.742416591463353],
+ [-74.008699022963597, 40.742361723963327],
+ [-73.996839939264902, 40.737360889398197]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 98,
+ "properties": {
+ "communityDistrict": 205,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/205"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.891380233802607, 40.861700588263041],
+ [-73.893215207578095, 40.859874206155673],
+ [-73.893948930790927, 40.858779697027487],
+ [-73.900690100968845, 40.848310096566706],
+ [-73.90268810050182, 40.84458147228532],
+ [-73.906646755595673, 40.844916314067184],
+ [-73.913382939714481, 40.845187232536539],
+ [-73.923540020115283, 40.8447589441123],
+ [-73.927301944986283, 40.846506867376107],
+ [-73.926830232167944, 40.847289760188538],
+ [-73.9246537993034, 40.849785043513052],
+ [-73.923847789458293, 40.851182608715959],
+ [-73.923947894352978, 40.851221784616094],
+ [-73.922561789464751, 40.853188912029864],
+ [-73.921740354030078, 40.854221237840456],
+ [-73.921542618039197, 40.8541168833817],
+ [-73.92134207683867, 40.854317435657634],
+ [-73.921515437055263, 40.854510063891318],
+ [-73.920800702893359, 40.855380814394486],
+ [-73.920300272134298, 40.855246371341451],
+ [-73.92056655954363, 40.855513898313603],
+ [-73.920526531328505, 40.855686668401802],
+ [-73.919566208784985, 40.856840183687666],
+ [-73.917760412511058, 40.858708097958257],
+ [-73.91720664647049, 40.858928922734535],
+ [-73.915762132109379, 40.860644637292928],
+ [-73.914674807120662, 40.859712405659558],
+ [-73.914036078877231, 40.85994195282678],
+ [-73.910721042564745, 40.85870623223358],
+ [-73.910308808511346, 40.858409326604963],
+ [-73.90980269932912, 40.857607548833386],
+ [-73.909567200764997, 40.85759162415976],
+ [-73.907773205133822, 40.859607537685449],
+ [-73.90390816669435, 40.858367585815898],
+ [-73.901079670177253, 40.862756383422955],
+ [-73.899436708404068, 40.862116912065531],
+ [-73.896939613042107, 40.862442856758733],
+ [-73.892851691553773, 40.861832192993191],
+ [-73.891771887992022, 40.861871716750073],
+ [-73.891380233802607, 40.861700588263041]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 99,
+ "properties": {
+ "communityDistrict": 405,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/405"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.88770199270428, 40.734291322758573],
+ [-73.886288846014665, 40.730601703116925],
+ [-73.88559330979848, 40.728274440980165],
+ [-73.880088774891078, 40.728906274716742],
+ [-73.875091540895426, 40.730671363218896],
+ [-73.871460741835079, 40.729326374137671],
+ [-73.870845394241812, 40.727484593440543],
+ [-73.869292704890839, 40.724435929474879],
+ [-73.865238706777987, 40.719976710027446],
+ [-73.85992523558788, 40.714749736033646],
+ [-73.859629209701808, 40.713975295194537],
+ [-73.859776180519688, 40.711226356945232],
+ [-73.859141491551455, 40.706874064141147],
+ [-73.858833712667888, 40.706238897115306],
+ [-73.858232798457479, 40.705591689884926],
+ [-73.855597710146185, 40.703726225652169],
+ [-73.855394235022985, 40.703348637534212],
+ [-73.855295715092595, 40.701991009610488],
+ [-73.857166882525092, 40.701674104892042],
+ [-73.857253514786606, 40.701212177233693],
+ [-73.858932243991106, 40.701320344758884],
+ [-73.858198906347013, 40.702911073862325],
+ [-73.859224121070923, 40.702532945915884],
+ [-73.860130733537147, 40.702422189787669],
+ [-73.862792958108031, 40.702787292454957],
+ [-73.864489836411764, 40.702798334608907],
+ [-73.866855445455272, 40.702213736301431],
+ [-73.867695993750615, 40.701660727142944],
+ [-73.868185026987803, 40.701093055724549],
+ [-73.868867307405594, 40.699023015297335],
+ [-73.869150517428054, 40.698583517911167],
+ [-73.869903301636398, 40.697976624361125],
+ [-73.870573931660374, 40.697688900665028],
+ [-73.868917043081368, 40.695150423196331],
+ [-73.874020533067977, 40.694191294715573],
+ [-73.879506412208997, 40.691146768843161],
+ [-73.883776986493643, 40.687863410682333],
+ [-73.884522509574225, 40.686684749095555],
+ [-73.888083418425452, 40.685293632171053],
+ [-73.88962787578852, 40.684236453750309],
+ [-73.890154187389186, 40.685003989805089],
+ [-73.892523168982663, 40.683424532804615],
+ [-73.894174632671792, 40.68528324817057],
+ [-73.895779455030052, 40.683497183358057],
+ [-73.896466251289269, 40.682336422475885],
+ [-73.90116154994368, 40.68787793535499],
+ [-73.900424650470654, 40.688183898876233],
+ [-73.901804671539708, 40.690766298769027],
+ [-73.901232906600811, 40.691442278638164],
+ [-73.905795970753104, 40.694127155011522],
+ [-73.904260184116879, 40.695700371443174],
+ [-73.911808200384499, 40.699938002621316],
+ [-73.910678826713834, 40.701045969063564],
+ [-73.912904041219576, 40.702361891296647],
+ [-73.91180710003394, 40.703434952026086],
+ [-73.921891846986938, 40.709396096710805],
+ [-73.920745196554748, 40.710529686490297],
+ [-73.921546016956825, 40.711043283534813],
+ [-73.921686635675101, 40.711894317397928],
+ [-73.922232946648109, 40.712854424853191],
+ [-73.924040113340226, 40.714008312628891],
+ [-73.924059097370503, 40.714111559644898],
+ [-73.923683521525248, 40.714082841408185],
+ [-73.924122415754965, 40.715138048445155],
+ [-73.92352547251086, 40.715616608367824],
+ [-73.922329701677015, 40.716076545172392],
+ [-73.920642588745466, 40.715773192028337],
+ [-73.92056905602162, 40.716003708341063],
+ [-73.922237611903924, 40.71638244049452],
+ [-73.922794147453942, 40.717534576143962],
+ [-73.923466026541632, 40.71813033432224],
+ [-73.923938673293534, 40.719042756786983],
+ [-73.923835754717061, 40.720148164078587],
+ [-73.924227162475731, 40.720887344591866],
+ [-73.924243649210055, 40.721429498758546],
+ [-73.925152072720437, 40.722335338815647],
+ [-73.92452702584292, 40.723540911975078],
+ [-73.92433693392303, 40.723603840273817],
+ [-73.922143309612849, 40.72370755701872],
+ [-73.920733560941329, 40.723309812770459],
+ [-73.920370642357895, 40.723681112815882],
+ [-73.920520297691283, 40.72297935048126],
+ [-73.920067122394769, 40.722743048951862],
+ [-73.916554680126907, 40.722005506982967],
+ [-73.912571877438509, 40.723239634949856],
+ [-73.905180579197705, 40.728956576973715],
+ [-73.900628932814598, 40.734463286243781],
+ [-73.899632579618668, 40.735002358303582],
+ [-73.898308127427455, 40.735194184440978],
+ [-73.895101334704705, 40.735021183089998],
+ [-73.892784056659934, 40.734495962751495],
+ [-73.889103189824539, 40.734592396462403],
+ [-73.88770199270428, 40.734291322758573]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 100,
+ "properties": {
+ "communityDistrict": 412,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/412"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.801682665533647, 40.66632235257088],
+ [-73.801250796429386, 40.668385945324694],
+ [-73.80113236214261, 40.670548667618164],
+ [-73.80119461549117, 40.672422464604402],
+ [-73.801681947598723, 40.674383848457268],
+ [-73.807336218687112, 40.686125446991142],
+ [-73.814923432672259, 40.69942244007531],
+ [-73.817097387564516, 40.704029801587659],
+ [-73.814439318654323, 40.70440215056346],
+ [-73.795616689618569, 40.70975307917503],
+ [-73.789012095879585, 40.712072709100696],
+ [-73.788688403626438, 40.712330032624834],
+ [-73.788472460251171, 40.712218530483391],
+ [-73.788434811837149, 40.711984687608989],
+ [-73.787846784799811, 40.711810833167561],
+ [-73.786575285614788, 40.711972493275468],
+ [-73.773571351684041, 40.71512009536869],
+ [-73.767332280868814, 40.717289796810576],
+ [-73.764469517897751, 40.718890392377823],
+ [-73.759441429410103, 40.721063443753103],
+ [-73.753708345570089, 40.713324636235697],
+ [-73.751212469699198, 40.70730658007804],
+ [-73.744846105650581, 40.693139056115278],
+ [-73.748569930944782, 40.687803738207059],
+ [-73.750089911311093, 40.685923446358679],
+ [-73.752258286195811, 40.681491410970018],
+ [-73.755234578055294, 40.677288409747391],
+ [-73.755817710871824, 40.675752742227324],
+ [-73.756362391936634, 40.672429237108844],
+ [-73.756437342919526, 40.669666378742065],
+ [-73.756995333616061, 40.667741268061768],
+ [-73.757956436648485, 40.665955403396751],
+ [-73.770174819819616, 40.667315464264462],
+ [-73.77445107675409, 40.667471577021139],
+ [-73.780316672390697, 40.667176372328825],
+ [-73.78948089661391, 40.666367651621606],
+ [-73.793059808035736, 40.666193204080379],
+ [-73.801682665533647, 40.66632235257088]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 101,
+ "properties": {
+ "communityDistrict": 305,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/305"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.868424897789154, 40.694718119012549],
+ [-73.868684543705783, 40.6940346919056],
+ [-73.867460888910415, 40.688415017596441],
+ [-73.866598483492695, 40.68526955906988],
+ [-73.866026668716259, 40.681918051772897],
+ [-73.864100966791327, 40.682372850292609],
+ [-73.863286408446143, 40.67907719656106],
+ [-73.862345805351268, 40.679164785644275],
+ [-73.860389379181342, 40.671268775444425],
+ [-73.857633231743705, 40.671656194038832],
+ [-73.855684612211434, 40.663867492372923],
+ [-73.858429508573025, 40.663453360931832],
+ [-73.857615372515767, 40.6601189331546],
+ [-73.860359782060087, 40.659645829012177],
+ [-73.863170833405064, 40.658276512446257],
+ [-73.86269778299534, 40.657618309012356],
+ [-73.863002022012893, 40.657488116627256],
+ [-73.863276230686068, 40.656941215328139],
+ [-73.86300171715267, 40.656653757370201],
+ [-73.862999209617413, 40.656357333815244],
+ [-73.863201989732573, 40.656359553934081],
+ [-73.863051322802988, 40.65610609837676],
+ [-73.862641173431655, 40.655667537007659],
+ [-73.861733555475908, 40.65529522177399],
+ [-73.86098917353911, 40.655209767105148],
+ [-73.86052767845527, 40.654705962076605],
+ [-73.870185652936257, 40.649323181866038],
+ [-73.872184733324943, 40.647945070028953],
+ [-73.873465582586235, 40.646816632969191],
+ [-73.879216581649061, 40.654591083772281],
+ [-73.8796386550232, 40.654499091804226],
+ [-73.879719790343032, 40.654375929776307],
+ [-73.876761939563124, 40.650560954495113],
+ [-73.876721924918982, 40.650323221967831],
+ [-73.873901277361, 40.646368367861236],
+ [-73.875963090713597, 40.643644484254786],
+ [-73.877973413343511, 40.63980711772134],
+ [-73.878684931736686, 40.640538552066083],
+ [-73.878647053832296, 40.641065856068501],
+ [-73.881318570509691, 40.643871119271594],
+ [-73.884948358388002, 40.646802172920793],
+ [-73.891365435872459, 40.652364719446901],
+ [-73.893546770738467, 40.655202714083629],
+ [-73.897610132424404, 40.653453815618008],
+ [-73.898002558137307, 40.653801223955682],
+ [-73.899041803889048, 40.657371657570884],
+ [-73.898806984995034, 40.657406661805041],
+ [-73.899217608282456, 40.659111403689977],
+ [-73.903474223424965, 40.675506683277689],
+ [-73.903315996370367, 40.677869223399128],
+ [-73.903490500370751, 40.678898048534748],
+ [-73.904046398088894, 40.679220598019157],
+ [-73.90262262346468, 40.68066450291613],
+ [-73.900245377055157, 40.679422791011412],
+ [-73.898899282875462, 40.679560934398964],
+ [-73.897862999396963, 40.679875011118256],
+ [-73.897383813046474, 40.680168812622249],
+ [-73.896959138460176, 40.680699581824157],
+ [-73.896749659511244, 40.681492026062003],
+ [-73.896581586979721, 40.681574718432479],
+ [-73.896419090737822, 40.68247987574113],
+ [-73.895997273821322, 40.683196878777899],
+ [-73.894174632671792, 40.68528324817057],
+ [-73.892523168982663, 40.683424532804615],
+ [-73.890154187389186, 40.685003989805089],
+ [-73.88962787578852, 40.684236453750309],
+ [-73.888083418425452, 40.685293632171053],
+ [-73.884522509574225, 40.686684749095555],
+ [-73.883776986493643, 40.687863410682333],
+ [-73.879506412208997, 40.691146768843161],
+ [-73.874020533067977, 40.694191294715573],
+ [-73.868917043081368, 40.695150423196331],
+ [-73.868424897789154, 40.694718119012549]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 102,
+ "properties": {
+ "communityDistrict": 402,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/402"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.898114063841007, 40.754221658567843],
+ [-73.898052843905987, 40.753802473148923],
+ [-73.897456323526626, 40.752736715644019],
+ [-73.897339428810128, 40.75141956802932],
+ [-73.891270179531759, 40.741428249292163],
+ [-73.88770199270428, 40.734291322758573],
+ [-73.889103189824539, 40.734592396462403],
+ [-73.892784056659934, 40.734495962751495],
+ [-73.894924217743636, 40.735007722183958],
+ [-73.898307996827228, 40.735194184325657],
+ [-73.899229447688981, 40.735111598774061],
+ [-73.900153434399726, 40.734796405449266],
+ [-73.900628980466351, 40.734463231838753],
+ [-73.905180579197705, 40.728956576973715],
+ [-73.907167052443782, 40.727388654289854],
+ [-73.912571877438509, 40.723239634949856],
+ [-73.916554680126907, 40.722005506982967],
+ [-73.920067122394769, 40.722743048951862],
+ [-73.920520297691283, 40.72297935048126],
+ [-73.920275383406747, 40.723660786038479],
+ [-73.922286202808905, 40.724181286434828],
+ [-73.924192179251506, 40.724275741190368],
+ [-73.924903161651812, 40.72450657567142],
+ [-73.926556639123973, 40.7256690652872],
+ [-73.92853805222326, 40.727882449936722],
+ [-73.92923485876166, 40.728260165761036],
+ [-73.931315093600659, 40.72872944648487],
+ [-73.934531763756894, 40.729104806534941],
+ [-73.936445639671263, 40.72967214559857],
+ [-73.938044785732316, 40.730509967846409],
+ [-73.93911054574815, 40.731379806525538],
+ [-73.939910498958085, 40.733276327859507],
+ [-73.940032009911022, 40.733245044305704],
+ [-73.940164948021547, 40.733486026666867],
+ [-73.940017680329362, 40.733540430685558],
+ [-73.940067093270372, 40.733762152980077],
+ [-73.940864985927035, 40.735070409091044],
+ [-73.941624726364736, 40.735841442338192],
+ [-73.943594804087098, 40.736717789773863],
+ [-73.945940960532909, 40.73750507655425],
+ [-73.944638601309208, 40.738138352039819],
+ [-73.942578858121962, 40.738816020268516],
+ [-73.942803842676611, 40.738861546456199],
+ [-73.942556128052914, 40.739020865746632],
+ [-73.941461734631673, 40.739248583627123],
+ [-73.940508888057252, 40.740113941753087],
+ [-73.940361592850479, 40.740335345658188],
+ [-73.940561449690819, 40.740418322934161],
+ [-73.939108740720599, 40.742617035176309],
+ [-73.938669917531954, 40.74253408202491],
+ [-73.938587869767858, 40.74293088268746],
+ [-73.940019229756658, 40.743208272210694],
+ [-73.940148585873033, 40.742832441460365],
+ [-73.939653015213779, 40.742731087095613],
+ [-73.941188166962505, 40.740290217289349],
+ [-73.941835049927604, 40.739692620211471],
+ [-73.942596668448786, 40.739395147802824],
+ [-73.942790456400715, 40.739193721204309],
+ [-73.942706089921117, 40.739115062978634],
+ [-73.943822722995534, 40.738871537883433],
+ [-73.945482365901157, 40.738207031293726],
+ [-73.947150871811743, 40.737900123344723],
+ [-73.951380715179155, 40.739336477295311],
+ [-73.95379878808717, 40.73981986527194],
+ [-73.957414707659993, 40.739556582011524],
+ [-73.960067579018414, 40.738483749623711],
+ [-73.960725803736779, 40.738080170179131],
+ [-73.962165056193115, 40.738272538258947],
+ [-73.962131461129545, 40.738451070650711],
+ [-73.962608198169079, 40.738795539056753],
+ [-73.962430790713668, 40.739671480082919],
+ [-73.962209165578557, 40.740006175498273],
+ [-73.961592047829782, 40.740003968231591],
+ [-73.961450139104187, 40.740337834680602],
+ [-73.961629825638397, 40.740458929457496],
+ [-73.961293399232574, 40.740432799367952],
+ [-73.961265813022507, 40.740537471108489],
+ [-73.961850098112521, 40.740724481630515],
+ [-73.96190930217675, 40.740867833243847],
+ [-73.961803974890955, 40.741097673472176],
+ [-73.961218628520129, 40.741107860130128],
+ [-73.961077085397619, 40.741697324617817],
+ [-73.96136466826195, 40.741835179027582],
+ [-73.961108145675396, 40.741828024902929],
+ [-73.961552531689563, 40.741993261407146],
+ [-73.961190297890226, 40.74264485525967],
+ [-73.960971684515584, 40.742754054263898],
+ [-73.960519514036164, 40.743495778485887],
+ [-73.959784685522763, 40.743497716583946],
+ [-73.959751238509881, 40.743902276657813],
+ [-73.96064863700721, 40.744130317614029],
+ [-73.959632250239608, 40.743934631914101],
+ [-73.959391066095492, 40.744283324743819],
+ [-73.960126009623863, 40.744443936991445],
+ [-73.959233690117657, 40.744310043026701],
+ [-73.958775370705609, 40.744555599863624],
+ [-73.95946329058691, 40.744654877347081],
+ [-73.958763725813213, 40.744592619164123],
+ [-73.9586409667628, 40.744948314954939],
+ [-73.959652297559813, 40.745216588173456],
+ [-73.958493893031203, 40.744987864916219],
+ [-73.958452522696817, 40.745119011319566],
+ [-73.959273970906651, 40.745328954936383],
+ [-73.959324202658692, 40.745543322753697],
+ [-73.959059356740283, 40.745753368346563],
+ [-73.958398615472362, 40.745719419445592],
+ [-73.95837927085158, 40.745953090093046],
+ [-73.958994272266125, 40.746064646435379],
+ [-73.95867072374395, 40.746643109693849],
+ [-73.956794532905093, 40.74883951695557],
+ [-73.954853942680359, 40.748040794640943],
+ [-73.954651782206113, 40.748232644095424],
+ [-73.954320068357006, 40.748103917082133],
+ [-73.954705613077763, 40.748013620452667],
+ [-73.953183824928573, 40.747734811960925],
+ [-73.953053755713995, 40.74808748722927],
+ [-73.954783878698066, 40.74842768777318],
+ [-73.956485687946696, 40.749111690155708],
+ [-73.955760392070232, 40.74959665953044],
+ [-73.95619953007305, 40.749670714925344],
+ [-73.956120664113612, 40.749759885369613],
+ [-73.955464370024913, 40.749674213082869],
+ [-73.955349285144464, 40.750013856903919],
+ [-73.955132391524785, 40.749926424332287],
+ [-73.955202750408731, 40.749676537409442],
+ [-73.955066525601694, 40.749632730375396],
+ [-73.954515845733866, 40.75058669897674],
+ [-73.954650004131182, 40.750831040959469],
+ [-73.953993534605246, 40.751786195016166],
+ [-73.952971520222661, 40.752746501426415],
+ [-73.950807638183491, 40.755263680114297],
+ [-73.949112951995133, 40.754523619821526],
+ [-73.948767078346719, 40.754904275765433],
+ [-73.943835367463777, 40.752530123056758],
+ [-73.937443629422873, 40.749735692271038],
+ [-73.93739653782103, 40.748916440465884],
+ [-73.936834805464585, 40.748394551916306],
+ [-73.933939394171531, 40.750269645776555],
+ [-73.931526606555877, 40.751166158062539],
+ [-73.924633695362473, 40.751643345661869],
+ [-73.922550430677518, 40.751576479635112],
+ [-73.921612080252757, 40.751371552124191],
+ [-73.92101480198528, 40.750972609970056],
+ [-73.920539001504366, 40.749750828355175],
+ [-73.91525600931422, 40.750845626448282],
+ [-73.91314339244947, 40.750967052175753],
+ [-73.90984318646106, 40.751638679830499],
+ [-73.910354929924694, 40.752749908536124],
+ [-73.910674748970507, 40.752995076827389],
+ [-73.898114063841007, 40.754221658567843]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 103,
+ "properties": {
+ "communityDistrict": 316,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/316"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.904046398088894, 40.679220598019157],
+ [-73.903490500370751, 40.678898048534748],
+ [-73.903315996370367, 40.677869223399128],
+ [-73.903474223424965, 40.675506683277689],
+ [-73.899217608282456, 40.659111403689977],
+ [-73.899565589760869, 40.658956575610681],
+ [-73.899637864081498, 40.657981441794959],
+ [-73.900117158572513, 40.656754643748044],
+ [-73.901045459677817, 40.655570598609394],
+ [-73.907552095075175, 40.651185925730168],
+ [-73.910709746433369, 40.654178733806091],
+ [-73.910934871825631, 40.654173279907809],
+ [-73.924390993847524, 40.666381423277812],
+ [-73.922752572204345, 40.667097332962072],
+ [-73.921823610157915, 40.676938358472917],
+ [-73.916464860322691, 40.676647040549057],
+ [-73.916301198615528, 40.678577111931439],
+ [-73.918046068924596, 40.687213247770437],
+ [-73.904046398088894, 40.679220598019157]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 104,
+ "properties": {
+ "communityDistrict": 104,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/104"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.993935876811207, 40.773179512586104],
+ [-73.984763692632328, 40.769226401206481],
+ [-73.984314913071373, 40.769848183213369],
+ [-73.98209271243384, 40.768892298929721],
+ [-73.982043416681321, 40.768408210312678],
+ [-73.981631495061436, 40.768367928152948],
+ [-73.981432823028214, 40.768083021330717],
+ [-73.981710079509341, 40.767745115759418],
+ [-73.982110615330981, 40.767744476546319],
+ [-73.997099029203909, 40.747205102042237],
+ [-73.991418585606979, 40.7448026824962],
+ [-73.996839939264902, 40.737360889398197],
+ [-74.008699022963597, 40.742361723963327],
+ [-74.009166082830475, 40.742416591463353],
+ [-74.009091568461869, 40.742886148569781],
+ [-74.009620153489053, 40.742951247887142],
+ [-74.009568434117654, 40.74325778472636],
+ [-74.012148131835929, 40.743559301547521],
+ [-74.012020850063976, 40.743939770208804],
+ [-74.009512017673671, 40.743676093760243],
+ [-74.009438008708571, 40.743971254970468],
+ [-74.008900329628403, 40.743917927096],
+ [-74.008729864255002, 40.744881537829585],
+ [-74.009612279244124, 40.744997903150519],
+ [-74.009558329297491, 40.74528882529868],
+ [-74.009916607473741, 40.745327255007105],
+ [-74.009998226017132, 40.744955059302079],
+ [-74.009872110854801, 40.74491650212574],
+ [-74.010167905353924, 40.744942329709552],
+ [-74.010038483846117, 40.744963458078132],
+ [-74.009973950219205, 40.745323135109189],
+ [-74.010469200779482, 40.745386766028894],
+ [-74.010550447558813, 40.745013056704842],
+ [-74.010419372093793, 40.744976823668445],
+ [-74.010764197146116, 40.745005032020835],
+ [-74.010585792009309, 40.745020446561554],
+ [-74.010531065377037, 40.745382050389438],
+ [-74.011103598048834, 40.745447670243927],
+ [-74.01117183119824, 40.745078258283336],
+ [-74.011044591508309, 40.745046212401995],
+ [-74.011387700402622, 40.745073112682519],
+ [-74.011230380572215, 40.745075830160083],
+ [-74.011154191769094, 40.745446378083912],
+ [-74.011739586188966, 40.745519918190105],
+ [-74.011795277118154, 40.745154666984909],
+ [-74.011670675837877, 40.74511397683721],
+ [-74.011836428724152, 40.74512596367871],
+ [-74.011782757620097, 40.745601572255453],
+ [-74.011678855055976, 40.745979461815928],
+ [-74.009463898559702, 40.745750143659414],
+ [-74.009365504957756, 40.746337200862044],
+ [-74.011585283619439, 40.746609050951491],
+ [-74.01147606347044, 40.746996685639502],
+ [-74.009243145925922, 40.746762790753749],
+ [-74.009137362599262, 40.747359762802986],
+ [-74.011406739355095, 40.74763054956545],
+ [-74.011303529937507, 40.748014571908875],
+ [-74.009058479674266, 40.747785645332762],
+ [-74.008946065684071, 40.748411893168637],
+ [-74.011215618134159, 40.748677992243529],
+ [-74.01110891182978, 40.749049875416993],
+ [-74.00994818004115, 40.748931988005609],
+ [-74.009560049786785, 40.749935041791517],
+ [-74.010751186035122, 40.750293977204834],
+ [-74.010756579678429, 40.750410852957543],
+ [-74.009253409840099, 40.749985206224437],
+ [-74.008532569250221, 40.751883609304294],
+ [-74.00914082120002, 40.752097594099027],
+ [-74.008651159368029, 40.751939512113026],
+ [-74.009057740096623, 40.752214351243175],
+ [-74.00858095826554, 40.752043882411535],
+ [-74.009327952062293, 40.752373503046122],
+ [-74.008478955727995, 40.752018571919869],
+ [-74.008426364472243, 40.752157850239243],
+ [-74.009990558197501, 40.752816187149072],
+ [-74.009970587970216, 40.752933564153139],
+ [-74.008792100908465, 40.7523521383795],
+ [-74.008687922195719, 40.752493998628374],
+ [-74.00835352838844, 40.75235073934229],
+ [-74.007620132963154, 40.754281475520109],
+ [-74.007744786056406, 40.754336542719372],
+ [-74.007596643258481, 40.754530449686065],
+ [-74.00747193016376, 40.754476814511662],
+ [-74.007284999443229, 40.754735568203138],
+ [-74.007413621029968, 40.754789302669359],
+ [-74.007271811747671, 40.754985594535206],
+ [-74.007144683609724, 40.754932481173412],
+ [-74.005418859071028, 40.757323140851717],
+ [-74.005211877057732, 40.757231998539879],
+ [-74.004803925601834, 40.757809843164686],
+ [-74.005278948639855, 40.75802855492821],
+ [-74.005031051366402, 40.758357016473099],
+ [-74.007003588379192, 40.759231870341097],
+ [-74.006506876401829, 40.759892032317168],
+ [-74.004504830939126, 40.759084996552687],
+ [-74.004206291253894, 40.759501707688372],
+ [-74.003907420988639, 40.759375692183475],
+ [-74.00380657835008, 40.75951073146598],
+ [-74.004246971941569, 40.759699214171356],
+ [-74.004148638146887, 40.759835914170758],
+ [-74.004318894911719, 40.759910685763387],
+ [-74.00366891453541, 40.759705969576551],
+ [-74.003572510400758, 40.759846558973116],
+ [-74.003928548674665, 40.760003019720429],
+ [-74.003133389913998, 40.76107834509628],
+ [-74.002786916187091, 40.760928969703293],
+ [-74.00233528130056, 40.761543727001602],
+ [-74.004556415609215, 40.762524265025036],
+ [-74.004399762035192, 40.762671359098782],
+ [-74.002200820732696, 40.761728432226455],
+ [-74.001533090669824, 40.762644598127579],
+ [-74.003757349715968, 40.763582241640563],
+ [-74.003612147941752, 40.763777043909698],
+ [-74.001386036986005, 40.762850095001873],
+ [-74.000973080220163, 40.76342027172565],
+ [-74.003149769889902, 40.764332888184619],
+ [-74.002948095157194, 40.764616835428725],
+ [-74.003222755853614, 40.764638037670203],
+ [-74.003146529659844, 40.764736281371995],
+ [-73.999927123677296, 40.763406528479315],
+ [-73.999622634581868, 40.763559081210445],
+ [-73.999150981540069, 40.764205259582688],
+ [-74.002288023714783, 40.76556154329262],
+ [-74.002024543964367, 40.765893266570359],
+ [-73.998884731749882, 40.764569377048488],
+ [-73.998576385305384, 40.764998607270762],
+ [-73.9986887069456, 40.765208570449829],
+ [-73.998270903744498, 40.765552233413246],
+ [-74.001573353852663, 40.766977192210675],
+ [-74.001314696360026, 40.767251120049906],
+ [-73.998066759053543, 40.765871881135688],
+ [-73.997378084479678, 40.76682338537438],
+ [-74.000649505304182, 40.768245236105543],
+ [-74.000385864229713, 40.76850419542928],
+ [-73.997155889492106, 40.767128696172776],
+ [-73.99645715471145, 40.768098815795639],
+ [-73.999735902478534, 40.769506177331515],
+ [-73.999472537340225, 40.769764214969129],
+ [-73.997071761054144, 40.768732643576854],
+ [-73.99715035543251, 40.768847387713393],
+ [-73.996571265056801, 40.769424568273827],
+ [-73.999026828329036, 40.770463272982049],
+ [-73.99876206914314, 40.770825056709192],
+ [-73.996313270881913, 40.769798836336427],
+ [-73.995880043516877, 40.770400579012232],
+ [-73.996016931961975, 40.770454848886168],
+ [-73.995900774911391, 40.770613123500951],
+ [-73.995767332836209, 40.77055459545128],
+ [-73.995424744363035, 40.771031615167942],
+ [-73.996001757490504, 40.77130746533053],
+ [-73.995899901670441, 40.77145029858211],
+ [-73.995305663653568, 40.771196004909498],
+ [-73.994925821206365, 40.771516042405473],
+ [-73.994976885608367, 40.771658774923331],
+ [-73.997112185386072, 40.772553236699508],
+ [-73.996909469027869, 40.772832945659943],
+ [-73.994774079308215, 40.771929547530185],
+ [-73.994445013594913, 40.772377126588331],
+ [-73.996448946676338, 40.77305684199672],
+ [-73.99614329133081, 40.773247541563457],
+ [-73.996685444311666, 40.77350368804624],
+ [-73.994163284563086, 40.772487190518689],
+ [-73.993831082030908, 40.772931787850638],
+ [-73.994136652588608, 40.772901870174245],
+ [-73.994376552750978, 40.773039551101355],
+ [-73.994294029823806, 40.773156243991799],
+ [-73.99502327652182, 40.773481196576192],
+ [-73.995050285360264, 40.773297153189866],
+ [-73.996240651898802, 40.773789791397654],
+ [-73.99606316808179, 40.773886886610057],
+ [-73.996179459973774, 40.773986954351493],
+ [-73.996095245226186, 40.774086186940181],
+ [-73.993935876811207, 40.773179512586104]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 105,
+ "properties": {
+ "communityDistrict": 105,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/105"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.973014871761208, 40.764278879445193],
+ [-73.968186878036107, 40.762226821325882],
+ [-73.976985707283106, 40.7501569597583],
+ [-73.980220899700072, 40.751521979626759],
+ [-73.980673452491104, 40.750905101457384],
+ [-73.982956909551802, 40.747764353690854],
+ [-73.979723464370466, 40.74640287633833],
+ [-73.985232246112872, 40.738840230794956],
+ [-73.986471949786832, 40.739362820927028],
+ [-73.986649696771138, 40.73910091152284],
+ [-73.987035927871261, 40.739266378549431],
+ [-73.98730154868953, 40.738903026036418],
+ [-73.986853452032989, 40.738714752172037],
+ [-73.987288637460722, 40.73813078597442],
+ [-73.987101005187782, 40.738053501438763],
+ [-73.98752047473161, 40.737462697305688],
+ [-73.986535000019614, 40.737050010973675],
+ [-73.988779316840834, 40.733965399235885],
+ [-73.996839939264902, 40.737360889398197],
+ [-73.991418585606979, 40.7448026824962],
+ [-73.997099029203909, 40.747205102042237],
+ [-73.982110615330981, 40.767744476546319],
+ [-73.981791746128081, 40.767713756832023],
+ [-73.981512762813324, 40.767890167529167],
+ [-73.973014871761208, 40.764278879445193]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 106,
+ "properties": {
+ "communityDistrict": 212,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/212"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.793855272090696, 40.883643311333458],
+ [-73.794165557614448, 40.882993216348616],
+ [-73.805505767435776, 40.886092949181226],
+ [-73.807641395017228, 40.885953252900471],
+ [-73.811406452266354, 40.88663558731109],
+ [-73.814427621260975, 40.886771964675148],
+ [-73.816707785914204, 40.886480950542548],
+ [-73.823997350874336, 40.884542136931238],
+ [-73.826513452040672, 40.88358666577458],
+ [-73.830071706276016, 40.881747101681533],
+ [-73.831378261993521, 40.880797607787855],
+ [-73.832656381580705, 40.879598674687841],
+ [-73.833482313011515, 40.878627801564114],
+ [-73.834046665239029, 40.877579113262613],
+ [-73.834491419494981, 40.876066407299554],
+ [-73.83446892238014, 40.873409139489084],
+ [-73.83394979344439, 40.871329433577039],
+ [-73.83268524802601, 40.868550693047354],
+ [-73.830714236956254, 40.864810602435178],
+ [-73.828122989443273, 40.861182113388551],
+ [-73.828343474975767, 40.860892026675806],
+ [-73.829508926921164, 40.861841213446603],
+ [-73.830893296615912, 40.862212849091911],
+ [-73.835784366576917, 40.865016011497033],
+ [-73.847926140692365, 40.871342233077883],
+ [-73.8536363872702, 40.873300599208925],
+ [-73.855549091608694, 40.871813167563765],
+ [-73.85745013526693, 40.869532520523478],
+ [-73.870537385861923, 40.869674031412217],
+ [-73.870561925246619, 40.871510778453704],
+ [-73.875188028222823, 40.871576828949657],
+ [-73.872552509003341, 40.875175183325894],
+ [-73.87160577396476, 40.876921927761565],
+ [-73.87024100052578, 40.880229352906312],
+ [-73.870840770138798, 40.88043889400528],
+ [-73.874945897555889, 40.879947668792724],
+ [-73.874792407319035, 40.880075128890361],
+ [-73.874676015084802, 40.881562851686247],
+ [-73.878125944269257, 40.882153826231246],
+ [-73.877728176615122, 40.883454195084482],
+ [-73.87760676546273, 40.884523043619716],
+ [-73.877870681121365, 40.887254058345292],
+ [-73.879189418923602, 40.890307031497287],
+ [-73.88026939926651, 40.892281498910712],
+ [-73.880397478720596, 40.893313814019997],
+ [-73.880042130590851, 40.895222284586509],
+ [-73.87711974105801, 40.895468663643506],
+ [-73.876437430650199, 40.896870593459653],
+ [-73.875894654551544, 40.897559458644736],
+ [-73.874820415511664, 40.898445438024375],
+ [-73.870103695755844, 40.900741946981086],
+ [-73.868202703053413, 40.902355382773607],
+ [-73.867890437136481, 40.902986954152283],
+ [-73.859467787670013, 40.900517209267683],
+ [-73.859076922748088, 40.901007993099839],
+ [-73.859419840913219, 40.901393125012483],
+ [-73.859376964588165, 40.901565218163491],
+ [-73.859027040859871, 40.901444909752669],
+ [-73.858864013163526, 40.901711695049556],
+ [-73.859463898918833, 40.901933877632771],
+ [-73.859578830144969, 40.90244084277218],
+ [-73.859264324755372, 40.902669480398288],
+ [-73.858728247672204, 40.902288970569387],
+ [-73.858160000048557, 40.902305710202718],
+ [-73.858164602995657, 40.902595860558918],
+ [-73.857969322621273, 40.90285090768684],
+ [-73.857559676576471, 40.902917795958587],
+ [-73.857110905462122, 40.903649532696754],
+ [-73.857171762363151, 40.904082065435446],
+ [-73.856991574128813, 40.904584210069125],
+ [-73.857434576181348, 40.904841544202981],
+ [-73.857177660759646, 40.905286541661447],
+ [-73.856654368890133, 40.905055000280562],
+ [-73.856010233230279, 40.905305983626057],
+ [-73.856011608393445, 40.905482083440681],
+ [-73.856502516281253, 40.905563848794927],
+ [-73.856923981800776, 40.905974170111023],
+ [-73.856810136385363, 40.906155828325986],
+ [-73.855804637959451, 40.906264364126521],
+ [-73.85552697672837, 40.906380251458295],
+ [-73.855137921493281, 40.906866889141824],
+ [-73.854237766868806, 40.907032868254362],
+ [-73.853741035645172, 40.907787916734712],
+ [-73.853833609995888, 40.90797434981959],
+ [-73.854710782734159, 40.908006309942124],
+ [-73.854911096737425, 40.908354869331617],
+ [-73.85458940455753, 40.908939499296636],
+ [-73.85360061654039, 40.909606741449934],
+ [-73.852956184876774, 40.910353044180056],
+ [-73.85258474750411, 40.910310617064077],
+ [-73.852660358257452, 40.910015194162462],
+ [-73.852274516827322, 40.909854099644015],
+ [-73.85149242502591, 40.910271640499644],
+ [-73.851447539028044, 40.910449671201924],
+ [-73.851071161838306, 40.910371520221922],
+ [-73.853475223999467, 40.907530293024102],
+ [-73.85092059296592, 40.906616494488688],
+ [-73.850173175520965, 40.907507865651361],
+ [-73.847080329143736, 40.906156732530313],
+ [-73.844818869187719, 40.905529949673763],
+ [-73.844892649754939, 40.904190866797059],
+ [-73.841386893046604, 40.904172741533955],
+ [-73.840679663904254, 40.901517031463889],
+ [-73.839194866047421, 40.899350692443392],
+ [-73.839209400579335, 40.898810677100073],
+ [-73.839664332118375, 40.897885515105678],
+ [-73.83964812812998, 40.897330535340636],
+ [-73.838391991897439, 40.894067008048992],
+ [-73.838042772198293, 40.894142330884272],
+ [-73.835257905700189, 40.893391644055725],
+ [-73.822677087139155, 40.889619469070304],
+ [-73.822486204131948, 40.890098054404312],
+ [-73.823264898792289, 40.88998702106101],
+ [-73.823366013412908, 40.891075135707418],
+ [-73.822853350726902, 40.891206829096198],
+ [-73.818277381002787, 40.889847130528402],
+ [-73.793855272090696, 40.883643311333458]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 107,
+ "properties": {
+ "communityDistrict": 306,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/306"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.001743621110407, 40.692406749705455],
+ [-74.001105193250609, 40.692056595339189],
+ [-73.992363670432468, 40.68969012377697],
+ [-73.993929296158825, 40.68645287164901],
+ [-73.989128407289869, 40.684589453073421],
+ [-73.988711560327573, 40.685224618479538],
+ [-73.986563034256491, 40.684388756141708],
+ [-73.986995200094256, 40.683765010822732],
+ [-73.984796946915068, 40.682908865516787],
+ [-73.984374107978155, 40.683542455374401],
+ [-73.982422837554779, 40.682782995732666],
+ [-73.982854360751816, 40.682148963461714],
+ [-73.980461554436758, 40.6812225467568],
+ [-73.978760224629411, 40.683765443980533],
+ [-73.976568723558799, 40.682827059545659],
+ [-73.973951353597755, 40.682280730693151],
+ [-73.974391442014991, 40.681046170246681],
+ [-73.973977575889506, 40.680983275465891],
+ [-73.974104486558176, 40.680649672443714],
+ [-73.975143167228509, 40.680871905306589],
+ [-73.97104919104342, 40.675237112802613],
+ [-73.971412332992642, 40.674600579521702],
+ [-73.971439194751909, 40.673704506970445],
+ [-73.970913919008396, 40.672792586686548],
+ [-73.970412894844742, 40.672593723023965],
+ [-73.971815946547849, 40.670629475305191],
+ [-73.979653534103278, 40.661243233730893],
+ [-73.980171611037022, 40.661154658980422],
+ [-73.99696465059327, 40.669234549028936],
+ [-73.998618879700672, 40.671830172564718],
+ [-73.999311010989203, 40.670772639046668],
+ [-74.000303378748882, 40.668716892497045],
+ [-74.001056641131854, 40.668945681717233],
+ [-74.001415271031604, 40.668359414346988],
+ [-74.002215068165441, 40.668578637441186],
+ [-74.002894838769492, 40.667348465949374],
+ [-74.003190752748409, 40.667263199814862],
+ [-74.003694620005277, 40.667427611208367],
+ [-74.003630263515362, 40.667567523356482],
+ [-74.005102273462668, 40.667975647728184],
+ [-74.005863661806842, 40.667993762585667],
+ [-74.006869481278841, 40.666023782718518],
+ [-74.006967990010324, 40.666099546141687],
+ [-74.00475388758332, 40.670721358944974],
+ [-74.005439265293532, 40.670921468238433],
+ [-74.007548216183878, 40.667051745733538],
+ [-74.007796533496233, 40.667159770777189],
+ [-74.007087242218063, 40.668591358535764],
+ [-74.009854119216314, 40.668523628335322],
+ [-74.011540175433311, 40.665085919756642],
+ [-74.015748728826594, 40.664568336291616],
+ [-74.016902673610673, 40.664846602338862],
+ [-74.017887192153907, 40.665850466285242],
+ [-74.018576050108763, 40.670392413869941],
+ [-74.018763368786736, 40.671075874494385],
+ [-74.019339468717774, 40.671624948422611],
+ [-74.018882833633327, 40.671601666205405],
+ [-74.017510371526996, 40.671034530984024],
+ [-74.016687683688616, 40.665437066264275],
+ [-74.016486656204975, 40.664930508953702],
+ [-74.016025517760113, 40.664863048788078],
+ [-74.015936985345505, 40.66547079172144],
+ [-74.012279678727907, 40.665732414158839],
+ [-74.010876640289752, 40.668601615763514],
+ [-74.010356836673139, 40.668642835388482],
+ [-74.010338459479357, 40.669078195447995],
+ [-74.01091024340414, 40.669190492369474],
+ [-74.010873439781875, 40.669710115558388],
+ [-74.011542880315673, 40.669784342750305],
+ [-74.011625275213561, 40.670581028275834],
+ [-74.014249269978819, 40.669728604737017],
+ [-74.011753505756872, 40.670657756573085],
+ [-74.012078317324509, 40.670933614677843],
+ [-74.012619634167834, 40.67084190894041],
+ [-74.013551986714418, 40.671256934377091],
+ [-74.01393626690006, 40.671179076857939],
+ [-74.014274071917242, 40.671379299181872],
+ [-74.015080064710759, 40.670685673295466],
+ [-74.015199805700703, 40.670754027664309],
+ [-74.013872737632454, 40.671880761760427],
+ [-74.014232894527822, 40.672130000513008],
+ [-74.015596444895536, 40.670970477517301],
+ [-74.015686254975151, 40.671038834928808],
+ [-74.012975877921903, 40.673327918720936],
+ [-74.013363782181429, 40.673591536934367],
+ [-74.015119186639609, 40.672156995969104],
+ [-74.016320999223069, 40.672908269563692],
+ [-74.014579467209543, 40.67441401707157],
+ [-74.014963921845748, 40.674677630294198],
+ [-74.018168392807866, 40.671939240601077],
+ [-74.018800947109099, 40.672250764848798],
+ [-74.01727138470126, 40.673608645805515],
+ [-74.017752471623766, 40.674047722892354],
+ [-74.018010773205404, 40.673913181052349],
+ [-74.017801872032038, 40.674095441412369],
+ [-74.018176182746572, 40.674464177036675],
+ [-74.017834475726886, 40.675258223014254],
+ [-74.018298026553353, 40.67545917918136],
+ [-74.018412357557324, 40.675365449934219],
+ [-74.018182106328823, 40.675291431407601],
+ [-74.018392908960237, 40.675107724147793],
+ [-74.018518871965611, 40.67527388964001],
+ [-74.018881013509343, 40.675092480930836],
+ [-74.018408694548626, 40.675524021071467],
+ [-74.018503326423755, 40.675841558730809],
+ [-74.018018008056131, 40.675889522763249],
+ [-74.017911982261822, 40.676510462801936],
+ [-74.019769256792472, 40.676613224917141],
+ [-74.019951978646773, 40.677103010449976],
+ [-74.019082573863301, 40.677139564047515],
+ [-74.01917743946899, 40.677826949006963],
+ [-74.018430407276057, 40.677908320859586],
+ [-74.018411031831619, 40.678407121278411],
+ [-74.019663126515027, 40.678388201270572],
+ [-74.018252670705778, 40.67855288672579],
+ [-74.01857882788785, 40.67898307947236],
+ [-74.01954011580527, 40.678968206456098],
+ [-74.019281281020298, 40.679648140595354],
+ [-74.017725325724371, 40.68066190267357],
+ [-74.017469289031325, 40.680614731700793],
+ [-74.015200822791442, 40.681979419930641],
+ [-74.015320598647591, 40.682110728780522],
+ [-74.012820003988665, 40.683622416497258],
+ [-74.012134816887894, 40.682905928025086],
+ [-74.014105497139909, 40.681712519375374],
+ [-74.013608632702827, 40.68122194672813],
+ [-74.013873987779803, 40.68100981281632],
+ [-74.013018354881211, 40.680412374014217],
+ [-74.009671085588835, 40.68326872771501],
+ [-74.010773123393804, 40.68435861554088],
+ [-74.011782722012086, 40.683759995499258],
+ [-74.012175966146444, 40.684095186131053],
+ [-74.008354465321744, 40.686400200250681],
+ [-74.008164145278869, 40.686174717161506],
+ [-74.007019886826527, 40.686526417194059],
+ [-74.00588224183231, 40.68619576889359],
+ [-74.005629863303994, 40.686784206043605],
+ [-74.007832937666834, 40.687385055162693],
+ [-74.00742012154096, 40.688206290435893],
+ [-74.005003733150716, 40.687605984898255],
+ [-74.004592705217703, 40.688215222986578],
+ [-74.006784385058353, 40.688826879958214],
+ [-74.00636461225271, 40.689669669139555],
+ [-74.003820388537051, 40.688929644196733],
+ [-74.003409216245203, 40.689613261160098],
+ [-74.005759006703428, 40.690236400016168],
+ [-74.005342096249151, 40.691091602977842],
+ [-74.001963219268362, 40.690136379460725],
+ [-74.001853045246193, 40.690387986741811],
+ [-74.0009615685494, 40.690128768350064],
+ [-74.00069905775851, 40.690611858419054],
+ [-74.004794152945522, 40.691761620374393],
+ [-74.004409413260063, 40.692528800891857],
+ [-74.001969385921072, 40.691843208317465],
+ [-74.001743621110407, 40.692406749705455]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 108,
+ "properties": {
+ "communityDistrict": 317,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/317"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.907552095075175, 40.651185925730168],
+ [-73.915930862438344, 40.645774695237954],
+ [-73.923326545213897, 40.639900215591638],
+ [-73.925591859705051, 40.638422574182655],
+ [-73.938014537373164, 40.63209046662783],
+ [-73.941131597420394, 40.631291638088712],
+ [-73.943573087771142, 40.630994155128782],
+ [-73.944550391147104, 40.631071787088281],
+ [-73.94551095521949, 40.630791482901316],
+ [-73.945867735272003, 40.634117548159495],
+ [-73.947773303283824, 40.633998156194416],
+ [-73.948264995908715, 40.638607190209093],
+ [-73.953600047193774, 40.638422347449996],
+ [-73.95404358590126, 40.638877549190198],
+ [-73.954730247044338, 40.644772578361398],
+ [-73.9556519617487, 40.64663041014429],
+ [-73.955825184397298, 40.650529808078822],
+ [-73.956300351227114, 40.655048281831135],
+ [-73.930903549322721, 40.656610355984142],
+ [-73.931602186067863, 40.663230444400178],
+ [-73.924390993847524, 40.666381423277812],
+ [-73.910934871825631, 40.654173279907809],
+ [-73.910709746433369, 40.654178733806091],
+ [-73.907552095075175, 40.651185925730168]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 109,
+ "properties": {
+ "communityDistrict": 406,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/406"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.82606003226816, 40.715399348602219],
+ [-73.831238554001303, 40.714148221539155],
+ [-73.835900722077483, 40.711641370769733],
+ [-73.83611476516883, 40.711825146370728],
+ [-73.837708941993696, 40.711036484271276],
+ [-73.841339365430443, 40.709946234362214],
+ [-73.844537388463976, 40.708661054970904],
+ [-73.846657241116105, 40.708318642340849],
+ [-73.8493315614799, 40.708388333679913],
+ [-73.854732404775376, 40.706764142594842],
+ [-73.854739573446622, 40.705184850609015],
+ [-73.852520189884061, 40.702291723616682],
+ [-73.855292759047501, 40.70259550128506],
+ [-73.855597710146185, 40.703726225652169],
+ [-73.858232798457479, 40.705591689884926],
+ [-73.859081983691567, 40.706710790722916],
+ [-73.859776180519688, 40.711226356945232],
+ [-73.859629209701808, 40.713975295194537],
+ [-73.860037898757739, 40.714932235723943],
+ [-73.865238706777987, 40.719976710027446],
+ [-73.869292704890839, 40.724435929474879],
+ [-73.870845394241812, 40.727484593440543],
+ [-73.871460741835079, 40.729326374137671],
+ [-73.875091540895426, 40.730671363218896],
+ [-73.856285677109298, 40.736426042505471],
+ [-73.851303526722035, 40.737511727542568],
+ [-73.847508202780645, 40.739007807039158],
+ [-73.847213615878815, 40.738643986683861],
+ [-73.846748819699542, 40.738651789501517],
+ [-73.845910939477719, 40.738307055412641],
+ [-73.845470895005548, 40.737873221949435],
+ [-73.844675955828748, 40.735112344198463],
+ [-73.843715762791177, 40.733225729946035],
+ [-73.84284582578421, 40.732067642742273],
+ [-73.84055003848917, 40.729844729907995],
+ [-73.839200938937779, 40.728266863029113],
+ [-73.836557629259431, 40.723373963168477],
+ [-73.83412823313644, 40.720230532396293],
+ [-73.831853055232642, 40.717912143304176],
+ [-73.830429023525909, 40.716962770431863],
+ [-73.82695834371026, 40.715935281893671],
+ [-73.82606003226816, 40.715399348602219]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 110,
+ "properties": {
+ "communityDistrict": 207,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/207"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.875188028222823, 40.871576828949657],
+ [-73.876192249125197, 40.870476710929672],
+ [-73.876943519588707, 40.869954681571386],
+ [-73.888014693883406, 40.86388894909858],
+ [-73.889272736550836, 40.862916399208004],
+ [-73.890674550969536, 40.861320040883491],
+ [-73.891771887992022, 40.861871716750073],
+ [-73.892851691553773, 40.861832192993191],
+ [-73.896939613042107, 40.862442856758733],
+ [-73.899436708404068, 40.862116912065531],
+ [-73.901079670177253, 40.862756383422955],
+ [-73.90390816669435, 40.858367585815898],
+ [-73.907773205133822, 40.859607537685449],
+ [-73.909567200764997, 40.85759162415976],
+ [-73.90980269932912, 40.857607548833386],
+ [-73.910308808511346, 40.858409326604963],
+ [-73.910721042564745, 40.85870623223358],
+ [-73.914036078877231, 40.85994195282678],
+ [-73.914674807120662, 40.859712405659558],
+ [-73.915762132109379, 40.860644637292928],
+ [-73.914809343254817, 40.861714189645724],
+ [-73.914818173391055, 40.861899088982398],
+ [-73.913414621936539, 40.863367493700679],
+ [-73.912762719954614, 40.86302917415756],
+ [-73.912272789769787, 40.863632148996672],
+ [-73.912797621951398, 40.863898875433328],
+ [-73.91252604516805, 40.863795223837748],
+ [-73.912676340203859, 40.864021111602405],
+ [-73.910442827503289, 40.866527868562336],
+ [-73.909496643123177, 40.868831156640354],
+ [-73.908937149298978, 40.871019840308804],
+ [-73.908649431113773, 40.871385783802737],
+ [-73.908932351753805, 40.872157347970081],
+ [-73.909511362618105, 40.87297738359792],
+ [-73.910654392496312, 40.873975943060529],
+ [-73.910269710887178, 40.874271814544123],
+ [-73.909689484029713, 40.874602273754043],
+ [-73.90855579588731, 40.873775444425469],
+ [-73.905714252962994, 40.873138322101234],
+ [-73.904677282084094, 40.872619878995792],
+ [-73.904440073250186, 40.87233032825165],
+ [-73.904488604897097, 40.870578548547648],
+ [-73.903749758939654, 40.869595627140072],
+ [-73.902358047802338, 40.868696120952848],
+ [-73.899965756483837, 40.868017301510321],
+ [-73.899338511723883, 40.869228028104736],
+ [-73.897789622704778, 40.870856643398511],
+ [-73.891406962661179, 40.878969446245762],
+ [-73.889975375540757, 40.880233131422152],
+ [-73.888364875387865, 40.882267541861218],
+ [-73.887069627837747, 40.882476896066123],
+ [-73.887165051991502, 40.882576510892207],
+ [-73.886970075228717, 40.882795642716843],
+ [-73.887231940098275, 40.883054978428362],
+ [-73.887051425361179, 40.88434957584596],
+ [-73.884216964431815, 40.883197728058455],
+ [-73.883683368565229, 40.883157615331406],
+ [-73.882748332946534, 40.883397386800993],
+ [-73.881244225415543, 40.882709633005554],
+ [-73.878149446345148, 40.886873807364744],
+ [-73.878000236497797, 40.88742445934291],
+ [-73.877838570010638, 40.887094521176337],
+ [-73.87760676546273, 40.884523043619716],
+ [-73.877728176615122, 40.883454195084482],
+ [-73.878125944269257, 40.882153826231246],
+ [-73.874676015084802, 40.881562851686247],
+ [-73.874792407319035, 40.880075128890361],
+ [-73.874945897555889, 40.879947668792724],
+ [-73.870840770138798, 40.88043889400528],
+ [-73.87024100052578, 40.880229352906312],
+ [-73.87160577396476, 40.876921927761565],
+ [-73.872552509003341, 40.875175183325894],
+ [-73.875188028222823, 40.871576828949657]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 111,
+ "properties": {
+ "communityDistrict": 313,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/313"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.983721526152465, 40.595821078217057],
+ [-73.974216992455439, 40.590111555499078],
+ [-73.97433591765278, 40.587941518707822],
+ [-73.960516672384173, 40.589452911647577],
+ [-73.960047986674823, 40.583269872406589],
+ [-73.959007400390789, 40.582838127802084],
+ [-73.957031342462898, 40.583035332919756],
+ [-73.956457291257294, 40.582658850555148],
+ [-73.956041468004543, 40.582736254319975],
+ [-73.955919977208097, 40.582447832319147],
+ [-73.954940242385263, 40.581968904738119],
+ [-73.955071116580399, 40.581680175764198],
+ [-73.954438286024342, 40.579599959422239],
+ [-73.953651717053447, 40.575823980895507],
+ [-73.95428546787106, 40.575731336515922],
+ [-73.954133608034539, 40.574333267495142],
+ [-73.956208165951267, 40.574265470675137],
+ [-73.956369041736508, 40.574173312056949],
+ [-73.956345334546072, 40.573797578291838],
+ [-73.956567509059084, 40.574170778492942],
+ [-73.958651471390809, 40.574051523771196],
+ [-73.958966342186514, 40.573947268768698],
+ [-73.958987189726116, 40.573430654726742],
+ [-73.959096421286503, 40.573863820433026],
+ [-73.959828649112396, 40.573929309635673],
+ [-73.96720294103956, 40.573326317397424],
+ [-73.967435678590405, 40.573208969671462],
+ [-73.9674262847454, 40.57298510896922],
+ [-73.967531497537252, 40.573190731882022],
+ [-73.968185060985917, 40.573177868546146],
+ [-73.969451262682838, 40.57285728036333],
+ [-73.969246212155667, 40.572304075654522],
+ [-73.969558951517385, 40.572808580460709],
+ [-73.969755803368841, 40.572846924690324],
+ [-73.971329896263413, 40.572643810384029],
+ [-73.971183063557177, 40.571941899084152],
+ [-73.971607064523894, 40.572628223919821],
+ [-73.972934761627371, 40.572474601642661],
+ [-73.973345022298105, 40.572321214006102],
+ [-73.973249901151632, 40.571626685606411],
+ [-73.973448053256831, 40.572272106969329],
+ [-73.975285649011894, 40.572049832668384],
+ [-73.975470819686947, 40.571969003817038],
+ [-73.975405640942185, 40.571421040640494],
+ [-73.975679180292659, 40.571955984497315],
+ [-73.975925520915297, 40.572018657437525],
+ [-73.977301100927306, 40.571862385946275],
+ [-73.977663845222338, 40.571729387798953],
+ [-73.977568200912074, 40.5712466666591],
+ [-73.977670875897331, 40.571171020079184],
+ [-73.978075997982245, 40.571229570128672],
+ [-73.977715330724891, 40.571251913842204],
+ [-73.977807965370516, 40.571756200609322],
+ [-73.9784548651146, 40.571892204247035],
+ [-73.979100015568946, 40.571840698017972],
+ [-73.97984694469406, 40.571539319610125],
+ [-73.97944328367619, 40.571220925948012],
+ [-73.979754647456801, 40.571249682581978],
+ [-73.980103515518977, 40.571727226484469],
+ [-73.982040758525159, 40.571480370522458],
+ [-73.981571554234293, 40.571249988424803],
+ [-73.982026629187516, 40.571276152089091],
+ [-73.982177106251882, 40.571560578454381],
+ [-73.98308044496568, 40.571508531433359],
+ [-73.983672701532626, 40.571407057687367],
+ [-73.983404407376767, 40.570165544510743],
+ [-73.983043288837123, 40.570145860987935],
+ [-73.983391685025467, 40.570094685019548],
+ [-73.983360580392727, 40.569529994486707],
+ [-73.9834852186614, 40.570089015062742],
+ [-73.983839494892607, 40.570112467157912],
+ [-73.983488421466973, 40.570156029543888],
+ [-73.983757903827424, 40.571396227250823],
+ [-73.988037167444446, 40.57098510876876],
+ [-73.988620254155521, 40.570896051314065],
+ [-73.988577720388719, 40.570697909504929],
+ [-73.9887214578292, 40.570883692082539],
+ [-73.990262675274394, 40.570708340117214],
+ [-73.990773103898334, 40.570599421837841],
+ [-73.990792647669423, 40.570248648755516],
+ [-73.990863746848731, 40.570602016242361],
+ [-73.991193375236165, 40.570611874968193],
+ [-73.992728548311632, 40.570433788037356],
+ [-73.992969230148518, 40.570366732042253],
+ [-73.99298098138074, 40.570196773309185],
+ [-73.993157418867384, 40.570379789438825],
+ [-73.994937632299468, 40.570354674512359],
+ [-73.995138544368032, 40.570314661206666],
+ [-73.995187260857335, 40.570021877633096],
+ [-73.99529301203259, 40.570321282713799],
+ [-73.995764696771019, 40.570392961357264],
+ [-73.997194938258417, 40.570348649043794],
+ [-73.997369449485078, 40.570137307542872],
+ [-73.997667121352009, 40.570374751166142],
+ [-73.998467779001587, 40.570497396972954],
+ [-74.001064386672681, 40.57040154143597],
+ [-74.002011670539048, 40.570208758524096],
+ [-74.00208547639734, 40.569585983984915],
+ [-74.002487077377097, 40.571738388872433],
+ [-74.003031861675382, 40.572185594726179],
+ [-74.00373431084688, 40.572286844482505],
+ [-74.00440185902319, 40.572797892590479],
+ [-74.006669156325955, 40.573393648375315],
+ [-74.008708657301966, 40.573759818587639],
+ [-74.010074107854265, 40.573830809517624],
+ [-74.011156687951768, 40.574166761858727],
+ [-74.012015401911299, 40.574885052474201],
+ [-74.012321835206748, 40.575652682365046],
+ [-74.01245951831028, 40.576681770667378],
+ [-74.013031134855041, 40.57785701813642],
+ [-74.01235035995137, 40.579221820653757],
+ [-74.011761242976803, 40.579854082026202],
+ [-74.010860355718165, 40.580462245271107],
+ [-74.007453660081651, 40.581803522847892],
+ [-74.006047343017357, 40.58198365303577],
+ [-74.003980235505111, 40.581721295663904],
+ [-74.002943741578065, 40.581432835520999],
+ [-74.001240326995969, 40.581426265375875],
+ [-74.000260554245259, 40.581252386322966],
+ [-73.998318391502764, 40.581488204362607],
+ [-73.997955705455382, 40.581287408266526],
+ [-73.997991474122045, 40.580765720885992],
+ [-73.997849725398808, 40.580608959713189],
+ [-73.991829127902761, 40.579247080928766],
+ [-73.99036206466559, 40.579424580120467],
+ [-73.988990935563393, 40.578835099968813],
+ [-73.988428337694288, 40.57881584261947],
+ [-73.987390643884055, 40.579086983063661],
+ [-73.986695399970728, 40.579814908132533],
+ [-73.987021385117885, 40.580022764875189],
+ [-73.985885673948516, 40.581144424564741],
+ [-73.986045099162297, 40.581720685151566],
+ [-73.986945069294578, 40.581136421808658],
+ [-73.987574002281733, 40.580031451227399],
+ [-73.988009733767598, 40.579670687155726],
+ [-73.988903539238194, 40.580008678684663],
+ [-73.989955049217727, 40.580661669531381],
+ [-73.991742734170018, 40.58120016258745],
+ [-73.991825295758701, 40.581738520302707],
+ [-73.990337625044575, 40.584218254885847],
+ [-73.990262447143721, 40.584619148205299],
+ [-73.995396674352946, 40.582227790089235],
+ [-73.996055288864383, 40.582128903854134],
+ [-74.000179228594078, 40.583073949742413],
+ [-74.000417395037061, 40.583545921503251],
+ [-74.000436854239666, 40.584048969486503],
+ [-73.999339763758584, 40.584860814817176],
+ [-73.998085237760137, 40.585364721581485],
+ [-73.998088992543174, 40.585470740763292],
+ [-73.999705970995123, 40.585689819858544],
+ [-73.999525679903627, 40.585758544659889],
+ [-73.999565115703192, 40.586243920095654],
+ [-73.998145304490038, 40.586531693907119],
+ [-73.994173056383758, 40.58838285782074],
+ [-73.995598574103511, 40.587841707554126],
+ [-73.995660545781945, 40.587936207343823],
+ [-73.994079046217806, 40.588693441990529],
+ [-73.994215546083012, 40.588868530985344],
+ [-73.993308549669493, 40.589583898580422],
+ [-73.991539344444476, 40.590390903081278],
+ [-73.985200273048463, 40.596398126116434],
+ [-73.9850613649743, 40.595670918819373],
+ [-73.983721526152465, 40.595821078217057]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 112,
+ "properties": {
+ "communityDistrict": 312,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/312"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.971396316881737, 40.648257785611484],
+ [-73.967627362927928, 40.635238621822609],
+ [-73.97241481651271, 40.632993834268341],
+ [-73.972557215954396, 40.63371337992691],
+ [-73.97761642303297, 40.633153642403919],
+ [-73.976514621001982, 40.6272944899913],
+ [-73.972581653622655, 40.627917967359245],
+ [-73.965906868800076, 40.628654481308331],
+ [-73.962379478247911, 40.609986374023229],
+ [-73.972994340048416, 40.60881414180237],
+ [-73.973993194613954, 40.614029893739918],
+ [-73.97489295756634, 40.613186368916608],
+ [-73.974972646644076, 40.613668110171787],
+ [-73.99473485679259, 40.625614741105977],
+ [-73.998490042017337, 40.627200639256763],
+ [-74.010583402798758, 40.634501852847713],
+ [-73.996045653746492, 40.648340654426384],
+ [-73.989058724595978, 40.644119240536661],
+ [-73.98834986737009, 40.644562243887307],
+ [-73.981805338572073, 40.647127799262265],
+ [-73.975272134355095, 40.647830604067259],
+ [-73.973266890058781, 40.647583072125762],
+ [-73.971396316881737, 40.648257785611484]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 113,
+ "properties": {
+ "communityDistrict": 206,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/206"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.871846102910098, 40.843760777855778],
+ [-73.873127281585923, 40.838335096918485],
+ [-73.873773088060872, 40.836358751438269],
+ [-73.877227625522892, 40.836583182273763],
+ [-73.879651823506777, 40.837126026934385],
+ [-73.881696749419774, 40.837987113460869],
+ [-73.88610978780433, 40.840470994132311],
+ [-73.886598023451214, 40.839279050108473],
+ [-73.888137521593393, 40.839862002384741],
+ [-73.88869040830879, 40.839158026467977],
+ [-73.889417248691998, 40.839422733380196],
+ [-73.895378361807317, 40.84293877895653],
+ [-73.894819425613477, 40.843683770968212],
+ [-73.899637495566893, 40.844233825028809],
+ [-73.900333303501938, 40.842989379513547],
+ [-73.901511519957126, 40.843367968965346],
+ [-73.900939994262416, 40.844384982674271],
+ [-73.90268810050182, 40.84458147228532],
+ [-73.900690100968845, 40.848310096566706],
+ [-73.893215207578095, 40.859874206155673],
+ [-73.891380233802607, 40.861700588263041],
+ [-73.890674550969536, 40.861320040883491],
+ [-73.889272736550836, 40.862916399208004],
+ [-73.888014693883406, 40.86388894909858],
+ [-73.883090031041945, 40.866591509791832],
+ [-73.882627913877272, 40.865858738650267],
+ [-73.883614298905584, 40.865294850620074],
+ [-73.883835149304986, 40.864758597542853],
+ [-73.883713162903717, 40.86429198447177],
+ [-73.88186568671162, 40.862123761957804],
+ [-73.880562139513984, 40.861197229525743],
+ [-73.88035438798083, 40.860569362507142],
+ [-73.880833876202104, 40.858183125616939],
+ [-73.880592251500204, 40.856739973287922],
+ [-73.88263584800417, 40.847914303764277],
+ [-73.877160535872378, 40.844085199803487],
+ [-73.877981313447265, 40.842804416075822],
+ [-73.87456845016807, 40.841642720122273],
+ [-73.873992955209772, 40.842561505617518],
+ [-73.872807082059936, 40.84342426412389],
+ [-73.871846102910098, 40.843760777855778]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 114,
+ "properties": {
+ "communityDistrict": 211,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/211"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.828343474975767, 40.860892026675806],
+ [-73.831114492216741, 40.857524329623871],
+ [-73.834583217162276, 40.854432336831373],
+ [-73.835519046747692, 40.853019577561206],
+ [-73.83614279002083, 40.851041758573309],
+ [-73.836470550498007, 40.847149372782837],
+ [-73.836711796906599, 40.846057369667832],
+ [-73.838390562912494, 40.840676814135101],
+ [-73.839367942506499, 40.840882973481769],
+ [-73.841247853876254, 40.840621628762499],
+ [-73.843276558603833, 40.843541805945087],
+ [-73.844910342553277, 40.845427460748908],
+ [-73.848068340003266, 40.843072001370466],
+ [-73.86347232379066, 40.841305932707215],
+ [-73.867822581813499, 40.840166499016853],
+ [-73.870094731821638, 40.839245704964],
+ [-73.870214507449845, 40.8396179421215],
+ [-73.872772046585297, 40.839751282336003],
+ [-73.871846102910098, 40.843760777855778],
+ [-73.871092078653859, 40.844324780835031],
+ [-73.868892433407908, 40.848112322126454],
+ [-73.869414027571338, 40.848788024629854],
+ [-73.868234660812561, 40.850913737216231],
+ [-73.869903795785604, 40.855873021615913],
+ [-73.868188305588333, 40.858063833808266],
+ [-73.868602785191243, 40.858083100544775],
+ [-73.868896227883951, 40.857772772945061],
+ [-73.86954868104695, 40.85772602967981],
+ [-73.870889838986443, 40.857272817811328],
+ [-73.871082625789796, 40.857377040135908],
+ [-73.870388547273706, 40.864053876300375],
+ [-73.870537385861923, 40.869674031412217],
+ [-73.85745013526693, 40.869532520523478],
+ [-73.855549091608694, 40.871813167563765],
+ [-73.8536363872702, 40.873300599208925],
+ [-73.847926140692365, 40.871342233077883],
+ [-73.835784366576917, 40.865016011497033],
+ [-73.830893296615912, 40.862212849091911],
+ [-73.829508926921164, 40.861841213446603],
+ [-73.828343474975767, 40.860892026675806]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 115,
+ "properties": {
+ "communityDistrict": 227,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/227"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.870537385861923, 40.869674031412217],
+ [-73.870388547273706, 40.864053876300375],
+ [-73.871082625789796, 40.857377040135908],
+ [-73.870889838986443, 40.857272817811328],
+ [-73.86954868104695, 40.85772602967981],
+ [-73.868896227883951, 40.857772772945061],
+ [-73.868602785191243, 40.858083100544775],
+ [-73.868188305588333, 40.858063833808266],
+ [-73.869903795785604, 40.855873021615913],
+ [-73.868234660812561, 40.850913737216231],
+ [-73.869414027571338, 40.848788024629854],
+ [-73.868892433407908, 40.848112322126454],
+ [-73.871092078653859, 40.844324780835031],
+ [-73.87190185099935, 40.84372143399213],
+ [-73.872807082059936, 40.84342426412389],
+ [-73.873992955209772, 40.842561505617518],
+ [-73.87456845016807, 40.841642720122273],
+ [-73.877981313447265, 40.842804416075822],
+ [-73.877160535872378, 40.844085199803487],
+ [-73.88263584800417, 40.847914303764277],
+ [-73.880592251500204, 40.856739973287922],
+ [-73.880833876202104, 40.858183125616939],
+ [-73.88035438798083, 40.860569362507142],
+ [-73.880562139513984, 40.861197229525743],
+ [-73.882193563819655, 40.862456612722333],
+ [-73.883713162903717, 40.86429198447177],
+ [-73.883835149304986, 40.864758597542853],
+ [-73.883515202134546, 40.865399532828519],
+ [-73.882627913877272, 40.865858738650267],
+ [-73.883090031041945, 40.866591509791832],
+ [-73.876943519588707, 40.869954681571386],
+ [-73.876192249125197, 40.870476710929672],
+ [-73.875188028222823, 40.871576828949657],
+ [-73.870561925246619, 40.871510778453704],
+ [-73.870537385861923, 40.869674031412217]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 116,
+ "properties": {
+ "communityDistrict": 482,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/482"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.835900722077483, 40.711641370769733],
+ [-73.834051103436607, 40.710027882253115],
+ [-73.836657203108103, 40.708584270057372],
+ [-73.837982802802316, 40.70675198796021],
+ [-73.838042772945016, 40.705956459962259],
+ [-73.836962377449964, 40.704212452332193],
+ [-73.839478151754136, 40.702690194330657],
+ [-73.841563780944213, 40.701100598717581],
+ [-73.842756641805778, 40.7006576953058],
+ [-73.845024729431415, 40.699359377017053],
+ [-73.849138373090511, 40.698282740700151],
+ [-73.850708423224148, 40.700203124602638],
+ [-73.854434556776525, 40.700602952131028],
+ [-73.852711308770878, 40.698414961501221],
+ [-73.852609659869856, 40.69780503974782],
+ [-73.852772385843949, 40.697557111441142],
+ [-73.857444477396186, 40.696912984716768],
+ [-73.868424897789154, 40.694718119012549],
+ [-73.868917043081368, 40.695150423196331],
+ [-73.870573931660374, 40.697688900665028],
+ [-73.869903301636398, 40.697976624361125],
+ [-73.869150517428054, 40.698583517911167],
+ [-73.868867307405594, 40.699023015297335],
+ [-73.868112913876786, 40.701204312500515],
+ [-73.867506860550108, 40.701816776459175],
+ [-73.866616773232764, 40.70231894576407],
+ [-73.865237876339862, 40.702697761282487],
+ [-73.863570925091835, 40.702820004849919],
+ [-73.859775008757126, 40.70244509805795],
+ [-73.858198906347013, 40.702911073862325],
+ [-73.858932243991106, 40.701320344758884],
+ [-73.857253514786606, 40.701212177233693],
+ [-73.857166882525092, 40.701674104892042],
+ [-73.855295715092595, 40.701991009610488],
+ [-73.855292759047501, 40.70259550128506],
+ [-73.852520189884061, 40.702291723616682],
+ [-73.854739573446622, 40.705184850609015],
+ [-73.854732404775376, 40.706764142594842],
+ [-73.8493315614799, 40.708388333679913],
+ [-73.846657241116105, 40.708318642340849],
+ [-73.844910111697914, 40.708560330867826],
+ [-73.841339365430443, 40.709946234362214],
+ [-73.837708941993696, 40.711036484271276],
+ [-73.83611476516883, 40.711825146370728],
+ [-73.835900722077483, 40.711641370769733]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 117,
+ "properties": {
+ "communityDistrict": 307,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/307"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.980171611037022, 40.661154658980422],
+ [-73.980210052904525, 40.660923322437974],
+ [-73.980001138906843, 40.660757564209916],
+ [-73.979578700956395, 40.660853242153919],
+ [-73.975157381000074, 40.658722794114951],
+ [-73.974367012264977, 40.658187903512044],
+ [-73.971396316881737, 40.648257785611484],
+ [-73.973266890058781, 40.647583072125762],
+ [-73.975272134355095, 40.647830604067259],
+ [-73.981805338572073, 40.647127799262265],
+ [-73.98834986737009, 40.644562243887307],
+ [-73.989058724595978, 40.644119240536661],
+ [-73.996045653746492, 40.648340654426384],
+ [-74.010583402798758, 40.634501852847713],
+ [-74.012740591018073, 40.635406476275641],
+ [-74.016067907983739, 40.636138451094787],
+ [-74.019764960437811, 40.637217434927393],
+ [-74.021160298333569, 40.63828079800588],
+ [-74.021646850826869, 40.63909104800689],
+ [-74.022970093908526, 40.639934604478512],
+ [-74.023105932084846, 40.639995325926826],
+ [-74.023316830243843, 40.639797781724845],
+ [-74.023549391547306, 40.639320333692282],
+ [-74.025723770674631, 40.64063051910798],
+ [-74.026097891295706, 40.640270020325374],
+ [-74.032310843001014, 40.644039214480358],
+ [-74.031897085603191, 40.643889349369566],
+ [-74.030518308633717, 40.645274424203841],
+ [-74.029080909517575, 40.644403596930175],
+ [-74.028997625347486, 40.644471961492734],
+ [-74.029154189945288, 40.644581445419526],
+ [-74.028862411270381, 40.644866023722997],
+ [-74.029086542892401, 40.644583001799596],
+ [-74.028501161846236, 40.644177564702787],
+ [-74.02819053049322, 40.644414330206267],
+ [-74.028457210957811, 40.644156059248161],
+ [-74.028205695450055, 40.644015982890274],
+ [-74.026049484003195, 40.646261350326149],
+ [-74.029740782770588, 40.648486026210222],
+ [-74.029389904866207, 40.648804055113864],
+ [-74.025717588048124, 40.646615492290927],
+ [-74.025162026067264, 40.647138748494129],
+ [-74.024839574067869, 40.64694442476538],
+ [-74.024614871031105, 40.647151125118775],
+ [-74.026296888582181, 40.648168926521002],
+ [-74.026221024755785, 40.648248427809207],
+ [-74.024883054911328, 40.647410523024213],
+ [-74.024683904508905, 40.64760566521803],
+ [-74.024354969367195, 40.647399278153451],
+ [-74.024145660505681, 40.647615101259831],
+ [-74.025129119552389, 40.648323181457236],
+ [-74.024967921171367, 40.648605962267496],
+ [-74.025538645780429, 40.649782159348028],
+ [-74.024844363634429, 40.650599638056967],
+ [-74.025205812535617, 40.650818467899178],
+ [-74.025415539294613, 40.650618697082486],
+ [-74.026051331967977, 40.6509943007431],
+ [-74.025529715436548, 40.651478550692808],
+ [-74.024911228489998, 40.651106284788113],
+ [-74.02510257190238, 40.650893305576858],
+ [-74.02477160495674, 40.650687707435374],
+ [-74.024240213475281, 40.651133516313358],
+ [-74.025501391117317, 40.651839851034033],
+ [-74.025416040285918, 40.651933806855055],
+ [-74.024177529733961, 40.651191773212147],
+ [-74.023594002951896, 40.651315663253719],
+ [-74.023059910470309, 40.650974304134749],
+ [-74.022851417959814, 40.651169195161721],
+ [-74.025368902165084, 40.652721436927095],
+ [-74.025226629726603, 40.652829856959634],
+ [-74.021541383192258, 40.650671622911212],
+ [-74.021246523734106, 40.65083497256429],
+ [-74.021391882106727, 40.650967757988333],
+ [-74.021127077838273, 40.650943212115429],
+ [-74.021052303922147, 40.651098282927713],
+ [-74.022337346668337, 40.651910605381595],
+ [-74.022251731997102, 40.651981601506776],
+ [-74.020982612258621, 40.65115682265769],
+ [-74.020898628708338, 40.651247275218275],
+ [-74.023807039031254, 40.65304472851146],
+ [-74.023594344975564, 40.653216368961743],
+ [-74.021959000905966, 40.652222781970742],
+ [-74.021621533676168, 40.652319951290501],
+ [-74.021186700278903, 40.652839836895325],
+ [-74.023204647271413, 40.65409611681784],
+ [-74.023062191552214, 40.654233236291795],
+ [-74.022101951624506, 40.653587953807623],
+ [-74.021629462954991, 40.65364516521602],
+ [-74.021149634844946, 40.654210755211558],
+ [-74.021824797454983, 40.654656175785377],
+ [-74.0216448641536, 40.654878982377276],
+ [-74.020894697316052, 40.654433575413634],
+ [-74.020639692249816, 40.654439333329357],
+ [-74.020474618861755, 40.654216589227005],
+ [-74.019192030254203, 40.654022598494109],
+ [-74.018726865886833, 40.653474310524388],
+ [-74.018118978764718, 40.653885271105246],
+ [-74.020255889869347, 40.655118262881238],
+ [-74.020051824542975, 40.655335948874452],
+ [-74.017874072238172, 40.654061502330812],
+ [-74.017153195810266, 40.654775104362081],
+ [-74.019800816519975, 40.656487210584636],
+ [-74.019705963442391, 40.656581163751113],
+ [-74.017267159365872, 40.655194187986474],
+ [-74.016916179170636, 40.655483274957639],
+ [-74.016650480257539, 40.65533879657206],
+ [-74.016394375337768, 40.655620642850742],
+ [-74.019108438031225, 40.657368884303445],
+ [-74.018605694609974, 40.65784587402284],
+ [-74.015853701227954, 40.656213239550127],
+ [-74.015436323356425, 40.656632396759562],
+ [-74.017742327274931, 40.658098916724924],
+ [-74.017666444095198, 40.658185638771485],
+ [-74.017865731096791, 40.658308447298516],
+ [-74.01768549175469, 40.658452992761198],
+ [-74.015047382218555, 40.656950386693396],
+ [-74.014421304845527, 40.657608021951368],
+ [-74.017458030879027, 40.659450197386697],
+ [-74.015541653890068, 40.660758355476105],
+ [-74.014004283924152, 40.659811963440099],
+ [-74.013662739266081, 40.660028780636914],
+ [-74.011838620565513, 40.658912837274698],
+ [-74.011107504763061, 40.65970627458055],
+ [-74.014022477440207, 40.661529747439978],
+ [-74.013155549388159, 40.661981597725926],
+ [-74.012653588114944, 40.661981654037561],
+ [-74.008599569682886, 40.659520923098235],
+ [-74.007458581638957, 40.660558476209893],
+ [-74.010372013632121, 40.662398879227297],
+ [-74.010463317244941, 40.662642119790036],
+ [-74.00955074208035, 40.663267694130305],
+ [-74.008683715913008, 40.663372012840213],
+ [-74.006161411363209, 40.661845068990473],
+ [-74.005685948228901, 40.662274740360459],
+ [-74.004283583161225, 40.661444894101251],
+ [-74.00414624826216, 40.661561635681302],
+ [-74.006226982479248, 40.662787827860939],
+ [-74.005923605030333, 40.663108250739057],
+ [-74.00380815470885, 40.661907945728146],
+ [-74.003488011006482, 40.662240556128488],
+ [-74.004554984887136, 40.662816372912694],
+ [-74.004732981217771, 40.66249650399665],
+ [-74.005358128642513, 40.66286912973171],
+ [-74.004971577586119, 40.663068213242063],
+ [-74.005192338410865, 40.663201553096549],
+ [-74.00538014413921, 40.662883926452778],
+ [-74.005997487486923, 40.663258610828478],
+ [-74.005613486817481, 40.663458390254732],
+ [-74.007721335067032, 40.664718633019767],
+ [-74.007305161928358, 40.664597590752535],
+ [-74.007125326467403, 40.66491521847427],
+ [-74.006524696661117, 40.664547226657731],
+ [-74.00688215307305, 40.664340372942924],
+ [-74.006629378595704, 40.664187930124427],
+ [-74.006449799807925, 40.664506206799039],
+ [-74.005841576324855, 40.664138020674557],
+ [-74.006203065853754, 40.663930168210477],
+ [-74.006046085189794, 40.663840005635521],
+ [-74.005757810454867, 40.663922756801618],
+ [-74.005849247706109, 40.664503298619657],
+ [-74.005641407544744, 40.66453149089061],
+ [-74.005650259595853, 40.663900337843721],
+ [-74.003628625085668, 40.662734847534544],
+ [-74.003403485956312, 40.662985726598237],
+ [-74.004592386367534, 40.663735199832836],
+ [-74.004322949633774, 40.664052319975234],
+ [-74.005281321773424, 40.664657003523956],
+ [-74.004861937926592, 40.665064821938167],
+ [-74.001135194436586, 40.662901723049927],
+ [-74.000944243316098, 40.6630763919839],
+ [-74.000834011084422, 40.663006441686541],
+ [-73.999531526099162, 40.664397485936902],
+ [-74.002924635163879, 40.666462312163368],
+ [-74.002240310573796, 40.666793835145164],
+ [-74.001619500210921, 40.666766279174453],
+ [-74.00120611414313, 40.667018107202786],
+ [-74.001464709327081, 40.66716956870755],
+ [-74.000687748687653, 40.667545951898767],
+ [-73.999981493391232, 40.667450274908639],
+ [-73.999026009983893, 40.668442972126961],
+ [-73.999026332641748, 40.669007888400671],
+ [-73.999240491050344, 40.668306286559968],
+ [-73.999079353279754, 40.669038271861567],
+ [-73.998655807576171, 40.669514795547904],
+ [-73.998911601678898, 40.669648578639517],
+ [-73.99891684904766, 40.669804563217738],
+ [-73.99855824468392, 40.671335501669915],
+ [-73.998769410589219, 40.671602047105061],
+ [-73.998618879700672, 40.671830172564718],
+ [-73.99696465059327, 40.669234549028936],
+ [-73.980171611037022, 40.661154658980422]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 118,
+ "properties": {
+ "communityDistrict": 310,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/310"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-74.032310843001014, 40.644039214480358],
+ [-74.026097891295706, 40.640270020325374],
+ [-74.025723770674631, 40.64063051910798],
+ [-74.023549391547306, 40.639320333692282],
+ [-74.023316830243843, 40.639797781724845],
+ [-74.023105932084846, 40.639995325926826],
+ [-74.022970093908526, 40.639934604478512],
+ [-74.021646850826869, 40.63909104800689],
+ [-74.021160298333569, 40.63828079800588],
+ [-74.019764960437811, 40.637217434927393],
+ [-74.016067907983739, 40.636138451094787],
+ [-74.012740591018073, 40.635406476275641],
+ [-74.010918344655252, 40.63468251965682],
+ [-73.998490042017337, 40.627200639256763],
+ [-73.997181753413983, 40.626710155836285],
+ [-74.017019101547376, 40.607654416971123],
+ [-74.015498550096368, 40.606841524276888],
+ [-74.019427608897502, 40.602871578347951],
+ [-74.021016629496316, 40.603555553061256],
+ [-74.030051466136257, 40.604759173811786],
+ [-74.03213159551315, 40.605901836264231],
+ [-74.034272805394494, 40.607717478230313],
+ [-74.034958308299366, 40.608659489086641],
+ [-74.036039777779152, 40.60929563900185],
+ [-74.036815426504205, 40.611037721554638],
+ [-74.039205576473947, 40.61343951273367],
+ [-74.040476120214549, 40.615625262658888],
+ [-74.041375228256328, 40.619993552965468],
+ [-74.041617407735998, 40.62056271454572],
+ [-74.041710158124687, 40.623305320611784],
+ [-74.041888492598176, 40.624409312969057],
+ [-74.041063204689081, 40.630190337193341],
+ [-74.03680662048852, 40.638984221545485],
+ [-74.038762979207561, 40.63958825898051],
+ [-74.038688046907339, 40.639738256029574],
+ [-74.036724843748829, 40.639141190206679],
+ [-74.035712761507298, 40.64064015404648],
+ [-74.036734426851581, 40.641458421718845],
+ [-74.03674294096578, 40.641631829699861],
+ [-74.034073292942608, 40.644313932963897],
+ [-74.032842920138606, 40.643563710350584],
+ [-74.032620556401795, 40.643765402259241],
+ [-74.032310706641724, 40.643574585612399],
+ [-74.032235244367783, 40.643643370155345],
+ [-74.032541738616018, 40.643825483849135],
+ [-74.032310843001014, 40.644039214480358]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 119,
+ "properties": {
+ "communityDistrict": 314,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/314"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.956300351227114, 40.655048281831135],
+ [-73.955825184397298, 40.650529808078822],
+ [-73.9556519617487, 40.64663041014429],
+ [-73.954730247044338, 40.644772578361398],
+ [-73.95404358590126, 40.638877549190198],
+ [-73.953600047193774, 40.638422347449996],
+ [-73.948264995908715, 40.638607190209093],
+ [-73.947773303283824, 40.633998156194416],
+ [-73.945867735272003, 40.634117548159495],
+ [-73.94551095521949, 40.630791482901316],
+ [-73.944155352558241, 40.629508285207962],
+ [-73.947326721606174, 40.629166566706836],
+ [-73.944827709962937, 40.616046209109363],
+ [-73.949119702127703, 40.613053217667755],
+ [-73.950777930201639, 40.611635456791277],
+ [-73.951667768069612, 40.611313185999862],
+ [-73.953598887869589, 40.610949865606109],
+ [-73.962379478247911, 40.609986374023229],
+ [-73.965906868800076, 40.628654481308331],
+ [-73.972581653622655, 40.627917967359245],
+ [-73.976514621001982, 40.6272944899913],
+ [-73.97761642303297, 40.633153642403919],
+ [-73.972557215954396, 40.63371337992691],
+ [-73.97241481651271, 40.632993834268341],
+ [-73.967627362927928, 40.635238621822609],
+ [-73.972222286057303, 40.6510469517657],
+ [-73.971456203085324, 40.651140312462367],
+ [-73.959861031131027, 40.655634789439297],
+ [-73.959696658630605, 40.654839214726195],
+ [-73.956300351227114, 40.655048281831135]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 120,
+ "properties": {
+ "communityDistrict": 411,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/411"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.713518281059919, 40.759837730830796],
+ [-73.716854404449265, 40.759525514019671],
+ [-73.718319718187516, 40.759082075675337],
+ [-73.719982969884953, 40.758160821512952],
+ [-73.721110014829279, 40.757111525815716],
+ [-73.7224109479736, 40.754920189248402],
+ [-73.723266734112798, 40.753947599496982],
+ [-73.726414721371526, 40.751915877812721],
+ [-73.727378891401585, 40.751029567399691],
+ [-73.728253810495048, 40.749693728645596],
+ [-73.729145938101581, 40.747273799812717],
+ [-73.730628018362623, 40.745364158239383],
+ [-73.732269180563506, 40.743818962745351],
+ [-73.734369658431717, 40.742351598559608],
+ [-73.738160479203913, 40.740376435816998],
+ [-73.739012103523919, 40.739746479175146],
+ [-73.74151636839602, 40.73686036104047],
+ [-73.742947857899594, 40.735456551528806],
+ [-73.746721402966443, 40.732477150642502],
+ [-73.750482956498644, 40.729221294393867],
+ [-73.752970287172531, 40.727705620131594],
+ [-73.756703291674768, 40.726229432660404],
+ [-73.7578714145791, 40.727106851486425],
+ [-73.762342098391528, 40.729538290701278],
+ [-73.764350715262154, 40.73115119213589],
+ [-73.765643744656387, 40.732533126738993],
+ [-73.76369979170164, 40.732864116847814],
+ [-73.764709290881811, 40.734084854795164],
+ [-73.762495338772496, 40.734734559472997],
+ [-73.762733034679158, 40.7352621626722],
+ [-73.762486092774552, 40.736730981449632],
+ [-73.765568498107683, 40.743258154524618],
+ [-73.766878535967948, 40.744093579206236],
+ [-73.767729913594749, 40.745776225670049],
+ [-73.772414610026615, 40.743884845221935],
+ [-73.780366035437737, 40.742591663146563],
+ [-73.795886816956127, 40.738376374997962],
+ [-73.796402186404435, 40.738282357687652],
+ [-73.796439400484999, 40.738438947644617],
+ [-73.79672497858914, 40.738416642621935],
+ [-73.796292972916092, 40.738552306431508],
+ [-73.797256707929805, 40.740213043295192],
+ [-73.797230850381595, 40.741695506635992],
+ [-73.79543059287569, 40.743264290405541],
+ [-73.794535073550804, 40.744507638214664],
+ [-73.794458691576153, 40.745436953712691],
+ [-73.794815314152785, 40.748422226715448],
+ [-73.794577269899989, 40.753563011339054],
+ [-73.792375179985399, 40.75307044775694],
+ [-73.793439911464574, 40.760764127961266],
+ [-73.792167893840372, 40.770976689467666],
+ [-73.792712593167664, 40.773787527360469],
+ [-73.791635260664592, 40.774238655585854],
+ [-73.775839583323403, 40.778612372112015],
+ [-73.775598853663681, 40.779323365621018],
+ [-73.770609744548594, 40.782079793940667],
+ [-73.768580585494689, 40.779876824912144],
+ [-73.768159154444035, 40.779635958694875],
+ [-73.768200555261402, 40.779444179192289],
+ [-73.767161936875922, 40.779782875660651],
+ [-73.767023923465061, 40.780086234158304],
+ [-73.766889947038393, 40.779779433943396],
+ [-73.766775704400487, 40.779812458699681],
+ [-73.768161730515814, 40.779396821241981],
+ [-73.767091134847348, 40.776844841109174],
+ [-73.766328233242191, 40.775843054332121],
+ [-73.765727969039276, 40.774603328092049],
+ [-73.764176331145222, 40.772829990442659],
+ [-73.761263012598405, 40.770395965074243],
+ [-73.759600780928238, 40.768723256713002],
+ [-73.758935120936954, 40.768334328515841],
+ [-73.758642643580785, 40.767357170035446],
+ [-73.757870305674103, 40.766946427446968],
+ [-73.757390208038743, 40.7671666723584],
+ [-73.756410842897509, 40.766514222767583],
+ [-73.756500720039284, 40.766344505019376],
+ [-73.75602210333291, 40.766464421210159],
+ [-73.755473104397922, 40.76636558041649],
+ [-73.75493674407366, 40.766093252140251],
+ [-73.754100654884411, 40.765349353964517],
+ [-73.753770365306337, 40.765304631484341],
+ [-73.753804413791201, 40.76506822784313],
+ [-73.753409947264316, 40.764692659656511],
+ [-73.752192615365217, 40.763830418515063],
+ [-73.751074322525596, 40.761763671336205],
+ [-73.748612250725614, 40.760927803075973],
+ [-73.747535134089603, 40.759857196185848],
+ [-73.746425463105382, 40.759223542143566],
+ [-73.746289044913738, 40.759059244817507],
+ [-73.74642482955997, 40.758209665279772],
+ [-73.746277005397687, 40.757796784403311],
+ [-73.746131434549511, 40.757676883358215],
+ [-73.745760142955518, 40.757836644816933],
+ [-73.744635990572093, 40.756891175867104],
+ [-73.744657486468725, 40.756558104977302],
+ [-73.744576396428528, 40.756907272386371],
+ [-73.744866184047524, 40.75720430488041],
+ [-73.745759849542097, 40.757913517108626],
+ [-73.746046681746094, 40.757809942869265],
+ [-73.746311967054908, 40.758054814022742],
+ [-73.746062149421917, 40.758761500449225],
+ [-73.74616224371907, 40.759024799276915],
+ [-73.746553780988265, 40.759450174035813],
+ [-73.747494241534966, 40.759976686852134],
+ [-73.748158659046211, 40.760726377280193],
+ [-73.748374564394837, 40.761558789630769],
+ [-73.749362033490613, 40.761844520340276],
+ [-73.749173944623834, 40.761377744827918],
+ [-73.750040421305769, 40.761576082739609],
+ [-73.750570493653058, 40.761915474821542],
+ [-73.751420487896056, 40.762761694366731],
+ [-73.751695235218094, 40.763651827370133],
+ [-73.752510927501035, 40.764527376918657],
+ [-73.753045711561057, 40.764817227436524],
+ [-73.755072108490467, 40.76753310678734],
+ [-73.754859158293186, 40.768404252958412],
+ [-73.754393882693449, 40.768753462748627],
+ [-73.754713916878629, 40.768795143897506],
+ [-73.754705936505744, 40.769741522945267],
+ [-73.75533279459188, 40.770998154653263],
+ [-73.755534986627879, 40.770985526492957],
+ [-73.75534216256267, 40.771022152241187],
+ [-73.755573327154224, 40.771529125924097],
+ [-73.755082677136457, 40.77171322899477],
+ [-73.755115236284269, 40.771834906488358],
+ [-73.755059203860483, 40.771719174693374],
+ [-73.754380747575411, 40.772041271642145],
+ [-73.753570009061363, 40.772694616129293],
+ [-73.753366919996822, 40.773207846758233],
+ [-73.753955739399075, 40.774306209075107],
+ [-73.754241499993839, 40.775266830365211],
+ [-73.755185753282149, 40.776498070828787],
+ [-73.754858006585664, 40.776896399792385],
+ [-73.754981937472166, 40.777043803362758],
+ [-73.754813228934353, 40.777619032305587],
+ [-73.755517816047202, 40.777584144019919],
+ [-73.755517375817973, 40.777704048364164],
+ [-73.754812171246527, 40.77763599592339],
+ [-73.754557911058413, 40.777776590664253],
+ [-73.754484528283257, 40.7779044679815],
+ [-73.754649812513847, 40.777992106293027],
+ [-73.754301835408654, 40.778406111489844],
+ [-73.7541296414919, 40.779384143239007],
+ [-73.753008126158349, 40.780866075189856],
+ [-73.752998392964329, 40.781289489522109],
+ [-73.750805936137837, 40.782893378668064],
+ [-73.744123145681016, 40.778638657554154],
+ [-73.74007973971888, 40.7762087953963],
+ [-73.73937598887052, 40.776013669167277],
+ [-73.739123620037176, 40.775704143072694],
+ [-73.737702836222994, 40.774793585732326],
+ [-73.728707221187449, 40.769461484092567],
+ [-73.723560022866366, 40.766128761165724],
+ [-73.723059241725181, 40.766144406314133],
+ [-73.722484384118246, 40.765527210355806],
+ [-73.721142727509843, 40.764872606365557],
+ [-73.713518281059919, 40.759837730830796]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 121,
+ "properties": {
+ "communityDistrict": 107,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/107"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.959646854231522, 40.801156423256458],
+ [-73.958172971038437, 40.800582541457338],
+ [-73.981679436393961, 40.76839013093614],
+ [-73.982043416681321, 40.768408210312678],
+ [-73.98209271243384, 40.768892298929721],
+ [-73.984314913071373, 40.769848183213369],
+ [-73.984763692632328, 40.769226401206481],
+ [-73.993935876811207, 40.773179512586104],
+ [-73.992622663865404, 40.774974056036925],
+ [-73.992267089035394, 40.775116033858545],
+ [-73.992059084937139, 40.775497598192246],
+ [-73.992386042960391, 40.775557179419465],
+ [-73.990927174149675, 40.777566878762961],
+ [-73.990396160036497, 40.777585065679041],
+ [-73.988868618061176, 40.779692922911465],
+ [-73.991551059227518, 40.779574820432188],
+ [-73.991419826520797, 40.779755280287077],
+ [-73.988886144116961, 40.779878898532715],
+ [-73.988919261468425, 40.780226094343668],
+ [-73.988210420831635, 40.781225482542055],
+ [-73.988076449806229, 40.781650935001679],
+ [-73.98546581263146, 40.785360700575531],
+ [-73.986172704965441, 40.786068452258675],
+ [-73.987119013942745, 40.785210317998938],
+ [-73.986128422485876, 40.786239001331118],
+ [-73.985429321269422, 40.785413942184618],
+ [-73.985081137732053, 40.785921935110444],
+ [-73.985765660297517, 40.786196274858625],
+ [-73.985682871922506, 40.786309786213131],
+ [-73.985016964064968, 40.78601423719563],
+ [-73.984655078830215, 40.786534741807941],
+ [-73.985949561556779, 40.786487112961353],
+ [-73.985812373526514, 40.78661686535709],
+ [-73.984619429245299, 40.786586016349915],
+ [-73.971107658523039, 40.805790139676695],
+ [-73.966701068903021, 40.804168476937107],
+ [-73.959646854231522, 40.801156423256458]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 122,
+ "properties": {
+ "communityDistrict": 201,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/201"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.901292776271063, 40.820475442111587],
+ [-73.904465514767352, 40.812281959913648],
+ [-73.903417203736481, 40.811506882855625],
+ [-73.902193726873193, 40.804788693486444],
+ [-73.902445390708209, 40.804416954053934],
+ [-73.902927703310894, 40.804197291709094],
+ [-73.902709731025439, 40.804163663467193],
+ [-73.903059666675745, 40.80401743484979],
+ [-73.902973119450195, 40.80393677187098],
+ [-73.903732845816847, 40.803773296117768],
+ [-73.904529540295954, 40.803170235651315],
+ [-73.905521532406965, 40.802019954898519],
+ [-73.90652042213172, 40.801175510519741],
+ [-73.906389768214154, 40.801090791685809],
+ [-73.906585878338817, 40.801107478445942],
+ [-73.907470304367592, 40.800003457914848],
+ [-73.908073972556608, 40.799572819167203],
+ [-73.907682228008952, 40.79938831392527],
+ [-73.908102100342376, 40.799539646862854],
+ [-73.908026332767136, 40.799237872162117],
+ [-73.908421907680065, 40.799442092444927],
+ [-73.908550267423962, 40.799307425389479],
+ [-73.908255795003356, 40.799092868180558],
+ [-73.908303036082913, 40.798959135418059],
+ [-73.910892222653445, 40.79701779503629],
+ [-73.911622858662753, 40.796641078496641],
+ [-73.913722559735774, 40.796789438758658],
+ [-73.919049787638059, 40.798993935686994],
+ [-73.920240681588737, 40.799613687870277],
+ [-73.921327307785148, 40.801284591631394],
+ [-73.92292710065783, 40.802373294642848],
+ [-73.924227068411582, 40.802545011358092],
+ [-73.926657947884891, 40.802409803914657],
+ [-73.927627886588482, 40.802695665481544],
+ [-73.927282719436022, 40.803508264417026],
+ [-73.927645003525768, 40.803988632846064],
+ [-73.928367187945426, 40.804032709664369],
+ [-73.928482992568547, 40.804193029073048],
+ [-73.928726074898293, 40.804103625227249],
+ [-73.93051758839178, 40.806590563566793],
+ [-73.931845644930434, 40.807855845481392],
+ [-73.932527087859782, 40.808823281775332],
+ [-73.932594344671415, 40.810053158827223],
+ [-73.93286397083277, 40.810124437388467],
+ [-73.932874120019648, 40.810414043428949],
+ [-73.932565033020694, 40.81088597518967],
+ [-73.932632292551958, 40.811904622263199],
+ [-73.932365641826237, 40.815032964874703],
+ [-73.932389713250288, 40.819502847336764],
+ [-73.930315050305069, 40.81931688055203],
+ [-73.925184864635582, 40.818012668874921],
+ [-73.922652612397059, 40.820494315281039],
+ [-73.917565994430134, 40.823883672432409],
+ [-73.911816157567358, 40.82203502241245],
+ [-73.909908941380024, 40.822551107614807],
+ [-73.901292776271063, 40.820475442111587]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 123,
+ "properties": {
+ "communityDistrict": 209,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/209"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.83979488496, 40.835619207491888],
+ [-73.839614872384587, 40.835610568868297],
+ [-73.839594376454642, 40.835088907192976],
+ [-73.839457837975857, 40.835006105691932],
+ [-73.839619931150352, 40.834800981937406],
+ [-73.839476939168577, 40.834817305076641],
+ [-73.839604564749521, 40.834730151287012],
+ [-73.839412203108751, 40.834600065107395],
+ [-73.839592667550377, 40.834560475645532],
+ [-73.839591084522908, 40.834041688090572],
+ [-73.839920484787982, 40.833320794296881],
+ [-73.841817259121115, 40.831726193654625],
+ [-73.842213346646943, 40.83155050727715],
+ [-73.842758842937798, 40.830818484142796],
+ [-73.843106915999044, 40.829794139319844],
+ [-73.843033946085498, 40.828934984940972],
+ [-73.842533257309427, 40.827527304148425],
+ [-73.84044970382466, 40.823345566497551],
+ [-73.840466034599956, 40.823080023582847],
+ [-73.84001752995961, 40.822190242120335],
+ [-73.839829262416927, 40.821571501496017],
+ [-73.840100692020158, 40.820322761728583],
+ [-73.839998604735769, 40.819934946813973],
+ [-73.840289119450148, 40.819807704051264],
+ [-73.840365285256141, 40.819577750024223],
+ [-73.84198684834044, 40.818774373908134],
+ [-73.842093663118547, 40.818059542951573],
+ [-73.843063790337368, 40.816558645026703],
+ [-73.843169927637206, 40.816051055013368],
+ [-73.8437405300036, 40.81532169954199],
+ [-73.845280192365593, 40.811778116745614],
+ [-73.845765617022266, 40.811582278841961],
+ [-73.846173029381987, 40.810676664431305],
+ [-73.847196845757921, 40.810580487615042],
+ [-73.848214865817411, 40.812462909499146],
+ [-73.849385562141237, 40.813236865345893],
+ [-73.85041066820115, 40.81358402388846],
+ [-73.851144722607017, 40.814396548875912],
+ [-73.85246819393376, 40.814279207419247],
+ [-73.852424036273135, 40.814420084234889],
+ [-73.852911775018583, 40.814500996711516],
+ [-73.85281883014774, 40.814335174743924],
+ [-73.852650133356335, 40.814363146473582],
+ [-73.852612625192691, 40.813962582840212],
+ [-73.85288616298557, 40.813881712529501],
+ [-73.852869369427395, 40.813692824922938],
+ [-73.853368578688219, 40.813593903136272],
+ [-73.854346556511203, 40.813863857914924],
+ [-73.855146953815861, 40.814368994297212],
+ [-73.85538030243687, 40.814288882082693],
+ [-73.854430755965979, 40.813717919069752],
+ [-73.853467740585231, 40.813477711608591],
+ [-73.852557394349276, 40.813735334655156],
+ [-73.851199977251852, 40.813553144376137],
+ [-73.849650104501109, 40.812751881768762],
+ [-73.849145066175723, 40.812298793608875],
+ [-73.849063018500431, 40.811905358232018],
+ [-73.849384203219699, 40.811287074768423],
+ [-73.849173584248518, 40.810924340783991],
+ [-73.849798045881656, 40.810032877885895],
+ [-73.849908923063083, 40.809660122089376],
+ [-73.849760116340775, 40.809645213220442],
+ [-73.84991938701836, 40.809626665926835],
+ [-73.850017101925488, 40.809330656289035],
+ [-73.849846625180774, 40.80925232875299],
+ [-73.850042416129057, 40.809215408487617],
+ [-73.849967328392367, 40.808875512453525],
+ [-73.849728654247841, 40.808875111639665],
+ [-73.849951169380105, 40.80871472017219],
+ [-73.84955076934942, 40.808720867510871],
+ [-73.849953556063809, 40.808693406076351],
+ [-73.84996696802817, 40.808578018843605],
+ [-73.849611664865293, 40.808124185052037],
+ [-73.848760076798399, 40.808337457792156],
+ [-73.848709624793486, 40.808240469916427],
+ [-73.849522182567355, 40.808055277720193],
+ [-73.848416409616519, 40.807368775795304],
+ [-73.848280240182973, 40.806852405047685],
+ [-73.848379536552727, 40.806360186333677],
+ [-73.847536219755952, 40.805926402795144],
+ [-73.847488226419102, 40.805448909149128],
+ [-73.847902986527416, 40.805002179397242],
+ [-73.84864784606215, 40.804699371480325],
+ [-73.848743172128536, 40.804896259686096],
+ [-73.848946040059957, 40.804762168994685],
+ [-73.849333823079363, 40.805051218261745],
+ [-73.84941036337716, 40.804667976275596],
+ [-73.849428526615696, 40.80505982813969],
+ [-73.849821071838477, 40.805094430843432],
+ [-73.849977227091827, 40.805059594981849],
+ [-73.850198391025572, 40.804510024974768],
+ [-73.852049225994875, 40.804599116241],
+ [-73.855388793111914, 40.804464427294199],
+ [-73.856051629336477, 40.804587429683878],
+ [-73.856618134363202, 40.804865571163745],
+ [-73.85639785205899, 40.804946835713338],
+ [-73.855690470982694, 40.804676566078065],
+ [-73.855563584999615, 40.80478499633314],
+ [-73.855604970397252, 40.805062157034875],
+ [-73.856125425632001, 40.80528168175335],
+ [-73.857244919884621, 40.805307238618639],
+ [-73.856675797244193, 40.804995370824194],
+ [-73.856834210245594, 40.80490927021274],
+ [-73.858890375022725, 40.805889491177751],
+ [-73.858826432391083, 40.805993192722482],
+ [-73.858505600391553, 40.805819542792754],
+ [-73.858314877070782, 40.805998591012155],
+ [-73.858611919672356, 40.806697513538531],
+ [-73.858934717264304, 40.80667435866588],
+ [-73.859084758526691, 40.806480218163472],
+ [-73.858877094031868, 40.805988508100747],
+ [-73.859195450244769, 40.806269877829692],
+ [-73.859366023323204, 40.806675683207786],
+ [-73.859401919202014, 40.807529591337229],
+ [-73.859257752760755, 40.807542673007745],
+ [-73.859158681488196, 40.806878974649152],
+ [-73.858665051691915, 40.806832751495591],
+ [-73.858389962288143, 40.808258809148768],
+ [-73.858774526546384, 40.809233974632939],
+ [-73.858951412879222, 40.810271417587316],
+ [-73.859076625664173, 40.809975558102082],
+ [-73.860126952355841, 40.809605499891248],
+ [-73.859540598624804, 40.809019702446314],
+ [-73.859329192961795, 40.808996540576238],
+ [-73.859389820729248, 40.808163768341295],
+ [-73.859822304348342, 40.809113247471963],
+ [-73.860659658139397, 40.809631903060605],
+ [-73.864403333796247, 40.810275985935014],
+ [-73.867656462844678, 40.810583761937146],
+ [-73.869769558500366, 40.813423699757152],
+ [-73.870778048859364, 40.814486895487775],
+ [-73.8717160645012, 40.814922335490174],
+ [-73.876519960997811, 40.816131063424834],
+ [-73.876634599637072, 40.815711508099156],
+ [-73.878062832621268, 40.816182632444068],
+ [-73.882447795528904, 40.819268322511505],
+ [-73.884294881451382, 40.822718204764747],
+ [-73.884646026497066, 40.823823537474574],
+ [-73.884387053537296, 40.826817283532826],
+ [-73.883784141345714, 40.828274292462368],
+ [-73.885088387643762, 40.828156821266326],
+ [-73.885783262303434, 40.82789690839796],
+ [-73.885423176302581, 40.830116849951096],
+ [-73.885097701531322, 40.831152824784617],
+ [-73.884246295471797, 40.832592072106017],
+ [-73.881935889571224, 40.835462124985533],
+ [-73.880720815142809, 40.837521264519715],
+ [-73.877890467801038, 40.836689568962683],
+ [-73.873773088060872, 40.836358751438269],
+ [-73.872772046585297, 40.839751282336003],
+ [-73.870214507449845, 40.8396179421215],
+ [-73.870094731821638, 40.839245704964],
+ [-73.867822581813499, 40.840166499016853],
+ [-73.86347232379066, 40.841305932707215],
+ [-73.853335249420454, 40.84247015515475],
+ [-73.851684597478283, 40.834201052350295],
+ [-73.83979488496, 40.835619207491888]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 124,
+ "properties": {
+ "communityDistrict": 407,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/407"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.770609744548594, 40.782079793940667],
+ [-73.775598853663681, 40.779323365621018],
+ [-73.775839583323403, 40.778612372112015],
+ [-73.791635260664592, 40.774238655585854],
+ [-73.792712593167664, 40.773787527360469],
+ [-73.792167893840372, 40.770976689467666],
+ [-73.793439911464574, 40.760764127961266],
+ [-73.792375179985399, 40.75307044775694],
+ [-73.794577269899989, 40.753563011339054],
+ [-73.794815314152785, 40.748422226715448],
+ [-73.794458691576153, 40.745436953712691],
+ [-73.794535073550804, 40.744507638214664],
+ [-73.79543059287569, 40.743264290405541],
+ [-73.797230850381595, 40.741695506635992],
+ [-73.797256707929805, 40.740213043295192],
+ [-73.796292972916092, 40.738552306431508],
+ [-73.79672497858914, 40.738416642621935],
+ [-73.796439400484999, 40.738438947644617],
+ [-73.796402186404435, 40.738282357687652],
+ [-73.798220589933877, 40.738174630696257],
+ [-73.814073820424952, 40.738780902078872],
+ [-73.815935942273825, 40.739127860871264],
+ [-73.825373876673737, 40.742232240499355],
+ [-73.824811784878335, 40.739630959900524],
+ [-73.824974399919341, 40.739440426756168],
+ [-73.825590303232616, 40.739447592295349],
+ [-73.825853683416867, 40.739123780146976],
+ [-73.826867464523616, 40.73862891215893],
+ [-73.827943602841955, 40.738489982440825],
+ [-73.82809152577299, 40.737083175272865],
+ [-73.829467519970137, 40.737024482753384],
+ [-73.83053551231437, 40.737520194763206],
+ [-73.831430254382042, 40.739135733128357],
+ [-73.831131227778442, 40.742338000406534],
+ [-73.835861318721328, 40.743227984538507],
+ [-73.83595071525383, 40.743730569104294],
+ [-73.835675539474607, 40.744850518062684],
+ [-73.834690426199643, 40.746902697785934],
+ [-73.83513889924977, 40.747160372591594],
+ [-73.834733311313599, 40.748287335526548],
+ [-73.834787361300471, 40.749458289450487],
+ [-73.835080493039897, 40.750153225254117],
+ [-73.837989212642583, 40.754515042982305],
+ [-73.840581316336156, 40.753618746290755],
+ [-73.840572749452335, 40.753779619146016],
+ [-73.840847999142554, 40.753913221699101],
+ [-73.840692373355125, 40.754121978192046],
+ [-73.840662690255201, 40.755208812717377],
+ [-73.839746278511527, 40.755921121043762],
+ [-73.839510493379223, 40.756416007711444],
+ [-73.839060075881889, 40.756665549076821],
+ [-73.839123298415657, 40.756828062269051],
+ [-73.843243813565991, 40.755336803767008],
+ [-73.845852358104509, 40.760455397694045],
+ [-73.843716577998109, 40.761739001439047],
+ [-73.842395698824348, 40.762214199018139],
+ [-73.841224044254048, 40.762300299826371],
+ [-73.839253657660919, 40.761908062372001],
+ [-73.839981248329821, 40.763438746487431],
+ [-73.840022202075062, 40.764232465541603],
+ [-73.839834259423796, 40.765070408822069],
+ [-73.840625628830807, 40.764023419892112],
+ [-73.841965988319444, 40.763597940528236],
+ [-73.842613122634532, 40.764682989692886],
+ [-73.840526355456106, 40.765387989198423],
+ [-73.839578268535462, 40.765252322973012],
+ [-73.839131891973182, 40.765991105567409],
+ [-73.839526787139377, 40.766139549726503],
+ [-73.839697725490865, 40.766392677045367],
+ [-73.839733868068635, 40.766734414653186],
+ [-73.839498058619171, 40.767017016985626],
+ [-73.839939221774685, 40.767064277147341],
+ [-73.839901909134525, 40.766824158414025],
+ [-73.840311703152864, 40.766294797898368],
+ [-73.844488958842049, 40.765459602583931],
+ [-73.845281635415873, 40.765666119482518],
+ [-73.846200240379503, 40.766196343166378],
+ [-73.847230679761552, 40.766313158095699],
+ [-73.847805751044291, 40.766772948171663],
+ [-73.848566972051458, 40.768090907199912],
+ [-73.848301382658505, 40.768430440607276],
+ [-73.848835223817204, 40.768752302094036],
+ [-73.84901287145172, 40.76921530435213],
+ [-73.848601014253589, 40.769817824882757],
+ [-73.84872999189102, 40.769989541779182],
+ [-73.848927243433721, 40.769914788361568],
+ [-73.848817810956149, 40.769738054635809],
+ [-73.84950427178488, 40.76951022388225],
+ [-73.849774078593185, 40.769936012943802],
+ [-73.849075512612544, 40.77019356377096],
+ [-73.848992744326466, 40.770028680072748],
+ [-73.848726718904402, 40.770106189089653],
+ [-73.848586643045735, 40.770504249905002],
+ [-73.848671529349573, 40.770761572903353],
+ [-73.849494027118652, 40.771328616815438],
+ [-73.849942418829784, 40.77192719325987],
+ [-73.850303975165758, 40.771938199590359],
+ [-73.850338088185254, 40.771743668538754],
+ [-73.851301084405819, 40.77180636079845],
+ [-73.851270376207097, 40.771985534743564],
+ [-73.850361465963132, 40.771830745648693],
+ [-73.850334105693776, 40.772017605255563],
+ [-73.849951625834152, 40.771958298877898],
+ [-73.849869024119187, 40.772183062008224],
+ [-73.85004065546363, 40.772224600554921],
+ [-73.849839583776784, 40.772231002867429],
+ [-73.84957161022011, 40.772561103831613],
+ [-73.84897619933308, 40.773561667957807],
+ [-73.849216780975567, 40.77463958213896],
+ [-73.84893873474762, 40.775560358480696],
+ [-73.849116366639393, 40.775787518870267],
+ [-73.848968025446965, 40.778022212691553],
+ [-73.849367616269276, 40.778168680728108],
+ [-73.849535865963404, 40.77842588555707],
+ [-73.8497474142047, 40.778414054006049],
+ [-73.849536646905577, 40.778457620289842],
+ [-73.849469048461657, 40.778663783211698],
+ [-73.849933532961757, 40.778769123380989],
+ [-73.849800881783096, 40.778793284828531],
+ [-73.849781143163483, 40.779111930042752],
+ [-73.849571554537008, 40.779192836707068],
+ [-73.849639689991591, 40.77948327517759],
+ [-73.851487555466591, 40.778992977613228],
+ [-73.851013396194176, 40.779121956674338],
+ [-73.851079460828572, 40.779297757683999],
+ [-73.850140173819483, 40.779390986926551],
+ [-73.849793043476282, 40.77949768469491],
+ [-73.849817200660084, 40.779630348054148],
+ [-73.852352678815222, 40.779480671828182],
+ [-73.852356619362538, 40.779169330522301],
+ [-73.85238832844523, 40.779528902387767],
+ [-73.849821023258698, 40.779651339304756],
+ [-73.849843629104512, 40.779775474920079],
+ [-73.84956325207466, 40.779879082167099],
+ [-73.849740181069777, 40.780040450022895],
+ [-73.850314739577399, 40.780041536004077],
+ [-73.850456559655868, 40.779888279912882],
+ [-73.851690280854342, 40.779867508478162],
+ [-73.851670991622385, 40.780035228878113],
+ [-73.849493812744313, 40.780065828115049],
+ [-73.849889320817937, 40.781089134798421],
+ [-73.850936463965397, 40.781119575155998],
+ [-73.849887280637518, 40.781121511316854],
+ [-73.849836600803982, 40.781599624917121],
+ [-73.849187094184657, 40.781641811549498],
+ [-73.849547742659965, 40.781841078342701],
+ [-73.849246760463643, 40.782256365322503],
+ [-73.850285208823976, 40.782459450176489],
+ [-73.853149930691771, 40.782323936276157],
+ [-73.853223310161695, 40.782060533865852],
+ [-73.853679740950611, 40.781985742044249],
+ [-73.85528242786593, 40.781975384349899],
+ [-73.855450628349217, 40.783143079138334],
+ [-73.856452066617564, 40.783322990816075],
+ [-73.85643993663156, 40.783157516967002],
+ [-73.856676908933323, 40.783150088162067],
+ [-73.856649510906081, 40.782892319276414],
+ [-73.856841290146718, 40.783371363485166],
+ [-73.857340523168361, 40.783371270586187],
+ [-73.857612233528357, 40.783611870504132],
+ [-73.858083181033209, 40.783724078841665],
+ [-73.858125027092314, 40.784188151814746],
+ [-73.857831054503677, 40.784442088339411],
+ [-73.857976856086538, 40.784678164568909],
+ [-73.858526985935967, 40.78522893917453],
+ [-73.858991560509054, 40.785204169142432],
+ [-73.859095000083656, 40.785438748851469],
+ [-73.859036289738384, 40.785092722779517],
+ [-73.859110497986705, 40.78544258469838],
+ [-73.859529092635768, 40.785530559529683],
+ [-73.858990489374762, 40.785491598431115],
+ [-73.859124612237181, 40.785850159663262],
+ [-73.858588405085584, 40.786148140153834],
+ [-73.858682833500779, 40.786531166475243],
+ [-73.85812817092382, 40.787051561057432],
+ [-73.856811337654833, 40.786672613697149],
+ [-73.856200203811994, 40.787150099959781],
+ [-73.856172757866574, 40.787493219875678],
+ [-73.855958689791663, 40.78767517877457],
+ [-73.853451844613389, 40.787826112298845],
+ [-73.85284230067748, 40.788211371739067],
+ [-73.852889902611878, 40.788346670054672],
+ [-73.854383647885811, 40.788320128763019],
+ [-73.854801947993295, 40.788619154726753],
+ [-73.854471941373546, 40.790258975320413],
+ [-73.852658306930493, 40.791106420610326],
+ [-73.85285879649112, 40.791533785514233],
+ [-73.853778549768336, 40.792421274007893],
+ [-73.853630801660074, 40.793098182710629],
+ [-73.853733516600769, 40.793935374086779],
+ [-73.852766271986155, 40.794389246824153],
+ [-73.852630982562445, 40.79494485424469],
+ [-73.852426512229769, 40.794609758821004],
+ [-73.851590771574635, 40.794086530575285],
+ [-73.849061608350866, 40.793362610298466],
+ [-73.848848947231119, 40.793501685658299],
+ [-73.849078147957272, 40.794145384480792],
+ [-73.848783702199185, 40.794542102226124],
+ [-73.848876545633445, 40.795134041691234],
+ [-73.848559887389811, 40.795495060218315],
+ [-73.846245284724603, 40.796161950667937],
+ [-73.845591671224113, 40.796011819025679],
+ [-73.845616063245217, 40.795845718962205],
+ [-73.84528519601372, 40.795443390379127],
+ [-73.844599150444338, 40.79491154987516],
+ [-73.84354668938991, 40.794913944010482],
+ [-73.843337608761246, 40.7950213869603],
+ [-73.843306323869186, 40.795500933488874],
+ [-73.843043639192814, 40.795214739011726],
+ [-73.842848653223911, 40.795213401671695],
+ [-73.843284972603371, 40.796174392685927],
+ [-73.842808752412253, 40.79541822241309],
+ [-73.842259593683465, 40.795584968937327],
+ [-73.842866752593693, 40.796922229071917],
+ [-73.842167473411379, 40.795612940163593],
+ [-73.841587212407788, 40.79540106821694],
+ [-73.841362872719557, 40.795619950695084],
+ [-73.841494093422881, 40.795981889206381],
+ [-73.841299436121076, 40.796219669330895],
+ [-73.840599822946189, 40.796806803210544],
+ [-73.840139303644605, 40.796879187836097],
+ [-73.840415179758367, 40.797678437258718],
+ [-73.839209483241063, 40.797844314353952],
+ [-73.838429158291646, 40.79837567115333],
+ [-73.837899675038472, 40.798508970181459],
+ [-73.839190047271885, 40.797777266447611],
+ [-73.840258608091361, 40.797588858432142],
+ [-73.839970996561817, 40.79690564189314],
+ [-73.839036768125226, 40.797052476075621],
+ [-73.838400830779619, 40.796755258306845],
+ [-73.837064988802695, 40.793851098426181],
+ [-73.836531873247097, 40.791743432405688],
+ [-73.836944768689918, 40.791471487535276],
+ [-73.837423294473723, 40.791392837918551],
+ [-73.837645659937252, 40.791035553077037],
+ [-73.837503588835887, 40.790461660725455],
+ [-73.836818149570433, 40.790469906359753],
+ [-73.837481914032395, 40.790434497921744],
+ [-73.837175445350439, 40.789427313316381],
+ [-73.837280397869819, 40.789009701079053],
+ [-73.837134329895235, 40.789564033014251],
+ [-73.836378095721429, 40.789460178689588],
+ [-73.835680220690307, 40.789574917568324],
+ [-73.835331502420871, 40.789212742716849],
+ [-73.834135665874086, 40.789066136552336],
+ [-73.833795481099003, 40.788517169043637],
+ [-73.832929372375446, 40.788518114204102],
+ [-73.832161006323432, 40.78875008316119],
+ [-73.8317543370473, 40.789228593368215],
+ [-73.831435487383104, 40.789184434996315],
+ [-73.831951184637305, 40.789414772132154],
+ [-73.83214871934797, 40.790033244852225],
+ [-73.831660809278659, 40.791102591159721],
+ [-73.830962697072948, 40.79157601668993],
+ [-73.829740376982727, 40.791630426993052],
+ [-73.828366576486047, 40.792395419557337],
+ [-73.829278509993003, 40.792890607834508],
+ [-73.829228575339457, 40.793019340410822],
+ [-73.828291552995609, 40.792514245960611],
+ [-73.827986333992598, 40.792770064606167],
+ [-73.827808956475792, 40.793197349396237],
+ [-73.828013723559152, 40.794932408769959],
+ [-73.828412798224718, 40.795613368288926],
+ [-73.82878010953813, 40.795917923947407],
+ [-73.828809629429557, 40.79618376840105],
+ [-73.829131269485259, 40.796293620543011],
+ [-73.829459915343648, 40.79682336759145],
+ [-73.829058642578872, 40.796562114135249],
+ [-73.827417688314583, 40.796789017823762],
+ [-73.826970915106529, 40.797128277689581],
+ [-73.827173656011894, 40.797622201316223],
+ [-73.826738561666872, 40.797796245452957],
+ [-73.826148569285564, 40.797415985003013],
+ [-73.82514036020433, 40.797341446769124],
+ [-73.824035932507186, 40.798079662716781],
+ [-73.824027844848217, 40.798361183208733],
+ [-73.823859483847031, 40.798154135104639],
+ [-73.823433235169389, 40.798406514408839],
+ [-73.823679836938609, 40.798769946499498],
+ [-73.823408723760195, 40.79841781429694],
+ [-73.823107696683678, 40.798613103772752],
+ [-73.823305524314463, 40.79896286611951],
+ [-73.823002630366972, 40.798642289724974],
+ [-73.822599356172731, 40.798901842475743],
+ [-73.822777278828298, 40.799320221378984],
+ [-73.822519165220186, 40.798987735690247],
+ [-73.822412270047423, 40.7990889137536],
+ [-73.822621745567645, 40.799407808072161],
+ [-73.822387546704931, 40.79911289157257],
+ [-73.821617892453119, 40.799991987693772],
+ [-73.820980719504206, 40.800478109129173],
+ [-73.820432460327794, 40.800627864422097],
+ [-73.820528107884215, 40.801006023868062],
+ [-73.820404549272368, 40.800639500292434],
+ [-73.81982823872157, 40.800994874895359],
+ [-73.817404298767144, 40.799299019784989],
+ [-73.816516397931963, 40.799024946483875],
+ [-73.816026039327426, 40.798532968334015],
+ [-73.813679075670606, 40.797545787909854],
+ [-73.813699637252583, 40.797079415665095],
+ [-73.813420504158501, 40.797693020410584],
+ [-73.81349350368555, 40.797058380377678],
+ [-73.813159963843049, 40.797197536205587],
+ [-73.813052794699345, 40.797455018850862],
+ [-73.812933696741212, 40.797426008096757],
+ [-73.813042876218546, 40.797178205752161],
+ [-73.812883864524736, 40.797166565226973],
+ [-73.812547989085431, 40.798047064458387],
+ [-73.812241845382346, 40.798125827928871],
+ [-73.811778383213124, 40.798025053453358],
+ [-73.811609382684438, 40.79737240944452],
+ [-73.806363314525754, 40.796393605437665],
+ [-73.80623135012371, 40.796817477582806],
+ [-73.806330767146676, 40.796392740435969],
+ [-73.805876262845771, 40.796472983430377],
+ [-73.805395733411117, 40.796170821514451],
+ [-73.805349801604976, 40.796317851318854],
+ [-73.805339444875742, 40.796163928288756],
+ [-73.804671737687841, 40.796167469163997],
+ [-73.804634377532864, 40.796438088956208],
+ [-73.804648739768467, 40.796159195983073],
+ [-73.804348259354057, 40.796214090992727],
+ [-73.8042735368103, 40.796641261329512],
+ [-73.804311386999345, 40.796212876160027],
+ [-73.804165356428669, 40.796229008776791],
+ [-73.804122185003791, 40.796528819706573],
+ [-73.804136447669748, 40.796234231177763],
+ [-73.803958230643701, 40.796557359017989],
+ [-73.803974189250823, 40.796278255919646],
+ [-73.803817167946974, 40.796630193236602],
+ [-73.803822941960092, 40.796335012840956],
+ [-73.803643015091595, 40.796406085507577],
+ [-73.803612508110973, 40.796684393153988],
+ [-73.803612885465625, 40.796420856820511],
+ [-73.8033499636296, 40.796713026429984],
+ [-73.80299970742962, 40.796708836095306],
+ [-73.802949251602215, 40.79640492955587],
+ [-73.80226038840371, 40.796262208350242],
+ [-73.801779477645411, 40.796316141853715],
+ [-73.80174543088819, 40.796512405600375],
+ [-73.80175550251785, 40.796321295918013],
+ [-73.801011262305948, 40.796522374589586],
+ [-73.80086307346707, 40.79633253590832],
+ [-73.80062184740089, 40.796426762360454],
+ [-73.800256629358515, 40.796260149266509],
+ [-73.800083502033871, 40.79662756747463],
+ [-73.80018235388124, 40.796266913696812],
+ [-73.799680679004069, 40.796174502706407],
+ [-73.799605482925116, 40.796332220605656],
+ [-73.798111080452145, 40.795605888565298],
+ [-73.797898327533488, 40.795559220917838],
+ [-73.797669940750026, 40.795993822382876],
+ [-73.797870149147144, 40.795552012141329],
+ [-73.79673567726374, 40.795208942919189],
+ [-73.796434387376678, 40.795736429856461],
+ [-73.796705875622109, 40.795197625951801],
+ [-73.794610981483515, 40.794929735526082],
+ [-73.794428447952086, 40.794806810348391],
+ [-73.794582981846446, 40.794763111619666],
+ [-73.794380224845824, 40.794177354392041],
+ [-73.794609071902912, 40.793913303477716],
+ [-73.794950771024517, 40.791774200640717],
+ [-73.793751265502337, 40.789061933340136],
+ [-73.793380335049932, 40.789578392620584],
+ [-73.79323941781152, 40.789530249703802],
+ [-73.793620072760206, 40.788996637749811],
+ [-73.792806695804572, 40.788783046246159],
+ [-73.792352911541528, 40.788906841809926],
+ [-73.790282023532058, 40.790316963399782],
+ [-73.785681013014056, 40.790340671659976],
+ [-73.783838425143543, 40.790640954671538],
+ [-73.782530806635236, 40.791276789431919],
+ [-73.784341530595952, 40.791749353794799],
+ [-73.782273301833897, 40.791373715717981],
+ [-73.781747088292278, 40.791133406645741],
+ [-73.781078459702229, 40.791677321779048],
+ [-73.780775031390178, 40.792990705340529],
+ [-73.780839490143194, 40.793277440172815],
+ [-73.781588815450164, 40.7934635410125],
+ [-73.7816386419167, 40.793309707766824],
+ [-73.781660115553905, 40.793482020313022],
+ [-73.780724350698364, 40.793333618824171],
+ [-73.780791820726506, 40.794035919864378],
+ [-73.781005396672953, 40.794384818627137],
+ [-73.781903854871686, 40.794901203895428],
+ [-73.783109769639708, 40.794914460505801],
+ [-73.783317966842645, 40.794758356474148],
+ [-73.783258762530366, 40.794923914800499],
+ [-73.782003261033807, 40.79497546250353],
+ [-73.781541500327478, 40.795659737319994],
+ [-73.779803051181958, 40.796205528937996],
+ [-73.779362468048291, 40.796685392534812],
+ [-73.778714788287317, 40.796597360197261],
+ [-73.778066629376013, 40.796738727304287],
+ [-73.776928178268562, 40.796469251526702],
+ [-73.776126281443581, 40.796061479534735],
+ [-73.774314374908954, 40.794425261346198],
+ [-73.774013534992974, 40.794030001360298],
+ [-73.773632481227907, 40.792749756213794],
+ [-73.772326482331891, 40.7914808246436],
+ [-73.772132928264625, 40.790178774334414],
+ [-73.770631245377743, 40.788462905032013],
+ [-73.770823150214255, 40.787982667059907],
+ [-73.771737563506662, 40.787463608911828],
+ [-73.774268361250904, 40.786756658656024],
+ [-73.774389768349096, 40.786857145296807],
+ [-73.774230114868587, 40.787065041675916],
+ [-73.775019226121813, 40.787394474382836],
+ [-73.776337288848453, 40.788487225755055],
+ [-73.774806953694153, 40.786970687278853],
+ [-73.774264666944347, 40.786651229145228],
+ [-73.774076382977881, 40.785917284019185],
+ [-73.771607319794867, 40.782996265185446],
+ [-73.770609744548594, 40.782079793940667]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 125,
+ "properties": {
+ "communityDistrict": 408,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/408"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.756703291674768, 40.726229432660404],
+ [-73.75409142333362, 40.724691905785285],
+ [-73.759500941502282, 40.721027372276801],
+ [-73.764469517897751, 40.718890392377823],
+ [-73.767332280868814, 40.717289796810576],
+ [-73.773571351684041, 40.71512009536869],
+ [-73.786160059249454, 40.712060071342577],
+ [-73.787846784799811, 40.711810833167561],
+ [-73.788434811837149, 40.711984687608989],
+ [-73.788472460251171, 40.712218530483391],
+ [-73.788688403626438, 40.712330032624834],
+ [-73.789012095879585, 40.712072709100696],
+ [-73.795616689618569, 40.70975307917503],
+ [-73.814439318654323, 40.70440215056346],
+ [-73.817097387564516, 40.704029801587659],
+ [-73.818285663457132, 40.706302850482075],
+ [-73.820452364596164, 40.709774548575126],
+ [-73.82363860711493, 40.712666644483171],
+ [-73.824717494276598, 40.714506849725737],
+ [-73.825890698681974, 40.715938526458785],
+ [-73.826325626110787, 40.717399930167879],
+ [-73.826142223373338, 40.719379527615928],
+ [-73.826212780826879, 40.720199243902556],
+ [-73.82662157445283, 40.721237069343253],
+ [-73.827690590644806, 40.72289294931705],
+ [-73.829051032179208, 40.724325708097204],
+ [-73.831717649745357, 40.726221681523349],
+ [-73.832861832220743, 40.727893443800951],
+ [-73.836127786102153, 40.734241312003135],
+ [-73.836356249845934, 40.735008592150187],
+ [-73.836744575851313, 40.738602570580063],
+ [-73.837679583556039, 40.741977252524684],
+ [-73.837683428075167, 40.743300339711446],
+ [-73.835915649418624, 40.743430893895997],
+ [-73.835861318721328, 40.743227984538507],
+ [-73.833825727327209, 40.742762421119849],
+ [-73.831131227778442, 40.742338000406534],
+ [-73.831430254382042, 40.739135733128357],
+ [-73.83053551231437, 40.737520194763206],
+ [-73.829467519970137, 40.737024482753384],
+ [-73.82809152577299, 40.737083175272865],
+ [-73.827943602841955, 40.738489982440825],
+ [-73.826867464523616, 40.73862891215893],
+ [-73.825853683416867, 40.739123780146976],
+ [-73.825590303232616, 40.739447592295349],
+ [-73.824974399919341, 40.739440426756168],
+ [-73.824811784878335, 40.739630959900524],
+ [-73.825373876673737, 40.742232240499355],
+ [-73.815935942273825, 40.739127860871264],
+ [-73.814073820424952, 40.738780902078872],
+ [-73.797292605542609, 40.738185428334184],
+ [-73.795337729222794, 40.738493672772748],
+ [-73.780366035437737, 40.742591663146563],
+ [-73.772414610026615, 40.743884845221935],
+ [-73.767729913594749, 40.745776225670049],
+ [-73.766878535967948, 40.744093579206236],
+ [-73.765568498107683, 40.743258154524618],
+ [-73.762486092774552, 40.736730981449632],
+ [-73.762733034679158, 40.7352621626722],
+ [-73.762495338772496, 40.734734559472997],
+ [-73.764709290881811, 40.734084854795164],
+ [-73.76369979170164, 40.732864116847814],
+ [-73.765643744656387, 40.732533126738993],
+ [-73.764350715262154, 40.73115119213589],
+ [-73.762342098391528, 40.729538290701278],
+ [-73.7578714145791, 40.727106851486425],
+ [-73.756703291674768, 40.726229432660404]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 126,
+ "properties": {
+ "communityDistrict": 481,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/481"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.835915649418624, 40.743430893895997],
+ [-73.837683428075167, 40.743300339711446],
+ [-73.837721719638623, 40.742366367753114],
+ [-73.836744575851313, 40.738602570580063],
+ [-73.836356249845934, 40.735008592150187],
+ [-73.836127786102153, 40.734241312003135],
+ [-73.832245221035535, 40.72682572097694],
+ [-73.831421586874313, 40.725964269605086],
+ [-73.828455836293145, 40.723786489157625],
+ [-73.82662157445283, 40.721237069343253],
+ [-73.826282550528305, 40.720467881605032],
+ [-73.826142397293751, 40.719653355516115],
+ [-73.826299440441844, 40.717111789626529],
+ [-73.826132714730804, 40.716437144630419],
+ [-73.825597163292713, 40.715514336939208],
+ [-73.82606003226816, 40.715399348602219],
+ [-73.82695834371026, 40.715935281893671],
+ [-73.830429023525909, 40.716962770431863],
+ [-73.831853055232642, 40.717912143304176],
+ [-73.832783460599714, 40.718802429439855],
+ [-73.83412823313644, 40.720230532396293],
+ [-73.836557629259431, 40.723373963168477],
+ [-73.839200938937779, 40.728266863029113],
+ [-73.84055003848917, 40.729844729907995],
+ [-73.84284582578421, 40.732067642742273],
+ [-73.843715762791177, 40.733225729946035],
+ [-73.844587070444092, 40.734879704222763],
+ [-73.845564478511534, 40.738002282360156],
+ [-73.846646527991808, 40.73861704635388],
+ [-73.847213615878815, 40.738643986683861],
+ [-73.847778442173137, 40.739344835748881],
+ [-73.847579807180352, 40.739721354438394],
+ [-73.847801646205241, 40.740049676962151],
+ [-73.850115566364181, 40.740723562798379],
+ [-73.854425752537722, 40.748851726381922],
+ [-73.850864397100324, 40.749995641874605],
+ [-73.852617253522425, 40.753405065527922],
+ [-73.85382000610656, 40.757185697572261],
+ [-73.852165079894235, 40.757459673296168],
+ [-73.852191168197322, 40.757566795357626],
+ [-73.852924766599486, 40.758711007572863],
+ [-73.853834400514302, 40.759426977806484],
+ [-73.854782737595954, 40.759848300268381],
+ [-73.855302660297895, 40.760649584249649],
+ [-73.854663663928022, 40.760171169561232],
+ [-73.853724039348421, 40.760246389137372],
+ [-73.852779285654833, 40.759972989616628],
+ [-73.851585529011857, 40.759355420656952],
+ [-73.850424378224886, 40.75950641103757],
+ [-73.849709083506298, 40.759838837957389],
+ [-73.849301108143379, 40.760242875349959],
+ [-73.849874844961491, 40.761103812948427],
+ [-73.851974129628715, 40.760249407381743],
+ [-73.852072001778481, 40.760392884672086],
+ [-73.84981162475141, 40.761270974008134],
+ [-73.849166624062661, 40.760296583785248],
+ [-73.848686556591531, 40.760138494105476],
+ [-73.843593612502019, 40.763370542787463],
+ [-73.843687876641269, 40.763612726083679],
+ [-73.843436287804707, 40.763432566193593],
+ [-73.843069612035563, 40.763592569152813],
+ [-73.843042408108317, 40.764321319920235],
+ [-73.842728193964845, 40.764628548931697],
+ [-73.84244022546055, 40.764504272993577],
+ [-73.841965988319444, 40.763597940528236],
+ [-73.840625628830807, 40.764023419892112],
+ [-73.839834259423796, 40.765070408822069],
+ [-73.840022202075062, 40.764232465541603],
+ [-73.839981248329821, 40.763438746487431],
+ [-73.839253657660919, 40.761908062372001],
+ [-73.841224044254048, 40.762300299826371],
+ [-73.842395698824348, 40.762214199018139],
+ [-73.843716577998109, 40.761739001439047],
+ [-73.845852358104509, 40.760455397694045],
+ [-73.843243813565991, 40.755336803767008],
+ [-73.839123298415657, 40.756828062269051],
+ [-73.839060075881889, 40.756665549076821],
+ [-73.839510493379223, 40.756416007711444],
+ [-73.839746278511527, 40.755921121043762],
+ [-73.840662690255201, 40.755208812717377],
+ [-73.840692373355125, 40.754121978192046],
+ [-73.840847999142554, 40.753913221699101],
+ [-73.840572749452335, 40.753779619146016],
+ [-73.840581316336156, 40.753618746290755],
+ [-73.837989212642583, 40.754515042982305],
+ [-73.835080493039897, 40.750153225254117],
+ [-73.834787361300471, 40.749458289450487],
+ [-73.834707080240747, 40.748631931767974],
+ [-73.834848409588332, 40.747792914629045],
+ [-73.83513889924977, 40.747160372591594],
+ [-73.834690426199643, 40.746902697785934],
+ [-73.835675539474607, 40.744850518062684],
+ [-73.835915649418624, 40.743430893895997]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 127,
+ "properties": {
+ "communityDistrict": 309,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/309"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.928722045946031, 40.664495569685258],
+ [-73.931602186067863, 40.663230444400178],
+ [-73.930903549322721, 40.656610355984142],
+ [-73.959696658630605, 40.654839214726195],
+ [-73.959861031131027, 40.655634789439297],
+ [-73.961880864397983, 40.65488119205223],
+ [-73.963069062239654, 40.662207859940246],
+ [-73.962428941590517, 40.663125207981075],
+ [-73.960955953876265, 40.663285054833999],
+ [-73.962575314326202, 40.671644198394539],
+ [-73.955269636547627, 40.67012490485407],
+ [-73.92834967165949, 40.668647194188125],
+ [-73.928722045946031, 40.664495569685258]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 128,
+ "properties": {
+ "communityDistrict": 355,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/355"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.962575314326202, 40.671644198394539],
+ [-73.960955953876265, 40.663285054833999],
+ [-73.962428941590517, 40.663125207981075],
+ [-73.963069062239654, 40.662207859940246],
+ [-73.961880864397983, 40.65488119205223],
+ [-73.971456203085324, 40.651140312462367],
+ [-73.972222286057303, 40.6510469517657],
+ [-73.974119534582783, 40.65769375242148],
+ [-73.974482340347052, 40.65833944977868],
+ [-73.979578700956395, 40.660853242153919],
+ [-73.980001138906843, 40.660757564209916],
+ [-73.980206450103537, 40.661105712448816],
+ [-73.979653534103278, 40.661243233730893],
+ [-73.97085440701143, 40.67186436527696],
+ [-73.970412894844742, 40.672593723023965],
+ [-73.97074859323223, 40.672638249975272],
+ [-73.971189312508415, 40.673135553750669],
+ [-73.971478291649149, 40.674103237677492],
+ [-73.97130682016514, 40.674889431905704],
+ [-73.970840412707744, 40.675386969787304],
+ [-73.969942563507274, 40.675468900880887],
+ [-73.96907731857624, 40.674839670814826],
+ [-73.968718221691745, 40.673924233914761],
+ [-73.968942063512657, 40.67288749127016],
+ [-73.968172958547754, 40.673029414357451],
+ [-73.966602780071014, 40.672797589726898],
+ [-73.962575314326202, 40.671644198394539]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 129,
+ "properties": {
+ "communityDistrict": 164,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/164"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.949231860729938, 40.7968730719466],
+ [-73.973014871761208, 40.764278879445193],
+ [-73.981512762813324, 40.767890167529167],
+ [-73.981443327542408, 40.768164458683223],
+ [-73.981679436393961, 40.76839013093614],
+ [-73.958172971038437, 40.800582541457338],
+ [-73.949231860729938, 40.7968730719466]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 130,
+ "properties": {
+ "communityDistrict": 301,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/301"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.924059097370503, 40.714111559644898],
+ [-73.922232946648109, 40.712854424853191],
+ [-73.921686635675101, 40.711894317397928],
+ [-73.921546016956825, 40.711043283534813],
+ [-73.920745196554748, 40.710529686490297],
+ [-73.926089300269695, 40.705679701161777],
+ [-73.933950929725427, 40.702674592697853],
+ [-73.941930788822305, 40.700725234695796],
+ [-73.957019931894408, 40.698973914349807],
+ [-73.962839637163441, 40.698038668339827],
+ [-73.962179780891731, 40.700220710101576],
+ [-73.967209620426217, 40.704255709153294],
+ [-73.968389336807874, 40.706829186746916],
+ [-73.969292963484961, 40.70709333109555],
+ [-73.969848648235356, 40.708003041687661],
+ [-73.969940881256278, 40.709310231405937],
+ [-73.969556795897248, 40.71029607081725],
+ [-73.970009532225248, 40.710453937627591],
+ [-73.969731236297619, 40.710512829442145],
+ [-73.969633999364191, 40.71066539565313],
+ [-73.9697502667848, 40.710832877727157],
+ [-73.969348948808317, 40.710960614786423],
+ [-73.969762803571356, 40.711172617759978],
+ [-73.969258121947675, 40.711162421246428],
+ [-73.969425981825339, 40.71147272512718],
+ [-73.969115353610121, 40.711511898978102],
+ [-73.968809342546137, 40.712256055474661],
+ [-73.96894455591719, 40.712426547720199],
+ [-73.968795809314557, 40.712737038853582],
+ [-73.968469733470428, 40.71282470934613],
+ [-73.968499274458566, 40.71310284084992],
+ [-73.968842290502749, 40.713223925021602],
+ [-73.967244043489757, 40.716585349916322],
+ [-73.967113542899298, 40.716897539103933],
+ [-73.967267983560447, 40.716985740955586],
+ [-73.96659690266641, 40.717967980887437],
+ [-73.967307414744155, 40.71831306668156],
+ [-73.967182436972962, 40.718483056301764],
+ [-73.96706867689133, 40.718439036293866],
+ [-73.967151011065539, 40.71831612593224],
+ [-73.966531175651781, 40.718032127098624],
+ [-73.9658789353267, 40.718755077686396],
+ [-73.96662993360907, 40.719132427860877],
+ [-73.966543446305494, 40.719222942469457],
+ [-73.965858471751758, 40.718773228346457],
+ [-73.965525773331521, 40.718900892712249],
+ [-73.965153859760392, 40.719269683047351],
+ [-73.96554693084714, 40.719659198690835],
+ [-73.965374310617179, 40.720093633066867],
+ [-73.965137135622882, 40.720343594754155],
+ [-73.964463861803665, 40.720064662999889],
+ [-73.964356061313552, 40.72016300359865],
+ [-73.964682836412777, 40.72047045735993],
+ [-73.964350905740957, 40.720404032371697],
+ [-73.964087691478667, 40.720755529522236],
+ [-73.96504914549368, 40.721357344251757],
+ [-73.964894220979659, 40.721475120882218],
+ [-73.96399793658405, 40.72093843807253],
+ [-73.963538553484597, 40.721573378514123],
+ [-73.962965663369587, 40.722034477122676],
+ [-73.962072719438567, 40.723880300905492],
+ [-73.962471951129032, 40.724174989273486],
+ [-73.962007447990146, 40.723991901607768],
+ [-73.961894267121849, 40.724106702101054],
+ [-73.961659843013464, 40.724860454463034],
+ [-73.962114615668355, 40.72514806339889],
+ [-73.961902396431299, 40.725320500811073],
+ [-73.961536793587229, 40.725108918349491],
+ [-73.961163663684175, 40.725264605830894],
+ [-73.960432302406105, 40.725114108660506],
+ [-73.958330782269087, 40.72441170076614],
+ [-73.958039167416644, 40.724427440878614],
+ [-73.957941834894953, 40.724649202699865],
+ [-73.957950962792992, 40.725036439168612],
+ [-73.958351771449216, 40.725198057301952],
+ [-73.95842611909984, 40.725400535832364],
+ [-73.960124971993039, 40.725319636637117],
+ [-73.960285449442097, 40.725948122412944],
+ [-73.96161518835936, 40.725865563074024],
+ [-73.96161716963762, 40.72666142199099],
+ [-73.960996408416563, 40.728769125583263],
+ [-73.961431876117715, 40.730965171647625],
+ [-73.961716145120263, 40.731569917443444],
+ [-73.961909477178594, 40.731651374500011],
+ [-73.962263404232957, 40.732915551623478],
+ [-73.963677260131689, 40.732920073981035],
+ [-73.963661225696498, 40.732798506484301],
+ [-73.964030991366371, 40.73275793875959],
+ [-73.964088219002377, 40.732919099545029],
+ [-73.962304080110698, 40.733114091410627],
+ [-73.962355059552436, 40.733713260621464],
+ [-73.962090344499103, 40.7345079978736],
+ [-73.960467480762475, 40.736399644850124],
+ [-73.959191076228649, 40.737539116286747],
+ [-73.956918200096553, 40.738888914787999],
+ [-73.954663215000195, 40.73912795313435],
+ [-73.952923557241817, 40.738934942395183],
+ [-73.95046458346593, 40.73830958079531],
+ [-73.946523528547857, 40.736926853958146],
+ [-73.94645392267347, 40.736809590461142],
+ [-73.947199833010473, 40.735355178113807],
+ [-73.947065329153872, 40.734401992819222],
+ [-73.946598067073523, 40.734442224347262],
+ [-73.946736923406988, 40.735294943719829],
+ [-73.946929027374708, 40.735313140683722],
+ [-73.946626637866245, 40.735865585167396],
+ [-73.946443101402551, 40.735813184455999],
+ [-73.94617195815438, 40.73620288877391],
+ [-73.945873106289611, 40.736101831258438],
+ [-73.945570485232892, 40.736612303910718],
+ [-73.944999089555594, 40.736436693712911],
+ [-73.945254922795627, 40.735892789003742],
+ [-73.94518507247389, 40.735479152678096],
+ [-73.94503299031922, 40.735428615683325],
+ [-73.944520087357361, 40.736283654181612],
+ [-73.943213476529465, 40.735790530016118],
+ [-73.942394436084996, 40.735425749947829],
+ [-73.941545668324494, 40.734734335934768],
+ [-73.940997465999175, 40.733790485555772],
+ [-73.941156158094145, 40.733748909609844],
+ [-73.941038433408494, 40.733488260203302],
+ [-73.940568689302509, 40.733058494257641],
+ [-73.940684916674059, 40.733017077124842],
+ [-73.940366589529503, 40.732212586914791],
+ [-73.939813225593824, 40.731152688911699],
+ [-73.938103349606649, 40.729728519521316],
+ [-73.936931247998686, 40.729108091265545],
+ [-73.934929264579367, 40.728543915753342],
+ [-73.932004204538131, 40.728145082893441],
+ [-73.929580206908796, 40.72761282070865],
+ [-73.928494185401618, 40.726614603307858],
+ [-73.927871724050249, 40.725854051197643],
+ [-73.927796501041854, 40.724925668211021],
+ [-73.925614705166225, 40.720061662212423],
+ [-73.924817989436974, 40.720265137475288],
+ [-73.924538550518534, 40.719342580204902],
+ [-73.924702278071138, 40.718688304100596],
+ [-73.924931813129405, 40.718405828748971],
+ [-73.928379301015013, 40.717578367290066],
+ [-73.928879651800145, 40.71772031862352],
+ [-73.929705399813798, 40.717049279389535],
+ [-73.929319998321347, 40.716112008833008],
+ [-73.929473569214608, 40.715721452621125],
+ [-73.931792671630646, 40.715182975090769],
+ [-73.93222529811969, 40.714935797460804],
+ [-73.932136869872764, 40.71467904647514],
+ [-73.93175357116219, 40.714741675505287],
+ [-73.931240670594903, 40.713724810884685],
+ [-73.931645273916658, 40.713342793758102],
+ [-73.932646214588075, 40.713039272297976],
+ [-73.932032629805093, 40.711590223074253],
+ [-73.933384846153018, 40.71123372774565],
+ [-73.933283493203476, 40.710978706452757],
+ [-73.93190101920861, 40.711338471428178],
+ [-73.930932275477375, 40.709165311254111],
+ [-73.930501000831981, 40.708681225039548],
+ [-73.930250388490833, 40.708927912919926],
+ [-73.93154613680818, 40.71185535175065],
+ [-73.930778947370527, 40.71216042795546],
+ [-73.931610327349432, 40.712038022177772],
+ [-73.931842494934315, 40.712627237990588],
+ [-73.9304229437912, 40.713172558671431],
+ [-73.931052318356663, 40.714610223922932],
+ [-73.930851901340304, 40.714902985592772],
+ [-73.928438817485414, 40.715530949575331],
+ [-73.92890242854061, 40.716572812317885],
+ [-73.928768050934465, 40.716807330616838],
+ [-73.928211350045686, 40.71711323979315],
+ [-73.924492665378452, 40.717909675837682],
+ [-73.923587862339772, 40.717271580636805],
+ [-73.923055000143336, 40.716342664793345],
+ [-73.924313299615733, 40.71584705657672],
+ [-73.924885535736507, 40.715267187652948],
+ [-73.92433589757124, 40.714122593466371],
+ [-73.924059097370503, 40.714111559644898]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 131,
+ "properties": {
+ "communityDistrict": 304,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/304"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.896466251289269, 40.682336422475885],
+ [-73.896581586979721, 40.681574718432479],
+ [-73.896749659511244, 40.681492026062003],
+ [-73.896959138460176, 40.680699581824157],
+ [-73.897383813046474, 40.680168812622249],
+ [-73.897862999396963, 40.679875011118256],
+ [-73.898899282875462, 40.679560934398964],
+ [-73.900245377055157, 40.679422791011412],
+ [-73.90262262346468, 40.68066450291613],
+ [-73.904046398088894, 40.679220598019157],
+ [-73.941930788822305, 40.700725234695796],
+ [-73.933950929725427, 40.702674592697853],
+ [-73.926089300269695, 40.705679701161777],
+ [-73.921891846986938, 40.709396096710805],
+ [-73.91180710003394, 40.703434952026086],
+ [-73.912904041219576, 40.702361891296647],
+ [-73.910678826713834, 40.701045969063564],
+ [-73.911808200384499, 40.699938002621316],
+ [-73.904260184116879, 40.695700371443174],
+ [-73.905795970753104, 40.694127155011522],
+ [-73.901232906600811, 40.691442278638164],
+ [-73.901804671539708, 40.690766298769027],
+ [-73.900424650470654, 40.688183898876233],
+ [-73.90116154994368, 40.68787793535499],
+ [-73.896466251289269, 40.682336422475885]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 132,
+ "properties": {
+ "communityDistrict": 480,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/480"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.891450788577373, 40.776397251863614],
+ [-73.891120443394783, 40.777124699735985],
+ [-73.890562505953582, 40.777403920964275],
+ [-73.890465373951272, 40.777703219287069],
+ [-73.890173695746853, 40.777850812778432],
+ [-73.889471053997596, 40.775535550967213],
+ [-73.889789007560651, 40.774236861169818],
+ [-73.8901917158678, 40.773646876225598],
+ [-73.889851699596761, 40.773753297363925],
+ [-73.889454869037365, 40.773532951127159],
+ [-73.885807622205476, 40.774022224474699],
+ [-73.885626507399152, 40.774437639289459],
+ [-73.885632310353756, 40.774097074788578],
+ [-73.885784736976674, 40.774024712164497],
+ [-73.883916279638086, 40.774132606591536],
+ [-73.884551505982643, 40.7743606223328],
+ [-73.884837423910511, 40.774952980745631],
+ [-73.884773619734403, 40.775332280587151],
+ [-73.884287377121282, 40.775472056165981],
+ [-73.885055226584527, 40.778405312744127],
+ [-73.885250270527052, 40.778612901743095],
+ [-73.885052917409524, 40.778775435672046],
+ [-73.885084107162726, 40.779352571616101],
+ [-73.884881137310472, 40.779987196741253],
+ [-73.883852032195705, 40.780264319754494],
+ [-73.882904911865566, 40.780348697239738],
+ [-73.882744497173078, 40.780223423067],
+ [-73.881390759194431, 40.780601608407331],
+ [-73.879734668430231, 40.780654818049832],
+ [-73.879586468348052, 40.780698109854903],
+ [-73.879606924328698, 40.780850313065237],
+ [-73.879358061023254, 40.780656680128018],
+ [-73.879204838516287, 40.780767389334819],
+ [-73.878705625188744, 40.780585909950055],
+ [-73.879051157592997, 40.781730532358885],
+ [-73.87930868295156, 40.781853658332288],
+ [-73.878858374194763, 40.782398178680481],
+ [-73.879701636722544, 40.782882818072267],
+ [-73.878831467817449, 40.782430714494346],
+ [-73.878339232980636, 40.783025920749417],
+ [-73.875157548935576, 40.781509448648102],
+ [-73.874845273314833, 40.781684924075265],
+ [-73.871248562425151, 40.786038151254978],
+ [-73.869780811926418, 40.785337933325813],
+ [-73.868099122578883, 40.787458661818384],
+ [-73.867884074707646, 40.787361036694563],
+ [-73.868130320000176, 40.787232777844125],
+ [-73.86987007434341, 40.785085907068158],
+ [-73.869437517232143, 40.78363839981445],
+ [-73.868607160114422, 40.783800140944386],
+ [-73.868494792590866, 40.783662778245507],
+ [-73.869423447954205, 40.783591314917714],
+ [-73.870480298328459, 40.78230611231443],
+ [-73.871462923581831, 40.782126400740765],
+ [-73.872557327398482, 40.780821121543305],
+ [-73.864710664970914, 40.776733186253558],
+ [-73.855051062718189, 40.772195389989093],
+ [-73.85508635910341, 40.771831388277363],
+ [-73.856458073493727, 40.770320861198734],
+ [-73.857380913283251, 40.770570807156396],
+ [-73.857529746091615, 40.77038630696542],
+ [-73.858205110502098, 40.770323456477165],
+ [-73.856212676101833, 40.769195797757774],
+ [-73.856245657460647, 40.768885714701554],
+ [-73.857047902621204, 40.769139556451385],
+ [-73.857678002661373, 40.768276265894023],
+ [-73.858052619465298, 40.768090656371264],
+ [-73.858773765530614, 40.767349995600988],
+ [-73.859375104297783, 40.767075328942681],
+ [-73.860855359444798, 40.766932118591775],
+ [-73.861102771522781, 40.76727194252976],
+ [-73.861313861661117, 40.766940631743722],
+ [-73.862265651377228, 40.766803167772721],
+ [-73.862602214031156, 40.766893979839814],
+ [-73.863402148656107, 40.766455512262858],
+ [-73.866068759550757, 40.76879618165259],
+ [-73.869437197639769, 40.77092448203004],
+ [-73.871433573419822, 40.771576467221315],
+ [-73.873279414553082, 40.771767401350935],
+ [-73.876016564526168, 40.771551044049495],
+ [-73.877814163199744, 40.771070456837741],
+ [-73.883565936288562, 40.768180444659357],
+ [-73.887706618200212, 40.766838598051493],
+ [-73.888221093892724, 40.768592289569682],
+ [-73.888725513387399, 40.768916239120159],
+ [-73.889423743511657, 40.7730459285143],
+ [-73.893242367511419, 40.77394301864571],
+ [-73.896564775519536, 40.776247024325471],
+ [-73.89423247497794, 40.778153613229705],
+ [-73.892860400757385, 40.777159074348354],
+ [-73.892253657035397, 40.777204522526318],
+ [-73.891450788577373, 40.776397251863614]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 133,
+ "properties": {
+ "communityDistrict": 413,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/413"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.74694320572226, 40.637529202175521],
+ [-73.746789789886549, 40.637876681499385],
+ [-73.744597963429428, 40.639521173264775],
+ [-73.743990632320248, 40.641247069543333],
+ [-73.747372810445341, 40.644620178206722],
+ [-73.748555411130468, 40.645540914719547],
+ [-73.766695938389375, 40.655802847501583],
+ [-73.767390970865605, 40.655838168699717],
+ [-73.768327401635787, 40.655600115136018],
+ [-73.769743641745009, 40.655948254796364],
+ [-73.775253079707582, 40.659320044127135],
+ [-73.776413927202583, 40.659870722897544],
+ [-73.778799852846348, 40.660562153298919],
+ [-73.783939817926694, 40.6627828314193],
+ [-73.785025138063148, 40.663421072397398],
+ [-73.795822963931485, 40.664953255151815],
+ [-73.802032076901142, 40.665248024829793],
+ [-73.801682665533647, 40.66632235257088],
+ [-73.793059808035736, 40.666193204080379],
+ [-73.78948089661391, 40.666367651621606],
+ [-73.780316672390697, 40.667176372328825],
+ [-73.77445107675409, 40.667471577021139],
+ [-73.770174819819616, 40.667315464264462],
+ [-73.757956436648485, 40.665955403396751],
+ [-73.756995333616061, 40.667741268061768],
+ [-73.756437342919526, 40.669666378742065],
+ [-73.756362391936634, 40.672429237108844],
+ [-73.755817710871824, 40.675752742227324],
+ [-73.755234578055294, 40.677288409747391],
+ [-73.752258286195811, 40.681491410970018],
+ [-73.750089911311093, 40.685923446358679],
+ [-73.748569930944782, 40.687803738207059],
+ [-73.744846105650581, 40.693139056115278],
+ [-73.751212469699198, 40.70730658007804],
+ [-73.753708345570089, 40.713324636235697],
+ [-73.759441429410103, 40.721063443753103],
+ [-73.75409142333362, 40.724691905785285],
+ [-73.756703291674768, 40.726229432660404],
+ [-73.752970287172531, 40.727705620131594],
+ [-73.750482956498644, 40.729221294393867],
+ [-73.746721402966443, 40.732477150642502],
+ [-73.742947857899594, 40.735456551528806],
+ [-73.74151636839602, 40.73686036104047],
+ [-73.739012103523919, 40.739746479175146],
+ [-73.738160479203913, 40.740376435816998],
+ [-73.73375484853679, 40.742747628312401],
+ [-73.731064618808389, 40.744888375884287],
+ [-73.729066709742796, 40.747390958743573],
+ [-73.728253810495048, 40.749693728645596],
+ [-73.727713561863254, 40.750626894611599],
+ [-73.726414721371526, 40.751915877812721],
+ [-73.723266734112798, 40.753947599496982],
+ [-73.7224109479736, 40.754920189248402],
+ [-73.721458702613546, 40.75665808054616],
+ [-73.720315952915698, 40.757897258117524],
+ [-73.718970503650667, 40.758783237036504],
+ [-73.717672370657056, 40.759311211520334],
+ [-73.716125282334986, 40.759660714307273],
+ [-73.713518281059919, 40.759837730830796],
+ [-73.701633458262947, 40.752493329188589],
+ [-73.700020205032914, 40.739236541731927],
+ [-73.701470730381175, 40.73751156096408],
+ [-73.707662172399296, 40.72783093450775],
+ [-73.710499953620726, 40.727227087413205],
+ [-73.715879719946443, 40.726541905659133],
+ [-73.718287067787642, 40.726041110767838],
+ [-73.725671969594401, 40.72403765899314],
+ [-73.729144354071764, 40.72276307052519],
+ [-73.730326289020383, 40.722157296783266],
+ [-73.729176295154446, 40.719167214561701],
+ [-73.727359618426561, 40.712388941114781],
+ [-73.726894874152777, 40.709978573617782],
+ [-73.727046964868734, 40.709498752808933],
+ [-73.72678346833888, 40.701987123948363],
+ [-73.726544350585797, 40.698982640166044],
+ [-73.726202596767351, 40.688984340809085],
+ [-73.725797879423141, 40.684353849825037],
+ [-73.725906600606777, 40.682656604624043],
+ [-73.725630051199005, 40.679587950781354],
+ [-73.726198061957462, 40.677380889729726],
+ [-73.727556163566533, 40.67416158768895],
+ [-73.727994456800815, 40.669426693583226],
+ [-73.728263851373683, 40.668072875630394],
+ [-73.728272722549718, 40.666429592083581],
+ [-73.72787486759978, 40.664695132718997],
+ [-73.727813923274411, 40.663223969476455],
+ [-73.728330718759594, 40.663043943731125],
+ [-73.727931243454947, 40.661748835103268],
+ [-73.726444386084552, 40.659161614919604],
+ [-73.725926876752027, 40.657731319351264],
+ [-73.725552842045872, 40.655039958596099],
+ [-73.725055690535726, 40.653507893640302],
+ [-73.725099345820951, 40.652345748311753],
+ [-73.725226081070161, 40.652001000147443],
+ [-73.730286529721809, 40.650368522674384],
+ [-73.735135014063204, 40.649732040465288],
+ [-73.739044821314337, 40.648201180344401],
+ [-73.741437060423451, 40.646889178321423],
+ [-73.741661413177269, 40.642198061679821],
+ [-73.742050849527686, 40.641474204525665],
+ [-73.741422793149624, 40.640503390753288],
+ [-73.742273871599423, 40.640123381449982],
+ [-73.741259000675782, 40.638897499434982],
+ [-73.739471216267901, 40.635706431829369],
+ [-73.739959575705754, 40.635143809373297],
+ [-73.74001376732646, 40.635345586724839],
+ [-73.740773490474055, 40.635163200064767],
+ [-73.740420473543182, 40.635144298440466],
+ [-73.74164858697317, 40.63505389381686],
+ [-73.741678863369742, 40.63495617450787],
+ [-73.74144240592274, 40.634964020678723],
+ [-73.741708827298211, 40.634926322434787],
+ [-73.742466426812285, 40.635119228253572],
+ [-73.742551526621654, 40.635291501586053],
+ [-73.742391239526356, 40.635630300126799],
+ [-73.742585398435921, 40.635453356661131],
+ [-73.742436380204964, 40.635712755107448],
+ [-73.742313404080349, 40.635687984457867],
+ [-73.740964877523396, 40.637304775031545],
+ [-73.741303724911035, 40.637898812918422],
+ [-73.741890403056061, 40.638122213540228],
+ [-73.742729662373904, 40.638270155980194],
+ [-73.743971284962342, 40.637880012614836],
+ [-73.744038154506214, 40.637986076622539],
+ [-73.743522263041612, 40.638889486376229],
+ [-73.743734215706056, 40.639022117665419],
+ [-73.744795580825311, 40.637075029074644],
+ [-73.744712755776732, 40.637307046895664],
+ [-73.745194969008281, 40.637191712310511],
+ [-73.746292190006656, 40.63643726798243],
+ [-73.746790746413723, 40.636778135539537],
+ [-73.746453943678944, 40.63725982088264],
+ [-73.745271386429266, 40.637915901245329],
+ [-73.745162199737081, 40.638112187973036],
+ [-73.745327703335931, 40.638372211969788],
+ [-73.745673160042543, 40.63812465742793],
+ [-73.745510583177264, 40.637943881034793],
+ [-73.746439509020078, 40.63742955057031],
+ [-73.746995183730206, 40.63689083416341],
+ [-73.74699985204262, 40.63712702776175],
+ [-73.747154358577063, 40.637126363606498],
+ [-73.746993912571256, 40.63715064468574],
+ [-73.74694320572226, 40.637529202175521]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 134,
+ "properties": {
+ "communityDistrict": 112,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/112"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.934452393973729, 40.835980960149861],
+ [-73.934798863439653, 40.836110116261764],
+ [-73.934962741107384, 40.835759934247271],
+ [-73.938385089004612, 40.83311350252125],
+ [-73.940170897886517, 40.830384391128689],
+ [-73.949415704906926, 40.834358589832483],
+ [-73.950155209966098, 40.83439675981581],
+ [-73.949546007293733, 40.836604371501778],
+ [-73.949282850620207, 40.836740786585409],
+ [-73.949540037170678, 40.83687963152353],
+ [-73.948560545205652, 40.839564884659111],
+ [-73.947383221543006, 40.841940825299289],
+ [-73.946124163555936, 40.843892496556798],
+ [-73.946171749838769, 40.845392891580602],
+ [-73.946517302005773, 40.845995184403719],
+ [-73.946350780499344, 40.846240331289252],
+ [-73.946824453426444, 40.84713426206978],
+ [-73.946635500788531, 40.84891242506],
+ [-73.947027824947213, 40.850041831812419],
+ [-73.946926264710498, 40.850528055668654],
+ [-73.946515901499836, 40.850968338577609],
+ [-73.946275014966645, 40.850840977675539],
+ [-73.946200783220817, 40.851031488105349],
+ [-73.946081905010672, 40.85098071488104],
+ [-73.946117441051513, 40.851172583019675],
+ [-73.945652836264131, 40.851211098341174],
+ [-73.944667212442909, 40.851921226509624],
+ [-73.944325184824763, 40.8518225764386],
+ [-73.944196607813481, 40.852015341815829],
+ [-73.943479786118971, 40.852281881942261],
+ [-73.941869964266729, 40.853867739442784],
+ [-73.940293475633112, 40.856641770657937],
+ [-73.93911094164396, 40.858040911225714],
+ [-73.938309574342924, 40.859380523608095],
+ [-73.937529441725616, 40.860096641282013],
+ [-73.936475616648963, 40.861926591170722],
+ [-73.934016644266976, 40.865035548291594],
+ [-73.933950017115777, 40.865346746209838],
+ [-73.932663327214627, 40.867237066436971],
+ [-73.932901718255664, 40.867293043899295],
+ [-73.932839582050619, 40.86741527691138],
+ [-73.932597948528041, 40.867311349670395],
+ [-73.932425382153397, 40.867568248423645],
+ [-73.932267698924591, 40.868562318972756],
+ [-73.932492143648886, 40.868677518657485],
+ [-73.932650835128072, 40.868465033481861],
+ [-73.932523545600375, 40.868722078358907],
+ [-73.932250318212539, 40.868639508367878],
+ [-73.932313854482302, 40.868923720343695],
+ [-73.932567951698772, 40.869044391473821],
+ [-73.932189038922829, 40.869366976389443],
+ [-73.932468830699079, 40.869476099386972],
+ [-73.932353708072753, 40.869755255296575],
+ [-73.932359344660028, 40.869507363219356],
+ [-73.932133366030499, 40.86941597544098],
+ [-73.932059082863461, 40.869582816886684],
+ [-73.932206005318662, 40.870096445104423],
+ [-73.931913771368087, 40.871129493722719],
+ [-73.931062541995999, 40.872666806528684],
+ [-73.929013458760522, 40.875738659587938],
+ [-73.928146236035687, 40.87652252894393],
+ [-73.927530821274885, 40.876710534812979],
+ [-73.926481856522244, 40.877618203017448],
+ [-73.926296809925859, 40.877565027875669],
+ [-73.926440135797648, 40.877218403959226],
+ [-73.926192922463073, 40.877064419302521],
+ [-73.925552922482126, 40.877102588983313],
+ [-73.925082157013364, 40.87739761061556],
+ [-73.924570369647185, 40.877428912603712],
+ [-73.923294767339243, 40.877264435459765],
+ [-73.922397681693155, 40.876780223141182],
+ [-73.922444682266473, 40.875691835764471],
+ [-73.922668040028441, 40.874981991368919],
+ [-73.92257636844127, 40.874295182683888],
+ [-73.922083201628439, 40.873583808194944],
+ [-73.921117415779733, 40.873033455186217],
+ [-73.920292305727145, 40.873098416622568],
+ [-73.91979301672356, 40.873606512660395],
+ [-73.920626991656874, 40.874234811128744],
+ [-73.920802556303556, 40.874194058866657],
+ [-73.920700106651935, 40.87439193360985],
+ [-73.921181864427652, 40.875137840850179],
+ [-73.92090325581637, 40.875466166382992],
+ [-73.918861874083859, 40.874642585787029],
+ [-73.919192887780966, 40.874195168795509],
+ [-73.919294677868109, 40.873649890353896],
+ [-73.918928512967099, 40.873316510216178],
+ [-73.918499957284055, 40.873191715604293],
+ [-73.918397228083364, 40.87323181163088],
+ [-73.918597298663158, 40.873495497325088],
+ [-73.917929029179888, 40.873978893205013],
+ [-73.917577298847291, 40.874548678547193],
+ [-73.917871449175053, 40.873904995288648],
+ [-73.91634348733777, 40.874523849890132],
+ [-73.91522402146056, 40.874486621868122],
+ [-73.9126088423167, 40.873767443623592],
+ [-73.91142596184433, 40.87318176665238],
+ [-73.910648772778103, 40.872296248460621],
+ [-73.910433635042423, 40.87138081638372],
+ [-73.910723558799631, 40.870948835639432],
+ [-73.910924911580295, 40.869436591353605],
+ [-73.911474488991118, 40.869454757638316],
+ [-73.911030579502579, 40.869155402995972],
+ [-73.911128908817645, 40.868920043663984],
+ [-73.911328177588246, 40.868802439535763],
+ [-73.91184774646814, 40.867672520472468],
+ [-73.912731739857207, 40.866605212711804],
+ [-73.91254775130281, 40.86651494300429],
+ [-73.913918631332407, 40.864745584403586],
+ [-73.914923879278689, 40.864580378919115],
+ [-73.914540376260206, 40.864412351623358],
+ [-73.914411133927459, 40.864173626370388],
+ [-73.91508583854332, 40.864448143417277],
+ [-73.915899116458604, 40.864308037582482],
+ [-73.915871480657202, 40.864129090533012],
+ [-73.91519574800094, 40.863945224735858],
+ [-73.915175564297087, 40.863680433750915],
+ [-73.915476824442536, 40.863346107296742],
+ [-73.915386730511415, 40.863084384200683],
+ [-73.91729467741682, 40.861679418230622],
+ [-73.918434392517852, 40.860221533395261],
+ [-73.91839311151449, 40.860080469421412],
+ [-73.918777965339643, 40.859546750310891],
+ [-73.919502137271209, 40.858791133790938],
+ [-73.920478682731627, 40.859104092098825],
+ [-73.921270912963138, 40.860188042816688],
+ [-73.921590147820325, 40.860072800026423],
+ [-73.921866338499626, 40.859181339145074],
+ [-73.921255801367948, 40.858846553527009],
+ [-73.920938690169507, 40.858120674461475],
+ [-73.920624274948864, 40.85801681477232],
+ [-73.920484385475262, 40.858232548062446],
+ [-73.920364772497692, 40.858164937099126],
+ [-73.92047278308776, 40.85819530433254],
+ [-73.920564586812631, 40.857882978878614],
+ [-73.920773151525381, 40.857941185857911],
+ [-73.920706108160928, 40.857701014101913],
+ [-73.921014321597127, 40.857838803180528],
+ [-73.920755321305109, 40.857557159145706],
+ [-73.920982176603744, 40.857612216980648],
+ [-73.92090011378167, 40.857494287338653],
+ [-73.921048915136822, 40.857381521111556],
+ [-73.921121196903286, 40.85753677083315],
+ [-73.921519672686344, 40.857348906380025],
+ [-73.921558572219425, 40.85708883062955],
+ [-73.922376956761624, 40.856583569624377],
+ [-73.922344593741286, 40.855682335814841],
+ [-73.921698419708889, 40.856672301855397],
+ [-73.921518940590886, 40.856601170623179],
+ [-73.924440651399479, 40.852840472704372],
+ [-73.929718504776432, 40.845231777258597],
+ [-73.930894652014246, 40.842538340141893],
+ [-73.934452393973729, 40.835980960149861]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 135,
+ "properties": {
+ "communityDistrict": 208,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/208"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.896633337970684, 40.911417374845669],
+ [-73.896357859714925, 40.90320013158378],
+ [-73.897157171654328, 40.899371826677211],
+ [-73.896431707170763, 40.893655279926804],
+ [-73.896757900749378, 40.892645443571681],
+ [-73.899782521419539, 40.886529123507984],
+ [-73.887586126088365, 40.884255619662973],
+ [-73.887051425361179, 40.88434957584596],
+ [-73.887231940098275, 40.883054978428362],
+ [-73.886942468093807, 40.882682767258473],
+ [-73.887165051991502, 40.882576510892207],
+ [-73.887069627837747, 40.882476896066123],
+ [-73.888364875387865, 40.882267541861218],
+ [-73.889975375540757, 40.880233131422152],
+ [-73.891406962661179, 40.878969446245762],
+ [-73.897789622704778, 40.870856643398511],
+ [-73.899338511723883, 40.869228028104736],
+ [-73.899965756483837, 40.868017301510321],
+ [-73.902358047802338, 40.868696120952848],
+ [-73.903749758939654, 40.869595627140072],
+ [-73.904488604897097, 40.870578548547648],
+ [-73.904469013868876, 40.872415520678075],
+ [-73.905714252962994, 40.873138322101234],
+ [-73.90855579588731, 40.873775444425469],
+ [-73.909689484029713, 40.874602273754043],
+ [-73.910654392496312, 40.873975943060529],
+ [-73.911671462567114, 40.874487862056689],
+ [-73.915720981214321, 40.875709670949277],
+ [-73.91726028337294, 40.875809003580549],
+ [-73.917756693297093, 40.875663627860192],
+ [-73.91978381299063, 40.876421436106376],
+ [-73.92206723585673, 40.878572414802477],
+ [-73.922737882875268, 40.878905445427876],
+ [-73.923591725531338, 40.87895215933267],
+ [-73.923636952230083, 40.878815355931643],
+ [-73.923629739504122, 40.878963943243278],
+ [-73.924517958510364, 40.879058659561892],
+ [-73.924903274730823, 40.878888367853143],
+ [-73.923805256054962, 40.880324901636044],
+ [-73.9203928019909, 40.887648500226859],
+ [-73.917822182579613, 40.894422287078868],
+ [-73.917908700410848, 40.894676766399556],
+ [-73.917634882074864, 40.894941905352169],
+ [-73.916941610784022, 40.896644551702359],
+ [-73.91518455871676, 40.901584282862132],
+ [-73.91543172958427, 40.901812683688327],
+ [-73.915014495860447, 40.903081299106404],
+ [-73.914590392433141, 40.904119002196353],
+ [-73.91418416752515, 40.904139333800913],
+ [-73.912865402025631, 40.907535122202901],
+ [-73.913108639273631, 40.907844484157884],
+ [-73.912649321728779, 40.908070811955348],
+ [-73.91149190703743, 40.912233769311996],
+ [-73.91143213027847, 40.912823826219665],
+ [-73.911654723359604, 40.913417851896185],
+ [-73.911134128523685, 40.914330605901398],
+ [-73.910668554013142, 40.914799428656579],
+ [-73.91033256848911, 40.915532777005183],
+ [-73.902456640049394, 40.912958933425948],
+ [-73.896633337970684, 40.911417374845669]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 136,
+ "properties": {
+ "communityDistrict": 109,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/109"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.940170897886517, 40.830384391128689],
+ [-73.93962569930143, 40.830155837387963],
+ [-73.939805957117386, 40.830004512317636],
+ [-73.939728629682307, 40.82930184433183],
+ [-73.94384275614668, 40.823647801542087],
+ [-73.942923668464658, 40.823260586747516],
+ [-73.945154570217539, 40.820876264825252],
+ [-73.946078287404234, 40.821263215559654],
+ [-73.949199601462425, 40.814720854586277],
+ [-73.950350192752254, 40.813159389290092],
+ [-73.952101251492223, 40.811442853501241],
+ [-73.953575778103641, 40.80947669765964],
+ [-73.954966571724654, 40.810064554703729],
+ [-73.958181673189713, 40.805596791128636],
+ [-73.958248783298146, 40.803106486471115],
+ [-73.959646854231522, 40.801156423256458],
+ [-73.966701068903021, 40.804168476937107],
+ [-73.971107658523039, 40.805790139676695],
+ [-73.968557478373427, 40.809072894323748],
+ [-73.96740185312369, 40.811022155397097],
+ [-73.964140828882989, 40.815771657453901],
+ [-73.959998922293451, 40.820382944802269],
+ [-73.959814626745853, 40.820297874198786],
+ [-73.959130615806288, 40.821168953774738],
+ [-73.959426244158038, 40.821252381738169],
+ [-73.959146857151907, 40.821571328550938],
+ [-73.959032942219295, 40.821513746228703],
+ [-73.959234672601511, 40.821277825270641],
+ [-73.959089603062452, 40.821206247056153],
+ [-73.958818922339958, 40.821518524846745],
+ [-73.958941729417091, 40.821569364009548],
+ [-73.958745236604997, 40.821805511973615],
+ [-73.959000183560505, 40.822409728374573],
+ [-73.959229762796213, 40.82228691013254],
+ [-73.959909994443962, 40.822571119821973],
+ [-73.959603324602782, 40.822994686783296],
+ [-73.958926147183021, 40.822711755441333],
+ [-73.959049533317085, 40.822541335368214],
+ [-73.958527314581005, 40.821843756651887],
+ [-73.95820019287855, 40.822283136917846],
+ [-73.957939049091223, 40.822774353547267],
+ [-73.958228382491924, 40.822887867101095],
+ [-73.958143127692011, 40.823020722271416],
+ [-73.959555755600221, 40.823693797769003],
+ [-73.957258970433088, 40.827117309873316],
+ [-73.956948664204674, 40.82700055393498],
+ [-73.956317845103115, 40.827944215388541],
+ [-73.955039129783941, 40.827413431911843],
+ [-73.954697366856635, 40.827918385514458],
+ [-73.954541881282907, 40.82786147636574],
+ [-73.951316411189993, 40.832450511970627],
+ [-73.950935762314813, 40.833293997985642],
+ [-73.950155209966098, 40.83439675981581],
+ [-73.949415704906926, 40.834358589832483],
+ [-73.940170897886517, 40.830384391128689]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 137,
+ "properties": {
+ "communityDistrict": 110,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/110"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.934452393973729, 40.835980960149861],
+ [-73.934915335786499, 40.835230821938772],
+ [-73.935167252285169, 40.832874991772954],
+ [-73.9344239633905, 40.82704289397212],
+ [-73.933800194730466, 40.818349758873957],
+ [-73.934873438350309, 40.816527847015031],
+ [-73.936209578142737, 40.814673849920545],
+ [-73.942753672281938, 40.805744012794605],
+ [-73.944301945871231, 40.806390824581001],
+ [-73.945239652139207, 40.805136014461745],
+ [-73.946131310486734, 40.803877357584135],
+ [-73.944597513456074, 40.803228145255666],
+ [-73.949231860729938, 40.7968730719466],
+ [-73.959646854231522, 40.801156423256458],
+ [-73.958248783298146, 40.803106486471115],
+ [-73.958181673189713, 40.805596791128636],
+ [-73.954966571724654, 40.810064554703729],
+ [-73.953575778103641, 40.80947669765964],
+ [-73.952101251492223, 40.811442853501241],
+ [-73.950350192752254, 40.813159389290092],
+ [-73.949199601462425, 40.814720854586277],
+ [-73.946078287404234, 40.821263215559654],
+ [-73.945154570217539, 40.820876264825252],
+ [-73.942923668464658, 40.823260586747516],
+ [-73.94384275614668, 40.823647801542087],
+ [-73.939728629682307, 40.82930184433183],
+ [-73.939805957117386, 40.830004512317636],
+ [-73.93962569930143, 40.830155837387963],
+ [-73.940170897886517, 40.830384391128689],
+ [-73.938683162963443, 40.832800789417831],
+ [-73.934962741107384, 40.835759934247271],
+ [-73.934798863439653, 40.836110116261764],
+ [-73.934452393973729, 40.835980960149861]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 138,
+ "properties": {
+ "communityDistrict": 204,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/204"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.90268810050182, 40.84458147228532],
+ [-73.905979403756234, 40.83850519529944],
+ [-73.912169826444909, 40.827902220983532],
+ [-73.916613685086176, 40.824992308005278],
+ [-73.916087827917409, 40.824837851830807],
+ [-73.92194764145448, 40.821031544959396],
+ [-73.924025572419666, 40.819285330110709],
+ [-73.925184864635582, 40.818012668874921],
+ [-73.930315050305069, 40.81931688055203],
+ [-73.932389713250288, 40.819502847336764],
+ [-73.93276594581215, 40.8254582266824],
+ [-73.933546067469919, 40.831509453501425],
+ [-73.933605920367057, 40.83278953052077],
+ [-73.933462357031431, 40.833643823071682],
+ [-73.933143067092601, 40.835194127616468],
+ [-73.932656203539793, 40.83647347652591],
+ [-73.930515723199036, 40.839933642686375],
+ [-73.930483244548711, 40.840460060566691],
+ [-73.929194079410593, 40.842818415236557],
+ [-73.929184586730983, 40.843203757647643],
+ [-73.928615748223521, 40.844676865029953],
+ [-73.928274547067915, 40.844975761156938],
+ [-73.927301944986283, 40.846506867376107],
+ [-73.923540020115283, 40.8447589441123],
+ [-73.913382939714481, 40.845187232536539],
+ [-73.906646755595673, 40.844916314067184],
+ [-73.90268810050182, 40.84458147228532]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 139,
+ "properties": {
+ "communityDistrict": 103,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/103"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.988779316840834, 40.733965399235885],
+ [-73.971626972717061, 40.726628453499416],
+ [-73.973148311338107, 40.720021431551899],
+ [-73.974435518656364, 40.716246838391271],
+ [-73.976428725805761, 40.711909032503797],
+ [-73.97705659467816, 40.711197625964338],
+ [-73.97807974906604, 40.710532251079798],
+ [-73.981276842109892, 40.710217251191011],
+ [-73.981237344620908, 40.70982334331849],
+ [-73.988390640232666, 40.709126949162631],
+ [-73.988636580718492, 40.70991206151627],
+ [-73.989460670194262, 40.709889287051261],
+ [-73.99728287195579, 40.708731619842894],
+ [-73.998527585853111, 40.70833152790825],
+ [-73.999194511748954, 40.707947376351463],
+ [-74.001471402320803, 40.709746554323239],
+ [-74.000509860972329, 40.710984270453366],
+ [-74.000867814643087, 40.711568158862143],
+ [-74.000931743323804, 40.713263253045277],
+ [-74.000454630659604, 40.714365047598868],
+ [-74.000578392161202, 40.715570902924213],
+ [-73.999312417001448, 40.717550241777381],
+ [-73.998589255680329, 40.7170995115371],
+ [-73.996058727443753, 40.7162316402109],
+ [-73.994807790213102, 40.718457426350312],
+ [-73.991363881381531, 40.727559783459121],
+ [-73.99002687656818, 40.732756284494208],
+ [-73.989868521395636, 40.733527114554889],
+ [-73.989902959700501, 40.734434790136874],
+ [-73.988779316840834, 40.733965399235885]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 140,
+ "properties": {
+ "communityDistrict": 302,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/302"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.969292963484961, 40.70709333109555],
+ [-73.968389336807874, 40.706829186746916],
+ [-73.967209620426217, 40.704255709153294],
+ [-73.962179780891731, 40.700220710101576],
+ [-73.962839637163441, 40.698038668339827],
+ [-73.961898378242424, 40.698188332531487],
+ [-73.961749948352178, 40.696846168402978],
+ [-73.960292816681118, 40.690346249915414],
+ [-73.958292168077833, 40.679831133494801],
+ [-73.967531966996447, 40.681768783617386],
+ [-73.967678283782007, 40.680955455311469],
+ [-73.97620908230067, 40.682729549681049],
+ [-73.978760224629411, 40.683765443980533],
+ [-73.980461554436758, 40.6812225467568],
+ [-73.982854360751816, 40.682148963461714],
+ [-73.982422837554779, 40.682782995732666],
+ [-73.984374107978155, 40.683542455374401],
+ [-73.984796946915068, 40.682908865516787],
+ [-73.986995200094256, 40.683765010822732],
+ [-73.986563034256491, 40.684388756141708],
+ [-73.988711560327573, 40.685224618479538],
+ [-73.989128407289869, 40.684589453073421],
+ [-73.993929296158825, 40.68645287164901],
+ [-73.992363670432468, 40.68969012377697],
+ [-74.001105193250609, 40.692056595339189],
+ [-74.004007959710961, 40.693208199632345],
+ [-74.00346218092524, 40.694057015074719],
+ [-74.001270149686704, 40.693296061673706],
+ [-74.000958684830195, 40.694069083582193],
+ [-74.003013938290835, 40.694777844479127],
+ [-74.002398025837948, 40.695711654864475],
+ [-74.000268723777879, 40.694965802577912],
+ [-73.999413024332057, 40.696357676453268],
+ [-73.999523739035141, 40.69657482604083],
+ [-74.000489334059552, 40.696926195088039],
+ [-74.000431472743998, 40.697052466178526],
+ [-73.99959333581242, 40.696782261474375],
+ [-73.999553890836694, 40.696945232396793],
+ [-73.999407384429574, 40.696885189446014],
+ [-73.999474068206041, 40.696704134461974],
+ [-73.999181990168637, 40.696885188064741],
+ [-73.998996041391933, 40.696812278372938],
+ [-73.998764580277054, 40.697120732591387],
+ [-74.001049031235567, 40.697908235692211],
+ [-74.000487686285524, 40.6987577781371],
+ [-73.998377606857716, 40.698063296146074],
+ [-73.998021027251099, 40.698761736573765],
+ [-74.000018404336203, 40.699466048073617],
+ [-73.999474639049623, 40.700322778018318],
+ [-73.997498983100002, 40.699638869321213],
+ [-73.997160542439218, 40.699792812644105],
+ [-73.997244628056634, 40.700141409394462],
+ [-73.996697689974638, 40.70087697691703],
+ [-73.998138799654924, 40.701518788248372],
+ [-73.996192272947724, 40.703377140864141],
+ [-73.995138268406848, 40.702974114722821],
+ [-73.995045927483247, 40.703131839799553],
+ [-73.995445642460297, 40.703275305471735],
+ [-73.995293467009333, 40.703554065897968],
+ [-73.994800382748679, 40.703291958141975],
+ [-73.994662903436122, 40.703430608056578],
+ [-73.995029259824861, 40.703808200868018],
+ [-73.994714242351506, 40.703996689060894],
+ [-73.994776143534594, 40.704245861052343],
+ [-73.994569790169322, 40.704376263513907],
+ [-73.993863410318809, 40.704556006930403],
+ [-73.993774572078053, 40.704449457408742],
+ [-73.99350881403609, 40.704623505273986],
+ [-73.992127035350663, 40.704689642033486],
+ [-73.992121005730468, 40.704396201577843],
+ [-73.991861592553562, 40.7040866421044],
+ [-73.990947553507937, 40.70403244213918],
+ [-73.99022721262051, 40.704934044487111],
+ [-73.988303322085429, 40.704540468954995],
+ [-73.98828999111295, 40.705070658495011],
+ [-73.987956765575433, 40.705134217412535],
+ [-73.986863206603715, 40.70515985694135],
+ [-73.986529730120878, 40.704979099173755],
+ [-73.986434298927065, 40.705348607419644],
+ [-73.9834380628795, 40.705644094847855],
+ [-73.983368199441571, 40.705461064573981],
+ [-73.982459568722376, 40.705508797225335],
+ [-73.982422871798903, 40.705822054949373],
+ [-73.981023906182799, 40.705898913893535],
+ [-73.981017339009455, 40.705797506467732],
+ [-73.982302051838786, 40.705736979399632],
+ [-73.982329442166034, 40.705552033664006],
+ [-73.980925103119873, 40.705369255200488],
+ [-73.980908645638038, 40.705907943811788],
+ [-73.979559184872429, 40.705743615249823],
+ [-73.979050499041293, 40.705966963089026],
+ [-73.97893110285527, 40.705924906230337],
+ [-73.97906084845792, 40.705946028940744],
+ [-73.979245087233366, 40.705548389273893],
+ [-73.978963550810661, 40.705502196504284],
+ [-73.978819090400691, 40.705862467079278],
+ [-73.978927658897888, 40.705496199169183],
+ [-73.978738294866346, 40.705463064672081],
+ [-73.978639066585714, 40.705830648221735],
+ [-73.978684405844717, 40.705454177107875],
+ [-73.978645292288533, 40.705591021595623],
+ [-73.978465578489633, 40.70556222186439],
+ [-73.97839230543768, 40.705970682310785],
+ [-73.978853032946688, 40.706065535284417],
+ [-73.978344748528713, 40.705999964987555],
+ [-73.978531988867317, 40.704876523429753],
+ [-73.978020673266556, 40.704290966456135],
+ [-73.977211963392406, 40.704213926624213],
+ [-73.977512154949636, 40.703196752663445],
+ [-73.977135626253968, 40.7030055814025],
+ [-73.976238648345273, 40.704775644190811],
+ [-73.975960962787951, 40.704715506440394],
+ [-73.976927491883515, 40.702797820400363],
+ [-73.976159372920222, 40.702171280356836],
+ [-73.975534564897416, 40.703042808805669],
+ [-73.975329873939813, 40.702951924338258],
+ [-73.976005878454458, 40.701946133781767],
+ [-73.975500831764222, 40.701758308965601],
+ [-73.975403481585289, 40.701911147567372],
+ [-73.974550233883889, 40.701590343299607],
+ [-73.975817137829992, 40.699737121272619],
+ [-73.975763695932358, 40.699592577468501],
+ [-73.975376498638397, 40.699601293329223],
+ [-73.974115139265209, 40.701305270414132],
+ [-73.97292642848619, 40.700294553427668],
+ [-73.972573119672035, 40.700082056120891],
+ [-73.972392013974584, 40.700166322752231],
+ [-73.973757007131979, 40.70153413888179],
+ [-73.973186766708963, 40.701669803673667],
+ [-73.97097896923556, 40.699856457652373],
+ [-73.970805244328432, 40.700097500342288],
+ [-73.973324560379012, 40.70241265601053],
+ [-73.972835128547729, 40.702728740744092],
+ [-73.969825565595315, 40.700245070367977],
+ [-73.96948655218084, 40.700519061258142],
+ [-73.972838900409926, 40.703346428602003],
+ [-73.972669383677143, 40.70350138043095],
+ [-73.969245392733939, 40.701364741883665],
+ [-73.968934748184296, 40.701615868207242],
+ [-73.968985173629278, 40.701747088786341],
+ [-73.97231246276111, 40.703844539538572],
+ [-73.972157988250117, 40.703970207123469],
+ [-73.971456573548267, 40.703508715924556],
+ [-73.971103422988307, 40.703459735839729],
+ [-73.970933078863382, 40.703624772048755],
+ [-73.971019631845522, 40.703815613686501],
+ [-73.974655696080404, 40.706074262994186],
+ [-73.974390835023229, 40.706325774144688],
+ [-73.973476295324247, 40.705686283391167],
+ [-73.972548800578181, 40.706204490003756],
+ [-73.974629666704644, 40.707681060768365],
+ [-73.974236169685341, 40.708024386122354],
+ [-73.971224929122684, 40.70578989940843],
+ [-73.971096554891076, 40.705850056558191],
+ [-73.971056923061823, 40.706946433816654],
+ [-73.97275756998377, 40.708831278547613],
+ [-73.972320321398243, 40.709082883304198],
+ [-73.970262185322852, 40.70688750428404],
+ [-73.970488819146198, 40.70540066562203],
+ [-73.970168945099189, 40.705361853407247],
+ [-73.970180755727995, 40.704929270566829],
+ [-73.967621148459884, 40.703348505194491],
+ [-73.967476744930281, 40.703949870956244],
+ [-73.969296938377127, 40.705088331229661],
+ [-73.969292963484961, 40.70709333109555]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 141,
+ "properties": {
+ "communityDistrict": 409,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/409"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.817097387564516, 40.704029801587659],
+ [-73.814923432672259, 40.69942244007531],
+ [-73.810632983108889, 40.6919473825767],
+ [-73.846714643074961, 40.681858493694463],
+ [-73.853923891622188, 40.679686155801697],
+ [-73.863286408446143, 40.67907719656106],
+ [-73.864100966791327, 40.682372850292609],
+ [-73.866026668716259, 40.681918051772897],
+ [-73.866598483492695, 40.68526955906988],
+ [-73.867460888910415, 40.688415017596441],
+ [-73.868684543705783, 40.6940346919056],
+ [-73.868424897789154, 40.694718119012549],
+ [-73.857444477396186, 40.696912984716768],
+ [-73.852772385843949, 40.697557111441142],
+ [-73.852609659869856, 40.69780503974782],
+ [-73.852711308770878, 40.698414961501221],
+ [-73.854434556776525, 40.700602952131028],
+ [-73.850708423224148, 40.700203124602638],
+ [-73.849138373090511, 40.698282740700151],
+ [-73.845024729431415, 40.699359377017053],
+ [-73.842756641805778, 40.7006576953058],
+ [-73.841563780944213, 40.701100598717581],
+ [-73.839478151754136, 40.702690194330657],
+ [-73.836962377449964, 40.704212452332193],
+ [-73.838042772945016, 40.705956459962259],
+ [-73.837982802802316, 40.70675198796021],
+ [-73.836657203108103, 40.708584270057372],
+ [-73.834051103436607, 40.710027882253115],
+ [-73.835900722077483, 40.711641370769733],
+ [-73.831238554001303, 40.714148221539155],
+ [-73.825597163292713, 40.715514336939208],
+ [-73.824717494276598, 40.714506849725737],
+ [-73.82363860711493, 40.712666644483171],
+ [-73.820452364596164, 40.709774548575126],
+ [-73.818285663457132, 40.706302850482075],
+ [-73.817097387564516, 40.704029801587659]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 142,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.791866920271332, 40.851791661387004],
+ [-73.792057313917027, 40.851825573261152],
+ [-73.790170071924877, 40.852280661154566],
+ [-73.791137951709317, 40.852055852573642],
+ [-73.791334567532587, 40.852166067673579],
+ [-73.791226533189317, 40.852258010501984],
+ [-73.791361879798984, 40.852225977533898],
+ [-73.791236559717774, 40.852280289886508],
+ [-73.793182841420418, 40.851808571872468],
+ [-73.793118371838361, 40.851578295240799],
+ [-73.793237867876343, 40.851931174674448],
+ [-73.793128940739194, 40.851848072675871],
+ [-73.791245567837663, 40.852304681410715],
+ [-73.791380527617108, 40.852602038305946],
+ [-73.793409876311628, 40.852021883730373],
+ [-73.793507628319134, 40.852264043924819],
+ [-73.793424006690429, 40.852136302527562],
+ [-73.791391064686735, 40.852628074985887],
+ [-73.791446400277877, 40.852771571924151],
+ [-73.790420537801694, 40.853022978212493],
+ [-73.790498793630491, 40.853188721513447],
+ [-73.791005867402191, 40.853117691261929],
+ [-73.791454363037246, 40.853010847713527],
+ [-73.791437027167987, 40.852822727480898],
+ [-73.79150327251574, 40.853004748959641],
+ [-73.791702239622765, 40.852958085946781],
+ [-73.791655545024312, 40.852777338227696],
+ [-73.791729955246211, 40.852954423490104],
+ [-73.791963182449607, 40.852895448227535],
+ [-73.791916500124046, 40.852710988139613],
+ [-73.791989281645655, 40.852888070298],
+ [-73.792224129975452, 40.852831572093088],
+ [-73.792175809039904, 40.852649584322762],
+ [-73.792251861637482, 40.852822960383357],
+ [-73.792486698814898, 40.852770173952187],
+ [-73.792436754733544, 40.852585708206007],
+ [-73.792509541142422, 40.852761552715556],
+ [-73.792830838848943, 40.852680460767843],
+ [-73.792815119669299, 40.852494819308866],
+ [-73.792900866870625, 40.852695435982291],
+ [-73.79080758729927, 40.853199060064263],
+ [-73.790862019868413, 40.853319781103487],
+ [-73.791114314293836, 40.853264451924659],
+ [-73.791265732320667, 40.85370686423434],
+ [-73.79252408728911, 40.85340992070487],
+ [-73.792409310369308, 40.853053336114719],
+ [-73.792555983925809, 40.853401178540771],
+ [-73.792979283110483, 40.853302944909416],
+ [-73.792876100485884, 40.852944181328425],
+ [-73.793039911702664, 40.853371249285175],
+ [-73.791273681943167, 40.853732207882842],
+ [-73.79105721254831, 40.853918412426637],
+ [-73.792458168448107, 40.853600708754911],
+ [-73.791070027659515, 40.853944956664598],
+ [-73.792537146048673, 40.853849327812881],
+ [-73.792567589446335, 40.854016434943063],
+ [-73.791793668094144, 40.854004829900354],
+ [-73.791918117363849, 40.85422235474288],
+ [-73.791338117915771, 40.854439011538304],
+ [-73.791292821606476, 40.854584025976791],
+ [-73.792076756675542, 40.855645167707088],
+ [-73.792503067516421, 40.855788666138189],
+ [-73.792487911573716, 40.855946993209756],
+ [-73.792116170146954, 40.856012615292798],
+ [-73.792017122285259, 40.856176948606254],
+ [-73.792705239851358, 40.856192328905713],
+ [-73.792687682226543, 40.856335218720325],
+ [-73.79315700296155, 40.856350911074763],
+ [-73.793146860859693, 40.856467828471096],
+ [-73.792617937968302, 40.856358294907622],
+ [-73.792632943811796, 40.856249739029344],
+ [-73.792010500752468, 40.856225127719604],
+ [-73.791937002797468, 40.856405157922097],
+ [-73.792088148199653, 40.856477642009374],
+ [-73.791901833402562, 40.856546911368],
+ [-73.793094922185631, 40.85668644140528],
+ [-73.793030783612295, 40.856813917951534],
+ [-73.791894230250762, 40.856568889330781],
+ [-73.791828455068796, 40.856668143394614],
+ [-73.79196180657604, 40.856716856586345],
+ [-73.791792645352828, 40.856719852819126],
+ [-73.791929557804636, 40.856769001669612],
+ [-73.79185125084949, 40.856798154914365],
+ [-73.791735464765566, 40.856866429528225],
+ [-73.792202658840608, 40.857146000409124],
+ [-73.792427941308048, 40.856928541531616],
+ [-73.792221891863861, 40.857152298424666],
+ [-73.792827132379813, 40.857435789917872],
+ [-73.79301264449191, 40.85700302604436],
+ [-73.792884039550898, 40.857479202494808],
+ [-73.791859787814047, 40.8570041072606],
+ [-73.792683385092928, 40.857420393591489],
+ [-73.79260923020631, 40.857507704502261],
+ [-73.792112667836278, 40.857166931870339],
+ [-73.791894519130921, 40.857437121865232],
+ [-73.792465161314851, 40.857715331785222],
+ [-73.792569704405992, 40.857639625362275],
+ [-73.792395217232809, 40.857845547752156],
+ [-73.792443364035577, 40.857736741971841],
+ [-73.791742540823591, 40.857393950004131],
+ [-73.791872819639451, 40.857427183076716],
+ [-73.792093325040952, 40.857157989947154],
+ [-73.791843032173972, 40.857028702011341],
+ [-73.791603934613121, 40.857375312992446],
+ [-73.791293788521529, 40.857263238698074],
+ [-73.790942022603716, 40.857552748188795],
+ [-73.791636645879663, 40.857882812570885],
+ [-73.79178529423254, 40.857775425855543],
+ [-73.791436959081096, 40.858154685123054],
+ [-73.791618660758274, 40.857901342048031],
+ [-73.790932228007478, 40.857567787470522],
+ [-73.790235927387627, 40.858154084811197],
+ [-73.790061335632444, 40.858459548561221],
+ [-73.790187451950032, 40.858609917386147],
+ [-73.790045998377536, 40.858475404912085],
+ [-73.78898385079637, 40.858470842735954],
+ [-73.788784028545791, 40.857420690336504],
+ [-73.788043429757991, 40.857559917687105],
+ [-73.788778986102145, 40.857400925200871],
+ [-73.788710477543788, 40.857047032712231],
+ [-73.788896549571888, 40.85657338670979],
+ [-73.788536877354829, 40.856158503785373],
+ [-73.788359432223658, 40.855626489148236],
+ [-73.788415111842909, 40.85518763710445],
+ [-73.788553657910015, 40.855148736115453],
+ [-73.788294136466661, 40.854822651390073],
+ [-73.788477326533609, 40.854400520532153],
+ [-73.788347006836304, 40.854153518949786],
+ [-73.787347531464235, 40.854385885459472],
+ [-73.788323994499137, 40.854102515649636],
+ [-73.787314500662418, 40.854211942725648],
+ [-73.786907347026968, 40.854063972299166],
+ [-73.78792821707313, 40.853737797389137],
+ [-73.787962642880714, 40.85347472093553],
+ [-73.785881865066514, 40.851788672440847],
+ [-73.785292107190273, 40.851620649973505],
+ [-73.784131891679834, 40.851832806157219],
+ [-73.784314151660126, 40.851767545706863],
+ [-73.783871152919602, 40.851558961668779],
+ [-73.783961124883092, 40.851486933922963],
+ [-73.783381586103928, 40.851586733914331],
+ [-73.78360210541598, 40.851319519782649],
+ [-73.784600777637948, 40.851095692196424],
+ [-73.784454632223671, 40.850772873853224],
+ [-73.78384119241808, 40.850692899497055],
+ [-73.784065808373342, 40.850625233236379],
+ [-73.784012880418416, 40.85047528985303],
+ [-73.784257857600153, 40.850253180641083],
+ [-73.784200472005722, 40.850060644241836],
+ [-73.783534978087403, 40.849220967420266],
+ [-73.78317944898275, 40.849222360949476],
+ [-73.783035355379056, 40.84907190812784],
+ [-73.782449527092126, 40.849341154015669],
+ [-73.782218064743049, 40.849166804596116],
+ [-73.782094563045021, 40.849247300009687],
+ [-73.782158141520526, 40.849116173923854],
+ [-73.781544490885992, 40.849400434643279],
+ [-73.782141086978484, 40.849100662667652],
+ [-73.781615940690727, 40.848896204611108],
+ [-73.781613675352034, 40.848772386349907],
+ [-73.781506202591302, 40.848842528177826],
+ [-73.781574404406385, 40.848731808212364],
+ [-73.781432495222901, 40.848800005813288],
+ [-73.78149386587495, 40.848580475825756],
+ [-73.782674670790442, 40.848139671941404],
+ [-73.780978209389545, 40.848458347913521],
+ [-73.781306275173833, 40.8483476864726],
+ [-73.781106978415082, 40.848294758197767],
+ [-73.782637404640766, 40.848072649247044],
+ [-73.782504086335379, 40.847913273763218],
+ [-73.781584180817134, 40.848037051537183],
+ [-73.781484319505623, 40.847882193848626],
+ [-73.781429203479163, 40.847456345357209],
+ [-73.782214978174324, 40.846861409589437],
+ [-73.782163935017621, 40.846636337782051],
+ [-73.780636684111613, 40.84692333475239],
+ [-73.780676937040738, 40.847061485793461],
+ [-73.780462415984658, 40.847100233289559],
+ [-73.78040327024776, 40.846931134167328],
+ [-73.781060439730155, 40.846802551854296],
+ [-73.78115182578567, 40.84624630462708],
+ [-73.781106757608001, 40.846746997141139],
+ [-73.781647204005992, 40.84664644143021],
+ [-73.781688803593681, 40.846635027873198],
+ [-73.781742889032557, 40.846412290115893],
+ [-73.781718430764258, 40.846626899153208],
+ [-73.782513451830411, 40.846408771552404],
+ [-73.782357028105167, 40.845981588332627],
+ [-73.782579328656908, 40.845935893027736],
+ [-73.782495972589558, 40.845661561949022],
+ [-73.783094420486535, 40.845518285564673],
+ [-73.78314644227369, 40.845309942025992],
+ [-73.783074558306609, 40.845509764291876],
+ [-73.781816461704935, 40.845764978052216],
+ [-73.783050749408005, 40.84549682317585],
+ [-73.783060231265836, 40.845085708566991],
+ [-73.781815359666339, 40.845480582881542],
+ [-73.781887076726719, 40.845333885649353],
+ [-73.783074574466866, 40.84505636873385],
+ [-73.783152455057419, 40.845295983327766],
+ [-73.783222076139282, 40.845063444658159],
+ [-73.78297579244331, 40.844680948020375],
+ [-73.783365362015246, 40.844444722982921],
+ [-73.78306041018179, 40.844372063894077],
+ [-73.783011297633692, 40.84417269034595],
+ [-73.783269871388399, 40.844069392091583],
+ [-73.783094947062864, 40.843866093899656],
+ [-73.783484287488164, 40.843678545998436],
+ [-73.783188838821161, 40.843763135582584],
+ [-73.783474812492528, 40.843654738109706],
+ [-73.783191945188008, 40.842867863983848],
+ [-73.783045398154457, 40.842896332066672],
+ [-73.78321038850865, 40.843479338866466],
+ [-73.78291098678902, 40.842922355005555],
+ [-73.783139260348563, 40.842822319491283],
+ [-73.782917470851174, 40.842806445679088],
+ [-73.783123830865023, 40.842736202994878],
+ [-73.782887783014857, 40.842494828849603],
+ [-73.782733193767768, 40.842521705498463],
+ [-73.782815845260572, 40.842764522596617],
+ [-73.782706699825695, 40.842532475810309],
+ [-73.782299412709179, 40.842605896413303],
+ [-73.782444524045943, 40.84304203441669],
+ [-73.782266828747382, 40.842612018228202],
+ [-73.781800483624494, 40.842696145793632],
+ [-73.781933065936713, 40.843228088076422],
+ [-73.781771969939086, 40.842702273493202],
+ [-73.78124656634499, 40.842797107289435],
+ [-73.781427852549456, 40.843370873277635],
+ [-73.781216011854681, 40.842804777396935],
+ [-73.780674299250208, 40.842907304537675],
+ [-73.780829036813032, 40.843507297145663],
+ [-73.780643760596533, 40.842910337119534],
+ [-73.78029552532071, 40.842973044893938],
+ [-73.780227738726808, 40.843778181297694],
+ [-73.780226624184124, 40.842883267930304],
+ [-73.782864993049188, 40.842478101882691],
+ [-73.780597357564176, 40.842786599939714],
+ [-73.78236855953503, 40.842428493149633],
+ [-73.782151661395545, 40.842355228111309],
+ [-73.782311109767235, 40.842224178958389],
+ [-73.781620550880987, 40.842329494889242],
+ [-73.782306433841043, 40.842211115308658],
+ [-73.782332572158921, 40.841922844111366],
+ [-73.781440031078489, 40.84214213349339],
+ [-73.782323512859506, 40.841898330454576],
+ [-73.782037526001218, 40.84184191671627],
+ [-73.782263453262431, 40.841778115982422],
+ [-73.782015934356068, 40.841793189025147],
+ [-73.782166244851396, 40.841689144111342],
+ [-73.781299281155697, 40.841794441623577],
+ [-73.781338685715582, 40.841996218484148],
+ [-73.781248635025037, 40.841877807985313],
+ [-73.781132901012668, 40.841910626053568],
+ [-73.781197722388939, 40.842042029372983],
+ [-73.780979357270908, 40.841952935336764],
+ [-73.781023544250147, 40.842092994411558],
+ [-73.780846439969466, 40.841989198625754],
+ [-73.780887174486566, 40.8421344670586],
+ [-73.780696328021335, 40.842032383000635],
+ [-73.780720988966152, 40.842191532306998],
+ [-73.780655082842529, 40.842041868866268],
+ [-73.780562927070164, 40.842214705203638],
+ [-73.780348051582251, 40.842109098224434],
+ [-73.780425771815317, 40.842494394206817],
+ [-73.780298639761568, 40.842511540467299],
+ [-73.780195999552873, 40.842046210976143],
+ [-73.781850481977813, 40.841653946394274],
+ [-73.781660512137748, 40.84112417458303],
+ [-73.780842238023098, 40.841276324028101],
+ [-73.780892206101512, 40.841553084198239],
+ [-73.780797529896347, 40.841256146049616],
+ [-73.781648553617657, 40.841097763530037],
+ [-73.7813914356895, 40.841036609618143],
+ [-73.781610696515287, 40.84099624002566],
+ [-73.781374882611289, 40.8409788710063],
+ [-73.781593968710794, 40.840939796746781],
+ [-73.781418050718869, 40.840714755716164],
+ [-73.781542960605393, 40.840386661604434],
+ [-73.781491720069354, 40.840206224525211],
+ [-73.781253619009107, 40.840255499937506],
+ [-73.781488780892531, 40.840197323922027],
+ [-73.781362672453156, 40.839730189816279],
+ [-73.781179478685758, 40.839745862257054],
+ [-73.781359320106731, 40.839711708215745],
+ [-73.781341252119404, 40.839478563444132],
+ [-73.781138757921383, 40.839494278802974],
+ [-73.781339888494173, 40.839469699830246],
+ [-73.781567809835096, 40.838537405736297],
+ [-73.782004209890431, 40.8380155723071],
+ [-73.781884557202801, 40.837650276604748],
+ [-73.7823814255608, 40.837324106167358],
+ [-73.782727607388253, 40.837487959346241],
+ [-73.782906291908787, 40.837320006072716],
+ [-73.782703645836506, 40.836842801965531],
+ [-73.782681315017626, 40.836483677154789],
+ [-73.782822601397385, 40.836338155887873],
+ [-73.783029218627348, 40.836345852344742],
+ [-73.783381680593351, 40.836909271680632],
+ [-73.784101645913125, 40.836725529357928],
+ [-73.784484561400149, 40.837024222538524],
+ [-73.784980603280943, 40.836746426080545],
+ [-73.785082267091155, 40.836881907209154],
+ [-73.784503339653611, 40.837057765171103],
+ [-73.784850092226634, 40.837470489178493],
+ [-73.785125821093104, 40.837446041568164],
+ [-73.785639978454526, 40.837064434585322],
+ [-73.785830679641222, 40.837209980004516],
+ [-73.785652795723195, 40.837132104725967],
+ [-73.785165844286638, 40.837471334061753],
+ [-73.785277129484214, 40.837756718086908],
+ [-73.785577968509486, 40.837927113225348],
+ [-73.78553011511525, 40.838798277338341],
+ [-73.785735092986897, 40.839234231775805],
+ [-73.786525984964257, 40.839723115606979],
+ [-73.787407587460109, 40.839677623196884],
+ [-73.787639312190095, 40.840531895236651],
+ [-73.787357242444585, 40.840590771776618],
+ [-73.787491664125952, 40.840842341674019],
+ [-73.78818132144562, 40.84071108050135],
+ [-73.788159211003418, 40.840490778565815],
+ [-73.788254532834557, 40.840745863118471],
+ [-73.787523797336959, 40.840879612185148],
+ [-73.787786567951002, 40.840892222012755],
+ [-73.78786404049697, 40.841081725834869],
+ [-73.787612377825923, 40.841198005295823],
+ [-73.787844874994789, 40.841471479333229],
+ [-73.788366174089631, 40.841504610010162],
+ [-73.788020035503621, 40.841783841458749],
+ [-73.78829358843862, 40.841785373136652],
+ [-73.78805599136966, 40.841867030178754],
+ [-73.788384566136742, 40.842381978370589],
+ [-73.788838648951483, 40.842350395961155],
+ [-73.788527808673749, 40.842425576894726],
+ [-73.789058255013657, 40.843235331770025],
+ [-73.7896166032845, 40.843112654364973],
+ [-73.789924248582423, 40.843224154239472],
+ [-73.789930933882502, 40.843042264363646],
+ [-73.78999975375217, 40.843307817244785],
+ [-73.789861838582809, 40.843250954146683],
+ [-73.789889536038388, 40.84338093446727],
+ [-73.789734692605862, 40.843413247477471],
+ [-73.78989919889905, 40.843417146659021],
+ [-73.78980449435862, 40.843586656281154],
+ [-73.789337086595353, 40.843681498054309],
+ [-73.789471822140939, 40.84429297835203],
+ [-73.790665890010217, 40.845741558834384],
+ [-73.79098858375896, 40.84565283206247],
+ [-73.790697853648581, 40.845786012550832],
+ [-73.790973333106777, 40.846357311524962],
+ [-73.791490765135578, 40.846251004965239],
+ [-73.791127593128309, 40.846357590950717],
+ [-73.791181287853448, 40.84655567592975],
+ [-73.791413791144407, 40.846547847032802],
+ [-73.791324519472994, 40.846608731996596],
+ [-73.791480346595023, 40.846802052712484],
+ [-73.791793436254551, 40.846731672329277],
+ [-73.791367098584502, 40.8468876426858],
+ [-73.79148637416958, 40.846958803260229],
+ [-73.791440496883297, 40.847306043483542],
+ [-73.791919978100879, 40.84725821803071],
+ [-73.791429627564995, 40.847359989174358],
+ [-73.791541048822666, 40.847538017298206],
+ [-73.791267085673624, 40.847601867354058],
+ [-73.791329760362359, 40.84805792306544],
+ [-73.791617654314507, 40.848052924407796],
+ [-73.791335880632317, 40.848086238652414],
+ [-73.791111954078829, 40.848808127034154],
+ [-73.790919717940866, 40.848866873016995],
+ [-73.791013623389901, 40.848985209716794],
+ [-73.790887102073697, 40.848886563296524],
+ [-73.789757110706105, 40.849531469287605],
+ [-73.789858369521909, 40.849972559361852],
+ [-73.79098877124963, 40.849828348526991],
+ [-73.789866303801546, 40.849989389699232],
+ [-73.790017587891654, 40.850316331459922],
+ [-73.790357670479153, 40.850142334617111],
+ [-73.790405060543094, 40.850272762713963],
+ [-73.790024118294909, 40.850347819582844],
+ [-73.789918724828681, 40.850611727137753],
+ [-73.791023811304228, 40.850432275424033],
+ [-73.789929536266612, 40.850626122554992],
+ [-73.790070931707518, 40.850932020106761],
+ [-73.790247648375185, 40.850903510522798],
+ [-73.790086400219081, 40.850984473853458],
+ [-73.790268245072681, 40.850961088073802],
+ [-73.790090944519363, 40.850994764404064],
+ [-73.790124391718308, 40.851189912194556],
+ [-73.789513715161675, 40.85130077171312],
+ [-73.789662762834084, 40.851488703322133],
+ [-73.789785107026489, 40.851462293880694],
+ [-73.789665719140146, 40.851338642824828],
+ [-73.790057814269247, 40.851414530211066],
+ [-73.790017970535416, 40.851259470959484],
+ [-73.790089615699927, 40.851407163589769],
+ [-73.790345187979469, 40.851366793054979],
+ [-73.790337095180746, 40.851220143851037],
+ [-73.790379436533073, 40.851358503723979],
+ [-73.790824541989707, 40.85128970631839],
+ [-73.790817653529558, 40.85114862715578],
+ [-73.790987179842986, 40.851264015299037],
+ [-73.790890184358247, 40.851403977437691],
+ [-73.789664902783315, 40.851500382130865],
+ [-73.789725736458948, 40.851692670563722],
+ [-73.790892179300741, 40.851546903548872],
+ [-73.790195886672848, 40.851752904562886],
+ [-73.790463705280985, 40.851767006153977],
+ [-73.790083969041163, 40.852034527382187],
+ [-73.790155092610107, 40.852251285235795],
+ [-73.790160951501818, 40.852040235425761],
+ [-73.790274043019721, 40.85222327109372],
+ [-73.790532123546512, 40.852163414643947],
+ [-73.790452003361011, 40.851989720950272],
+ [-73.790574934103063, 40.852153284134332],
+ [-73.790806105877692, 40.852099875967738],
+ [-73.790743094993672, 40.851926212494341],
+ [-73.790560925243284, 40.851944443891369],
+ [-73.79079463354843, 40.851861341385735],
+ [-73.790853807839085, 40.85208882496957],
+ [-73.791111961505763, 40.852005767311049],
+ [-73.791010971184562, 40.85186080525289],
+ [-73.791173667311199, 40.851816553269423],
+ [-73.791187707645491, 40.852016112506718],
+ [-73.791462933390321, 40.85194514919408],
+ [-73.791320451175096, 40.851779696094127],
+ [-73.791517386779503, 40.851729935890866],
+ [-73.791495968804043, 40.851934072422495],
+ [-73.791866920271332, 40.851791661387004]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 143,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.782832556073245, 40.843865142505784],
+ [-73.782803952504523, 40.843873331962207],
+ [-73.782572107241037, 40.843294581440702],
+ [-73.782784986356603, 40.843754545480898],
+ [-73.783091861123793, 40.843685054811175],
+ [-73.782873882431872, 40.843124102362339],
+ [-73.78313252568671, 40.843697496731735],
+ [-73.782806615065581, 40.84377931612201],
+ [-73.782832556073245, 40.843865142505784]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 144,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.782458800187328, 40.843972152143984],
+ [-73.782427508127682, 40.843981111339296],
+ [-73.78224871668732, 40.843436168417476],
+ [-73.782458800187328, 40.843972152143984]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 145,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.782033837018488, 40.844093822883252],
+ [-73.782005224865514, 40.844102014797421],
+ [-73.781833065993609, 40.843575518304867],
+ [-73.782033837018488, 40.844093822883252]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 146,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.7818673707729, 40.84414148365164],
+ [-73.780527361147264, 40.8445251403394],
+ [-73.779927037444381, 40.843883081355827],
+ [-73.780533027145609, 40.844453021762618],
+ [-73.780396232820095, 40.843966408179753],
+ [-73.780584647950633, 40.844434572699456],
+ [-73.781062613642987, 40.844328317876688],
+ [-73.780876901987099, 40.843862220487779],
+ [-73.781089777978522, 40.844320127077602],
+ [-73.781546025233339, 40.844215889747694],
+ [-73.781376741645474, 40.843704486541277],
+ [-73.781575903028624, 40.844207702967857],
+ [-73.7818673707729, 40.84414148365164]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 147,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.767832056371674, 40.854442205742032],
+ [-73.76855660327054, 40.853238322959399],
+ [-73.769044389871283, 40.853290924693574],
+ [-73.769385291396986, 40.852536133996786],
+ [-73.768608176870998, 40.850788395378075],
+ [-73.769596743776518, 40.847594519099502],
+ [-73.769503216289394, 40.84721783423646],
+ [-73.767894926730023, 40.84528943251447],
+ [-73.769013891811241, 40.845097342721822],
+ [-73.771183780105758, 40.846944513312089],
+ [-73.7715721876706, 40.847500058579044],
+ [-73.770889202873605, 40.849751771339307],
+ [-73.772049636684542, 40.851618289757383],
+ [-73.772711174961444, 40.851826580933668],
+ [-73.772465941266674, 40.851833683999693],
+ [-73.772460522292462, 40.852059542172348],
+ [-73.772963566112878, 40.852159253958554],
+ [-73.772648377469224, 40.852224402629503],
+ [-73.772890756651137, 40.852398268996907],
+ [-73.772459401630229, 40.852106267082135],
+ [-73.772451494816693, 40.852435896894796],
+ [-73.77173060478097, 40.852476831320402],
+ [-73.771717159365437, 40.853004539281812],
+ [-73.772296805313815, 40.853086378252364],
+ [-73.772349175213606, 40.853851419732798],
+ [-73.772962854010615, 40.85380006224775],
+ [-73.772958175170444, 40.854137432923366],
+ [-73.772795977881401, 40.854131758703147],
+ [-73.772694480260554, 40.853906639013331],
+ [-73.772332722197376, 40.853900844675195],
+ [-73.772140368418178, 40.854412712600571],
+ [-73.772181529913411, 40.85886834678476],
+ [-73.772354327106527, 40.859673161980531],
+ [-73.772192230554225, 40.859986638596922],
+ [-73.770845623605695, 40.860101012856738],
+ [-73.769473054240123, 40.859330136668561],
+ [-73.768362772245965, 40.858358288850511],
+ [-73.768360859853473, 40.857655362702076],
+ [-73.765332439952914, 40.855043595124869],
+ [-73.767832056371674, 40.854442205742032]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "id": 148,
+ "properties": {
+ "communityDistrict": 210,
+ "@id": "http://nyc.pediacities.com/Resource/CommunityDistrict/210"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-73.820139251591158, 40.885510427950329],
+ [-73.819733652109988, 40.88562389796774],
+ [-73.819465662940473, 40.883780568495617],
+ [-73.81955499266364, 40.882797941540737],
+ [-73.819197673770958, 40.88217263347854],
+ [-73.81955499266364, 40.882083303755365],
+ [-73.819822981833155, 40.881725984862683],
+ [-73.819108344047791, 40.881368665969994],
+ [-73.819644322386822, 40.880922017354145],
+ [-73.820090971002671, 40.880832687630971],
+ [-73.819822981833155, 40.880028720122432],
+ [-73.820180300725838, 40.879760730952917],
+ [-73.820269630449019, 40.87815279593584],
+ [-73.820984268234383, 40.877348828427301],
+ [-73.82107359795755, 40.876902179811445],
+ [-73.820805608788035, 40.876187542026074],
+ [-73.820537619618534, 40.876187542026074],
+ [-73.820537619618534, 40.87663419064193],
+ [-73.820805608788035, 40.877080839257786],
+ [-73.820180300725838, 40.876991509534619],
+ [-73.820001641279504, 40.876812850088271],
+ [-73.819912311556337, 40.876276871749248],
+ [-73.820001641279504, 40.876098212302907],
+ [-73.820358960172186, 40.876008882579733],
+ [-73.820448289895353, 40.875383574517535],
+ [-73.820626949341701, 40.875294244794368],
+ [-73.821341587127066, 40.875472904240709],
+ [-73.821341587127066, 40.875204915071194],
+ [-73.821252257403899, 40.874936925901679],
+ [-73.820448289895353, 40.874936925901679],
+ [-73.820090971002671, 40.874758266455338],
+ [-73.819912311556337, 40.874400947562656],
+ [-73.819287003494139, 40.874311617839481],
+ [-73.819376333217306, 40.874043628669973],
+ [-73.819822981833155, 40.874043628669973],
+ [-73.819644322386822, 40.873864969223632],
+ [-73.819287003494139, 40.873954298946799],
+ [-73.819019014324624, 40.873775639500458],
+ [-73.819019014324624, 40.873507650330943],
+ [-73.819197673770958, 40.873418320607776],
+ [-73.820180300725838, 40.873596980054117],
+ [-73.820090971002671, 40.873954298946799],
+ [-73.820448289895353, 40.87449027728583],
+ [-73.820984268234383, 40.874400947562656],
+ [-73.822145554635611, 40.874758266455338],
+ [-73.821966895189263, 40.873686309777284],
+ [-73.821341587127066, 40.87413295839314],
+ [-73.820716279064868, 40.87413295839314],
+ [-73.820716279064868, 40.873775639500458],
+ [-73.820984268234383, 40.873239661161435],
+ [-73.821877565466096, 40.873150331438261],
+ [-73.821877565466096, 40.872525023376063],
+ [-73.821609576296581, 40.872525023376063],
+ [-73.821252257403899, 40.872793012545579],
+ [-73.821162927680732, 40.872614353099237],
+ [-73.821162927680732, 40.872346363929722],
+ [-73.821788235742929, 40.872167704483381],
+ [-73.821966895189263, 40.871810385590692],
+ [-73.821877565466096, 40.870559769466297],
+ [-73.821520246573414, 40.870023791127274],
+ [-73.820805608788035, 40.870202450573615],
+ [-73.820894938511216, 40.8699344614041],
+ [-73.820716279064868, 40.86948781278825],
+ [-73.820180300725838, 40.869219823618735],
+ [-73.819108344047791, 40.869309153341902],
+ [-73.818751025155109, 40.868505185833364],
+ [-73.817321749584366, 40.867343899432143],
+ [-73.817143090138032, 40.867701218324825],
+ [-73.817321749584366, 40.868505185833364],
+ [-73.818036387369744, 40.868505185833364],
+ [-73.818751025155109, 40.869755801957758],
+ [-73.818304376539245, 40.870113120850448],
+ [-73.817857727923396, 40.869309153341902],
+ [-73.817500409030714, 40.869219823618735],
+ [-73.81678577124535, 40.869398483065076],
+ [-73.815981803736804, 40.87047043974313],
+ [-73.81526716595144, 40.8699344614041],
+ [-73.815445825397774, 40.869666472234591],
+ [-73.815445825397774, 40.868505185833364],
+ [-73.814373868719727, 40.868058537217507],
+ [-73.81526716595144, 40.866093283307748],
+ [-73.816964430691684, 40.864485348290671],
+ [-73.816517782075834, 40.864217359121156],
+ [-73.815088506505091, 40.865467975245551],
+ [-73.815088506505091, 40.863949369951641],
+ [-73.814820517335576, 40.863413391612617],
+ [-73.816339122629486, 40.86126947825651],
+ [-73.81678577124535, 40.86126947825651],
+ [-73.816964430691684, 40.860822829640654],
+ [-73.817411079307547, 40.860822829640654],
+ [-73.817679068477048, 40.861090818810169],
+ [-73.818483035985594, 40.860912159363828],
+ [-73.818661695431942, 40.860644170194313],
+ [-73.818393706262427, 40.860108191855289],
+ [-73.818751025155109, 40.859304224346744],
+ [-73.820180300725838, 40.859304224346744],
+ [-73.820180300725838, 40.859036235177236],
+ [-73.820626949341701, 40.858946905454061],
+ [-73.821877565466096, 40.859393554069918],
+ [-73.821877565466096, 40.8597508729626],
+ [-73.822234884358778, 40.8597508729626],
+ [-73.822145554635611, 40.860018862132115],
+ [-73.822413543805126, 40.860018862132115],
+ [-73.822413543805126, 40.860197521578456],
+ [-73.821698906019748, 40.860465510747972],
+ [-73.821698906019748, 40.859929532408941],
+ [-73.821341587127066, 40.860018862132115],
+ [-73.821341587127066, 40.859393554069918],
+ [-73.820984268234383, 40.859482883793092],
+ [-73.820805608788035, 40.859840202685774],
+ [-73.820269630449019, 40.8597508729626],
+ [-73.820001641279504, 40.859929532408941],
+ [-73.820358960172186, 40.860465510747972],
+ [-73.820090971002671, 40.861180148533336],
+ [-73.81955499266364, 40.861358807979684],
+ [-73.818929684601443, 40.862162775488223],
+ [-73.819019014324624, 40.86225210521139],
+ [-73.830006570274662, 40.858053608222349],
+ [-73.82964925138198, 40.856356343482105],
+ [-73.828934613596601, 40.855731035419907],
+ [-73.828577294703919, 40.855731035419907],
+ [-73.827773327195388, 40.854480419295513],
+ [-73.827416008302706, 40.8535871220638],
+ [-73.827505338025873, 40.852961814001603],
+ [-73.826880029963675, 40.853140473447944],
+ [-73.827326678579524, 40.8495672845211],
+ [-73.827237348856357, 40.84840599811988],
+ [-73.825986732731963, 40.846530073933287],
+ [-73.825540084116113, 40.846530073933287],
+ [-73.825540084116113, 40.845726106424749],
+ [-73.820448289895353, 40.848495327843047],
+ [-73.820090971002671, 40.847959349504023],
+ [-73.816071133459971, 40.848495327843047],
+ [-73.815803144290456, 40.848941976458903],
+ [-73.815088506505091, 40.848941976458903],
+ [-73.816160463183152, 40.847512700888167],
+ [-73.815892474013637, 40.846530073933287],
+ [-73.814641857889242, 40.846440744210113],
+ [-73.81428453899656, 40.846262084763772],
+ [-73.814463198442894, 40.845815436147916],
+ [-73.814105879550212, 40.845815436147916],
+ [-73.812676603979469, 40.845190128085719],
+ [-73.812051295917271, 40.846708733379629],
+ [-73.81178330674777, 40.846440744210113],
+ [-73.81276593370265, 40.844118171407665],
+ [-73.813391241764847, 40.845100798362552],
+ [-73.813927220103864, 40.845011468639377],
+ [-73.813927220103864, 40.844564820023521],
+ [-73.813569901211181, 40.844207501130839],
+ [-73.813569901211181, 40.843582193068642],
+ [-73.814195209273379, 40.843582193068642],
+ [-73.814373868719727, 40.843046214729618],
+ [-73.815356495674607, 40.843760852514983],
+ [-73.815803144290456, 40.844475490300354],
+ [-73.816249792906319, 40.844028841684498],
+ [-73.817232419861199, 40.844475490300354],
+ [-73.818036387369744, 40.844207501130839],
+ [-73.816964430691684, 40.844118171407665],
+ [-73.816249792906319, 40.84286755528327],
+ [-73.815445825397774, 40.842510236390588],
+ [-73.815356495674607, 40.841170290543026],
+ [-73.814909847058757, 40.839919674418631],
+ [-73.814909847058757, 40.839026377186919],
+ [-73.816160463183152, 40.838669058294236],
+ [-73.816517782075834, 40.838133079955206],
+ [-73.816339122629486, 40.837061123277152],
+ [-73.815981803736804, 40.836346485491788],
+ [-73.815981803736804, 40.834023912689339],
+ [-73.81526716595144, 40.83152268044055],
+ [-73.814373868719727, 40.83054005348567],
+ [-73.813837890380697, 40.829289437361275],
+ [-73.812676603979469, 40.828306810406389],
+ [-73.809996712284345, 40.828306810406389],
+ [-73.809818052837997, 40.828038821236881],
+ [-73.810175371730679, 40.827860161790539],
+ [-73.812587274256302, 40.827681502344191],
+ [-73.813659230934363, 40.826877534835653],
+ [-73.813927220103864, 40.826341556496629],
+ [-73.813837890380697, 40.825894907880773],
+ [-73.813391241764847, 40.825269599818576],
+ [-73.813391241764847, 40.824912280925894],
+ [-73.813837890380697, 40.824644291756378],
+ [-73.813837890380697, 40.824376302586863],
+ [-73.813569901211181, 40.824018983694181],
+ [-73.813123252595332, 40.824018983694181],
+ [-73.81276593370265, 40.824554962033204],
+ [-73.811515317578255, 40.824554962033204],
+ [-73.809550063668482, 40.825448259264917],
+ [-73.808924755606284, 40.825984237603947],
+ [-73.807584809758723, 40.825716248434432],
+ [-73.806602182803843, 40.824822951202719],
+ [-73.806423523357495, 40.823483005355158],
+ [-73.80570888557213, 40.821785740614907],
+ [-73.806155534187994, 40.820624454213679],
+ [-73.804011620831886, 40.818480540857578],
+ [-73.80267167498431, 40.818391211134404],
+ [-73.802046366922113, 40.818569870580745],
+ [-73.800617091351384, 40.818033892241722],
+ [-73.800527761628217, 40.817408584179525],
+ [-73.797758540209912, 40.816872605840494],
+ [-73.797311891594049, 40.816336627501471],
+ [-73.797311891594049, 40.815711319439274],
+ [-73.797847869933079, 40.815800649162441],
+ [-73.798115859102595, 40.815532659992932],
+ [-73.799009156334307, 40.815532659992932],
+ [-73.800170442735521, 40.813924724975848],
+ [-73.800885080520899, 40.813835395252681],
+ [-73.801153069690415, 40.813210087190484],
+ [-73.801957037198946, 40.812674108851454],
+ [-73.803028993877007, 40.812495449405112],
+ [-73.803654301939204, 40.813031427744143],
+ [-73.803296983046508, 40.813567406083166],
+ [-73.803743631662371, 40.814103384422197],
+ [-73.806959501696525, 40.816961935563668],
+ [-73.806959501696525, 40.816336627501471],
+ [-73.806512853080676, 40.815532659992932],
+ [-73.805887545018479, 40.815175341100243],
+ [-73.805262236956281, 40.814550033038046],
+ [-73.805351566679448, 40.813746065529507],
+ [-73.804904918063599, 40.812674108851454],
+ [-73.804368939724569, 40.812495449405112],
+ [-73.803743631662371, 40.811959471066089],
+ [-73.803118323600174, 40.810708854941694],
+ [-73.801957037198946, 40.810351536049012],
+ [-73.801599718306264, 40.810708854941694],
+ [-73.800974410244066, 40.810708854941694],
+ [-73.801331729136749, 40.810172876602671],
+ [-73.800170442735521, 40.809994217156323],
+ [-73.799723794119672, 40.809726227986815],
+ [-73.798562507718444, 40.809726227986815],
+ [-73.793202724328182, 40.807224995738025],
+ [-73.791952108203787, 40.806778347122169],
+ [-73.791237470418423, 40.807046336291684],
+ [-73.79132680014159, 40.807671644353881],
+ [-73.790880151525741, 40.807314325461192],
+ [-73.79079082180256, 40.806689017398995],
+ [-73.790433502909877, 40.806063709336797],
+ [-73.790254843463543, 40.804991752658744],
+ [-73.790969481248908, 40.804187785150205],
+ [-73.792220097373303, 40.803919795980697],
+ [-73.793738702667213, 40.804277114873379],
+ [-73.794810659345259, 40.8054384012746],
+ [-73.795525297130638, 40.80597437961363],
+ [-73.795614626853805, 40.805706390444115],
+ [-73.795971945746487, 40.805706390444115],
+ [-73.796239934916002, 40.806063709336797],
+ [-73.798651837441625, 40.807046336291684],
+ [-73.801599718306264, 40.809011590201443],
+ [-73.803922291108705, 40.808564941585587],
+ [-73.804636928894084, 40.809190249647784],
+ [-73.806602182803843, 40.810262206325838],
+ [-73.80722749086604, 40.811155503557551],
+ [-73.808299447544087, 40.812048800789263],
+ [-73.809996712284345, 40.812942098020969],
+ [-73.815624484844122, 40.813478076359999],
+ [-73.816339122629486, 40.813924724975848],
+ [-73.817411079307547, 40.813567406083166],
+ [-73.820894938511216, 40.812942098020969],
+ [-73.825718743562447, 40.811512822450233],
+ [-73.82813064608807, 40.811423492727066],
+ [-73.829559921658799, 40.811155503557551],
+ [-73.830989197229542, 40.810262206325838],
+ [-73.831793164738087, 40.809368909094125],
+ [-73.832239813353937, 40.808118292969731],
+ [-73.832061153907588, 40.807314325461192],
+ [-73.831435845845391, 40.806510357952654],
+ [-73.832061153907588, 40.806063709336797],
+ [-73.831703835014906, 40.804902422935577],
+ [-73.833043780862468, 40.804902422935577],
+ [-73.835187694218575, 40.8054384012746],
+ [-73.836616969789318, 40.805617060720941],
+ [-73.83795691563688, 40.80695700656851],
+ [-73.83795691563688, 40.808207622692905],
+ [-73.838850212868593, 40.809368909094125],
+ [-73.840368818162503, 40.812048800789263],
+ [-73.840368818162503, 40.813388746636825],
+ [-73.839654180377138, 40.814192714145364],
+ [-73.83947552093079, 40.815979308608789],
+ [-73.840100828992988, 40.816872605840494],
+ [-73.840100828992988, 40.817765903072207],
+ [-73.838671553422245, 40.819373838089284],
+ [-73.83893954259176, 40.819999146151481],
+ [-73.838850212868593, 40.821160432552709],
+ [-73.839118202038108, 40.822589708123445],
+ [-73.839743510100305, 40.824286972863696],
+ [-73.840279488439336, 40.824733621479552],
+ [-73.841262115394215, 40.826877534835653],
+ [-73.842334072072262, 40.828306810406389],
+ [-73.841887423456413, 40.830808042655178],
+ [-73.838671553422245, 40.833487934350316],
+ [-73.839207531761275, 40.836435815214955],
+ [-73.839207531761275, 40.838937047463745],
+ [-73.83947552093079, 40.838847717740578],
+ [-73.839654180377138, 40.839741014972283],
+ [-73.840100828992988, 40.839651685249116],
+ [-73.839922169546639, 40.835542517983249],
+ [-73.85180302272839, 40.83420257213568],
+ [-73.8533216280223, 40.842331576944247],
+ [-73.848229833801554, 40.842956885006444],
+ [-73.845103293490567, 40.845458117255234],
+ [-73.843584688196657, 40.844118171407665],
+ [-73.841262115394215, 40.84072364192717],
+ [-73.838492893975911, 40.840902301373511],
+ [-73.837688926467365, 40.843135544452785],
+ [-73.836348980619803, 40.848138008950365],
+ [-73.835991661727121, 40.851621868154034],
+ [-73.835455683388091, 40.853140473447944],
+ [-73.834294396986863, 40.85456974901868],
+ [-73.832061153907588, 40.856356343482105],
+ [-73.830453218890511, 40.858500256838205],
+ [-73.828041316364903, 40.861180148533336],
+ [-73.8286666244271, 40.862162775488223],
+ [-73.830185229720996, 40.863949369951641],
+ [-73.833311770031983, 40.869398483065076],
+ [-73.834294396986863, 40.872346363929722],
+ [-73.834562386156378, 40.874400947562656],
+ [-73.834294396986863, 40.876276871749248],
+ [-73.833758418647847, 40.878063466212666],
+ [-73.832507802523452, 40.879939390399258],
+ [-73.828934613596601, 40.882351292924881],
+ [-73.82509343550025, 40.884137887388299],
+ [-73.820139251591158, 40.885510427950329]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/examples/src/assets/geojson/smiley.json b/packages/examples/src/assets/geojson/smiley.json
new file mode 100755
index 000000000..ee821b6f1
--- /dev/null
+++ b/packages/examples/src/assets/geojson/smiley.json
@@ -0,0 +1,55 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-50.2734375, 55.578344672182],
+ [-53.4375, 47.989921667414],
+ [-42.5390625, 47.989921667414],
+ [-41.484375, 55.578344672182],
+ [-50.2734375, 55.578344672182]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-26.71875, 54.977613670696],
+ [-27.7734375, 47.517200697839],
+ [-15.46875, 48.458351882809],
+ [-18.6328125, 54.977613670696],
+ [-26.71875, 54.977613670696]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-52.734375, 39.095962936306],
+ [-32.34375, 29.840643899834],
+ [-14.0625, 38.822590976177],
+ [-14.0625, 30.448673679288],
+ [-32.34375, 21.943045533438],
+ [-53.7890625, 28.613459424004],
+ [-52.734375, 39.095962936306]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/examples/src/assets/giphy.gif b/packages/examples/src/assets/giphy.gif
deleted file mode 100755
index a1c6a6545..000000000
Binary files a/packages/examples/src/assets/giphy.gif and /dev/null differ
diff --git a/packages/examples/src/assets/grid_pattern.png b/packages/examples/src/assets/grid_pattern.png
deleted file mode 100755
index 3f50fc946..000000000
Binary files a/packages/examples/src/assets/grid_pattern.png and /dev/null differ
diff --git a/packages/examples/src/assets/images/maplibre.png b/packages/examples/src/assets/images/maplibre.png
new file mode 100644
index 000000000..f0ecbd4a8
Binary files /dev/null and b/packages/examples/src/assets/images/maplibre.png differ
diff --git a/packages/examples/src/assets/images/maplibre@2x.png b/packages/examples/src/assets/images/maplibre@2x.png
new file mode 100644
index 000000000..ac09bb246
Binary files /dev/null and b/packages/examples/src/assets/images/maplibre@2x.png differ
diff --git a/packages/examples/src/assets/images/maplibre@3x.png b/packages/examples/src/assets/images/maplibre@3x.png
new file mode 100644
index 000000000..09a19f9fc
Binary files /dev/null and b/packages/examples/src/assets/images/maplibre@3x.png differ
diff --git a/packages/examples/src/assets/images/radar0.png b/packages/examples/src/assets/images/radar0.png
new file mode 100755
index 000000000..17c1c8c3b
Binary files /dev/null and b/packages/examples/src/assets/images/radar0.png differ
diff --git a/packages/examples/src/assets/images/radar1.png b/packages/examples/src/assets/images/radar1.png
new file mode 100755
index 000000000..7a9129e3e
Binary files /dev/null and b/packages/examples/src/assets/images/radar1.png differ
diff --git a/packages/examples/src/assets/images/radar2.png b/packages/examples/src/assets/images/radar2.png
new file mode 100755
index 000000000..7a4cc812d
Binary files /dev/null and b/packages/examples/src/assets/images/radar2.png differ
diff --git a/packages/examples/src/assets/indoor_3d_map.json b/packages/examples/src/assets/indoor_3d_map.json
deleted file mode 100755
index b68876c9a..000000000
--- a/packages/examples/src/assets/indoor_3d_map.json
+++ /dev/null
@@ -1,1321 +0,0 @@
-{
- "features": [
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Bird Exhibit",
- "height": 0,
- "base_height": 0,
- "color": "orange"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.618312,
- 41.866282
- ],
- [
- -87.61832,
- 41.866674
- ],
- [
- -87.618087,
- 41.866676
- ],
- [
- -87.618087,
- 41.866661
- ],
- [
- -87.617423,
- 41.86667
- ],
- [
- -87.617416,
- 41.8663
- ],
- [
- -87.618312,
- 41.866282
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "06e8fa0b3f851e3ae0e1da5fc17e111e"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Bird Exhibit",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617808,
- 41.866266
- ],
- [
- -87.617806,
- 41.866293
- ],
- [
- -87.617415,
- 41.866298
- ],
- [
- -87.617424,
- 41.866671
- ],
- [
- -87.617382,
- 41.866669
- ],
- [
- -87.617371,
- 41.866274
- ],
- [
- -87.617808,
- 41.866266
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "08a10ab2bf15c4d14669b588062f7f08"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "East Hallway",
- "base_height": 0,
- "height": 0,
- "color": "indigo"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616704,
- 41.866141
- ],
- [
- -87.616707,
- 41.866338
- ],
- [
- -87.61572,
- 41.866355
- ],
- [
- -87.61572,
- 41.866148
- ],
- [
- -87.616704,
- 41.866141
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "09ead44537d94ece576c7bc001c33e53"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "East Entrance",
- "base_height": 0,
- "height": 0,
- "color": "violet"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.61544,
- 41.866149
- ],
- [
- -87.615449,
- 41.866358
- ],
- [
- -87.615721,
- 41.866355
- ],
- [
- -87.61572,
- 41.866143
- ],
- [
- -87.61544,
- 41.866149
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "12251ebf764b36cf3b8c5ad42e2deb29"
- },
- {
- "type": "Feature",
- "properties": {
- "height": 0,
- "base_height": 0,
- "level": 1,
- "name": "Under the Earth",
- "color": "red"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616701,
- 41.865816
- ],
- [
- -87.616705,
- 41.866115
- ],
- [
- -87.615712,
- 41.866125
- ],
- [
- -87.615706,
- 41.865802
- ],
- [
- -87.615936,
- 41.865801
- ],
- [
- -87.615938,
- 41.865824
- ],
- [
- -87.616701,
- 41.865816
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "1ce4f8c186a40b9927006644e27bfd69"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Atrium",
- "base_height": 0,
- "height": 0,
- "color": "yellow"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617365,
- 41.865799
- ],
- [
- -87.6167,
- 41.865815
- ],
- [
- -87.616718,
- 41.866672
- ],
- [
- -87.617384,
- 41.86667
- ],
- [
- -87.617365,
- 41.865799
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "369f5d8865e677120b7576b1de6082eb"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Ancient Egypt",
- "height": 0,
- "base_height": 0,
- "color": "blue"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.61807,
- 41.865761
- ],
- [
- -87.618299,
- 41.865758
- ],
- [
- -87.618307,
- 41.866139
- ],
- [
- -87.617407,
- 41.86615
- ],
- [
- -87.617399,
- 41.865799
- ],
- [
- -87.61807,
- 41.865789
- ],
- [
- -87.61807,
- 41.865761
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "3e9f198afe6d7dff01ac81c6eaa511fb"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "West Arch",
- "height": 40,
- "base_height": 30,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617424,
- 41.86667
- ],
- [
- -87.617384,
- 41.86667
- ],
- [
- -87.617365,
- 41.865799
- ],
- [
- -87.617405,
- 41.865799
- ],
- [
- -87.617424,
- 41.86667
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "402706f28b793d27c78d9615fff747f2"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Bird Exhibit",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.618312,
- 41.866283
- ],
- [
- -87.61797,
- 41.866288
- ],
- [
- -87.617972,
- 41.866265
- ],
- [
- -87.618312,
- 41.866259
- ],
- [
- -87.618312,
- 41.866283
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "43e1e2fc8399dee075ad59764f2a2878"
- },
- {
- "type": "Feature",
- "properties": {
- "name": "Arch",
- "level": 1,
- "color": "grey",
- "base_height": 30,
- "height": 40
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617971,
- 41.866291
- ],
- [
- -87.617973,
- 41.866265
- ],
- [
- -87.617805,
- 41.866267
- ],
- [
- -87.617806,
- 41.866294
- ],
- [
- -87.617971,
- 41.866291
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "4528ad9b9264cbec65bb2e55ac0012c1"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "color": "grey",
- "base_height": 30,
- "height": 40,
- "name": "Arch"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617979,
- 41.866167
- ],
- [
- -87.617797,
- 41.866168
- ],
- [
- -87.617799,
- 41.866145
- ],
- [
- -87.617976,
- 41.866144
- ],
- [
- -87.617979,
- 41.866167
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "4be6817c3b595042c8d971eebd0c4fd3"
- },
- {
- "type": "Feature",
- "properties": {
- "name": "Kids Zone",
- "level": 1,
- "base_height": 0,
- "height": 0,
- "color": "green"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616718,
- 41.866675
- ],
- [
- -87.616709,
- 41.866371
- ],
- [
- -87.615725,
- 41.866381
- ],
- [
- -87.615732,
- 41.866711
- ],
- [
- -87.61596,
- 41.866711
- ],
- [
- -87.61596,
- 41.866688
- ],
- [
- -87.616718,
- 41.866675
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "5775eba03674ea1cb3550ffb38321432"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "color": "grey",
- "name": "Arch",
- "height": 40,
- "base_height": 30
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616286,
- 41.866119
- ],
- [
- -87.616286,
- 41.866144
- ],
- [
- -87.616089,
- 41.866149
- ],
- [
- -87.616086,
- 41.86612
- ],
- [
- -87.616286,
- 41.866119
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "598832b1512dc9facc855c5367251531"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Arch",
- "color": "grey",
- "height": 40,
- "base_height": 30
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616287,
- 41.866343
- ],
- [
- -87.616288,
- 41.866374
- ],
- [
- -87.616076,
- 41.866378
- ],
- [
- -87.616077,
- 41.866347
- ],
- [
- -87.616287,
- 41.866343
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "59ed13d4411ff5f88714d9af539788d2"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "color": "grey",
- "name": "center_arch",
- "base_height": 30,
- "height": 40
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.61737,
- 41.866198
- ],
- [
- -87.617372,
- 41.86624
- ],
- [
- -87.616708,
- 41.866243
- ],
- [
- -87.616708,
- 41.866203
- ],
- [
- -87.61737,
- 41.866198
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "67f8952a18dfe21ee0744a3e86bc41d8"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Kids Zone",
- "height": 0,
- "base_height": 40,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.615719,
- 41.866354
- ],
- [
- -87.615718,
- 41.866381
- ],
- [
- -87.616077,
- 41.866378
- ],
- [
- -87.616077,
- 41.866347
- ],
- [
- -87.615719,
- 41.866354
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "6bb2c92386bcf4678113d6b3e400ae3b"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Under the Earth",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616089,
- 41.866149
- ],
- [
- -87.616089,
- 41.866119
- ],
- [
- -87.615711,
- 41.866124
- ],
- [
- -87.615713,
- 41.866147
- ],
- [
- -87.616089,
- 41.866149
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "844c87987089df6b9db3923f6a00e4d6"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Under the Earth",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616707,
- 41.866115
- ],
- [
- -87.616286,
- 41.866119
- ],
- [
- -87.616285,
- 41.866144
- ],
- [
- -87.616705,
- 41.866141
- ],
- [
- -87.616707,
- 41.866115
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "85547a1ecdbd2ca1fdc6324aea3c6b70"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "North Entrance",
- "height": 0,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617386,
- 41.86667
- ],
- [
- -87.617388,
- 41.866786
- ],
- [
- -87.617228,
- 41.866786
- ],
- [
- -87.617226,
- 41.866848
- ],
- [
- -87.616867,
- 41.866849
- ],
- [
- -87.616868,
- 41.866791
- ],
- [
- -87.616718,
- 41.866791
- ],
- [
- -87.616718,
- 41.866672
- ],
- [
- -87.617386,
- 41.86667
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "91ab1ee01729c33568c7b57eb258e699"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Ancient Egypt",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617394,
- 41.865799
- ],
- [
- -87.617405,
- 41.86615
- ],
- [
- -87.617802,
- 41.866147
- ],
- [
- -87.6178,
- 41.866167
- ],
- [
- -87.617369,
- 41.866172
- ],
- [
- -87.617364,
- 41.865799
- ],
- [
- -87.617394,
- 41.865799
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "943171d55d207024791e15294def7e8f"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Ancient Egypt",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617976,
- 41.866166
- ],
- [
- -87.617976,
- 41.866143
- ],
- [
- -87.618309,
- 41.866139
- ],
- [
- -87.618309,
- 41.866161
- ],
- [
- -87.617976,
- 41.866166
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "a37230898905988cab9b72927dc99258"
- },
- {
- "type": "Feature",
- "properties": {
- "name": "West Hallway",
- "level": 1,
- "base_height": 0,
- "height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.618309,
- 41.866161
- ],
- [
- -87.618312,
- 41.86626
- ],
- [
- -87.61737,
- 41.866272
- ],
- [
- -87.61737,
- 41.86617
- ],
- [
- -87.618309,
- 41.866161
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "c7cc79da8711d746985f23a9b22c1d5e"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "Kids Zone",
- "height": 40,
- "base_height": 0,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616286,
- 41.866343
- ],
- [
- -87.616286,
- 41.866374
- ],
- [
- -87.61671,
- 41.866371
- ],
- [
- -87.616708,
- 41.866338
- ],
- [
- -87.616286,
- 41.866343
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "cfbf2aee6a73a45c12e7fc7432d6009e"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "South Entrance",
- "height": 0,
- "base_height": 0,
- "color": "teal"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.617359,
- 41.865801
- ],
- [
- -87.617355,
- 41.865674
- ],
- [
- -87.617221,
- 41.865677
- ],
- [
- -87.617219,
- 41.86559
- ],
- [
- -87.616824,
- 41.865595
- ],
- [
- -87.616826,
- 41.86568
- ],
- [
- -87.616695,
- 41.865683
- ],
- [
- -87.6167,
- 41.865813
- ],
- [
- -87.617359,
- 41.865801
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "d71ab89467076ad023161c37f4ff0d5f"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "East Arch",
- "height": 40,
- "base_height": 30,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.616688,
- 41.866675
- ],
- [
- -87.616716,
- 41.866675
- ],
- [
- -87.616699,
- 41.865814
- ],
- [
- -87.616665,
- 41.865814
- ],
- [
- -87.616688,
- 41.866675
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "dd2baec57e4079eb65dcae5be495da62"
- },
- {
- "type": "Feature",
- "properties": {
- "level": 1,
- "name": "outer-walls",
- "base_height": 0,
- "height": 40,
- "color": "grey"
- },
- "geometry": {
- "coordinates": [
- [
- [
- -87.618087,
- 41.86666
- ],
- [
- -87.618087,
- 41.866674
- ],
- [
- -87.618319,
- 41.866674
- ],
- [
- -87.618298,
- 41.865757
- ],
- [
- -87.618326,
- 41.865756
- ],
- [
- -87.618347,
- 41.866693
- ],
- [
- -87.618068,
- 41.866696
- ],
- [
- -87.618067,
- 41.866675
- ],
- [
- -87.61741,
- 41.866684
- ],
- [
- -87.617416,
- 41.866802
- ],
- [
- -87.617247,
- 41.866803
- ],
- [
- -87.617246,
- 41.866866
- ],
- [
- -87.616846,
- 41.866868
- ],
- [
- -87.616848,
- 41.866807
- ],
- [
- -87.61669,
- 41.866811
- ],
- [
- -87.616693,
- 41.866693
- ],
- [
- -87.615992,
- 41.866701
- ],
- [
- -87.615992,
- 41.866729
- ],
- [
- -87.615703,
- 41.866733
- ],
- [
- -87.615689,
- 41.866377
- ],
- [
- -87.615412,
- 41.866382
- ],
- [
- -87.615411,
- 41.866122
- ],
- [
- -87.615689,
- 41.866119
- ],
- [
- -87.615682,
- 41.865781
- ],
- [
- -87.615966,
- 41.865779
- ],
- [
- -87.615969,
- 41.865798
- ],
- [
- -87.616669,
- 41.865794
- ],
- [
- -87.616663,
- 41.865662
- ],
- [
- -87.6168,
- 41.865661
- ],
- [
- -87.616796,
- 41.865571
- ],
- [
- -87.61726,
- 41.865559
- ],
- [
- -87.617258,
- 41.865654
- ],
- [
- -87.617388,
- 41.865652
- ],
- [
- -87.617395,
- 41.865778
- ],
- [
- -87.618045,
- 41.865773
- ],
- [
- -87.618044,
- 41.865742
- ],
- [
- -87.618325,
- 41.865739
- ],
- [
- -87.618326,
- 41.865758
- ],
- [
- -87.61807,
- 41.865761
- ],
- [
- -87.61807,
- 41.865789
- ],
- [
- -87.617356,
- 41.8658
- ],
- [
- -87.617356,
- 41.865672
- ],
- [
- -87.617218,
- 41.865677
- ],
- [
- -87.617215,
- 41.86559
- ],
- [
- -87.616822,
- 41.865595
- ],
- [
- -87.616827,
- 41.86568
- ],
- [
- -87.616694,
- 41.865681
- ],
- [
- -87.616697,
- 41.865813
- ],
- [
- -87.615939,
- 41.865824
- ],
- [
- -87.615937,
- 41.8658
- ],
- [
- -87.615706,
- 41.865802
- ],
- [
- -87.615713,
- 41.866143
- ],
- [
- -87.615441,
- 41.86615
- ],
- [
- -87.61545,
- 41.866357
- ],
- [
- -87.615724,
- 41.866353
- ],
- [
- -87.615733,
- 41.866712
- ],
- [
- -87.615959,
- 41.86671
- ],
- [
- -87.615959,
- 41.866688
- ],
- [
- -87.616719,
- 41.866672
- ],
- [
- -87.61672,
- 41.866791
- ],
- [
- -87.616869,
- 41.86679
- ],
- [
- -87.616868,
- 41.86685
- ],
- [
- -87.617223,
- 41.866847
- ],
- [
- -87.617227,
- 41.866786
- ],
- [
- -87.617387,
- 41.866785
- ],
- [
- -87.617383,
- 41.86667
- ],
- [
- -87.618087,
- 41.86666
- ]
- ]
- ],
- "type": "Polygon"
- },
- "id": "ef6512f46485e27963c248bcc945c3db"
- }
- ],
- "type": "FeatureCollection"
-}
\ No newline at end of file
diff --git a/packages/examples/src/assets/nyc_geojson.json b/packages/examples/src/assets/nyc_geojson.json
deleted file mode 100755
index 00d64a835..000000000
--- a/packages/examples/src/assets/nyc_geojson.json
+++ /dev/null
@@ -1,304 +0,0 @@
-{
-"type": "FeatureCollection",
-
-"features": [
-{ "type": "Feature", "id": 0, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.011150343389346, 40.725777216880076 ], [ -74.010812382607256, 40.725789802555752 ], [ -73.999312417001448, 40.717550241777381 ], [ -74.000578392161202, 40.715570902924213 ], [ -74.000454630659604, 40.714365047598868 ], [ -74.000931743323804, 40.713263253045277 ], [ -74.000867814643087, 40.711568158862143 ], [ -74.000509860972329, 40.710984270453366 ], [ -74.001471402320803, 40.709746554323239 ], [ -73.999194511748954, 40.707947376351463 ], [ -74.00118685262828, 40.706859825771751 ], [ -74.000982767577753, 40.706416712992926 ], [ -74.001406666919536, 40.70617938802063 ], [ -74.000582970479797, 40.705433933648877 ], [ -74.001436612454427, 40.704872177705219 ], [ -74.002061425638047, 40.705417004635571 ], [ -74.002569650594666, 40.705523579523494 ], [ -74.00268512768794, 40.705449248118647 ], [ -74.001970704639859, 40.704737867482024 ], [ -74.002171848758593, 40.70460659646367 ], [ -74.002430710758645, 40.704677858004338 ], [ -74.002386708067192, 40.70479566367446 ], [ -74.003323072707872, 40.705628595220048 ], [ -74.003631871693258, 40.705429806751738 ], [ -74.002878430694565, 40.704831357989747 ], [ -74.002972464752858, 40.70476649143739 ], [ -74.003644461838661, 40.7054216846388 ], [ -74.004383444172248, 40.705113259854819 ], [ -74.004266870374281, 40.705011660202032 ], [ -74.004590038836724, 40.704787752945009 ], [ -74.003496320423238, 40.703796769267697 ], [ -74.003719870430402, 40.703654481944646 ], [ -74.004806289007448, 40.704642069051161 ], [ -74.005188051333647, 40.704420535690552 ], [ -74.004925805644064, 40.704211808384628 ], [ -74.005211609004022, 40.704405532235306 ], [ -74.005350272247554, 40.704310079961523 ], [ -74.004157421541649, 40.70323163208721 ], [ -74.004272587521001, 40.703015666411474 ], [ -74.005592426090061, 40.70408256373161 ], [ -74.006018627909228, 40.703873152890765 ], [ -74.006140105779309, 40.703978660271737 ], [ -74.006595919138746, 40.703685902451817 ], [ -74.005304125960777, 40.702559865633027 ], [ -74.005494278050946, 40.702431380950379 ], [ -74.005535461381754, 40.702645521106831 ], [ -74.005675223158875, 40.702584071694936 ], [ -74.00678502257081, 40.703568126900059 ], [ -74.009309076554814, 40.701954603022529 ], [ -74.008699643135671, 40.70113986754221 ], [ -74.007755491506387, 40.701548001671789 ], [ -74.007591362042191, 40.701328081048111 ], [ -74.008536115107745, 40.700919695745029 ], [ -74.008349275591002, 40.700669348388189 ], [ -74.00862036163862, 40.700552163210666 ], [ -74.009600522632866, 40.701865481917835 ], [ -74.011166642179234, 40.701477202208252 ], [ -74.01109588602678, 40.70127499934884 ], [ -74.011289839055237, 40.701249982244235 ], [ -74.01079959311005, 40.700207213006948 ], [ -74.011150335568374, 40.700898400100918 ], [ -74.011358362913541, 40.700851958636321 ], [ -74.011334093443821, 40.700568353682321 ], [ -74.011502911437105, 40.700815058974179 ], [ -74.011729268174747, 40.700770118059658 ], [ -74.011631479186491, 40.700458218248102 ], [ -74.011853785495887, 40.700738921450146 ], [ -74.012086682146915, 40.700681308739156 ], [ -74.011856726230292, 40.700107103408321 ], [ -74.011961961169177, 40.700037545595428 ], [ -74.012391600322843, 40.700620528093999 ], [ -74.012593923275091, 40.700570833472412 ], [ -74.012613820873639, 40.70010826581106 ], [ -74.012908818599925, 40.700523611693399 ], [ -74.013107478473714, 40.700507452180624 ], [ -74.013011893318946, 40.69981825663114 ], [ -74.013113038262944, 40.699774164880068 ], [ -74.013273495491219, 40.700496870227681 ], [ -74.013485608327386, 40.700478222908394 ], [ -74.013532850841372, 40.700108161423138 ], [ -74.013674792487578, 40.700125821450882 ], [ -74.01353047796475, 40.70031110034644 ], [ -74.013558269594867, 40.700939870830517 ], [ -74.013951526904748, 40.700990982460027 ], [ -74.014220632615192, 40.700111490863044 ], [ -74.014152388533361, 40.70057786578343 ], [ -74.014289207411338, 40.700644144765022 ], [ -74.014671200580324, 40.700210400694424 ], [ -74.014323843630166, 40.700661304127095 ], [ -74.014643231688751, 40.700817304325177 ], [ -74.015098322701249, 40.700334265523416 ], [ -74.014673656284756, 40.70083460852581 ], [ -74.015021136616781, 40.700992504013371 ], [ -74.015142318120994, 40.700842892354238 ], [ -74.017145080626577, 40.702705349976149 ], [ -74.017647975728948, 40.703494599879392 ], [ -74.017570357060592, 40.704183880986449 ], [ -74.01779454520279, 40.704234897096185 ], [ -74.017817586979461, 40.703937922496536 ], [ -74.017954740486616, 40.703975785608463 ], [ -74.017844411067244, 40.704242039937895 ], [ -74.018447702437726, 40.704162168231505 ], [ -74.018668307718912, 40.704435239616195 ], [ -74.017480861525726, 40.704667487696142 ], [ -74.018112961291152, 40.704553727487159 ], [ -74.018887466493652, 40.704729148837338 ], [ -74.019342546244602, 40.706093672024494 ], [ -74.019122759634115, 40.706975814337405 ], [ -74.018630583726988, 40.707139715269264 ], [ -74.01884889814508, 40.706970312350194 ], [ -74.018535132696684, 40.706918322014054 ], [ -74.018190293256907, 40.707821626109798 ], [ -74.018855009119662, 40.708047534447395 ], [ -74.017770142545032, 40.712834574789106 ], [ -74.017800378223441, 40.712345124158617 ], [ -74.016624244913388, 40.712157318995182 ], [ -74.016618400783045, 40.712756150029648 ], [ -74.016320066275796, 40.713407982478245 ], [ -74.017544433346572, 40.713611222664227 ], [ -74.017724962192943, 40.713070181622697 ], [ -74.016710186058233, 40.718624176057972 ], [ -74.013213227191926, 40.718315719895749 ], [ -74.012914487463306, 40.719708293225302 ], [ -74.013446940495854, 40.71978201978623 ], [ -74.013389069034446, 40.720042607273193 ], [ -74.014524158565024, 40.720187397445684 ], [ -74.014522790560747, 40.720532050327733 ], [ -74.012965585268248, 40.720328675587126 ], [ -74.012869091380381, 40.720833752211675 ], [ -74.013239373370197, 40.720887986728066 ], [ -74.013080101456367, 40.72154580719522 ], [ -74.012538758072623, 40.721503176576348 ], [ -74.011653265699422, 40.725871761851344 ], [ -74.015163241184226, 40.726319711936782 ], [ -74.015170840858616, 40.726579390657555 ], [ -74.011457631035512, 40.726155689262022 ], [ -74.011150343389346, 40.725777216880076 ] ] ] } }
-,
-{ "type": "Feature", "id": 1, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.016747560960695, 40.693343368217576 ], [ -74.015403591416472, 40.693066497309104 ], [ -74.015389197682438, 40.693298134665497 ], [ -74.015174821365946, 40.693256680335523 ], [ -74.015259510356458, 40.693036814231853 ], [ -74.015123956349129, 40.693258069299645 ], [ -74.014931366964674, 40.693155771231396 ], [ -74.015156122255206, 40.693015514891542 ], [ -74.014221230848847, 40.692822905338872 ], [ -74.013435633645429, 40.692115441944722 ], [ -74.012502586751879, 40.692303580965522 ], [ -74.012297314925547, 40.692568254835074 ], [ -74.011811856472349, 40.692479335064341 ], [ -74.011757490512551, 40.692263739561525 ], [ -74.011903097225598, 40.692090583507841 ], [ -74.0122011411637, 40.692044905096068 ], [ -74.012461401651251, 40.692212624415852 ], [ -74.013332641496078, 40.692019970102329 ], [ -74.012608569254127, 40.691364103624494 ], [ -74.012034176165756, 40.691503076685656 ], [ -74.01259753218595, 40.691334335544411 ], [ -74.01252783209975, 40.691146337337933 ], [ -74.011825753549729, 40.691064816216127 ], [ -74.012195000900846, 40.691028847568795 ], [ -74.01221017410677, 40.690791696801242 ], [ -74.011971513188229, 40.690770955509493 ], [ -74.011980567612483, 40.690606407271751 ], [ -74.01223131146898, 40.690461330775094 ], [ -74.012306883044914, 40.689280182937559 ], [ -74.013169264027425, 40.68815477019799 ], [ -74.014880979750103, 40.687254570488513 ], [ -74.016047306055469, 40.687338006297615 ], [ -74.017049866092023, 40.686875986913826 ], [ -74.016646640847569, 40.686416347233312 ], [ -74.015143910219948, 40.686437034042989 ], [ -74.016673515960164, 40.686305168553382 ], [ -74.017530324340953, 40.685362987932443 ], [ -74.0176225750659, 40.685409783720679 ], [ -74.016781139571464, 40.686349037919165 ], [ -74.017120991670964, 40.686843337636425 ], [ -74.020543672930813, 40.685272067925943 ], [ -74.020206867105003, 40.684833832071881 ], [ -74.019398423919284, 40.685087404047174 ], [ -74.020952549442754, 40.684384431647281 ], [ -74.020278198464908, 40.684809135174461 ], [ -74.020612672358112, 40.685240390198018 ], [ -74.02259359581042, 40.684359695949922 ], [ -74.022132502528692, 40.683767671379918 ], [ -74.023055747495931, 40.682916945445115 ], [ -74.023194628346616, 40.683000498062128 ], [ -74.022368235576693, 40.683779916793952 ], [ -74.022758990959801, 40.6842844483321 ], [ -74.023541603701233, 40.684002983592528 ], [ -74.024648092412335, 40.683978566613014 ], [ -74.025671838242332, 40.684236456204879 ], [ -74.026334043084319, 40.684801697723984 ], [ -74.02662819083865, 40.685526804749628 ], [ -74.026425771771812, 40.686175339829745 ], [ -74.02020527500305, 40.692033923854076 ], [ -74.019733081945148, 40.693114107472361 ], [ -74.016747560960695, 40.693343368217576 ] ] ] } }
-,
-{ "type": "Feature", "id": 2, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.039950407885129, 40.700890630642704 ], [ -74.037711247966357, 40.699344040347725 ], [ -74.038097862147737, 40.699039505244201 ], [ -74.038229544453898, 40.698368591697687 ], [ -74.039000438780278, 40.698369890390993 ], [ -74.039340376041153, 40.698115514836196 ], [ -74.041242618322201, 40.699536741434848 ], [ -74.041747688680147, 40.69914786356663 ], [ -74.03991248872623, 40.697702040398376 ], [ -74.041660519148408, 40.696452971639729 ], [ -74.043673712307779, 40.698020404330066 ], [ -74.042703958107225, 40.698800600586672 ], [ -74.042965051615113, 40.69899936232499 ], [ -74.041098612370703, 40.700492943389641 ], [ -74.0408008064624, 40.700268549926484 ], [ -74.040312509735287, 40.700625749192199 ], [ -74.040536377322127, 40.700782094775001 ], [ -74.040288088039475, 40.700643613467108 ], [ -74.039950407885129, 40.700890630642704 ] ] ] } }
-,
-{ "type": "Feature", "id": 3, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.043877616399115, 40.69018767537122 ], [ -74.043505960785666, 40.689687359636089 ], [ -74.042704284267643, 40.690155204644299 ], [ -74.042553720373064, 40.689962759289585 ], [ -74.043467523102962, 40.689636990606026 ], [ -74.043640786274125, 40.688766559570141 ], [ -74.044385217772799, 40.688516178402672 ], [ -74.046275390036669, 40.689327425896721 ], [ -74.046802848985749, 40.689953256266016 ], [ -74.047476515283705, 40.689611369998012 ], [ -74.04772962763063, 40.689915318466007 ], [ -74.047585719247863, 40.689982506826126 ], [ -74.047431261235104, 40.689803890470891 ], [ -74.046892055005912, 40.690059098322621 ], [ -74.047200293662513, 40.690424815623736 ], [ -74.047170294894244, 40.690991329245044 ], [ -74.046147072086654, 40.691122646033158 ], [ -74.043877616399115, 40.69018767537122 ] ] ] } }
-,
-{ "type": "Feature", "id": 4, "properties": { "communityDistrict": 106, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.97446922636118, 40.73579461792766 ], [ -73.974464612073135, 40.735668172664596 ], [ -73.974145397120765, 40.735672558313311 ], [ -73.973056987781192, 40.73517745341568 ], [ -73.972806617104609, 40.735523918521125 ], [ -73.972930319925283, 40.735607614396812 ], [ -73.972763083803528, 40.735505087473534 ], [ -73.972945206926113, 40.735065170070939 ], [ -73.973298951122089, 40.735242355077233 ], [ -73.973296273629643, 40.735040856642499 ], [ -73.973544728839599, 40.734944326101441 ], [ -73.974437009586197, 40.735316356129282 ], [ -73.973959050297111, 40.733421165538431 ], [ -73.973857300364941, 40.733216303638528 ], [ -73.973676276421273, 40.733205933888179 ], [ -73.973868108422749, 40.73306568719574 ], [ -73.973413217308575, 40.731282416428641 ], [ -73.971963403012467, 40.730000377217465 ], [ -73.971479949072489, 40.729249576693221 ], [ -73.971406179085193, 40.72871876425102 ], [ -73.971685149326461, 40.727405886636667 ], [ -73.971490391588958, 40.727350098110051 ], [ -73.971626972717061, 40.726628453499416 ], [ -73.988779316840834, 40.733965399235885 ], [ -73.986535000019614, 40.737050010973675 ], [ -73.98752047473161, 40.737462697305688 ], [ -73.987101005187782, 40.738053501438763 ], [ -73.987288637460722, 40.73813078597442 ], [ -73.986853452032989, 40.738714752172037 ], [ -73.98730154868953, 40.738903026036418 ], [ -73.987035927871261, 40.739266378549431 ], [ -73.986649696771138, 40.73910091152284 ], [ -73.986471949786832, 40.739362820927028 ], [ -73.985232246112872, 40.738840230794956 ], [ -73.979723464370466, 40.74640287633833 ], [ -73.982956909551802, 40.747764353690854 ], [ -73.980673452491104, 40.750905101457384 ], [ -73.980220899700072, 40.751521979626759 ], [ -73.976985707283106, 40.7501569597583 ], [ -73.968186878036107, 40.762226821325882 ], [ -73.958777908226992, 40.758270920848723 ], [ -73.960656381804739, 40.755923149550178 ], [ -73.962135590580857, 40.754573231473266 ], [ -73.965324056525631, 40.751047718272197 ], [ -73.970788347766415, 40.744406217690312 ], [ -73.970940630264991, 40.744471444025542 ], [ -73.97112503018549, 40.744189748947598 ], [ -73.970703174655839, 40.743990495411154 ], [ -73.97117346687061, 40.744107535510636 ], [ -73.971357530079473, 40.743838455359608 ], [ -73.971205463019672, 40.743771510301293 ], [ -73.971281018316773, 40.743651942051315 ], [ -73.971085334395738, 40.743664058345153 ], [ -73.971267100260576, 40.743389882433661 ], [ -73.971355634091523, 40.743539649852003 ], [ -73.97188888913044, 40.742724820355491 ], [ -73.971740597158458, 40.7426635795089 ], [ -73.971959558562531, 40.742337921543637 ], [ -73.972289920992168, 40.740721039031747 ], [ -73.972164773686572, 40.740675722129112 ], [ -73.972216854884024, 40.740307625061675 ], [ -73.97265743869113, 40.739222754277101 ], [ -73.972489941747398, 40.735803280107596 ], [ -73.97286939178467, 40.735770861285545 ], [ -73.974413858165306, 40.736414393858944 ], [ -73.974459750043906, 40.736294019718159 ], [ -73.974026921703768, 40.736125767245625 ], [ -73.974466471133596, 40.736278456830043 ], [ -73.97450375947156, 40.736064588443888 ], [ -73.974140620183718, 40.735955657167295 ], [ -73.97450488285962, 40.73604228053668 ], [ -73.97446922636118, 40.73579461792766 ] ] ] } }
-,
-{ "type": "Feature", "id": 5, "properties": { "communityDistrict": 106, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.96421230461759, 40.746604318476848 ], [ -73.964583184269458, 40.746454400673308 ], [ -73.964159802884311, 40.746865547359548 ], [ -73.96421230461759, 40.746604318476848 ] ] ] } }
-,
-{ "type": "Feature", "id": 6, "properties": { "communityDistrict": 108, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.938046406034374, 40.780829544275512 ], [ -73.937794487264156, 40.780781258755425 ], [ -73.937799442456779, 40.781031339796996 ], [ -73.937646318214831, 40.781001215892829 ], [ -73.937598946226217, 40.780467840861441 ], [ -73.938237735094006, 40.780259079465324 ], [ -73.938612008880597, 40.780338955869297 ], [ -73.939583789724765, 40.779576474007129 ], [ -73.939493298181716, 40.77987369131575 ], [ -73.938728029265945, 40.780510743704582 ], [ -73.938839518450365, 40.780599249799842 ], [ -73.938744230892752, 40.781043876042219 ], [ -73.938082132687143, 40.781418437777184 ], [ -73.937967577216469, 40.781289334060247 ], [ -73.938046406034374, 40.780829544275512 ] ] ] } }
-,
-{ "type": "Feature", "id": 7, "properties": { "communityDistrict": 108, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.941800327955306, 40.769046926625016 ], [ -73.942855286207049, 40.768303494409288 ], [ -73.949431754971087, 40.76054861736116 ], [ -73.951778220259953, 40.758402549876948 ], [ -73.952540793368755, 40.757095314537246 ], [ -73.955195031174767, 40.754774523475923 ], [ -73.957914525592741, 40.752109854525536 ], [ -73.959039759212644, 40.751392485111388 ], [ -73.961173729608646, 40.74949844307389 ], [ -73.961583049385695, 40.749414301106484 ], [ -73.961550800706007, 40.749773889705843 ], [ -73.961110602079614, 40.750600469900924 ], [ -73.960011323298147, 40.7518315173348 ], [ -73.959500799950973, 40.752956382195713 ], [ -73.959016166274779, 40.75359505995737 ], [ -73.958458368056753, 40.753949236504852 ], [ -73.953391407339538, 40.759796762357688 ], [ -73.953124515710414, 40.760052758429794 ], [ -73.952977882160738, 40.759962107876866 ], [ -73.95208632266548, 40.760862154404805 ], [ -73.950937349280878, 40.762570495237789 ], [ -73.949971917502566, 40.763646030317027 ], [ -73.949086287915648, 40.764264027274926 ], [ -73.945844514238203, 40.768321228251388 ], [ -73.9457035733476, 40.768327934311777 ], [ -73.945481142892874, 40.768624779437786 ], [ -73.945627210934504, 40.768692953178856 ], [ -73.945563020487484, 40.768801776027082 ], [ -73.945245104074587, 40.768773268310689 ], [ -73.944724784974568, 40.769786271534819 ], [ -73.942126745807201, 40.772034700509074 ], [ -73.940887072116695, 40.772372515775992 ], [ -73.940274609873768, 40.772947436893276 ], [ -73.940076657516542, 40.772926186357935 ], [ -73.940282079241967, 40.772301406991204 ], [ -73.94020021779653, 40.771128305662707 ], [ -73.94035533477512, 40.770496574371023 ], [ -73.941117787180247, 40.769414408574626 ], [ -73.941800327955306, 40.769046926625016 ] ] ] } }
-,
-{ "type": "Feature", "id": 8, "properties": { "communityDistrict": 108, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.943832566099459, 40.782859088972337 ], [ -73.943544207124773, 40.782880524325201 ], [ -73.943880681024979, 40.781532042861755 ], [ -73.94360047475412, 40.780159099466161 ], [ -73.943213862652243, 40.779317588659971 ], [ -73.943004239504674, 40.779639495474157 ], [ -73.942716006112036, 40.779544169476409 ], [ -73.942712374762181, 40.779214856939802 ], [ -73.942535563208523, 40.779090956062419 ], [ -73.942893408187928, 40.778614093246098 ], [ -73.942438481745029, 40.777315235765954 ], [ -73.942074188038774, 40.776917846977071 ], [ -73.942081605234875, 40.775957016317363 ], [ -73.942401009490482, 40.775726927526115 ], [ -73.94293043781397, 40.774676268035805 ], [ -73.943664318148436, 40.773840763674222 ], [ -73.946404189851748, 40.771269045619526 ], [ -73.948664164779615, 40.768857623394268 ], [ -73.950069793691654, 40.767025088383569 ], [ -73.954418260786042, 40.762184104951039 ], [ -73.958777908226992, 40.758270920848723 ], [ -73.973014871761208, 40.764278879445193 ], [ -73.955777359123232, 40.787913924471042 ], [ -73.943832566099459, 40.782859088972337 ] ] ] } }
-,
-{ "type": "Feature", "id": 9, "properties": { "communityDistrict": 111, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/111" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.921337524193987, 40.800852106497004 ], [ -73.920314655212294, 40.799375459289976 ], [ -73.916629852478025, 40.797858139437068 ], [ -73.915454709664175, 40.797063466030956 ], [ -73.914438272333129, 40.795665517863839 ], [ -73.913804283429442, 40.794511846456366 ], [ -73.913783854367239, 40.793836285482563 ], [ -73.915141344262381, 40.792012481989708 ], [ -73.916305770099797, 40.791117369952083 ], [ -73.916170925658193, 40.791014190212024 ], [ -73.916865405848895, 40.790362063464158 ], [ -73.91710622312948, 40.790468616736746 ], [ -73.918562997749859, 40.78969533382589 ], [ -73.918508769590929, 40.789425089769374 ], [ -73.922188311576477, 40.785509278139244 ], [ -73.922852033462718, 40.783555693418094 ], [ -73.924480522804245, 40.782320490645802 ], [ -73.925718086785338, 40.782176557944538 ], [ -73.927324226409795, 40.78109062932468 ], [ -73.928101189873374, 40.780920320042107 ], [ -73.931053528078877, 40.78239659356656 ], [ -73.935023451345117, 40.783006382028802 ], [ -73.935812997987128, 40.783710080532359 ], [ -73.936070646831226, 40.784217215620586 ], [ -73.935712659976971, 40.785680489492528 ], [ -73.932707073379873, 40.78916719236426 ], [ -73.93240673527869, 40.789718503093077 ], [ -73.932243245112417, 40.789692515411133 ], [ -73.930841787392808, 40.79099143000154 ], [ -73.929724007819146, 40.791366178343004 ], [ -73.928072735756587, 40.790823391283006 ], [ -73.926104102528797, 40.790731606615168 ], [ -73.926160234220774, 40.791716073017177 ], [ -73.926568880358914, 40.791858736637195 ], [ -73.925587791616223, 40.791821859996837 ], [ -73.926739138723136, 40.79192875170461 ], [ -73.926368102603519, 40.791661834384179 ], [ -73.926488043237512, 40.791022393999491 ], [ -73.927868892411922, 40.790954837629243 ], [ -73.927893744985951, 40.791091111420904 ], [ -73.927135637942072, 40.791929306603507 ], [ -73.927801414723973, 40.791997479262321 ], [ -73.92826720296155, 40.792328523948157 ], [ -73.928322716753684, 40.793101989140595 ], [ -73.927353321466811, 40.794461894609896 ], [ -73.926936147674951, 40.795497062196624 ], [ -73.926889678941563, 40.796252010858005 ], [ -73.927118069448653, 40.797203860732957 ], [ -73.927185147783703, 40.797349896780219 ], [ -73.927706941271779, 40.797298662876955 ], [ -73.927202997703475, 40.797386747799791 ], [ -73.927439221853177, 40.797710538215981 ], [ -73.927475886034941, 40.798122899664904 ], [ -73.926882617543583, 40.799940768503205 ], [ -73.926695726295577, 40.80014697715243 ], [ -73.927247708554162, 40.800392957369368 ], [ -73.927114642306421, 40.800563756229515 ], [ -73.927169330224871, 40.80040585369612 ], [ -73.9266656554653, 40.800182714036197 ], [ -73.9265535165366, 40.800315172921408 ], [ -73.926742638929966, 40.800403498972756 ], [ -73.926538464561716, 40.800333898308317 ], [ -73.92668470687282, 40.800454757256233 ], [ -73.92655241808481, 40.800604825092257 ], [ -73.926869086133223, 40.800783676798822 ], [ -73.927046403640446, 40.800651743031686 ], [ -73.926886060219999, 40.80084064836889 ], [ -73.926509548673039, 40.800657031524516 ], [ -73.925775518117462, 40.801730600996272 ], [ -73.925275210201249, 40.801998522743332 ], [ -73.922633786610348, 40.801868738141479 ], [ -73.921910922295723, 40.801502666253519 ], [ -73.921337524193987, 40.800852106497004 ] ] ] } }
-,
-{ "type": "Feature", "id": 10, "properties": { "communityDistrict": 111, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/111" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.933805899480205, 40.816512493247458 ], [ -73.934014767269787, 40.814483752624774 ], [ -73.933856526388169, 40.814481474419189 ], [ -73.933929846001945, 40.813347690633762 ], [ -73.934340809714726, 40.809927582749552 ], [ -73.934120734181533, 40.808656451977015 ], [ -73.933561193114812, 40.807600677386638 ], [ -73.931159499873274, 40.804966940262432 ], [ -73.930308764588275, 40.803786014865501 ], [ -73.929208175298285, 40.80114752061084 ], [ -73.929034902403089, 40.801080903851854 ], [ -73.928901523442235, 40.799855214160104 ], [ -73.929036401796253, 40.796762594101246 ], [ -73.929279367411709, 40.795853139520574 ], [ -73.929832540425238, 40.794949061140784 ], [ -73.930196644590794, 40.794593223850057 ], [ -73.933484753496273, 40.792774284832007 ], [ -73.935831067889069, 40.791094704870204 ], [ -73.937081043823014, 40.789366395709948 ], [ -73.936140733141229, 40.788949073410464 ], [ -73.936218598699526, 40.788800497574258 ], [ -73.937149654611034, 40.789168449059439 ], [ -73.938115701558502, 40.787184762756709 ], [ -73.939826196964617, 40.785256552415447 ], [ -73.942469704447731, 40.783896460947005 ], [ -73.943161419105394, 40.783411829992176 ], [ -73.943544207124773, 40.782880524325201 ], [ -73.943760053405853, 40.782828932219999 ], [ -73.955777359123232, 40.787913924471042 ], [ -73.944597513456074, 40.803228145255666 ], [ -73.946131310486734, 40.803877357584135 ], [ -73.944301945871231, 40.806390824581001 ], [ -73.942753672281938, 40.805744012794605 ], [ -73.934873438350309, 40.816527847015031 ], [ -73.933800194730466, 40.818349758873957 ], [ -73.933805899480205, 40.816512493247458 ] ] ] } }
-,
-{ "type": "Feature", "id": 11, "properties": { "communityDistrict": 202, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.893854541204846, 40.827340036744992 ], [ -73.892932260349824, 40.82678703602916 ], [ -73.88789510901421, 40.826743185296529 ], [ -73.885418166585225, 40.828075591914555 ], [ -73.883784141345714, 40.828274292462368 ], [ -73.884387053537296, 40.826817283532826 ], [ -73.884646026497066, 40.823823537474574 ], [ -73.884294881451382, 40.822718204764747 ], [ -73.882447795528904, 40.819268322511505 ], [ -73.878062832621268, 40.816182632444068 ], [ -73.876634599637072, 40.815711508099156 ], [ -73.876731855729673, 40.815386496487271 ], [ -73.872501108859723, 40.813888128234041 ], [ -73.872394379662396, 40.813974335606552 ], [ -73.872436672350773, 40.813850934001572 ], [ -73.872097170271516, 40.813738021521729 ], [ -73.872129311473614, 40.813621168692571 ], [ -73.871657776833985, 40.813254261975977 ], [ -73.87095753684099, 40.812146180609446 ], [ -73.870568069279329, 40.812087317622392 ], [ -73.870553421254868, 40.811243380722175 ], [ -73.868112191400783, 40.806751832831814 ], [ -73.868463469591447, 40.805936548939023 ], [ -73.871698819308065, 40.801805271920422 ], [ -73.871603361925295, 40.801751811446437 ], [ -73.87174509307782, 40.801547366115415 ], [ -73.872380604536971, 40.8012901146327 ], [ -73.872469493370602, 40.80078919284297 ], [ -73.872236573268907, 40.800761622650334 ], [ -73.872346849988503, 40.800174763010446 ], [ -73.872978629446493, 40.800250689026448 ], [ -73.872877110637063, 40.800840089046126 ], [ -73.872627058779116, 40.800791861502255 ], [ -73.872705037586002, 40.801167176810573 ], [ -73.873550965725059, 40.800853302771834 ], [ -73.874677163141541, 40.8009794223616 ], [ -73.874730604526974, 40.801256637628583 ], [ -73.875265170373211, 40.801398152548423 ], [ -73.875857885813289, 40.801455987586372 ], [ -73.875929980717004, 40.80108422258855 ], [ -73.878142188199234, 40.801319290306445 ], [ -73.877968803753731, 40.801711115128157 ], [ -73.878062948534193, 40.802194319344977 ], [ -73.877906464952105, 40.802271801020126 ], [ -73.878432954473098, 40.802702734694172 ], [ -73.880054629848786, 40.802760151407597 ], [ -73.882430217740392, 40.802265572389985 ], [ -73.883695424224754, 40.802162123602869 ], [ -73.883964625196995, 40.801965148359628 ], [ -73.883723266659217, 40.801862843941031 ], [ -73.885051723367084, 40.802130906797998 ], [ -73.885365446650056, 40.802260639745306 ], [ -73.885155171267598, 40.802272453041276 ], [ -73.885914247387532, 40.802798516993619 ], [ -73.886163770565631, 40.803175684976807 ], [ -73.887270974132576, 40.803947002337296 ], [ -73.887380956242168, 40.804110681283873 ], [ -73.887247384584199, 40.804186140114211 ], [ -73.887958972900947, 40.804997925921285 ], [ -73.888592177064865, 40.804789274595215 ], [ -73.889278926528419, 40.805181828760674 ], [ -73.889441059022943, 40.805440093556442 ], [ -73.889224160911539, 40.805845351191977 ], [ -73.889995981707685, 40.804886286752726 ], [ -73.890150985016049, 40.804958182262588 ], [ -73.889374392536951, 40.805925273115257 ], [ -73.890059327586513, 40.805704324179331 ], [ -73.8914990373016, 40.805931237737916 ], [ -73.891441043434313, 40.80566189856539 ], [ -73.891786181356039, 40.805622892086156 ], [ -73.891979296004138, 40.806384708976807 ], [ -73.892706811326534, 40.806343948093499 ], [ -73.892531771394232, 40.805656551568312 ], [ -73.892273158435316, 40.805702433124786 ], [ -73.892163645476415, 40.805302592565404 ], [ -73.891284024139225, 40.804976281899151 ], [ -73.891866108093907, 40.805090487426632 ], [ -73.892197396715616, 40.805284687919361 ], [ -73.892300202614379, 40.805660605669537 ], [ -73.89256667738411, 40.805620710004632 ], [ -73.892748140374039, 40.806340261301983 ], [ -73.894632524172351, 40.806232331922672 ], [ -73.894573939134162, 40.806045773007185 ], [ -73.894726019096197, 40.806026246583485 ], [ -73.894853605358762, 40.80621490815868 ], [ -73.894729704605396, 40.805741101461038 ], [ -73.894842959836325, 40.805723997012123 ], [ -73.895098365535389, 40.806863639174125 ], [ -73.895506339685667, 40.806595305303638 ], [ -73.895279628078669, 40.805766184067295 ], [ -73.895591091579661, 40.806581343348064 ], [ -73.895722737787636, 40.806559657308213 ], [ -73.895670251387571, 40.806290130456915 ], [ -73.895838380731007, 40.806540607571883 ], [ -73.895977946877494, 40.806517615839574 ], [ -73.895874816654597, 40.805808511582981 ], [ -73.896108245840225, 40.806496150951808 ], [ -73.896230408031599, 40.806210471902737 ], [ -73.897260149991467, 40.806040959847245 ], [ -73.897496819538972, 40.806214400202485 ], [ -73.897414726985716, 40.805800059478059 ], [ -73.897638187411516, 40.806201320838781 ], [ -73.897761267148908, 40.80618993350209 ], [ -73.897728272510705, 40.805967494137263 ], [ -73.898013408961589, 40.806166604361785 ], [ -73.897871279245152, 40.805534981759003 ], [ -73.898161107526988, 40.806138070099877 ], [ -73.89829494887951, 40.80609757069832 ], [ -73.898125361334223, 40.80565076037449 ], [ -73.898526564504635, 40.805434309097329 ], [ -73.90097298881534, 40.804876097891125 ], [ -73.902049522779649, 40.804784140521519 ], [ -73.90222284699469, 40.804948113189532 ], [ -73.903417203736481, 40.811506882855625 ], [ -73.904465514767352, 40.812281959913648 ], [ -73.903009832143638, 40.816317791954702 ], [ -73.897569587585892, 40.829423000830893 ], [ -73.893854541204846, 40.827340036744992 ] ] ] } }
-,
-{ "type": "Feature", "id": 12, "properties": { "communityDistrict": 202, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.898330362705565, 40.802412820940006 ], [ -73.896466688345711, 40.800790470891307 ], [ -73.898640387149953, 40.799101164621334 ], [ -73.900210050592804, 40.799264155896537 ], [ -73.899787388671314, 40.799509553369958 ], [ -73.899715638174442, 40.800798808502762 ], [ -73.900037358157405, 40.800908742050183 ], [ -73.899489194898067, 40.800901115930124 ], [ -73.899387486371879, 40.801935665070843 ], [ -73.898330362705565, 40.802412820940006 ] ] ] } }
-,
-{ "type": "Feature", "id": 13, "properties": { "communityDistrict": 202, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896808832237724, 40.795808445159786 ], [ -73.896938729987909, 40.795635872853559 ], [ -73.897968397837417, 40.795644839161987 ], [ -73.899194342499811, 40.796502456018196 ], [ -73.898520520714698, 40.796936194189776 ], [ -73.897882532401837, 40.797116532147022 ], [ -73.897131497956408, 40.796798077728297 ], [ -73.896785263412326, 40.796329166487091 ], [ -73.896808832237724, 40.795808445159786 ] ] ] } }
-,
-{ "type": "Feature", "id": 14, "properties": { "communityDistrict": 228, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/228" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.807286471225694, 40.885931813816164 ], [ -73.805505767435776, 40.886092949181226 ], [ -73.794165557614448, 40.882993216348616 ], [ -73.793855272090696, 40.883643311333458 ], [ -73.793006526493372, 40.883358736880382 ], [ -73.793792374904456, 40.881970326764915 ], [ -73.794917055866705, 40.880543790984852 ], [ -73.795545798426531, 40.880691015373699 ], [ -73.795025962328438, 40.879747797211706 ], [ -73.796250974695724, 40.877011999777359 ], [ -73.79712701174671, 40.876190400903887 ], [ -73.797438154572845, 40.875135332953128 ], [ -73.798553307877214, 40.874401428274467 ], [ -73.798912454636195, 40.874645893142869 ], [ -73.799813895803368, 40.874159849716222 ], [ -73.799877137935695, 40.873484667292566 ], [ -73.800872704582531, 40.871590119893895 ], [ -73.801372354098561, 40.871461043107537 ], [ -73.802522847565967, 40.870506644696789 ], [ -73.803177265017268, 40.871683155070563 ], [ -73.802699397862455, 40.872214691294282 ], [ -73.803391175230843, 40.872505037631072 ], [ -73.804318494680786, 40.871159741570537 ], [ -73.803733393992871, 40.870962602823781 ], [ -73.803583149392509, 40.869948061028573 ], [ -73.802829598932007, 40.870076294030454 ], [ -73.803022036852639, 40.869155119796481 ], [ -73.804220270516112, 40.869002148670738 ], [ -73.80483122145958, 40.869313181785927 ], [ -73.805544959957629, 40.86895600501218 ], [ -73.805884100128822, 40.869068502184909 ], [ -73.805744860803301, 40.869692576552794 ], [ -73.808415968187987, 40.871189693367555 ], [ -73.808387310463317, 40.870571621611674 ], [ -73.807540636361821, 40.87037755217343 ], [ -73.807806731947451, 40.869787520428453 ], [ -73.806952752243959, 40.869657948175849 ], [ -73.80673074905107, 40.86877001307834 ], [ -73.805931795597871, 40.868371932067781 ], [ -73.8048726616979, 40.868233303334804 ], [ -73.804646045029216, 40.866647116436852 ], [ -73.803852807814479, 40.867166484800023 ], [ -73.803003881089523, 40.867041836568788 ], [ -73.803060414183491, 40.865815133705652 ], [ -73.802258160915642, 40.865608206409661 ], [ -73.797803772193078, 40.872256132273904 ], [ -73.794790446816052, 40.873200484033973 ], [ -73.79397363837721, 40.874566594568307 ], [ -73.793572108835932, 40.876121058303397 ], [ -73.793596053305095, 40.876720732725929 ], [ -73.7931670377871, 40.877055639066462 ], [ -73.794221699909329, 40.877382370466329 ], [ -73.794402945860938, 40.877641843501507 ], [ -73.79384702788164, 40.878594459790776 ], [ -73.791745839412485, 40.879890071652447 ], [ -73.790689274788264, 40.880158864278151 ], [ -73.790430465030781, 40.880797258029204 ], [ -73.78978716776686, 40.881207560463295 ], [ -73.789261610198153, 40.881205414623615 ], [ -73.789318357804476, 40.880578670091836 ], [ -73.789120206369176, 40.880080210993434 ], [ -73.790063328607687, 40.879594661514837 ], [ -73.789523093688004, 40.87899812706052 ], [ -73.788273134709058, 40.878873573154209 ], [ -73.785884969766514, 40.879067231752593 ], [ -73.784381681075658, 40.878420531670429 ], [ -73.784177383688245, 40.877721353928472 ], [ -73.784709640264509, 40.876357994847709 ], [ -73.786684932186148, 40.874293476045004 ], [ -73.787086784790404, 40.873536242216105 ], [ -73.787190875605049, 40.87273055372912 ], [ -73.786248744526105, 40.872382846772119 ], [ -73.785447599690173, 40.873132563371023 ], [ -73.785275090314329, 40.873543713799158 ], [ -73.785081396589362, 40.873589962220549 ], [ -73.785172790449749, 40.873119375965942 ], [ -73.785680998536805, 40.872387265559659 ], [ -73.785261520757146, 40.871745322332387 ], [ -73.784393117434774, 40.872784094928718 ], [ -73.78402157839551, 40.873692422099261 ], [ -73.783587384198384, 40.873780954679042 ], [ -73.783339679227083, 40.873512621378552 ], [ -73.78343142541371, 40.873178701948802 ], [ -73.784037169056248, 40.872826601262382 ], [ -73.783809068866674, 40.872533952915006 ], [ -73.783068534260309, 40.872153575922724 ], [ -73.783201754262976, 40.870670360853786 ], [ -73.783915783055775, 40.870422651370625 ], [ -73.784288027410639, 40.870001046741315 ], [ -73.784902160777733, 40.869763973240651 ], [ -73.785602453054537, 40.868341652223684 ], [ -73.78551744321166, 40.869169565720306 ], [ -73.785986798933223, 40.869592738286343 ], [ -73.786571038610106, 40.869777899884326 ], [ -73.787954461454163, 40.869845419063587 ], [ -73.789010597965216, 40.869663275452652 ], [ -73.789681974486442, 40.869361310772653 ], [ -73.790382076929404, 40.868994425624784 ], [ -73.791390325861258, 40.86814130746609 ], [ -73.79228914014459, 40.865814377219429 ], [ -73.792650957670688, 40.864136653184723 ], [ -73.791473171198916, 40.862207106248952 ], [ -73.791880145977544, 40.861255632209634 ], [ -73.791904549275102, 40.860829562711984 ], [ -73.793510297577185, 40.860551681290829 ], [ -73.793639620167468, 40.860241278168601 ], [ -73.793399855167067, 40.859948486200928 ], [ -73.793865684694509, 40.859778774829088 ], [ -73.794545623180255, 40.858888259161247 ], [ -73.794869838667495, 40.858075551760564 ], [ -73.794475669768275, 40.857004487669087 ], [ -73.794268485215355, 40.856800709291846 ], [ -73.794350059342818, 40.856527023803828 ], [ -73.795588801729494, 40.856513236766638 ], [ -73.796854616937296, 40.856264358212201 ], [ -73.797516168323412, 40.855600944659045 ], [ -73.797985334146603, 40.854848932594514 ], [ -73.798249502273819, 40.854795985109597 ], [ -73.798532741268701, 40.855005333104415 ], [ -73.798722556000868, 40.854914401172579 ], [ -73.799024193934059, 40.853957267649882 ], [ -73.798642743304413, 40.853357459921675 ], [ -73.797955833105576, 40.852988329711074 ], [ -73.797805229909031, 40.851949597591918 ], [ -73.798193659968462, 40.850592561406614 ], [ -73.799486814864125, 40.849748448477122 ], [ -73.800099127050487, 40.848298413397387 ], [ -73.800403876289963, 40.848108221174073 ], [ -73.800936284935133, 40.848303294251195 ], [ -73.801467352807393, 40.848770214063507 ], [ -73.801830564441303, 40.850130657058401 ], [ -73.804175579324081, 40.853340120189131 ], [ -73.804525267201058, 40.854851864882782 ], [ -73.80428420522334, 40.855130807845903 ], [ -73.803671165509698, 40.855307395995275 ], [ -73.80352718254764, 40.855603446309779 ], [ -73.804137847564007, 40.857841760375628 ], [ -73.804205857265345, 40.858959048932519 ], [ -73.804642938160924, 40.859968201571178 ], [ -73.804605277688765, 40.861217181495242 ], [ -73.804843331940049, 40.861609338035151 ], [ -73.805326642837855, 40.861885588492747 ], [ -73.805927164275786, 40.86194119699033 ], [ -73.806245719307697, 40.86142748444243 ], [ -73.805820412821205, 40.860034611465395 ], [ -73.806130570389229, 40.859881000645267 ], [ -73.806556299565372, 40.859817926100071 ], [ -73.807118849366489, 40.86031733388991 ], [ -73.807811834937127, 40.860359008154653 ], [ -73.808152553828904, 40.859667377902028 ], [ -73.80762141553879, 40.858828494078409 ], [ -73.807562729567763, 40.858604611631982 ], [ -73.807680481075678, 40.858538063289529 ], [ -73.808531735187501, 40.859914837673884 ], [ -73.80967350837895, 40.860909079181596 ], [ -73.810956267297698, 40.862391750453014 ], [ -73.812254953308496, 40.862745768762927 ], [ -73.812938672874893, 40.863217854003771 ], [ -73.813274239243441, 40.863220838566527 ], [ -73.813727805216701, 40.86387136662723 ], [ -73.814040896144206, 40.863860395031359 ], [ -73.81395857420803, 40.864102704217139 ], [ -73.814228804777102, 40.863863398535528 ], [ -73.814125721866517, 40.863727556313791 ], [ -73.814379977475767, 40.863254397843249 ], [ -73.814595792800048, 40.863088165896158 ], [ -73.815103153841548, 40.863057465367731 ], [ -73.815243951880475, 40.863238061876437 ], [ -73.814881025777368, 40.863919658148191 ], [ -73.815224556219917, 40.864444024975057 ], [ -73.815088914905544, 40.865243573512195 ], [ -73.815173202192526, 40.865601207766773 ], [ -73.816621294954487, 40.86417825384391 ], [ -73.816997602664316, 40.864459031143049 ], [ -73.815787640660815, 40.865758061438655 ], [ -73.814380390825434, 40.867944920257429 ], [ -73.814500123462409, 40.868169020068187 ], [ -73.815253956412633, 40.868190830623398 ], [ -73.815532178783414, 40.869238032274019 ], [ -73.815378700332133, 40.869609329414814 ], [ -73.815837741828261, 40.870388852931391 ], [ -73.816123379328559, 40.870158696482306 ], [ -73.816285199273864, 40.869671684783626 ], [ -73.817225787450198, 40.869009273791775 ], [ -73.817749773836908, 40.869009351051943 ], [ -73.818155735168091, 40.869297013765269 ], [ -73.818330262912852, 40.869879005860696 ], [ -73.818829363646742, 40.869484735937952 ], [ -73.818639536280841, 40.868831407545926 ], [ -73.818166106620325, 40.86843821749121 ], [ -73.817788383122604, 40.868284146726658 ], [ -73.817340854906604, 40.868344752024093 ], [ -73.817104588192251, 40.867763344241297 ], [ -73.817281150425131, 40.86732198498904 ], [ -73.81773424169495, 40.867925903501281 ], [ -73.818609314266297, 40.868522181140278 ], [ -73.818926693172955, 40.86904240959317 ], [ -73.819272602765253, 40.869185429212223 ], [ -73.81999722806917, 40.868990980473654 ], [ -73.820911412498333, 40.869735869284526 ], [ -73.821013660040862, 40.870315041045394 ], [ -73.821605402639989, 40.870130946426798 ], [ -73.821956413058629, 40.870515212965728 ], [ -73.821957836154581, 40.871669815305637 ], [ -73.821762766494743, 40.87203953477033 ], [ -73.82122952671989, 40.872281963235785 ], [ -73.821020468917922, 40.872816112833902 ], [ -73.821376896068926, 40.872868056822853 ], [ -73.821562833496316, 40.872539437295679 ], [ -73.821945677017013, 40.872682233653201 ], [ -73.821635979035207, 40.873123475139053 ], [ -73.82115079655469, 40.873025307180029 ], [ -73.820467842280863, 40.873548442409835 ], [ -73.821274072124169, 40.874180097808377 ], [ -73.821561579623577, 40.874156294928895 ], [ -73.821901763202149, 40.873727007305277 ], [ -73.82209812832312, 40.874774244603344 ], [ -73.820746084265579, 40.874141591391869 ], [ -73.820727498619661, 40.874482463430176 ], [ -73.820429484546125, 40.874380926556668 ], [ -73.820164174226178, 40.874013919985231 ], [ -73.820241525270902, 40.873784490984193 ], [ -73.82007094639313, 40.87343818793439 ], [ -73.819290197936084, 40.8734027074875 ], [ -73.818946440414578, 40.873669404542198 ], [ -73.819176194918938, 40.873830791830244 ], [ -73.819695672778451, 40.873677430120409 ], [ -73.819948032340946, 40.873825146790999 ], [ -73.819905271110997, 40.87403276547326 ], [ -73.819229695760583, 40.874074130063882 ], [ -73.819184277323799, 40.874478809747025 ], [ -73.819905193966491, 40.874222256573525 ], [ -73.820304724008537, 40.874890060435312 ], [ -73.820595453845471, 40.874764909339994 ], [ -73.821249800656744, 40.874813890097826 ], [ -73.821649162171596, 40.875145077031014 ], [ -73.821354158618391, 40.875320562484333 ], [ -73.820887952454655, 40.875094271245125 ], [ -73.820363897866187, 40.875268186919257 ], [ -73.820217054257299, 40.875717503979551 ], [ -73.819760134902495, 40.876260627290783 ], [ -73.819975343132455, 40.876796959096822 ], [ -73.820680264687653, 40.877254870148562 ], [ -73.820442818803329, 40.876036329303048 ], [ -73.82116398203064, 40.876698238746407 ], [ -73.820976958102321, 40.877006298972631 ], [ -73.821056874456744, 40.877566583073971 ], [ -73.820213054745494, 40.878132996736859 ], [ -73.820337447186176, 40.879398939831255 ], [ -73.820024095046662, 40.879778518881032 ], [ -73.820262937156286, 40.879926212743833 ], [ -73.820102176225475, 40.880950368080718 ], [ -73.819117097662769, 40.881322274248745 ], [ -73.819788821900133, 40.881645379201927 ], [ -73.819688740438423, 40.881929590243665 ], [ -73.819259461457762, 40.882089945098002 ], [ -73.819728550170865, 40.882231148309799 ], [ -73.819556473129978, 40.882429594155084 ], [ -73.819772595439417, 40.882635497927424 ], [ -73.819749494898545, 40.882830749568512 ], [ -73.819344974615547, 40.883562820315177 ], [ -73.819832753043684, 40.885669254071232 ], [ -73.816707785914204, 40.886480950542548 ], [ -73.813997483660131, 40.886782132483908 ], [ -73.811406452266354, 40.88663558731109 ], [ -73.807286471225694, 40.885931813816164 ] ] ] } }
-,
-{ "type": "Feature", "id": 15, "properties": { "communityDistrict": 228, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/228" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.820367178696415, 40.860672329519964 ], [ -73.820464419586514, 40.860313118867928 ], [ -73.819992279485092, 40.859873839858892 ], [ -73.820522105791383, 40.859746757044775 ], [ -73.821002795027852, 40.859991139093061 ], [ -73.82098853684252, 40.859327211246026 ], [ -73.821445648814958, 40.859388827942176 ], [ -73.821444602248718, 40.859778642979862 ], [ -73.821692463706086, 40.860089660604622 ], [ -73.821659018742835, 40.860595151579169 ], [ -73.822775415668403, 40.860121783750671 ], [ -73.821973119358233, 40.860138821724135 ], [ -73.821925474502905, 40.859956021107486 ], [ -73.822407243871012, 40.859798401866385 ], [ -73.821685274628337, 40.859779015190846 ], [ -73.821613676662992, 40.859553541671254 ], [ -73.821991138091136, 40.859401852821051 ], [ -73.82196739639943, 40.85927999861542 ], [ -73.820548013072482, 40.859064618952502 ], [ -73.820266967957124, 40.859161635444742 ], [ -73.820239461929987, 40.859356695013624 ], [ -73.819084916892663, 40.859347272774315 ], [ -73.818570033099405, 40.859510918757401 ], [ -73.81844281128356, 40.859829347193468 ], [ -73.818639505627203, 40.860698297068993 ], [ -73.818223948927766, 40.861060710279276 ], [ -73.817245857421995, 40.860844644696044 ], [ -73.816755430994775, 40.861245874357031 ], [ -73.815876382575041, 40.861003864611391 ], [ -73.815682042425749, 40.861109764543748 ], [ -73.815492937079213, 40.860955286737095 ], [ -73.815263214152793, 40.861117747124979 ], [ -73.814796297573494, 40.861128956746732 ], [ -73.814852060240966, 40.860900990309851 ], [ -73.813818025868741, 40.860548278670713 ], [ -73.812731464950446, 40.858877541947749 ], [ -73.812306027084176, 40.854162026473197 ], [ -73.816408709078786, 40.854082255617271 ], [ -73.81684183576192, 40.853625213366122 ], [ -73.817208283531215, 40.851828165777306 ], [ -73.816915423173157, 40.851673525567058 ], [ -73.817124090422126, 40.851269573444732 ], [ -73.816858738707495, 40.850957375998682 ], [ -73.815713784946539, 40.850816203844829 ], [ -73.816035681338235, 40.850602669116299 ], [ -73.81596528550169, 40.850389525194451 ], [ -73.816194723498, 40.850377939842495 ], [ -73.816286190942321, 40.850194576448963 ], [ -73.815652790589127, 40.84934983712575 ], [ -73.815209650661131, 40.849230762977548 ], [ -73.815141919186615, 40.849080612735015 ], [ -73.816301191523266, 40.848572171900926 ], [ -73.820140436144655, 40.848020598550626 ], [ -73.820484056174038, 40.848501025630163 ], [ -73.825582670132235, 40.845863048703436 ], [ -73.825510223104729, 40.845561537336977 ], [ -73.825731497689787, 40.846221403535914 ], [ -73.82601153990079, 40.846140331928488 ], [ -73.82672495578035, 40.847536585233968 ], [ -73.827253112516388, 40.849113817722724 ], [ -73.82724661416367, 40.850342189500786 ], [ -73.826878543486032, 40.851669910025606 ], [ -73.827184237589023, 40.851711205793777 ], [ -73.826759482485102, 40.853006819225811 ], [ -73.827378357662539, 40.852817959669302 ], [ -73.827230260601695, 40.853350756947847 ], [ -73.828601971653228, 40.855717847594697 ], [ -73.829083187060064, 40.85567601369614 ], [ -73.829916239097486, 40.856180818225276 ], [ -73.829999038307903, 40.858211136045725 ], [ -73.821567035368972, 40.861050450239098 ], [ -73.820236846595549, 40.861594655331636 ], [ -73.818954255954097, 40.862474561691158 ], [ -73.818871964361207, 40.862245545597347 ], [ -73.81937709260572, 40.861795585132008 ], [ -73.81951371932054, 40.861470910473351 ], [ -73.820261572145583, 40.861103901029999 ], [ -73.820367178696415, 40.860672329519964 ] ] ] } }
-,
-{ "type": "Feature", "id": 16, "properties": { "communityDistrict": 228, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/228" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.818116669097236, 40.865568970472111 ], [ -73.819102114707547, 40.865197113256819 ], [ -73.819368452942115, 40.8659447219651 ], [ -73.817988969449502, 40.86608815411433 ], [ -73.818116669097236, 40.865568970472111 ] ] ] } }
-,
-{ "type": "Feature", "id": 17, "properties": { "communityDistrict": 318, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/318" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.913323083105226, 40.602611643275132 ], [ -73.913000175893131, 40.602740291683936 ], [ -73.913475115442381, 40.602349295873353 ], [ -73.913298546357993, 40.602250351246404 ], [ -73.913116587996583, 40.602220255929296 ], [ -73.912738668623376, 40.602708677016409 ], [ -73.91285319795081, 40.602507405574627 ], [ -73.912723986223568, 40.602453262946085 ], [ -73.912886934853972, 40.602484703640549 ], [ -73.913096913069495, 40.602214452920414 ], [ -73.911584276893379, 40.602135488403363 ], [ -73.912541702483722, 40.602364439955899 ], [ -73.91165189296602, 40.602278257844787 ], [ -73.911544111829883, 40.602439323103887 ], [ -73.912610986765316, 40.602532006593854 ], [ -73.912572903417242, 40.60268329902901 ], [ -73.912518892580451, 40.602540309303571 ], [ -73.912488828204971, 40.602674149766628 ], [ -73.911515058570771, 40.602460243059369 ], [ -73.910940079824542, 40.60249781432195 ], [ -73.910946343467089, 40.602364642186537 ], [ -73.910865365857774, 40.602490483288435 ], [ -73.910876834441382, 40.602342354837091 ], [ -73.91151957260341, 40.602396868569848 ], [ -73.911542343691778, 40.602224540785613 ], [ -73.910939995739767, 40.602128474221928 ], [ -73.91155529140805, 40.602155464729762 ], [ -73.910758308465034, 40.602027500983375 ], [ -73.910751239722586, 40.602437299862515 ], [ -73.90903689530532, 40.60267734322013 ], [ -73.909018485670813, 40.6025248276692 ], [ -73.910711545229745, 40.602419493178793 ], [ -73.91070633053954, 40.602144515265316 ], [ -73.909409342387235, 40.602190765754784 ], [ -73.910731229473271, 40.602021376027118 ], [ -73.909796499923544, 40.602043013003993 ], [ -73.908942251380367, 40.601607040698681 ], [ -73.90767859330397, 40.602291665714738 ], [ -73.906572239358681, 40.602344003720653 ], [ -73.905387303619193, 40.602649653479247 ], [ -73.904574527674043, 40.602525481995166 ], [ -73.903934495086688, 40.602725102786415 ], [ -73.90332866108642, 40.602456303985541 ], [ -73.90319707837952, 40.602649958503889 ], [ -73.902898174107335, 40.602639059702987 ], [ -73.901430138271664, 40.603272677456545 ], [ -73.89983493364754, 40.603339791384869 ], [ -73.898921580767379, 40.603636282503757 ], [ -73.89956904192465, 40.602412570694703 ], [ -73.900880013300039, 40.601144727461488 ], [ -73.902066250183523, 40.6003727267112 ], [ -73.904661993081348, 40.599306196646161 ], [ -73.905850073500105, 40.59864709311632 ], [ -73.907015680028906, 40.597668327163234 ], [ -73.907566254868499, 40.596990830449805 ], [ -73.908179747074485, 40.595825567882109 ], [ -73.908467298364798, 40.594658205974177 ], [ -73.908063734206834, 40.591305397344236 ], [ -73.908363621879133, 40.5896826681902 ], [ -73.908844606755878, 40.58874136481694 ], [ -73.909534712230965, 40.587878983459746 ], [ -73.910397823750145, 40.58713291762222 ], [ -73.911783401795049, 40.586311865535293 ], [ -73.91195662784709, 40.586794206925674 ], [ -73.911882489600387, 40.587045267664308 ], [ -73.911676208775503, 40.587041561344442 ], [ -73.911576775157897, 40.587262624885831 ], [ -73.911910801352448, 40.588467433873632 ], [ -73.911485790056219, 40.591108753018489 ], [ -73.91202436365306, 40.593096233906437 ], [ -73.912042340156376, 40.594506954288882 ], [ -73.912578344447553, 40.595553121746448 ], [ -73.913198003375996, 40.596178950158723 ], [ -73.913645623968833, 40.597099977182289 ], [ -73.914187394823074, 40.59735702628366 ], [ -73.914485735682206, 40.59794198139339 ], [ -73.915444715695202, 40.599042194935073 ], [ -73.916903895183509, 40.599837301551631 ], [ -73.917566445215286, 40.600016547952663 ], [ -73.917836588591982, 40.600404306991507 ], [ -73.918126036009426, 40.600438631387874 ], [ -73.918591903952574, 40.600796389566781 ], [ -73.920165737981449, 40.601087838804787 ], [ -73.920180701199982, 40.60128267508793 ], [ -73.921399870129946, 40.601703002236192 ], [ -73.92151689981948, 40.601923654141125 ], [ -73.921682553138595, 40.601770058459181 ], [ -73.922674443742466, 40.601592236484933 ], [ -73.923241203678273, 40.601079393459585 ], [ -73.924003078546136, 40.599730145227909 ], [ -73.924570428667792, 40.599723602731885 ], [ -73.926280230723265, 40.600621514101952 ], [ -73.928322552373729, 40.602218382314526 ], [ -73.928786511954229, 40.602211838396776 ], [ -73.928948688134525, 40.602512604013675 ], [ -73.929506712027873, 40.602709233504306 ], [ -73.929615897491772, 40.603189639979398 ], [ -73.929011696537628, 40.603685418468331 ], [ -73.929274585377399, 40.603993574805209 ], [ -73.929874929969188, 40.603742325988733 ], [ -73.930142525818823, 40.604029594336566 ], [ -73.930565232803801, 40.60372682581901 ], [ -73.931003361431678, 40.603935803661365 ], [ -73.931962271303803, 40.603121637615807 ], [ -73.932116087738137, 40.602688516646566 ], [ -73.9317620040799, 40.602596384218188 ], [ -73.931025398878774, 40.601672099959572 ], [ -73.930730188218035, 40.601592761861333 ], [ -73.930306809869052, 40.601171674640838 ], [ -73.929649361733979, 40.601204457578781 ], [ -73.929342680392352, 40.600969151121987 ], [ -73.92941042444437, 40.600759763522717 ], [ -73.92927494215013, 40.600801237011865 ], [ -73.929366537820698, 40.600647008853727 ], [ -73.929226983256797, 40.60048810851643 ], [ -73.928652504797654, 40.600385591829124 ], [ -73.928592306000738, 40.600611615976227 ], [ -73.928376810262336, 40.600350095304492 ], [ -73.927847991663555, 40.600316057979349 ], [ -73.927202404004518, 40.599910080434135 ], [ -73.922901855339759, 40.596447563816319 ], [ -73.921775363243555, 40.595030926201105 ], [ -73.920321410523968, 40.594718846993032 ], [ -73.918674399732794, 40.593332078578698 ], [ -73.917956670352055, 40.592910465509611 ], [ -73.917263905961335, 40.591979118031276 ], [ -73.916908494439397, 40.59174368656948 ], [ -73.916559401060709, 40.591092587438105 ], [ -73.915099543282551, 40.590420492117495 ], [ -73.914858379017886, 40.590070611858046 ], [ -73.914540591210979, 40.58994422917548 ], [ -73.914619213958716, 40.589327155779593 ], [ -73.91420586362733, 40.589224387756893 ], [ -73.914344276717856, 40.588886889304987 ], [ -73.917254822306234, 40.587477879512186 ], [ -73.918092564808362, 40.586570335004716 ], [ -73.929568583093001, 40.596820264919806 ], [ -73.928131396709531, 40.597777928146151 ], [ -73.933551171536052, 40.602687280824874 ], [ -73.934262667258807, 40.60223071136695 ], [ -73.938434935758409, 40.605973863058743 ], [ -73.938098083418382, 40.606195209680678 ], [ -73.937890508110314, 40.606587861063474 ], [ -73.938347084371415, 40.607000456057875 ], [ -73.938489866191787, 40.606921943503181 ], [ -73.939049627748119, 40.607433297476042 ], [ -73.939012468730184, 40.607599477306643 ], [ -73.944055609321495, 40.611992841734242 ], [ -73.947326721606174, 40.629166566706836 ], [ -73.944155352558241, 40.629508285207962 ], [ -73.94551095521949, 40.630791482901316 ], [ -73.944550391147104, 40.631071787088281 ], [ -73.943573087771142, 40.630994155128782 ], [ -73.940596866801016, 40.63138939981696 ], [ -73.937592735704854, 40.632267856999128 ], [ -73.924646949371436, 40.638979128753839 ], [ -73.915930862438344, 40.645774695237954 ], [ -73.901284781690606, 40.655364648675672 ], [ -73.900117158572513, 40.656754643748044 ], [ -73.899637864081498, 40.657981441794959 ], [ -73.899565589760869, 40.658956575610681 ], [ -73.899217608282456, 40.659111403689977 ], [ -73.898806984995034, 40.657406661805041 ], [ -73.899041803889048, 40.657371657570884 ], [ -73.898002558137307, 40.653801223955682 ], [ -73.897610132424404, 40.653453815618008 ], [ -73.893546770738467, 40.655202714083629 ], [ -73.891365435872459, 40.652364719446901 ], [ -73.884948358388002, 40.646802172920793 ], [ -73.881318570509691, 40.643871119271594 ], [ -73.878647053832296, 40.641065856068501 ], [ -73.878684931736686, 40.640538552066083 ], [ -73.877973413343511, 40.63980711772134 ], [ -73.878415893479939, 40.63891218920341 ], [ -73.878656760109294, 40.63941038736008 ], [ -73.879309545371214, 40.640067074221321 ], [ -73.879894043976549, 40.640363279157192 ], [ -73.880256256660374, 40.640970109035969 ], [ -73.880483869226254, 40.640978034547473 ], [ -73.880736235465093, 40.641565957470583 ], [ -73.880292480685711, 40.641404915733119 ], [ -73.880026164262659, 40.641718113295966 ], [ -73.880067141324247, 40.64200344662671 ], [ -73.881393062306202, 40.642347339979111 ], [ -73.882241081656574, 40.643453492409051 ], [ -73.882148325625707, 40.643743727840565 ], [ -73.883245545281994, 40.644437584642581 ], [ -73.883419992690065, 40.644523815650125 ], [ -73.883995410705623, 40.644367935456771 ], [ -73.884807504111279, 40.643946303680252 ], [ -73.885577621490782, 40.644040949287195 ], [ -73.887434446424379, 40.64593668177308 ], [ -73.88766589163491, 40.646504924553206 ], [ -73.887726112332246, 40.64714302919986 ], [ -73.88751623247262, 40.64741516069423 ], [ -73.887712111560973, 40.64787443463652 ], [ -73.888636384341012, 40.64802449261564 ], [ -73.889246779360249, 40.648745653606738 ], [ -73.890088261399555, 40.649332612101858 ], [ -73.890335291412256, 40.649347769001956 ], [ -73.890137010169738, 40.649170412116426 ], [ -73.890347347597611, 40.649033605778691 ], [ -73.890822829589439, 40.649364177365939 ], [ -73.891050569773398, 40.649313177891521 ], [ -73.891205207162443, 40.649119284846883 ], [ -73.891083306053702, 40.648792575695985 ], [ -73.889450742936518, 40.647173955597054 ], [ -73.889350865998793, 40.647034698864168 ], [ -73.889481525760701, 40.646912755068207 ], [ -73.888796908486725, 40.646050258056327 ], [ -73.889413872856167, 40.646938438988954 ], [ -73.888895689493339, 40.647218818907895 ], [ -73.888610048693863, 40.647081360931907 ], [ -73.888516375685228, 40.647360691521939 ], [ -73.888200507266575, 40.647140869529082 ], [ -73.888189908388483, 40.64677356952388 ], [ -73.888449537033324, 40.646728658746333 ], [ -73.888081388840732, 40.646620569628709 ], [ -73.888094419357316, 40.646212786549306 ], [ -73.88828981420744, 40.646044215545579 ], [ -73.888000520929907, 40.646027705355245 ], [ -73.887409602224835, 40.645329280124841 ], [ -73.887916907235365, 40.645067549205365 ], [ -73.888083831649922, 40.645164230626321 ], [ -73.887964064428687, 40.645032573829319 ], [ -73.887343617316645, 40.645224153871652 ], [ -73.886912033885338, 40.64447377760721 ], [ -73.886548889559975, 40.644312490378404 ], [ -73.886236467918053, 40.643816787720972 ], [ -73.884691815025974, 40.643121146973009 ], [ -73.883735787637875, 40.642450349188387 ], [ -73.880788897257347, 40.639757432635506 ], [ -73.880551238822548, 40.639158819737261 ], [ -73.879538880170813, 40.638217839320674 ], [ -73.879117877980704, 40.638266587440519 ], [ -73.878966860711415, 40.638459543695525 ], [ -73.878700391413375, 40.638337724746442 ], [ -73.879529940553823, 40.636735475194122 ], [ -73.880855331614271, 40.6348278444787 ], [ -73.884411945355552, 40.631196435763421 ], [ -73.884713766375938, 40.630533821156703 ], [ -73.884711168378757, 40.629681606929665 ], [ -73.884861601131192, 40.629467534443293 ], [ -73.885258892262101, 40.629371448944006 ], [ -73.886509981051617, 40.62959021423152 ], [ -73.888366302384483, 40.628916235442098 ], [ -73.894238388147627, 40.625081555366457 ], [ -73.895575737927075, 40.623830567800098 ], [ -73.896324544313771, 40.622792244270393 ], [ -73.89826103023735, 40.622989159843556 ], [ -73.901146854264525, 40.625685387597379 ], [ -73.904127932076264, 40.626306200134294 ], [ -73.916331954277183, 40.632038731553166 ], [ -73.916878842111046, 40.631925102345122 ], [ -73.917460875525407, 40.631537631149719 ], [ -73.917518232095503, 40.631340259516669 ], [ -73.917319990124554, 40.631007152718503 ], [ -73.915354603015416, 40.629991694065488 ], [ -73.902693332719778, 40.624213334873239 ], [ -73.902962459204261, 40.623873423211059 ], [ -73.902881856369973, 40.623541946245076 ], [ -73.902351418311468, 40.623476698946902 ], [ -73.901973121459747, 40.622910587526071 ], [ -73.900987175163692, 40.622541386348161 ], [ -73.900704611160549, 40.621628794321403 ], [ -73.89811767568176, 40.621851561121147 ], [ -73.89692451128272, 40.621655115945117 ], [ -73.89721859912828, 40.620771582590024 ], [ -73.89741841090644, 40.619262631799373 ], [ -73.897129439496211, 40.61464003410893 ], [ -73.897310664603424, 40.610300130960375 ], [ -73.898392534810242, 40.606778889433883 ], [ -73.898647189184786, 40.605297980361108 ], [ -73.899161817246934, 40.605528085351267 ], [ -73.899868803638654, 40.605524640544026 ], [ -73.900870374187036, 40.606919460776233 ], [ -73.900565953040314, 40.607474509790052 ], [ -73.900476857148135, 40.609217469826852 ], [ -73.900251067894501, 40.609517405479053 ], [ -73.900156198705872, 40.61007643818634 ], [ -73.901349974006564, 40.611088615101949 ], [ -73.901333034586528, 40.611717882905936 ], [ -73.901614616502044, 40.611864048098319 ], [ -73.901987146031232, 40.611745400968069 ], [ -73.902289894253414, 40.611961574676791 ], [ -73.902493930512463, 40.611814999032823 ], [ -73.901192535313967, 40.610563817547117 ], [ -73.901329626594062, 40.61048104310327 ], [ -73.901248368655672, 40.610580274499064 ], [ -73.902535551210548, 40.611826211199393 ], [ -73.902650779467862, 40.611780621164144 ], [ -73.902360320962103, 40.611980412182518 ], [ -73.90271854260655, 40.611826025295905 ], [ -73.902638277474097, 40.611906522555302 ], [ -73.902926669834358, 40.612159441976388 ], [ -73.903043928125001, 40.612095214987221 ], [ -73.90291750370362, 40.612186543448558 ], [ -73.902629182453495, 40.611925809170778 ], [ -73.902422747175791, 40.612033560004718 ], [ -73.905871052773719, 40.615063313977224 ], [ -73.905734559671941, 40.614882973944304 ], [ -73.90603328990818, 40.614953389220034 ], [ -73.905879376209299, 40.615077461411374 ], [ -73.906962836450759, 40.616114017578788 ], [ -73.907172911498478, 40.616009875338371 ], [ -73.906738487323594, 40.616295919990634 ], [ -73.907256856310099, 40.616087581377279 ], [ -73.907083469683371, 40.616221367023186 ], [ -73.90722592371317, 40.616351525931819 ], [ -73.907442554120721, 40.616258535700595 ], [ -73.907021606784454, 40.616533600356725 ], [ -73.907105953990239, 40.616609860214233 ], [ -73.90752735132169, 40.616344432548892 ], [ -73.90724169448653, 40.616551501888097 ], [ -73.907475037057168, 40.616712744568424 ], [ -73.907589771735402, 40.616629376451222 ], [ -73.907652295122034, 40.616915756619228 ], [ -73.907968065386143, 40.617046586776979 ], [ -73.907764597670081, 40.617217174557318 ], [ -73.907813886033438, 40.617374067585814 ], [ -73.90815289957095, 40.617161891990783 ], [ -73.90839229831542, 40.617388428518858 ], [ -73.908603515934217, 40.617265497054177 ], [ -73.908790880836008, 40.617436396721871 ], [ -73.908633339129693, 40.617167854909361 ], [ -73.908836910448244, 40.617311646627101 ], [ -73.909071451539532, 40.617160438331808 ], [ -73.908354032146789, 40.616530998961501 ], [ -73.908794208191651, 40.616872957324595 ], [ -73.909138531866503, 40.616531621729024 ], [ -73.908105604763421, 40.615669016428463 ], [ -73.907973063905189, 40.615736844061168 ], [ -73.90815663917553, 40.615601124052056 ], [ -73.909176751053977, 40.616521946980207 ], [ -73.908814562085894, 40.616890441882397 ], [ -73.908957061287225, 40.616991484819309 ], [ -73.909644061063162, 40.616575371500019 ], [ -73.909597409103441, 40.616392669799318 ], [ -73.908650246762718, 40.615484555687146 ], [ -73.907855961970597, 40.615205954146468 ], [ -73.907405828864313, 40.614753403411832 ], [ -73.907301533842869, 40.614808913007636 ], [ -73.905443787031089, 40.613014508002877 ], [ -73.904241038593369, 40.612362273218736 ], [ -73.904374107663003, 40.612225386296942 ], [ -73.90429103725161, 40.612014856128788 ], [ -73.904043325293443, 40.611998686431654 ], [ -73.904140891451718, 40.611896139383681 ], [ -73.903509807822431, 40.611406490372566 ], [ -73.903310470125035, 40.611547163863662 ], [ -73.903494074477777, 40.611389008742627 ], [ -73.90313578772971, 40.610967538157638 ], [ -73.902745046034383, 40.61093146873197 ], [ -73.902258599662815, 40.610422772599911 ], [ -73.901642118560318, 40.605763360739431 ], [ -73.905243009921023, 40.604910090324367 ], [ -73.905424400032231, 40.605540297589343 ], [ -73.905974611778589, 40.606384028704312 ], [ -73.908110012335158, 40.606273265343567 ], [ -73.908639595354302, 40.606658722047818 ], [ -73.908829198661337, 40.606564964995272 ], [ -73.908492366851078, 40.605772137123033 ], [ -73.908241104174948, 40.605322778618245 ], [ -73.908033061637624, 40.60535860211774 ], [ -73.908403615745314, 40.605243297059779 ], [ -73.908295868972118, 40.605305501489951 ], [ -73.908885744881061, 40.606536518828904 ], [ -73.909338049831504, 40.606477603024715 ], [ -73.909845283266492, 40.606168305507104 ], [ -73.909851548454697, 40.605999722177678 ], [ -73.90885691315674, 40.605060073797084 ], [ -73.908325369011152, 40.604073373919114 ], [ -73.910922700211813, 40.603505476100665 ], [ -73.913651198255423, 40.603982513837451 ], [ -73.916735565521449, 40.606814561550628 ], [ -73.916604421479519, 40.607089393444681 ], [ -73.916721157590416, 40.607624846780119 ], [ -73.916322300175267, 40.608675662668979 ], [ -73.916783944328813, 40.608773883387016 ], [ -73.916570739834256, 40.609423539545915 ], [ -73.916839811187685, 40.608760014720509 ], [ -73.916509245359308, 40.608629754090003 ], [ -73.916889645213701, 40.608710013686427 ], [ -73.916828032437593, 40.608906057366703 ], [ -73.917088385033153, 40.608820854898525 ], [ -73.917028228078465, 40.608974877413914 ], [ -73.916819644637584, 40.608931385879508 ], [ -73.916656765334722, 40.609436749970754 ], [ -73.916799531566355, 40.609494192231516 ], [ -73.916566040658282, 40.609437822677712 ], [ -73.916385851452148, 40.610088892904862 ], [ -73.916060771325888, 40.610430509362885 ], [ -73.916164751036774, 40.610515575076569 ], [ -73.914495422059829, 40.611653223664838 ], [ -73.914934187904336, 40.613958155054931 ], [ -73.913860531267645, 40.614642268066177 ], [ -73.914079859342507, 40.614888233399455 ], [ -73.914226195958079, 40.614803351891275 ], [ -73.914112061584206, 40.614901478013294 ], [ -73.914222386659901, 40.614932456703144 ], [ -73.916420990034979, 40.613569354692672 ], [ -73.915914521106856, 40.61384537631232 ], [ -73.915768072906161, 40.613540333335273 ], [ -73.915971731754041, 40.613807835366607 ], [ -73.916247689595963, 40.61362610079118 ], [ -73.915884908521221, 40.613328587196875 ], [ -73.915745852963511, 40.613384859698321 ], [ -73.915965725002678, 40.613236396468906 ], [ -73.91588941550161, 40.613309799605631 ], [ -73.916264528326067, 40.613605612704532 ], [ -73.916395867458888, 40.613446834034669 ], [ -73.915993071975024, 40.612881939344767 ], [ -73.915870865363658, 40.612910037390506 ], [ -73.916003188494813, 40.612859738591276 ], [ -73.916499121039905, 40.613520542097959 ], [ -73.916628043711569, 40.613443589265444 ], [ -73.915731819930826, 40.611830844514259 ], [ -73.916746523893053, 40.611178455468142 ], [ -73.916589364860442, 40.61109075400428 ], [ -73.916673112740312, 40.611005823250551 ], [ -73.916829208124511, 40.611118077722899 ], [ -73.918110366790131, 40.61020839405812 ], [ -73.917731855171169, 40.609782538235258 ], [ -73.917866386269637, 40.609327233800819 ], [ -73.917678707573998, 40.609662863943683 ], [ -73.917962700830714, 40.608785937120309 ], [ -73.917819727714303, 40.609304300065872 ], [ -73.918029644532609, 40.608846696737977 ], [ -73.918556661205955, 40.608498309043348 ], [ -73.918005005671404, 40.608149778515092 ], [ -73.918187286560439, 40.608024580911184 ], [ -73.91857357570953, 40.608487946287326 ], [ -73.91900737147327, 40.608267254971075 ], [ -73.918248934341136, 40.607588872927273 ], [ -73.918138148899715, 40.607645386907613 ], [ -73.918362467376383, 40.607501369418706 ], [ -73.918307945325878, 40.607610507708422 ], [ -73.919023107653118, 40.608256868199412 ], [ -73.919353984841123, 40.608042922287694 ], [ -73.918378269401543, 40.607174021935734 ], [ -73.918252690929535, 40.607229350640552 ], [ -73.918503004139211, 40.607071236026989 ], [ -73.918401593596457, 40.607154852898063 ], [ -73.919371004958634, 40.608032641242289 ], [ -73.9195220973007, 40.607738797434308 ], [ -73.915600860384487, 40.603936252151392 ], [ -73.91541600735404, 40.603950005930187 ], [ -73.914768531639453, 40.603360221672659 ], [ -73.914893581025112, 40.603288883760023 ], [ -73.91442813396344, 40.602863919562736 ], [ -73.913894348653656, 40.602703577769148 ], [ -73.913820201628283, 40.602888180050066 ], [ -73.913687185100414, 40.602850421012633 ], [ -73.913855244580375, 40.602690251507255 ], [ -73.913640756674013, 40.602524181704261 ], [ -73.913327003990247, 40.602763777769795 ], [ -73.913470727149473, 40.602911690690441 ], [ -73.913296510964173, 40.602765614678383 ], [ -73.913660893389221, 40.602468910027405 ], [ -73.91349826413736, 40.602366975062587 ], [ -73.913323083105226, 40.602611643275132 ] ] ] } }
-,
-{ "type": "Feature", "id": 18, "properties": { "communityDistrict": 318, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/318" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.915133319181948, 40.586269385400662 ], [ -73.913499617113288, 40.586095825613775 ], [ -73.912829769759938, 40.585751395437839 ], [ -73.914363157380365, 40.585006824693593 ], [ -73.915828900194313, 40.584525154085185 ], [ -73.917069826937279, 40.58573698211103 ], [ -73.916975987480086, 40.585888855000192 ], [ -73.915133319181948, 40.586269385400662 ] ] ] } }
-,
-{ "type": "Feature", "id": 19, "properties": { "communityDistrict": 318, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/318" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.919900642701606, 40.599600521587142 ], [ -73.91998332969213, 40.599535966521771 ], [ -73.919158569027303, 40.599609280918834 ], [ -73.918658876640052, 40.599472428371115 ], [ -73.918435482830461, 40.599166390831741 ], [ -73.916263931083407, 40.598161137312736 ], [ -73.91601641815879, 40.597508438313881 ], [ -73.915074203666535, 40.596494077729304 ], [ -73.914415081730411, 40.596045016532877 ], [ -73.913817651620448, 40.595042289874698 ], [ -73.913383058171888, 40.594721552778495 ], [ -73.913063400012618, 40.594072110687009 ], [ -73.913261803404268, 40.592228776245946 ], [ -73.912951226319819, 40.592054329969521 ], [ -73.914394226777929, 40.591511657998147 ], [ -73.91524478304683, 40.591587508178527 ], [ -73.916049928296374, 40.592202597528249 ], [ -73.916010469245279, 40.592428520705624 ], [ -73.916368279630845, 40.592747071997081 ], [ -73.916441129022289, 40.59312680944047 ], [ -73.917875435580356, 40.594722181524851 ], [ -73.920199545372057, 40.596183345280501 ], [ -73.920829477087906, 40.596334690682852 ], [ -73.920896820953033, 40.596612654032633 ], [ -73.921822777319036, 40.597332932872483 ], [ -73.921864236690837, 40.597798222612703 ], [ -73.92227201543723, 40.598376818436108 ], [ -73.922130493533984, 40.598662596177299 ], [ -73.920848936826744, 40.59954139732843 ], [ -73.919900642701606, 40.599600521587142 ] ] ] } }
-,
-{ "type": "Feature", "id": 20, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.833422307441211, 40.626781982958533 ], [ -73.834643772909445, 40.62742707942521 ], [ -73.833041008417993, 40.628261271059564 ], [ -73.833422307441211, 40.626781982958533 ] ] ] } }
-,
-{ "type": "Feature", "id": 21, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.833422307441211, 40.626781982958533 ], [ -73.834018881344932, 40.614381166419641 ], [ -73.834341681223037, 40.614365437197335 ], [ -73.835422886833214, 40.614610454435812 ], [ -73.8355164942013, 40.61494874641209 ], [ -73.835855726237611, 40.615208999052925 ], [ -73.836344035609827, 40.615119337103678 ], [ -73.836284435938893, 40.615232255018945 ], [ -73.836508101646686, 40.615295842085757 ], [ -73.836636263553302, 40.615145526978331 ], [ -73.837791674841498, 40.61555965034286 ], [ -73.837711541022514, 40.615704325319804 ], [ -73.837218651088662, 40.61581026439319 ], [ -73.836909891500014, 40.616150949617747 ], [ -73.836530384724426, 40.616121410087388 ], [ -73.835941625295291, 40.616545261917032 ], [ -73.834962226455815, 40.617780308811803 ], [ -73.83496699975143, 40.617962186463657 ], [ -73.835168923913756, 40.618037024293209 ], [ -73.83500397387175, 40.618173451720985 ], [ -73.834975852294562, 40.618591855212685 ], [ -73.835356507812051, 40.618713090179781 ], [ -73.835520778115281, 40.61937899354335 ], [ -73.835747065585778, 40.619611526329756 ], [ -73.835512362934878, 40.619958106145269 ], [ -73.834958150636965, 40.619839287733718 ], [ -73.83510471828653, 40.619497833016538 ], [ -73.834772060069199, 40.619844145468207 ], [ -73.8353120185363, 40.620145370808721 ], [ -73.834942912476919, 40.620434142902717 ], [ -73.834987161653117, 40.62101129988978 ], [ -73.834751173638011, 40.621262137758649 ], [ -73.834861106703826, 40.621526647054374 ], [ -73.834645138716724, 40.621997727390685 ], [ -73.83534733990389, 40.623695778843874 ], [ -73.835143558597295, 40.625487082796596 ], [ -73.833422307441211, 40.626781982958533 ] ] ] } }
-,
-{ "type": "Feature", "id": 22, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.834462656861888, 40.607192532943309 ], [ -73.83587601623168, 40.605636907042943 ], [ -73.836101566288491, 40.607362793823242 ], [ -73.834283426860807, 40.609185681351356 ], [ -73.834462656861888, 40.607192532943309 ] ] ] } }
-,
-{ "type": "Feature", "id": 23, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.836237315318655, 40.631110861230788 ], [ -73.841102054474305, 40.624556436515142 ], [ -73.844457115281983, 40.629847794440863 ], [ -73.842423745767576, 40.631532548239093 ], [ -73.837651743622843, 40.632839733458596 ], [ -73.836237315318655, 40.631110861230788 ] ] ] } }
-,
-{ "type": "Feature", "id": 24, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.843044212967726, 40.617737696390421 ], [ -73.842835735287878, 40.616609436163593 ], [ -73.844008501359014, 40.617041366152684 ], [ -73.844541934736924, 40.614867921675142 ], [ -73.840999425396205, 40.613029126216112 ], [ -73.83825667290786, 40.613847215211237 ], [ -73.840794424083697, 40.60564326638265 ], [ -73.847148096217126, 40.603614242191107 ], [ -73.851794022152021, 40.606897168583714 ], [ -73.851240929104534, 40.607719613414879 ], [ -73.847790134058457, 40.609235385262757 ], [ -73.848167694336311, 40.612534228298287 ], [ -73.847311055362383, 40.613438460922488 ], [ -73.846395227119331, 40.616036814801703 ], [ -73.846148045138392, 40.617728420366348 ], [ -73.843044212967726, 40.617737696390421 ] ] ] } }
-,
-{ "type": "Feature", "id": 25, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.847218348323608, 40.631965685700877 ], [ -73.848589966439235, 40.630131986806497 ], [ -73.858558363479801, 40.630458288195591 ], [ -73.856137418759047, 40.635081546014625 ], [ -73.846679148402288, 40.638731711757067 ], [ -73.843520076313055, 40.636503685327014 ], [ -73.845048592788757, 40.633174837994446 ], [ -73.847218348323608, 40.631965685700877 ] ] ] } }
-,
-{ "type": "Feature", "id": 26, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.847343506669901, 40.629094739716251 ], [ -73.849846302333859, 40.626224490746822 ], [ -73.847278377939475, 40.626621669792719 ], [ -73.84504991718363, 40.625411061883646 ], [ -73.843580108214738, 40.623178164185298 ], [ -73.84614754008561, 40.622223608602596 ], [ -73.848477815812799, 40.622418784790526 ], [ -73.856655102577093, 40.619993649189155 ], [ -73.859476976260282, 40.618665216838188 ], [ -73.86107132148318, 40.617712079369774 ], [ -73.863649887949336, 40.617878773642374 ], [ -73.864041062764926, 40.619207596714062 ], [ -73.863439107895033, 40.618942175130613 ], [ -73.861518254852314, 40.619049218399184 ], [ -73.861470006978479, 40.621239246179449 ], [ -73.86102883449351, 40.624138986994915 ], [ -73.863478809469996, 40.623388609315775 ], [ -73.863349556702303, 40.625924908777712 ], [ -73.861376324657158, 40.625979152987796 ], [ -73.860410822708729, 40.625166912977534 ], [ -73.85861338934734, 40.627962022328013 ], [ -73.857677790282153, 40.627983758948417 ], [ -73.857863093830019, 40.628444902668264 ], [ -73.856505509775957, 40.629097353726614 ], [ -73.856134798412384, 40.628280911272874 ], [ -73.853965441911441, 40.627610943897864 ], [ -73.854369310627746, 40.628817676543868 ], [ -73.850716961085823, 40.628002992109479 ], [ -73.848468681302037, 40.629643330752288 ], [ -73.847343506669901, 40.629094739716251 ] ] ] } }
-,
-{ "type": "Feature", "id": 27, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.855230676318996, 40.616131453358022 ], [ -73.855303254651133, 40.61314541357283 ], [ -73.852367043848488, 40.613155989076695 ], [ -73.853768459620767, 40.614087596516825 ], [ -73.852631951127989, 40.615094081909795 ], [ -73.849739863064869, 40.615156058143342 ], [ -73.850108574894236, 40.61021219334512 ], [ -73.855155922883498, 40.606120513001521 ], [ -73.857086381732401, 40.606468242933566 ], [ -73.857040527277292, 40.608299488876 ], [ -73.859017553182824, 40.609475753925068 ], [ -73.8592485545241, 40.611254829869118 ], [ -73.858020931463358, 40.612643816910541 ], [ -73.856483608151819, 40.613190694864585 ], [ -73.858580567827772, 40.616917087221836 ], [ -73.855230676318996, 40.616131453358022 ] ] ] } }
-,
-{ "type": "Feature", "id": 28, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.852433358070158, 40.597333397795225 ], [ -73.853995596653377, 40.596683486347558 ], [ -73.854658631560497, 40.596578388928357 ], [ -73.854926485816705, 40.596301663368024 ], [ -73.856733643949738, 40.596075764353991 ], [ -73.860444205340698, 40.59647190559631 ], [ -73.860549779851922, 40.597063020191605 ], [ -73.862748207928433, 40.599071204919397 ], [ -73.863286632000836, 40.599810042163973 ], [ -73.863359991476116, 40.600322202771117 ], [ -73.862975062609721, 40.601018272615569 ], [ -73.861871898472387, 40.60216432581587 ], [ -73.861128142904803, 40.602550331075065 ], [ -73.860781691668635, 40.602608400256287 ], [ -73.86048884213514, 40.602339347394647 ], [ -73.859059143279765, 40.602061430568817 ], [ -73.854825958489116, 40.601867195354465 ], [ -73.854712007292875, 40.601649025325031 ], [ -73.854273872948781, 40.601430436696212 ], [ -73.853720903406895, 40.60140066517851 ], [ -73.852768382217732, 40.600948854026711 ], [ -73.851760453056073, 40.599697513812572 ], [ -73.850767480015577, 40.598839443837313 ], [ -73.851531228937787, 40.598433936220417 ], [ -73.852433358070158, 40.597333397795225 ] ] ] } }
-,
-{ "type": "Feature", "id": 29, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.857745989451743, 40.64534345473534 ], [ -73.857292275994581, 40.64453058000386 ], [ -73.857169782982112, 40.643678558885966 ], [ -73.858940976021444, 40.643217036205726 ], [ -73.862013010277479, 40.642887041020067 ], [ -73.862894632903661, 40.642550679683232 ], [ -73.865311737311032, 40.640751191444558 ], [ -73.866704119737776, 40.640021763495398 ], [ -73.865353899691172, 40.638951293675724 ], [ -73.865573487437715, 40.638769566216482 ], [ -73.866815282012496, 40.639963527666708 ], [ -73.867322910067358, 40.639871983952069 ], [ -73.868672828950878, 40.640925079203399 ], [ -73.86991239405414, 40.643278202994296 ], [ -73.870017082735799, 40.644071372405413 ], [ -73.870614924610607, 40.644856741886713 ], [ -73.871191729496417, 40.645305356312434 ], [ -73.872570431028919, 40.645575612359622 ], [ -73.873465582586235, 40.646816632969191 ], [ -73.872184733324943, 40.647945070028953 ], [ -73.870185652936257, 40.649323181866038 ], [ -73.86052767845527, 40.654705962076605 ], [ -73.859755336732675, 40.654104176189733 ], [ -73.858980029791553, 40.652675457835485 ], [ -73.856958702918249, 40.650587373974275 ], [ -73.857524293743538, 40.649996190231342 ], [ -73.857834693503435, 40.648302338286832 ], [ -73.858376052516888, 40.647274415312644 ], [ -73.858317963140621, 40.646330203179751 ], [ -73.857745989451743, 40.64534345473534 ] ] ] } }
-,
-{ "type": "Feature", "id": 30, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867061494062, 40.582087976792614 ], [ -73.868147281910026, 40.581988903219255 ], [ -73.868962922104103, 40.581693794788585 ], [ -73.870003136429162, 40.582636614815868 ], [ -73.870505979183505, 40.583341953013694 ], [ -73.870614978603442, 40.584915351061063 ], [ -73.871159226754301, 40.586873887967243 ], [ -73.869813565480257, 40.589460926788952 ], [ -73.86849671647208, 40.590089850289559 ], [ -73.86759275775205, 40.591005791690613 ], [ -73.866350520981669, 40.591892676563944 ], [ -73.864308266925434, 40.591414744326379 ], [ -73.863272735587572, 40.590908075693349 ], [ -73.862741560945892, 40.590366407100753 ], [ -73.862723484980762, 40.590074510753354 ], [ -73.861932162217428, 40.588898945374645 ], [ -73.861494011115354, 40.588542473601962 ], [ -73.861252993773746, 40.587988085921154 ], [ -73.861674479333843, 40.586144794994475 ], [ -73.86327471071958, 40.583876848531801 ], [ -73.863834428895288, 40.583651782174115 ], [ -73.864492453356903, 40.583614938178727 ], [ -73.867061494062, 40.582087976792614 ] ] ] } }
-,
-{ "type": "Feature", "id": 31, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.870846031282611, 40.61696742645676 ], [ -73.878247793242437, 40.615444608331543 ], [ -73.874813868650435, 40.623587189183631 ], [ -73.866843841425307, 40.627829242860287 ], [ -73.864981934959204, 40.625660706040968 ], [ -73.866065331063382, 40.621493325743927 ], [ -73.866261276659415, 40.618456347018778 ], [ -73.870846031282611, 40.61696742645676 ] ] ] } }
-,
-{ "type": "Feature", "id": 32, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867023994751605, 40.608068178769379 ], [ -73.868743175591732, 40.607035179279215 ], [ -73.868684688267507, 40.608241158183823 ], [ -73.867775016270826, 40.608539488779094 ], [ -73.867023994751605, 40.608068178769379 ] ] ] } }
-,
-{ "type": "Feature", "id": 33, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867029052515065, 40.603743388854653 ], [ -73.867681942201543, 40.603070766678101 ], [ -73.868308084648135, 40.603139160140962 ], [ -73.867935053727038, 40.603961135452899 ], [ -73.867026072870331, 40.604171584008192 ], [ -73.867029052515065, 40.603743388854653 ] ] ] } }
-,
-{ "type": "Feature", "id": 34, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.873270312552421, 40.643903214344888 ], [ -73.87297320666589, 40.643839231064526 ], [ -73.872756357709676, 40.643248964655484 ], [ -73.871948801165544, 40.642394084538722 ], [ -73.870845034222725, 40.640556620183141 ], [ -73.870085441584493, 40.639844181365497 ], [ -73.870079584070169, 40.639211694016971 ], [ -73.869895833862472, 40.638934528919535 ], [ -73.869524351893631, 40.638645701918662 ], [ -73.867997096681293, 40.638115265209613 ], [ -73.869609721365634, 40.637085534608715 ], [ -73.869695498189529, 40.637147389615038 ], [ -73.869208461106396, 40.637465809260981 ], [ -73.86955902490304, 40.637947484327491 ], [ -73.87123896009048, 40.637322621761044 ], [ -73.872553371192211, 40.636493365069448 ], [ -73.873479391545018, 40.636285545798785 ], [ -73.87515014178723, 40.637049704310506 ], [ -73.877169097243296, 40.638658069683245 ], [ -73.878415893479939, 40.63891218920341 ], [ -73.876199330988996, 40.643257173093566 ], [ -73.874953578076429, 40.64514158369775 ], [ -73.873901277361, 40.646368367861236 ], [ -73.873185933309543, 40.645445013361588 ], [ -73.873443445211635, 40.644671914241847 ], [ -73.873270312552421, 40.643903214344888 ] ] ] } }
-,
-{ "type": "Feature", "id": 35, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.869527075489316, 40.598713750354435 ], [ -73.869670707114992, 40.596688563622074 ], [ -73.870208997702946, 40.596954232788583 ], [ -73.869527075489316, 40.598713750354435 ] ] ] } }
-,
-{ "type": "Feature", "id": 36, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.869664428925589, 40.606540123412152 ], [ -73.871093307680823, 40.604694173994694 ], [ -73.871056567120831, 40.606285088494985 ], [ -73.872455798118807, 40.608185530348528 ], [ -73.873001227247684, 40.610555458459856 ], [ -73.87180082802044, 40.610280413579517 ], [ -73.871038701117101, 40.609723582526534 ], [ -73.870760086072281, 40.608705400908789 ], [ -73.869664428925589, 40.606540123412152 ] ] ] } }
-,
-{ "type": "Feature", "id": 37, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.870194915558855, 40.598996405902625 ], [ -73.871081418114812, 40.598901147470094 ], [ -73.870494119807162, 40.602604446205277 ], [ -73.870262805651123, 40.601681221253372 ], [ -73.870194915558855, 40.598996405902625 ] ] ] } }
-,
-{ "type": "Feature", "id": 38, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.900216748183468, 40.587811296362901 ], [ -73.899952340706349, 40.58804159869684 ], [ -73.900811520622284, 40.588069101722184 ], [ -73.902099538022881, 40.587356541176923 ], [ -73.902855975575463, 40.587366270666756 ], [ -73.904260373803012, 40.586912024996224 ], [ -73.905879198392384, 40.587497876025246 ], [ -73.905887184259242, 40.587877372914328 ], [ -73.906518746780563, 40.588025473338561 ], [ -73.906859725533252, 40.587882675906322 ], [ -73.907125024723115, 40.587529702962854 ], [ -73.906493512866831, 40.587344674870486 ], [ -73.906335176127399, 40.587131926250777 ], [ -73.906473778076318, 40.587020988409812 ], [ -73.908108850359724, 40.586796505301521 ], [ -73.910885541711906, 40.585947645004453 ], [ -73.911405009060545, 40.586042676438716 ], [ -73.911783401795049, 40.586311865535293 ], [ -73.910397823750145, 40.58713291762222 ], [ -73.909534712230965, 40.587878983459746 ], [ -73.908844606755878, 40.58874136481694 ], [ -73.908363621879133, 40.5896826681902 ], [ -73.908063734206834, 40.591305397344236 ], [ -73.908467298364798, 40.594658205974177 ], [ -73.908179747074485, 40.595825567882109 ], [ -73.907566254868499, 40.596990830449805 ], [ -73.907015680028906, 40.597668327163234 ], [ -73.905850073500105, 40.59864709311632 ], [ -73.904661993081348, 40.599306196646161 ], [ -73.902066250183523, 40.6003727267112 ], [ -73.900880013300039, 40.601144727461488 ], [ -73.89956904192465, 40.602412570694703 ], [ -73.898921580767379, 40.603636282503757 ], [ -73.89843337987341, 40.603591942405608 ], [ -73.897931780982319, 40.603325340514878 ], [ -73.897383379603895, 40.603417225594455 ], [ -73.895309202854506, 40.603121080155418 ], [ -73.894678671396733, 40.603317877590953 ], [ -73.893797387988499, 40.603189292915353 ], [ -73.893264473746754, 40.60347798898237 ], [ -73.892196095557594, 40.603388483616961 ], [ -73.891170965362903, 40.603596153992335 ], [ -73.89080178893353, 40.603980913420862 ], [ -73.888976277621609, 40.6045481331631 ], [ -73.8888014129423, 40.60480845810303 ], [ -73.887644371040935, 40.605277047313571 ], [ -73.884775398474858, 40.605144843965988 ], [ -73.88398042953051, 40.605566519720711 ], [ -73.882693588590215, 40.604224970148472 ], [ -73.882969455211736, 40.603785355673054 ], [ -73.882899830553868, 40.603501613044664 ], [ -73.883326736563703, 40.603053929143421 ], [ -73.883294520201119, 40.60291610455554 ], [ -73.882595045482063, 40.601755950735651 ], [ -73.882146660712607, 40.600237396524179 ], [ -73.881627807705328, 40.599446482601266 ], [ -73.881472083136941, 40.597872095451812 ], [ -73.880714457420524, 40.59639309736496 ], [ -73.880719060394654, 40.594826329723055 ], [ -73.879907132590034, 40.592047994322421 ], [ -73.879408070135582, 40.592103406892242 ], [ -73.879899028519318, 40.592020638852063 ], [ -73.879714922939314, 40.591398891829691 ], [ -73.879357292718225, 40.590843735298165 ], [ -73.878968904387406, 40.590896773117542 ], [ -73.878924119311534, 40.590712780281464 ], [ -73.879293263772993, 40.5906614318706 ], [ -73.879234398324485, 40.590266408953994 ], [ -73.878968312590857, 40.589900935048277 ], [ -73.87913901161356, 40.589373200231236 ], [ -73.878787604105142, 40.588030460661315 ], [ -73.878202002437703, 40.586867942359859 ], [ -73.876716725479966, 40.584914430201486 ], [ -73.879702317299177, 40.580135100698826 ], [ -73.881742900220999, 40.579591700764603 ], [ -73.881867244608245, 40.579454625786937 ], [ -73.881746769838941, 40.579158807212444 ], [ -73.882069582695621, 40.579073978697224 ], [ -73.882146941433064, 40.579189970817581 ], [ -73.882873429436174, 40.579128240680213 ], [ -73.884346610864995, 40.578597975718978 ], [ -73.887348246504686, 40.578075224626211 ], [ -73.888714251396777, 40.578135914938272 ], [ -73.889755335858453, 40.577788416491956 ], [ -73.891184138246615, 40.577872112051452 ], [ -73.892075829025742, 40.577473870119974 ], [ -73.894547721192808, 40.576839509809091 ], [ -73.895523809412566, 40.576769818435793 ], [ -73.896049426728894, 40.578221367947613 ], [ -73.896941231133098, 40.579456684063992 ], [ -73.897087558386517, 40.579886959270468 ], [ -73.89703676910014, 40.580703700748892 ], [ -73.896489743418925, 40.582016519227942 ], [ -73.896555911893969, 40.583005018951113 ], [ -73.897031381981918, 40.583987579865408 ], [ -73.898135425434987, 40.585185655060386 ], [ -73.89789705159707, 40.585821255728398 ], [ -73.898305062270467, 40.586841185003401 ], [ -73.898915999088047, 40.587537436061019 ], [ -73.89973341305182, 40.587165212109873 ], [ -73.898993717351743, 40.587627946686858 ], [ -73.899527840202339, 40.587965313179623 ], [ -73.899810605250266, 40.588014457055479 ], [ -73.899906044604862, 40.58779408924822 ], [ -73.899943450593142, 40.587983416525596 ], [ -73.900009325809094, 40.587818348812398 ], [ -73.900216748183468, 40.587811296362901 ] ] ] } }
-,
-{ "type": "Feature", "id": 39, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.884047261493848, 40.629560118546493 ], [ -73.882632484334039, 40.628274273126877 ], [ -73.883692315715024, 40.627559373913996 ], [ -73.885129540897452, 40.628827258672004 ], [ -73.885721669712623, 40.628446715725644 ], [ -73.886041171972863, 40.628697246481572 ], [ -73.887373346266926, 40.628395565263077 ], [ -73.888168922809498, 40.627975719367313 ], [ -73.890487103961519, 40.626224779064536 ], [ -73.890904714466913, 40.625016198472672 ], [ -73.8925262599371, 40.623631912941178 ], [ -73.89300558930276, 40.623356469096578 ], [ -73.893590825939299, 40.623390049802694 ], [ -73.895470239040336, 40.622570616355276 ], [ -73.895941110311568, 40.622547127108675 ], [ -73.896024503670091, 40.622746511826399 ], [ -73.896324544313771, 40.622792244270393 ], [ -73.895575737927075, 40.623830567800098 ], [ -73.894238388147627, 40.625081555366457 ], [ -73.888366302384483, 40.628916235442098 ], [ -73.886509981051617, 40.62959021423152 ], [ -73.885258892262101, 40.629371448944006 ], [ -73.884861601131192, 40.629467534443293 ], [ -73.884711168378757, 40.629681606929665 ], [ -73.884713766375938, 40.630533821156703 ], [ -73.884411945355552, 40.631196435763421 ], [ -73.880855331614271, 40.6348278444787 ], [ -73.879529940553823, 40.636735475194122 ], [ -73.878700391413375, 40.638337724746442 ], [ -73.87843722459165, 40.637948690274534 ], [ -73.878634881363553, 40.637551781294277 ], [ -73.877836750560249, 40.636902310588937 ], [ -73.877144348685974, 40.635976498007516 ], [ -73.877493816927, 40.635390423977043 ], [ -73.878205904897825, 40.634572943662576 ], [ -73.879987675038436, 40.633514883481006 ], [ -73.880376294890993, 40.632980262363269 ], [ -73.880933201882669, 40.632587061793551 ], [ -73.883221812796364, 40.631442312589925 ], [ -73.883644517282306, 40.630943312138591 ], [ -73.883755016602507, 40.630556438012576 ], [ -73.883769327963776, 40.630221761342369 ], [ -73.883454129234707, 40.629907669934823 ], [ -73.884047261493848, 40.629560118546493 ] ] ] } }
-,
-{ "type": "Feature", "id": 40, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896664881957193, 40.621477350157726 ], [ -73.896441232809423, 40.621394756189495 ], [ -73.896288477369623, 40.62073649997398 ], [ -73.896222433122702, 40.620840221009459 ], [ -73.895729329956083, 40.620240915258151 ], [ -73.895777403446999, 40.620019920532073 ], [ -73.895613885019301, 40.619801287150629 ], [ -73.89571934668956, 40.619529950159304 ], [ -73.895610447436113, 40.619350533385017 ], [ -73.89585293851259, 40.619144619870369 ], [ -73.896083577459663, 40.618382791386949 ], [ -73.89645347974438, 40.61807557101038 ], [ -73.896643352913415, 40.617347712142831 ], [ -73.896453811969437, 40.616769981770169 ], [ -73.896460027079542, 40.616129873890458 ], [ -73.896170524591383, 40.616001183703645 ], [ -73.896173369775823, 40.615654491230984 ], [ -73.895734451529648, 40.6148877471201 ], [ -73.89602881667841, 40.614804600051983 ], [ -73.895861128941874, 40.614518137494748 ], [ -73.89427581474105, 40.613882643248729 ], [ -73.892499262497665, 40.613792311178592 ], [ -73.891340284519615, 40.613256206397978 ], [ -73.89095414564683, 40.612834047317094 ], [ -73.891044106447879, 40.612509560997907 ], [ -73.8914143047419, 40.612125447699476 ], [ -73.892096337686567, 40.611960578803185 ], [ -73.892152844637053, 40.612073909123751 ], [ -73.892748795211659, 40.61172983013126 ], [ -73.893932400721994, 40.611536596724171 ], [ -73.893963850609026, 40.611214222580756 ], [ -73.893580855394859, 40.611165724957999 ], [ -73.893549388530431, 40.61100089763643 ], [ -73.891893891525555, 40.611534670245319 ], [ -73.890997093231917, 40.612052452416187 ], [ -73.891159507512569, 40.612177193161607 ], [ -73.891077946326192, 40.612276861868501 ], [ -73.890333906982747, 40.612011473226673 ], [ -73.889791631960961, 40.61168591567516 ], [ -73.889696317805203, 40.611453559591595 ], [ -73.889784517761953, 40.610955244005332 ], [ -73.890302113894904, 40.610317656862499 ], [ -73.891944614468116, 40.609102252148276 ], [ -73.891968508419112, 40.609377725924951 ], [ -73.892267355249174, 40.609165273147262 ], [ -73.892372108775163, 40.60872812515516 ], [ -73.89222320475713, 40.608627086858128 ], [ -73.892423272076968, 40.608558242738695 ], [ -73.892170359374816, 40.608544721357269 ], [ -73.892483241074387, 40.608153305067908 ], [ -73.892729449992501, 40.607227192316458 ], [ -73.893346214200164, 40.606743446234631 ], [ -73.894861684343596, 40.606404763206385 ], [ -73.89591344490745, 40.60584471127703 ], [ -73.898647189184786, 40.605297980361108 ], [ -73.898392534810242, 40.606778889433883 ], [ -73.897310664603424, 40.610300130960375 ], [ -73.897129439496211, 40.61464003410893 ], [ -73.89741841090644, 40.619262631799373 ], [ -73.89721859912828, 40.620771582590024 ], [ -73.89692451128272, 40.621655115945117 ], [ -73.896664881957193, 40.621477350157726 ] ] ] } }
-,
-{ "type": "Feature", "id": 41, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.912367902888107, 40.584526174247223 ], [ -73.912608477191839, 40.584319948275976 ], [ -73.912635813980188, 40.583950297523209 ], [ -73.912504600356684, 40.583886356213227 ], [ -73.912690149043485, 40.583875153606506 ], [ -73.91271079739758, 40.583699941669224 ], [ -73.912406606087004, 40.583424805506446 ], [ -73.913046609504633, 40.583007548495551 ], [ -73.913054394377966, 40.583186716453817 ], [ -73.914631662753095, 40.58275763490532 ], [ -73.914897419705753, 40.582872610367573 ], [ -73.91498685614684, 40.58315284032804 ], [ -73.916141994073627, 40.582857437633351 ], [ -73.916525374471448, 40.583140338215237 ], [ -73.917310745923572, 40.583218131188922 ], [ -73.91681104385313, 40.582762048557058 ], [ -73.916326405681005, 40.58281886992296 ], [ -73.91596151080897, 40.582435758340196 ], [ -73.915412909008111, 40.582364073798658 ], [ -73.91485429686405, 40.582494093108757 ], [ -73.914386676360053, 40.582383158049318 ], [ -73.914464293027933, 40.582609277816019 ], [ -73.914236925111041, 40.582597251923154 ], [ -73.914173228160024, 40.582801361662483 ], [ -73.91372600624895, 40.582728893874226 ], [ -73.91335911446285, 40.582954021014288 ], [ -73.912969051678701, 40.582972802623949 ], [ -73.912981888790512, 40.582707197183474 ], [ -73.912890427705548, 40.582997583475631 ], [ -73.912501110839386, 40.583079193149999 ], [ -73.912220523386324, 40.582963339545948 ], [ -73.912490094645676, 40.582886169676399 ], [ -73.911936070844163, 40.582967843354794 ], [ -73.911556050379659, 40.58277088589314 ], [ -73.911273753834109, 40.582263099080521 ], [ -73.911571003472915, 40.581782987640167 ], [ -73.913711299861632, 40.58162873719516 ], [ -73.914440816093659, 40.581712697227573 ], [ -73.915014204029703, 40.581539295517018 ], [ -73.91648646817093, 40.58176142729036 ], [ -73.921653837255917, 40.583124280624475 ], [ -73.923741369444727, 40.583511631151772 ], [ -73.927125318368056, 40.583579273883316 ], [ -73.929632480749021, 40.583398808625454 ], [ -73.929983417987728, 40.584233435272964 ], [ -73.927958938223824, 40.584208058662867 ], [ -73.923501978477461, 40.583762093407728 ], [ -73.919858851711794, 40.583741239089569 ], [ -73.917135902032598, 40.584077310796957 ], [ -73.91575404754839, 40.584423268116637 ], [ -73.915828900194313, 40.584525154085185 ], [ -73.914363157380365, 40.585006824693593 ], [ -73.912829769759938, 40.585751395437839 ], [ -73.912553916912557, 40.585526336006218 ], [ -73.912505989414967, 40.58470730696645 ], [ -73.912367902888107, 40.584526174247223 ] ] ] } }
-,
-{ "type": "Feature", "id": 42, "properties": { "communityDistrict": 401, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.906494929233617, 40.790180990344616 ], [ -73.902063278868297, 40.789494405495212 ], [ -73.900326297438198, 40.789007662825682 ], [ -73.896939935625639, 40.786624668969687 ], [ -73.896512049136135, 40.786068659025986 ], [ -73.896352513884565, 40.786179310203849 ], [ -73.896502548339797, 40.786057467844039 ], [ -73.896378559822296, 40.785908981094423 ], [ -73.896218035229182, 40.786016022871259 ], [ -73.896043766681316, 40.785799987480438 ], [ -73.896242597932613, 40.785740432991922 ], [ -73.896140150898162, 40.785607167288276 ], [ -73.895929629755244, 40.785648944313785 ], [ -73.896126326987897, 40.785593168306868 ], [ -73.895829143770584, 40.78522152738347 ], [ -73.898748976383985, 40.782781155766017 ], [ -73.90114577552113, 40.782711106090566 ], [ -73.902178153160023, 40.781780561863449 ], [ -73.902677235821074, 40.780594131742376 ], [ -73.902579296062328, 40.780289120835 ], [ -73.902343038826785, 40.780187244804544 ], [ -73.902183037067331, 40.780359366146897 ], [ -73.902035657901152, 40.781203101962909 ], [ -73.901291276189255, 40.781858419270328 ], [ -73.900349607802639, 40.782164410529965 ], [ -73.898654378440369, 40.781995420320776 ], [ -73.894377779341355, 40.784243203484188 ], [ -73.894294823567591, 40.784117567826975 ], [ -73.896063777384313, 40.783157201805174 ], [ -73.894774291196541, 40.782253592494826 ], [ -73.895357505675136, 40.781657657133408 ], [ -73.894600917745905, 40.78225315898132 ], [ -73.895344478422928, 40.78158556631125 ], [ -73.894164691208644, 40.782472046766621 ], [ -73.893060906920638, 40.781848289707114 ], [ -73.892307502036445, 40.782466041573706 ], [ -73.892749178764134, 40.782965706684728 ], [ -73.891654591898416, 40.782194781531302 ], [ -73.892241910974491, 40.78241079906109 ], [ -73.893009862463089, 40.781798023562793 ], [ -73.892278645315614, 40.781300321679552 ], [ -73.892111488546817, 40.781395179209063 ], [ -73.892246270262362, 40.781254752297876 ], [ -73.891665855943828, 40.780843263979861 ], [ -73.891591641598353, 40.780581120521788 ], [ -73.892534844987864, 40.779770519587842 ], [ -73.892540182116662, 40.779551834272063 ], [ -73.891668597689559, 40.779492539410455 ], [ -73.891195897044014, 40.778563287887067 ], [ -73.892522599270023, 40.777404628989657 ], [ -73.892253657035397, 40.777204522526318 ], [ -73.892860400757385, 40.777159074348354 ], [ -73.89423247497794, 40.778153613229705 ], [ -73.896564775519536, 40.776247024325471 ], [ -73.893242367511419, 40.77394301864571 ], [ -73.889423743511657, 40.7730459285143 ], [ -73.888725513387399, 40.768916239120159 ], [ -73.888221093892724, 40.768592289569682 ], [ -73.887706618200212, 40.766838598051493 ], [ -73.890290345895338, 40.766345197795559 ], [ -73.891835357963473, 40.766227080049347 ], [ -73.891444897473946, 40.76607465363174 ], [ -73.89349605945462, 40.765950930000749 ], [ -73.894323719553626, 40.766146471734785 ], [ -73.89506657695074, 40.764331328290297 ], [ -73.896411384035417, 40.763150082767652 ], [ -73.899677475248268, 40.758296863879046 ], [ -73.899860475258407, 40.757337462519111 ], [ -73.899693726865962, 40.756446609266966 ], [ -73.899004381288009, 40.755203849703776 ], [ -73.898114063841007, 40.754221658567843 ], [ -73.910674748970507, 40.752995076827389 ], [ -73.910354929924694, 40.752749908536124 ], [ -73.90984318646106, 40.751638679830499 ], [ -73.91314339244947, 40.750967052175753 ], [ -73.91525600931422, 40.750845626448282 ], [ -73.920539001504366, 40.749750828355175 ], [ -73.92101480198528, 40.750972609970056 ], [ -73.921612080252757, 40.751371552124191 ], [ -73.922550430677518, 40.751576479635112 ], [ -73.924633695362473, 40.751643345661869 ], [ -73.931526606555877, 40.751166158062539 ], [ -73.933939394171531, 40.750269645776555 ], [ -73.936834805464585, 40.748394551916306 ], [ -73.93739653782103, 40.748916440465884 ], [ -73.937443629422873, 40.749735692271038 ], [ -73.943835367463777, 40.752530123056758 ], [ -73.948767078346719, 40.754904275765433 ], [ -73.949112951995133, 40.754523619821526 ], [ -73.950807638183491, 40.755263680114297 ], [ -73.945705256407351, 40.761488157056597 ], [ -73.943502820327339, 40.7644990407438 ], [ -73.941311749414496, 40.766918004769607 ], [ -73.939835593491225, 40.767988005939294 ], [ -73.939365872238881, 40.768159701376995 ], [ -73.938955024533541, 40.767958186217037 ], [ -73.938203834860715, 40.76872757186392 ], [ -73.937576325834357, 40.768923994185279 ], [ -73.936814606547287, 40.768903947478385 ], [ -73.936707379230867, 40.769252609073739 ], [ -73.936403818023152, 40.769474884014642 ], [ -73.935740214326245, 40.769367229866518 ], [ -73.93489533894558, 40.770041862889499 ], [ -73.934694990670806, 40.770425337519953 ], [ -73.935147154025984, 40.770541956058381 ], [ -73.935008138722239, 40.771162394866529 ], [ -73.934904812826503, 40.771270641186653 ], [ -73.934527301094391, 40.771176775103349 ], [ -73.93448548303904, 40.771306523218421 ], [ -73.934953987149882, 40.771372943016843 ], [ -73.93448015155154, 40.771323068200687 ], [ -73.934435257431772, 40.771462362333395 ], [ -73.934826227616995, 40.771576958073254 ], [ -73.934806814102686, 40.771734138890245 ], [ -73.937466385370769, 40.772531495125172 ], [ -73.937813359695099, 40.773562894647895 ], [ -73.937654830247027, 40.775085685383281 ], [ -73.936089196990991, 40.777184322077012 ], [ -73.935854526415042, 40.77721168462417 ], [ -73.935082325582613, 40.777944233728107 ], [ -73.93474353011284, 40.77807633537698 ], [ -73.933908403140279, 40.778117129316264 ], [ -73.932774778676674, 40.77792238877791 ], [ -73.93272210453965, 40.778034767117937 ], [ -73.931788343051565, 40.777870607104816 ], [ -73.931049642989436, 40.777441897312016 ], [ -73.931073771467538, 40.777260594398122 ], [ -73.930628565541639, 40.776590902749554 ], [ -73.929880585661977, 40.776221631902224 ], [ -73.928605150233494, 40.776592675100957 ], [ -73.926318334039053, 40.77824177518491 ], [ -73.924233630075165, 40.779101193765463 ], [ -73.922956526901373, 40.780441008122203 ], [ -73.922099654994398, 40.780851874636909 ], [ -73.919090347406623, 40.783367646004429 ], [ -73.918188630053081, 40.783932966114129 ], [ -73.917171186464302, 40.784193484371407 ], [ -73.917182006796821, 40.784552063179362 ], [ -73.91683277016422, 40.785191392487349 ], [ -73.915751728945622, 40.786107578578083 ], [ -73.915260140022198, 40.786192216641986 ], [ -73.915587102058879, 40.7864296311663 ], [ -73.912599859776151, 40.789376329634351 ], [ -73.912229524263608, 40.789179279966142 ], [ -73.911951109055735, 40.789401797220982 ], [ -73.912079750905434, 40.789521814990032 ], [ -73.911774455694072, 40.789722510408495 ], [ -73.911618312921007, 40.789586154429976 ], [ -73.911249591052751, 40.78974393630314 ], [ -73.911130568735956, 40.790114076095286 ], [ -73.909858629919043, 40.790945493782388 ], [ -73.906779914208443, 40.79037510815057 ], [ -73.906494929233617, 40.790180990344616 ] ] ] } }
-,
-{ "type": "Feature", "id": 43, "properties": { "communityDistrict": 401, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.88885148496334, 40.798706328958744 ], [ -73.88821348851279, 40.798665304638547 ], [ -73.888392505859969, 40.798566296265406 ], [ -73.888233533136486, 40.798242884285898 ], [ -73.887559675145184, 40.798368732436401 ], [ -73.886651085245887, 40.798038196699899 ], [ -73.883757415901599, 40.795708565419787 ], [ -73.883623475110525, 40.795672726309917 ], [ -73.883655167566602, 40.795967230065109 ], [ -73.883203943037444, 40.79554499746223 ], [ -73.882096336874682, 40.795159861042997 ], [ -73.879804933770174, 40.794892251170332 ], [ -73.878374377466315, 40.794520806766528 ], [ -73.875830754856608, 40.793150117287233 ], [ -73.874493185239601, 40.792057450589184 ], [ -73.872884574456663, 40.791452108207132 ], [ -73.871750205060849, 40.790658509529656 ], [ -73.87121154209629, 40.79003612173787 ], [ -73.870808885673341, 40.787896692185612 ], [ -73.871630653734584, 40.786797905340492 ], [ -73.872788470695184, 40.786077976353127 ], [ -73.8728092001611, 40.785903109099948 ], [ -73.873514525248552, 40.785750091197244 ], [ -73.876530899553174, 40.785837496764998 ], [ -73.878306800576482, 40.785356620508438 ], [ -73.885374422110317, 40.786669126798465 ], [ -73.887701263725305, 40.786872274573241 ], [ -73.88905212443278, 40.787372559755497 ], [ -73.88961097109059, 40.788199991008838 ], [ -73.890301355651417, 40.789876726832738 ], [ -73.89079999909832, 40.79020757619849 ], [ -73.891605871154511, 40.790160700450578 ], [ -73.892181829849392, 40.79039426960896 ], [ -73.892822836770648, 40.792817081952037 ], [ -73.891792896204464, 40.79677524575802 ], [ -73.890731390283321, 40.797660899806523 ], [ -73.890874216789967, 40.797829748226327 ], [ -73.89062148332674, 40.797748923449163 ], [ -73.890795051271482, 40.798021836850438 ], [ -73.890607858242561, 40.797767507137728 ], [ -73.890169163687148, 40.797964657929953 ], [ -73.889212838980995, 40.797801204104076 ], [ -73.888352480983627, 40.798139358695764 ], [ -73.888562045875673, 40.798353403824443 ], [ -73.888392826113417, 40.798375280868441 ], [ -73.888503646971813, 40.798588443915349 ], [ -73.888996542227574, 40.798680754990379 ], [ -73.88885148496334, 40.798706328958744 ] ] ] } }
-,
-{ "type": "Feature", "id": 44, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.858980029791553, 40.652675457835485 ], [ -73.857319415155118, 40.651237099007837 ], [ -73.856958702918249, 40.650587373974275 ], [ -73.858980029791553, 40.652675457835485 ] ] ] } }
-,
-{ "type": "Feature", "id": 45, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.858980029791553, 40.652675457835485 ], [ -73.859755336732675, 40.654104176189733 ], [ -73.859410229428022, 40.653864736919751 ], [ -73.859444740270447, 40.653637548104264 ], [ -73.859045292297978, 40.653107976083902 ], [ -73.858980029791553, 40.652675457835485 ] ] ] } }
-,
-{ "type": "Feature", "id": 46, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.859755336732675, 40.654104176189733 ], [ -73.86098917353911, 40.655209767105148 ], [ -73.860454631708663, 40.655067107366129 ], [ -73.859792427507358, 40.65447615737699 ], [ -73.859755336732675, 40.654104176189733 ] ] ] } }
-,
-{ "type": "Feature", "id": 47, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.830327253370641, 40.655132805803277 ], [ -73.830266018514934, 40.655428646784728 ], [ -73.829889199220091, 40.655522822584949 ], [ -73.830327253370641, 40.655132805803277 ] ] ] } }
-,
-{ "type": "Feature", "id": 48, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.801155385972294, 40.671799120843829 ], [ -73.801250796429386, 40.668385945324694 ], [ -73.801530526033375, 40.666837159491756 ], [ -73.802032076901142, 40.665248024829793 ], [ -73.804320505709427, 40.665120733367026 ], [ -73.804136996254044, 40.665074269678932 ], [ -73.806101631845792, 40.66482819089773 ], [ -73.807301763182991, 40.66064934416174 ], [ -73.807707117047059, 40.66045767119212 ], [ -73.811978652677936, 40.661247346357953 ], [ -73.81165574286338, 40.662607339097477 ], [ -73.811166087138048, 40.663177473599781 ], [ -73.812816163855132, 40.662724436132628 ], [ -73.814969224858544, 40.662472668234564 ], [ -73.823052105664587, 40.663553878135765 ], [ -73.825843937952683, 40.663388471568034 ], [ -73.829487160418353, 40.663824539974208 ], [ -73.832032188073299, 40.664838606129969 ], [ -73.832118468037351, 40.665032818438817 ], [ -73.832477682801439, 40.664968212813172 ], [ -73.829913356874101, 40.659665668181994 ], [ -73.829314202188229, 40.658898656746459 ], [ -73.828599424046956, 40.657196973015992 ], [ -73.827013243975188, 40.650859899128911 ], [ -73.829869487666528, 40.650429629639156 ], [ -73.830011722887463, 40.650917353242733 ], [ -73.830994418680191, 40.65176986404429 ], [ -73.831331514692621, 40.65274755744359 ], [ -73.831292142957295, 40.653470924468422 ], [ -73.831613147936949, 40.653748953236189 ], [ -73.829014175579744, 40.656107884452439 ], [ -73.829666775861511, 40.655599040015325 ], [ -73.830150326207459, 40.655664602843395 ], [ -73.830443281379146, 40.655519472445441 ], [ -73.830602459747709, 40.654806889777511 ], [ -73.831708144775362, 40.653931174297838 ], [ -73.832054451305424, 40.654046418067587 ], [ -73.832000528707468, 40.65444081896505 ], [ -73.832216985185795, 40.654460386292961 ], [ -73.831493301030093, 40.654979820539722 ], [ -73.831161008098817, 40.655919232731982 ], [ -73.830212132269992, 40.656337192506477 ], [ -73.830033014565558, 40.656567168336082 ], [ -73.82937603410717, 40.65650633521588 ], [ -73.829236537990496, 40.656664527519006 ], [ -73.829309746953385, 40.656932457535163 ], [ -73.828967787402959, 40.657205247920054 ], [ -73.829179198005733, 40.657799778545254 ], [ -73.830130287406448, 40.65840264271597 ], [ -73.8295998696928, 40.65865680591115 ], [ -73.830149501047586, 40.659808684957298 ], [ -73.830012141849878, 40.659163163878787 ], [ -73.829695201493919, 40.658655928692433 ], [ -73.830199107209282, 40.658508969065096 ], [ -73.830244270393905, 40.65834996934813 ], [ -73.829223938368727, 40.65770651238293 ], [ -73.829094348911966, 40.657334218664261 ], [ -73.829498261079621, 40.656905907954389 ], [ -73.829502651858405, 40.65664743198424 ], [ -73.830091725696818, 40.656736357448622 ], [ -73.830505320573778, 40.656342367316157 ], [ -73.831271125655846, 40.656003271480358 ], [ -73.831553091773017, 40.655242971869569 ], [ -73.831852384792839, 40.654885038266954 ], [ -73.832181861340146, 40.654894751955723 ], [ -73.832903095245953, 40.657483771623035 ], [ -73.832781943614734, 40.657548460383488 ], [ -73.832084971008584, 40.656131028511304 ], [ -73.831943946442465, 40.656171427254378 ], [ -73.83260036370605, 40.657826591627277 ], [ -73.832014917081622, 40.658077531631555 ], [ -73.830969079966678, 40.658230294172334 ], [ -73.831284461836205, 40.6584066826304 ], [ -73.833384394725442, 40.658051859207973 ], [ -73.831270550940246, 40.650067831824579 ], [ -73.835722754121917, 40.649378229928423 ], [ -73.838785175031305, 40.661088448434775 ], [ -73.838058010146199, 40.662006063339959 ], [ -73.838736085559617, 40.662454060021062 ], [ -73.839979499756197, 40.66190427386222 ], [ -73.839725403531006, 40.660950658874675 ], [ -73.839787526129271, 40.660485998048003 ], [ -73.836813345751565, 40.649249415001961 ], [ -73.837387788457477, 40.649118149467526 ], [ -73.836330747212955, 40.645321149279546 ], [ -73.840006464643693, 40.64513606888876 ], [ -73.840583946775922, 40.6448630260453 ], [ -73.840892586851211, 40.644969036711764 ], [ -73.845996083007051, 40.644568319494461 ], [ -73.849506990841746, 40.644133765678745 ], [ -73.85183280803858, 40.645860055708248 ], [ -73.852286533930908, 40.646588210517749 ], [ -73.852416686220792, 40.64738809796718 ], [ -73.851590891323511, 40.649096478442104 ], [ -73.850905524614092, 40.649168196000353 ], [ -73.850781859960165, 40.649806092222747 ], [ -73.85058099294757, 40.649862205947777 ], [ -73.850586656335423, 40.650337980994941 ], [ -73.850377083496539, 40.6502744998756 ], [ -73.850422610127211, 40.650476994825411 ], [ -73.849257268408238, 40.651031532550874 ], [ -73.849397664063218, 40.651434878950354 ], [ -73.84992253250303, 40.651657963602808 ], [ -73.85078499726184, 40.651532851904271 ], [ -73.851491163699208, 40.651197973179862 ], [ -73.851786065770938, 40.650815639458479 ], [ -73.852509496121542, 40.650551403708079 ], [ -73.85403329487967, 40.650660311574136 ], [ -73.855492467953567, 40.651281160672092 ], [ -73.855919329685904, 40.651309261732408 ], [ -73.856276127155638, 40.651654533706605 ], [ -73.856327639638934, 40.652128334634689 ], [ -73.85671288994665, 40.652801664474126 ], [ -73.857053883475899, 40.652966700127728 ], [ -73.857723317739669, 40.652726229071639 ], [ -73.85828132383817, 40.652994872151808 ], [ -73.858520266581451, 40.653311189403738 ], [ -73.858758079915916, 40.654161627335029 ], [ -73.859154983800366, 40.654402468870231 ], [ -73.859305735544226, 40.654972383384226 ], [ -73.860840306999151, 40.656171574779137 ], [ -73.861363819503893, 40.656414754165247 ], [ -73.861360383612606, 40.656594205207035 ], [ -73.860674145860571, 40.656584591665592 ], [ -73.860616693956814, 40.656464657207714 ], [ -73.86061557040891, 40.656640542174522 ], [ -73.860208395010588, 40.657010374446457 ], [ -73.860067778195386, 40.6567798610495 ], [ -73.860055696404459, 40.65697225515617 ], [ -73.859833635214883, 40.656977063220438 ], [ -73.860074997982238, 40.657048611079986 ], [ -73.859810276096766, 40.657322411493674 ], [ -73.859938973455343, 40.657720177151162 ], [ -73.859572048222887, 40.658035349762315 ], [ -73.859635586693756, 40.658457772056451 ], [ -73.860258478900818, 40.658629711739039 ], [ -73.860232363275529, 40.658897130559993 ], [ -73.860451829914268, 40.658796719827869 ], [ -73.86051208601954, 40.658497671521033 ], [ -73.860980775124304, 40.658381303196599 ], [ -73.860857730767876, 40.658719926940364 ], [ -73.860490004522958, 40.658994143157507 ], [ -73.860612073772174, 40.659326534605924 ], [ -73.861249434390288, 40.658720910027128 ], [ -73.861272803153568, 40.658265167666364 ], [ -73.860958920979996, 40.658060942981727 ], [ -73.860112216392679, 40.658326815089417 ], [ -73.859768396548986, 40.658281936346533 ], [ -73.86021363811534, 40.657913469551566 ], [ -73.860575516926374, 40.657836051942695 ], [ -73.860407142018786, 40.657761341568133 ], [ -73.860341646388733, 40.657247905697162 ], [ -73.860623724034753, 40.657205456083666 ], [ -73.86087597606182, 40.656908162030184 ], [ -73.861613711636181, 40.65699651025276 ], [ -73.861703012764409, 40.658024889422251 ], [ -73.86269778299534, 40.657618309012356 ], [ -73.863170833405064, 40.658276512446257 ], [ -73.860359782060087, 40.659645829012177 ], [ -73.857615372515767, 40.6601189331546 ], [ -73.858429508573025, 40.663453360931832 ], [ -73.855684612211434, 40.663867492372923 ], [ -73.857633231743705, 40.671656194038832 ], [ -73.860389379181342, 40.671268775444425 ], [ -73.862345805351268, 40.679164785644275 ], [ -73.853923891622188, 40.679686155801697 ], [ -73.846714643074961, 40.681858493694463 ], [ -73.810632983108889, 40.6919473825767 ], [ -73.807336218687112, 40.686125446991142 ], [ -73.803230276536013, 40.677681057005721 ], [ -73.801428368462453, 40.673666833941454 ], [ -73.801155385972294, 40.671799120843829 ] ] ] } }
-,
-{ "type": "Feature", "id": 49, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.805097201750854, 40.596755816302348 ], [ -73.8051340625276, 40.596607588970514 ], [ -73.805192434942171, 40.597190375995567 ], [ -73.805097201750854, 40.596755816302348 ] ] ] } }
-,
-{ "type": "Feature", "id": 50, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.804991988551109, 40.596752358877495 ], [ -73.804875652149164, 40.596748535931631 ], [ -73.805111854799122, 40.597151047998082 ], [ -73.804711122261523, 40.597674663184449 ], [ -73.803933389224028, 40.597943498583902 ], [ -73.802979433257462, 40.598844304552955 ], [ -73.801670926801776, 40.598896309269414 ], [ -73.800948678628203, 40.599151664619853 ], [ -73.800915006239649, 40.599390761135751 ], [ -73.800776547076225, 40.599162360478289 ], [ -73.800495263719782, 40.599204368068541 ], [ -73.800473792277955, 40.599331559123712 ], [ -73.800451317956899, 40.599182567873989 ], [ -73.799160400091949, 40.599258137594539 ], [ -73.79914327503613, 40.599418798862885 ], [ -73.799140241966754, 40.599258494215867 ], [ -73.798430786553936, 40.599173714084209 ], [ -73.795546376870618, 40.599496762150217 ], [ -73.794573615957191, 40.599419024301199 ], [ -73.793875581522741, 40.5995994554969 ], [ -73.793309073876785, 40.599968465598728 ], [ -73.792332564495126, 40.599954391425754 ], [ -73.790254616867159, 40.601241996459954 ], [ -73.787857555675942, 40.603111171928859 ], [ -73.786353328118238, 40.603194659038429 ], [ -73.786178840413839, 40.60303206237181 ], [ -73.787162418552043, 40.602326431574852 ], [ -73.78792994192969, 40.600995302045931 ], [ -73.789534621966183, 40.599971814927841 ], [ -73.790340066169207, 40.599191676361279 ], [ -73.790432337711863, 40.598649089022807 ], [ -73.791070793707505, 40.597198362371721 ], [ -73.790931898041805, 40.59598317572511 ], [ -73.791025366527634, 40.595527157215884 ], [ -73.790838268301428, 40.594996876518053 ], [ -73.790152637147472, 40.594768202273954 ], [ -73.790316254762288, 40.596048198939393 ], [ -73.790424814722712, 40.596053932153865 ], [ -73.79017830067248, 40.596071319705622 ], [ -73.790281511773571, 40.596051416106185 ], [ -73.790131194916199, 40.59482287479846 ], [ -73.789739018898231, 40.594743668554557 ], [ -73.789873606483951, 40.596204443784551 ], [ -73.78999909505022, 40.596208943504472 ], [ -73.789698723608154, 40.596228039911331 ], [ -73.789841102328836, 40.596206946879811 ], [ -73.789673896758288, 40.594860475900141 ], [ -73.789402427099745, 40.594949785523696 ], [ -73.789113066673167, 40.595474756332102 ], [ -73.789268580962712, 40.596453723748787 ], [ -73.789068291215017, 40.598019927382602 ], [ -73.787102312265887, 40.599443300892389 ], [ -73.786624094636437, 40.600018633178273 ], [ -73.785971098321568, 40.600316491815896 ], [ -73.785793788135976, 40.600568927993244 ], [ -73.786143586986356, 40.60064861875167 ], [ -73.785780066178773, 40.600593261894268 ], [ -73.785642052732683, 40.600797194520837 ], [ -73.785983591177867, 40.600918237941904 ], [ -73.785632764392275, 40.600816383629677 ], [ -73.785393580870348, 40.601518021708451 ], [ -73.784482332363382, 40.601800098584157 ], [ -73.783505609053122, 40.60256343874272 ], [ -73.78312802406073, 40.603760991847885 ], [ -73.783481382715877, 40.604047835811038 ], [ -73.783947649711962, 40.604824425116817 ], [ -73.783666962925693, 40.60532443592912 ], [ -73.779401439223918, 40.609226260682348 ], [ -73.77856806939954, 40.609643663428983 ], [ -73.77727898274847, 40.60984911309189 ], [ -73.776265383302572, 40.609649037889106 ], [ -73.775351647457171, 40.6097374069643 ], [ -73.774222344113966, 40.608893231635228 ], [ -73.774222693634329, 40.60860112864026 ], [ -73.774814410089164, 40.608399563112322 ], [ -73.774217376874077, 40.607636638970106 ], [ -73.774325414813433, 40.607456943493247 ], [ -73.774602945990722, 40.607417648882524 ], [ -73.774849519697497, 40.60785731537004 ], [ -73.774590094698425, 40.607297656090211 ], [ -73.774584476756345, 40.606525967320714 ], [ -73.775187113272779, 40.604500256319753 ], [ -73.774687989646367, 40.604324648389188 ], [ -73.774913738996631, 40.604112513232366 ], [ -73.775376083168453, 40.604157308867805 ], [ -73.77588140582175, 40.603471681753412 ], [ -73.776053918270051, 40.60275289440353 ], [ -73.775588955005418, 40.603040299589189 ], [ -73.775688143627008, 40.602814740670482 ], [ -73.776057935551094, 40.602513317422172 ], [ -73.776479242549897, 40.602448176643371 ], [ -73.776625458024839, 40.602207778288083 ], [ -73.776489886229839, 40.602171725685167 ], [ -73.777803023878405, 40.600966552222047 ], [ -73.778083277655284, 40.60079984370023 ], [ -73.778368729431392, 40.600838780122686 ], [ -73.778075652814223, 40.600700774367887 ], [ -73.778180869783085, 40.600385541085771 ], [ -73.780109000851084, 40.600727429033746 ], [ -73.780810832315808, 40.599947754024384 ], [ -73.781906810076435, 40.599114165342222 ], [ -73.781936013570103, 40.598531144243289 ], [ -73.781358744407939, 40.597969371289565 ], [ -73.781329739981246, 40.597753037446907 ], [ -73.780183344260735, 40.597212569703231 ], [ -73.780054936955622, 40.596861344908795 ], [ -73.779718402451806, 40.597352548285215 ], [ -73.779043644052436, 40.597649399323501 ], [ -73.777421748107642, 40.598812404361318 ], [ -73.777198506293203, 40.599576959253007 ], [ -73.776001638509683, 40.601394323904813 ], [ -73.775600496330185, 40.601648453143056 ], [ -73.774972073537811, 40.601744487091899 ], [ -73.774742127256189, 40.600963426437694 ], [ -73.774481340306949, 40.600987703852027 ], [ -73.77474724721813, 40.600949790343257 ], [ -73.774640336297324, 40.600837656349505 ], [ -73.774742850289243, 40.600743783092135 ], [ -73.774119950970515, 40.599881381289961 ], [ -73.774223385237789, 40.599005217739162 ], [ -73.773744328390791, 40.598670153981473 ], [ -73.77358545236558, 40.598120473145563 ], [ -73.773005924908361, 40.597867499657163 ], [ -73.771676253985262, 40.597985021223622 ], [ -73.771109414685327, 40.598307584199212 ], [ -73.770372914473057, 40.598091768117563 ], [ -73.769477251095211, 40.598257769449894 ], [ -73.768122854422586, 40.59782435947605 ], [ -73.767935922888, 40.598139706381495 ], [ -73.768265494831368, 40.598332444290641 ], [ -73.769700719870357, 40.598640130523684 ], [ -73.770336348164733, 40.598984223332735 ], [ -73.770930865400771, 40.598857599126355 ], [ -73.771160524363367, 40.599422452073753 ], [ -73.771111034458613, 40.600546028547377 ], [ -73.770737333848331, 40.601535502254812 ], [ -73.770839175946023, 40.601810916097534 ], [ -73.770743833186785, 40.601945318621048 ], [ -73.77061758814915, 40.601868730479012 ], [ -73.77018588340033, 40.602748823326387 ], [ -73.770399644079518, 40.602944060431383 ], [ -73.770162237800221, 40.603090072501153 ], [ -73.770468295182653, 40.603919326498534 ], [ -73.770565214128652, 40.604840409258301 ], [ -73.770009324522022, 40.605336715807816 ], [ -73.770063423237488, 40.605656345789498 ], [ -73.76983622747764, 40.606278008427658 ], [ -73.770015200373052, 40.607215570508998 ], [ -73.769772268766403, 40.607537749989511 ], [ -73.76977547704135, 40.607933144519848 ], [ -73.769218982221446, 40.608449891166863 ], [ -73.76893999327109, 40.609130768376403 ], [ -73.769000780349543, 40.609391552984825 ], [ -73.769179765608271, 40.609700873756218 ], [ -73.769818183886201, 40.610087875416802 ], [ -73.771251018138898, 40.610389836095294 ], [ -73.771846622792879, 40.610824244209553 ], [ -73.772234503004654, 40.611501676751587 ], [ -73.773403890789879, 40.611090448779038 ], [ -73.772962686865483, 40.61015276294571 ], [ -73.773767677531254, 40.611256222475461 ], [ -73.773938277539102, 40.612120151753672 ], [ -73.774171846797032, 40.611829669946303 ], [ -73.773837381283514, 40.612907640396337 ], [ -73.773385979719876, 40.613675066322834 ], [ -73.77296761790663, 40.613559360790745 ], [ -73.771741567079445, 40.613961050127415 ], [ -73.769330851312233, 40.613974525075875 ], [ -73.768354650177827, 40.614227148473475 ], [ -73.766691397711782, 40.614254655450026 ], [ -73.765164008292018, 40.613754202686593 ], [ -73.76501580220102, 40.613475187493172 ], [ -73.765154294791216, 40.613085895213516 ], [ -73.765117372500185, 40.612482972482681 ], [ -73.764977724859378, 40.612331642578326 ], [ -73.765059617451229, 40.612035230611767 ], [ -73.762299440904286, 40.611359206045904 ], [ -73.761724137888805, 40.61184724275769 ], [ -73.760236357569767, 40.610820864950277 ], [ -73.761782429606043, 40.609151670054459 ], [ -73.761550519058929, 40.609031365800782 ], [ -73.7599844704079, 40.610879377848072 ], [ -73.759491198333848, 40.610815795910852 ], [ -73.759720990736824, 40.610151597645192 ], [ -73.759280121246817, 40.6103686383845 ], [ -73.756550624785874, 40.61015521257152 ], [ -73.755855316302629, 40.610317659811784 ], [ -73.75560837015594, 40.610077919637384 ], [ -73.755874129121437, 40.610385185054774 ], [ -73.755563690841555, 40.610118427946269 ], [ -73.754995010860256, 40.610132208028936 ], [ -73.754732195725722, 40.610405241678407 ], [ -73.753458361310578, 40.610519862404715 ], [ -73.7500877107679, 40.611640553827151 ], [ -73.74821585882674, 40.612011077589457 ], [ -73.747993073172537, 40.612310157967791 ], [ -73.747614189291866, 40.61199801088484 ], [ -73.747215678851958, 40.612178838650685 ], [ -73.746855390243553, 40.611574100059599 ], [ -73.745761501786774, 40.611991654748707 ], [ -73.74386981848707, 40.608892484481096 ], [ -73.743072479393803, 40.607886097386661 ], [ -73.743324933339352, 40.607536869922171 ], [ -73.743146552147536, 40.607259865593235 ], [ -73.740291389763399, 40.604598231778397 ], [ -73.739225125630739, 40.604142366826849 ], [ -73.738151431246237, 40.602710440166767 ], [ -73.737997026891563, 40.601601233656858 ], [ -73.738308718854157, 40.598208373679491 ], [ -73.738089252424317, 40.597688297089732 ], [ -73.738648719086015, 40.597344265996696 ], [ -73.738489004667414, 40.59735889424168 ], [ -73.738719681428336, 40.596948817327913 ], [ -73.738584667376315, 40.597253194615618 ], [ -73.738787975276821, 40.596975355326471 ], [ -73.739380236726618, 40.597239072903385 ], [ -73.739927472153823, 40.597054949536492 ], [ -73.740117735878343, 40.596727747135958 ], [ -73.739798757236002, 40.596428603789164 ], [ -73.740097142626709, 40.596208647291704 ], [ -73.740391538349769, 40.596182195673151 ], [ -73.740360127495279, 40.596774995540095 ], [ -73.740643843108202, 40.597001198658269 ], [ -73.741083153429429, 40.59682306657745 ], [ -73.741573803524233, 40.596903946084851 ], [ -73.741830835398147, 40.596695551418819 ], [ -73.741512392350501, 40.596528612515918 ], [ -73.740520598247656, 40.596571855970808 ], [ -73.740547013623981, 40.59611968571793 ], [ -73.739927930509324, 40.596061587314807 ], [ -73.739579049975021, 40.596376337848689 ], [ -73.73949353556857, 40.5970071106861 ], [ -73.73912307710917, 40.596784519793061 ], [ -73.738584314032565, 40.596860947776136 ], [ -73.738122208752728, 40.59738610213892 ], [ -73.738037491250012, 40.595913151336106 ], [ -73.737636793795659, 40.594415399676095 ], [ -73.738170245434347, 40.594539628279222 ], [ -73.738487439717758, 40.594352263490826 ], [ -73.738771531460458, 40.594525207029328 ], [ -73.738816625826047, 40.594359763952333 ], [ -73.738786450446568, 40.594529565561693 ], [ -73.739072124175294, 40.594596476534612 ], [ -73.739294306281224, 40.594453005560659 ], [ -73.739564653313906, 40.594561578577427 ], [ -73.73958763363882, 40.594426524607414 ], [ -73.739619651565164, 40.594580041877308 ], [ -73.739958015923634, 40.59450076878705 ], [ -73.739986787493251, 40.594632859899633 ], [ -73.740135803645757, 40.594511572738874 ], [ -73.740628319981909, 40.594721652270586 ], [ -73.740901705963793, 40.594488248750601 ], [ -73.740895202749371, 40.594611579191884 ], [ -73.741318206253254, 40.594792592881127 ], [ -73.741620916923381, 40.594786493135167 ], [ -73.741697663002824, 40.594641744052772 ], [ -73.74222603163004, 40.594905883325737 ], [ -73.742429263343823, 40.594868517806461 ], [ -73.742387425848761, 40.594729256060141 ], [ -73.743349516691524, 40.594795148277733 ], [ -73.743484422820444, 40.594590516990564 ], [ -73.744624997931837, 40.594661774797856 ], [ -73.746629178791196, 40.594301493560657 ], [ -73.748951162481305, 40.593412875624963 ], [ -73.750226047963494, 40.592710867784824 ], [ -73.751557564859723, 40.59141760314229 ], [ -73.753542419444358, 40.590945287751623 ], [ -73.755954636230655, 40.590874198049775 ], [ -73.757891898618723, 40.591356988277667 ], [ -73.761343116783237, 40.591726633850392 ], [ -73.762952755721358, 40.591611177431027 ], [ -73.767969730065033, 40.590729482964342 ], [ -73.76872708525147, 40.590870068955567 ], [ -73.7708802041345, 40.590553839080009 ], [ -73.775930428218601, 40.590181408327943 ], [ -73.775836886611941, 40.590324598758976 ], [ -73.776662435467372, 40.590066332167815 ], [ -73.777613520768597, 40.590053471208655 ], [ -73.779184954220341, 40.589593108896565 ], [ -73.780430361018958, 40.589596621429031 ], [ -73.784533110484915, 40.588478055217863 ], [ -73.787683707157456, 40.587922937712015 ], [ -73.78878406873126, 40.587450288867238 ], [ -73.789450655917847, 40.587623242907014 ], [ -73.794344605232823, 40.586756677983445 ], [ -73.796020465766929, 40.586319047176985 ], [ -73.796701744175493, 40.586367271524558 ], [ -73.798466405460132, 40.585843680652943 ], [ -73.799491749932074, 40.585814180978304 ], [ -73.800915112417471, 40.585407060934237 ], [ -73.801840184001662, 40.585351710846219 ], [ -73.803302295477792, 40.584886156490391 ], [ -73.803775571031679, 40.585014696486219 ], [ -73.80562313030147, 40.584511183784208 ], [ -73.806517542775126, 40.584464685756608 ], [ -73.807835029654626, 40.584014950352874 ], [ -73.808870342033572, 40.584023970841656 ], [ -73.809514919591194, 40.58382343175392 ], [ -73.813524487275586, 40.583473149046696 ], [ -73.8192881203056, 40.581766974354117 ], [ -73.822227513099222, 40.58111503216292 ], [ -73.827173788849834, 40.579444512955192 ], [ -73.831460933314546, 40.578419437622735 ], [ -73.83386923172182, 40.577649897608943 ], [ -73.837784912390674, 40.575923683474464 ], [ -73.843783591410968, 40.573887452042634 ], [ -73.852202023996654, 40.570745103001478 ], [ -73.853965565770864, 40.570312548872685 ], [ -73.857134221297514, 40.569126875589227 ], [ -73.86022276711229, 40.567921097324401 ], [ -73.862552860950544, 40.566810012301602 ], [ -73.862868922773117, 40.566830571546319 ], [ -73.863169302136242, 40.567739271748323 ], [ -73.864309695511167, 40.567391616473806 ], [ -73.865334325933745, 40.568784783429223 ], [ -73.864466329331336, 40.569141785522433 ], [ -73.866628120238744, 40.573057648924618 ], [ -73.863611329523778, 40.573823057018551 ], [ -73.863406293712146, 40.574114331255878 ], [ -73.863992097390479, 40.575060722125805 ], [ -73.862803619928798, 40.575933034765349 ], [ -73.862883018909045, 40.576059761254719 ], [ -73.853055495851152, 40.581255267855006 ], [ -73.850443851491946, 40.582130243581354 ], [ -73.848610535384182, 40.582188141641041 ], [ -73.845210168651917, 40.581579826263678 ], [ -73.839295979822523, 40.581863544472959 ], [ -73.838971793019255, 40.582484991432921 ], [ -73.838553065170373, 40.582791714300129 ], [ -73.835840800314998, 40.582878939361152 ], [ -73.828524712614694, 40.584854219377185 ], [ -73.828036924068158, 40.586052538385907 ], [ -73.824764278750962, 40.587039215772236 ], [ -73.824813339071213, 40.587151322035965 ], [ -73.824743523558126, 40.587045141974613 ], [ -73.822936885655992, 40.587491649726466 ], [ -73.821459719917726, 40.586769924921221 ], [ -73.817415861474373, 40.588917014109661 ], [ -73.817638004505142, 40.589285799485154 ], [ -73.816741975823589, 40.589319169845879 ], [ -73.815248323752286, 40.589989055790241 ], [ -73.814747846724543, 40.590588126172214 ], [ -73.814058031641721, 40.590624239258318 ], [ -73.813409833446386, 40.59091782311171 ], [ -73.813256715664281, 40.591046302490938 ], [ -73.81358856612637, 40.591697685823519 ], [ -73.813234744325968, 40.591070740017607 ], [ -73.813129917356505, 40.591246626342773 ], [ -73.812243382913024, 40.59132582310334 ], [ -73.811703448363474, 40.591593746637905 ], [ -73.811513031827104, 40.591783490316779 ], [ -73.811494235858689, 40.592901326696804 ], [ -73.811325545678187, 40.591746495140569 ], [ -73.811007666510378, 40.591768297260813 ], [ -73.810817918746423, 40.592090268695991 ], [ -73.810950189527318, 40.592503059144519 ], [ -73.811385930861022, 40.592442318453436 ], [ -73.811407512271629, 40.592871257238656 ], [ -73.811072870210452, 40.593022330572055 ], [ -73.811373839358097, 40.592861101607589 ], [ -73.81137331289645, 40.592703054284186 ], [ -73.810749749133308, 40.592792113552541 ], [ -73.811373473214886, 40.592684499634153 ], [ -73.811358293157838, 40.592462584044938 ], [ -73.810939658945998, 40.592546847806624 ], [ -73.810805379044211, 40.592092095735104 ], [ -73.809911300159968, 40.59225371768246 ], [ -73.810061845699863, 40.593077610898355 ], [ -73.809903403660741, 40.593080776052787 ], [ -73.809731383937134, 40.592404186053301 ], [ -73.809807497824437, 40.59271040950582 ], [ -73.809709824363892, 40.592439608339404 ], [ -73.809505568667603, 40.592775197356815 ], [ -73.809611963788569, 40.593576984263677 ], [ -73.806874567465215, 40.592264953369614 ], [ -73.806028073939217, 40.592009309003394 ], [ -73.805727703930117, 40.590758738264448 ], [ -73.805822015347431, 40.591864571006582 ], [ -73.804339542428764, 40.591310584081207 ], [ -73.804165691030391, 40.591854709832766 ], [ -73.807818704742004, 40.593365437837399 ], [ -73.808046886839676, 40.59365031287615 ], [ -73.807811428310686, 40.593907379875425 ], [ -73.807976875983016, 40.594161415948129 ], [ -73.807112539520276, 40.595284075424281 ], [ -73.806041498073853, 40.595554555213525 ], [ -73.80485298477258, 40.595056336043314 ], [ -73.804114598887352, 40.594319170452238 ], [ -73.804008833519234, 40.593767724911018 ], [ -73.804125679493424, 40.593513805102035 ], [ -73.803809022312024, 40.592891163925337 ], [ -73.803617394554379, 40.592941337743781 ], [ -73.803031539993597, 40.592577189489987 ], [ -73.802438463562396, 40.592640063836221 ], [ -73.802509650872821, 40.593948128041497 ], [ -73.803135034407248, 40.593757943071175 ], [ -73.803180821249597, 40.59394537812981 ], [ -73.802513042829872, 40.593966851792352 ], [ -73.802568375351385, 40.59427226699303 ], [ -73.80324253171004, 40.594087239865395 ], [ -73.803287938930197, 40.594282115891687 ], [ -73.80260442851133, 40.594287751039829 ], [ -73.802709839250042, 40.594306433033239 ], [ -73.802345139115943, 40.59449597525802 ], [ -73.803185744044143, 40.5946630028416 ], [ -73.803440170414518, 40.594434209176832 ], [ -73.803196753649559, 40.594678199883226 ], [ -73.803364588713151, 40.594855366109407 ], [ -73.803200106891296, 40.59487284642524 ], [ -73.803384723494716, 40.594949579585069 ], [ -73.803207044072423, 40.59500968361705 ], [ -73.803390972619724, 40.595006512492979 ], [ -73.803214942512568, 40.595145648450575 ], [ -73.803895069408043, 40.594990875366086 ], [ -73.803314537952971, 40.595179560935421 ], [ -73.803684687616553, 40.59519779018494 ], [ -73.804991988551109, 40.596752358877495 ] ] ] } }
-,
-{ "type": "Feature", "id": 51, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.739558565710183, 40.596980387153806 ], [ -73.739883060073041, 40.596770974189518 ], [ -73.739648533722729, 40.596567152060764 ], [ -73.739747240887922, 40.596542604836564 ], [ -73.739909946901903, 40.596772744520273 ], [ -73.739558565710183, 40.596980387153806 ] ] ] } }
-,
-{ "type": "Feature", "id": 52, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.790549485544929, 40.595201020105094 ], [ -73.790806262076217, 40.596093395885447 ], [ -73.790594429740352, 40.596108384772755 ], [ -73.790549485544929, 40.595201020105094 ] ] ] } }
-,
-{ "type": "Feature", "id": 53, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.820758925048892, 40.61523267901503 ], [ -73.816526811785394, 40.614947009154939 ], [ -73.816547527966193, 40.614470136259079 ], [ -73.816233666846472, 40.614231046198611 ], [ -73.814718126278621, 40.614496088551924 ], [ -73.814440323452345, 40.614749038670666 ], [ -73.814080624329307, 40.614558409236245 ], [ -73.814164498977007, 40.614291069640778 ], [ -73.814682626764906, 40.613975157855023 ], [ -73.814867259721311, 40.614010649752792 ], [ -73.81485722289095, 40.614299226214804 ], [ -73.815495266375777, 40.614039815133161 ], [ -73.814795632553185, 40.61319402998128 ], [ -73.815036384946268, 40.612976213749398 ], [ -73.815239565604784, 40.612983579258277 ], [ -73.815469483171881, 40.613342929008397 ], [ -73.816156266324995, 40.612942115509753 ], [ -73.815598588452843, 40.610672516330631 ], [ -73.815403662557813, 40.610384802016526 ], [ -73.814502615667081, 40.611058473505409 ], [ -73.814498768277858, 40.610735453659274 ], [ -73.814968306882463, 40.610420655016895 ], [ -73.815205675961337, 40.609896894749745 ], [ -73.814770737924761, 40.608851028780172 ], [ -73.814865399224217, 40.608020598483087 ], [ -73.815061298787299, 40.607317030279894 ], [ -73.815741740638231, 40.606465245235491 ], [ -73.815460664833509, 40.60642813700737 ], [ -73.815528166563425, 40.606163069944003 ], [ -73.815525367236631, 40.606407380281972 ], [ -73.815959620025453, 40.606262483353412 ], [ -73.815888297784625, 40.605929034359178 ], [ -73.816425299890341, 40.605224123574907 ], [ -73.817391921065138, 40.605158124286795 ], [ -73.817253705935258, 40.603940324189246 ], [ -73.817720327046359, 40.602224999742049 ], [ -73.818311211203877, 40.601339711710835 ], [ -73.818490661207505, 40.599389559479164 ], [ -73.81928142201636, 40.597529610876578 ], [ -73.819735918315686, 40.597516843269069 ], [ -73.820384063784601, 40.596568761663583 ], [ -73.820533858165987, 40.596136840072852 ], [ -73.820446056590313, 40.595748414779912 ], [ -73.82071206778113, 40.595170514924312 ], [ -73.821357582862362, 40.594691009243327 ], [ -73.824802511925313, 40.595083161352946 ], [ -73.825899747351542, 40.594861457270653 ], [ -73.829136261177098, 40.594806869296526 ], [ -73.830482059614525, 40.594585938270122 ], [ -73.832412096649904, 40.59461849262108 ], [ -73.834655995149873, 40.595168458652232 ], [ -73.834846828131802, 40.595543436106873 ], [ -73.834396127032733, 40.59646420544253 ], [ -73.833517482123568, 40.596983091348413 ], [ -73.833360877221878, 40.59723551139863 ], [ -73.832150952054278, 40.597679598291968 ], [ -73.83239364453685, 40.597803353382325 ], [ -73.831541059401516, 40.597951026055036 ], [ -73.830628521790189, 40.597433425724198 ], [ -73.830389225482065, 40.597734019585268 ], [ -73.829483418232513, 40.598133941902582 ], [ -73.829097774223385, 40.597763455220644 ], [ -73.828061596754267, 40.597680402648805 ], [ -73.827846915054309, 40.597999837760881 ], [ -73.827220929986353, 40.598331194068038 ], [ -73.827103145590627, 40.598688685509686 ], [ -73.826895272580117, 40.598705251807601 ], [ -73.825979859898936, 40.599472066988668 ], [ -73.82584854764572, 40.599440239578854 ], [ -73.825906295311071, 40.599109957895514 ], [ -73.825567907404334, 40.598548147853805 ], [ -73.825076108345229, 40.598214643589344 ], [ -73.82465420663263, 40.598149246703848 ], [ -73.824317337071818, 40.598313104974878 ], [ -73.823958710582957, 40.598876896677218 ], [ -73.824522712764107, 40.598951263990536 ], [ -73.824770890584247, 40.598391843875142 ], [ -73.824526248585457, 40.59912902722327 ], [ -73.824390043150629, 40.599098113026429 ], [ -73.824517336554592, 40.598965808733041 ], [ -73.824077913550155, 40.598909203832996 ], [ -73.824218704432923, 40.599074487919353 ], [ -73.824165698886688, 40.599299379667059 ], [ -73.823766123471813, 40.600040070821855 ], [ -73.823117409747809, 40.600079492525346 ], [ -73.823031951668838, 40.599930516884278 ], [ -73.822927578112072, 40.600061428163038 ], [ -73.823004365507828, 40.599925619397304 ], [ -73.821944417597919, 40.599801155978447 ], [ -73.821469298338329, 40.599993722267676 ], [ -73.822343622818678, 40.600225661407706 ], [ -73.824436438284138, 40.600344983350595 ], [ -73.824452180748864, 40.600796962689479 ], [ -73.823989001242523, 40.601001986624425 ], [ -73.823511302942592, 40.601545771160659 ], [ -73.823577998264938, 40.602271895751457 ], [ -73.823049063577642, 40.602344916155658 ], [ -73.822944847404813, 40.602582909467806 ], [ -73.822765634779145, 40.60420260456651 ], [ -73.82290283003627, 40.60468726854139 ], [ -73.822467467684234, 40.605524982823674 ], [ -73.822904633777881, 40.605851276424389 ], [ -73.822360008762317, 40.606469260660056 ], [ -73.82211377846275, 40.606471956171156 ], [ -73.821264703428525, 40.60700285041046 ], [ -73.820904561260789, 40.607781246218202 ], [ -73.820032434977733, 40.608923655757238 ], [ -73.819982279473635, 40.609560385707859 ], [ -73.819617953621545, 40.610479041064274 ], [ -73.820518879430779, 40.611949948725474 ], [ -73.820434036152335, 40.612066786503547 ], [ -73.820878417901426, 40.612257345820069 ], [ -73.821284210530294, 40.611096928280915 ], [ -73.821062285333539, 40.610763848370802 ], [ -73.820626981522594, 40.610529995216034 ], [ -73.820487006215586, 40.610224379293498 ], [ -73.820858785058661, 40.609231058271199 ], [ -73.821146370184891, 40.609062411070283 ], [ -73.821382681256324, 40.608545544946793 ], [ -73.821614600891323, 40.608480319227709 ], [ -73.821825313399287, 40.608963997185924 ], [ -73.821667978390025, 40.609232316607368 ], [ -73.821862052414858, 40.609869212065874 ], [ -73.822330798471327, 40.610287703255707 ], [ -73.822892333485754, 40.610337022194045 ], [ -73.823346542136051, 40.611154638919864 ], [ -73.823824685953213, 40.611498664910194 ], [ -73.823798479832121, 40.612129421391451 ], [ -73.822349611034923, 40.614260025694712 ], [ -73.821639219398293, 40.614870614894677 ], [ -73.820758925048892, 40.61523267901503 ] ] ] } }
-,
-{ "type": "Feature", "id": 54, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.890502353004464, 40.568183235403161 ], [ -73.890164959211916, 40.5682285247753 ], [ -73.889594924492002, 40.567941890234025 ], [ -73.888790007804076, 40.567931334052794 ], [ -73.888368030309763, 40.568144925425216 ], [ -73.888056609833143, 40.568016918935612 ], [ -73.887473784750966, 40.568130238724478 ], [ -73.886546839364428, 40.568470978109382 ], [ -73.88536860326866, 40.566857011351175 ], [ -73.895540627401388, 40.564020699657355 ], [ -73.896132624453045, 40.565358427566814 ], [ -73.895332594197484, 40.566340904173956 ], [ -73.895659806615086, 40.567059460980218 ], [ -73.895312104179681, 40.567022188552968 ], [ -73.893454678476061, 40.568235018557957 ], [ -73.892610134456206, 40.568587247286672 ], [ -73.890502353004464, 40.568183235403161 ] ] ] } }
-,
-{ "type": "Feature", "id": 55, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.911925519097821, 40.565813862377183 ], [ -73.911858090293947, 40.564995438003244 ], [ -73.910798176830681, 40.565110995831496 ], [ -73.910100845491669, 40.564956201652386 ], [ -73.910037629057854, 40.564793710601897 ], [ -73.909716849259581, 40.565287425461172 ], [ -73.910621846301268, 40.563810518111225 ], [ -73.909810705132671, 40.561501916940301 ], [ -73.908353957480756, 40.560754480086381 ], [ -73.90923653142832, 40.560756522500952 ], [ -73.909267706566482, 40.560450279142728 ], [ -73.909282997928784, 40.556997241629283 ], [ -73.908797305577167, 40.55482950838892 ], [ -73.9194812221196, 40.550624815346517 ], [ -73.926419093968107, 40.548155780319931 ], [ -73.931775808843369, 40.557899562384854 ], [ -73.926157232754193, 40.561552609723073 ], [ -73.924214612366782, 40.562001318824393 ], [ -73.921078228813826, 40.562079852884835 ], [ -73.920368102804517, 40.562218832467586 ], [ -73.920259631730588, 40.562612292555905 ], [ -73.920098401484069, 40.562571180609986 ], [ -73.920331201426691, 40.562226054886516 ], [ -73.917660819000858, 40.56282614968643 ], [ -73.914553369612861, 40.564353432433784 ], [ -73.91386749626399, 40.564608096141825 ], [ -73.913131801280045, 40.564638243946 ], [ -73.91220200769321, 40.56505456984992 ], [ -73.911883196630029, 40.564990405238653 ], [ -73.911954643661858, 40.565811322672808 ], [ -73.91216181893266, 40.565836251568051 ], [ -73.911736153400696, 40.56587265348567 ], [ -73.911925519097821, 40.565813862377183 ] ] ] } }
-,
-{ "type": "Feature", "id": 56, "properties": { "communityDistrict": 483, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/483" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.800728892362457, 40.665269376517465 ], [ -73.795822963931485, 40.664953255151815 ], [ -73.785025138063148, 40.663421072397398 ], [ -73.783939817926694, 40.6627828314193 ], [ -73.778799852846348, 40.660562153298919 ], [ -73.776413927202583, 40.659870722897544 ], [ -73.775253079707582, 40.659320044127135 ], [ -73.769743641745009, 40.655948254796364 ], [ -73.768327401635787, 40.655600115136018 ], [ -73.767390970865605, 40.655838168699717 ], [ -73.766695938389375, 40.655802847501583 ], [ -73.748069339703548, 40.645214897211616 ], [ -73.743990632320248, 40.641247069543333 ], [ -73.744597963429428, 40.639521173264775 ], [ -73.746815510650123, 40.637893389559757 ], [ -73.746855526383953, 40.638060511478443 ], [ -73.746588368896525, 40.638385914697793 ], [ -73.746541325441498, 40.638696787983321 ], [ -73.746669358640474, 40.638706040635917 ], [ -73.746528714952277, 40.638726508213743 ], [ -73.746323680185355, 40.639327794567528 ], [ -73.74634658524856, 40.639879572067358 ], [ -73.74617119726274, 40.640388755690743 ], [ -73.746354914280602, 40.640678793985636 ], [ -73.746314678679468, 40.64139431318155 ], [ -73.747291538998795, 40.643186686373788 ], [ -73.748135607144548, 40.644070010510177 ], [ -73.748751212616085, 40.644471103350313 ], [ -73.748781033322445, 40.645118880997387 ], [ -73.749002487134987, 40.645168209712786 ], [ -73.749452742805218, 40.644931234224877 ], [ -73.751713024669144, 40.64650059076871 ], [ -73.753270905585765, 40.647333762520518 ], [ -73.753403654221103, 40.647162374608811 ], [ -73.75323328269441, 40.647052114686126 ], [ -73.753541919018645, 40.647196312320638 ], [ -73.753292106749029, 40.647343402721916 ], [ -73.753889643709442, 40.647542603555351 ], [ -73.754278098565848, 40.647886422581436 ], [ -73.754755924859637, 40.647812198891934 ], [ -73.754927686429099, 40.647572721038436 ], [ -73.75461208504008, 40.647200458956853 ], [ -73.753792894355072, 40.646705604184277 ], [ -73.753737708263486, 40.646960423577781 ], [ -73.75340189507159, 40.646807461209242 ], [ -73.753611341704342, 40.646856182257849 ], [ -73.753761463613714, 40.646686322658034 ], [ -73.750570328119565, 40.644728556673847 ], [ -73.748707014965262, 40.643343492337415 ], [ -73.747420958996273, 40.641413643684459 ], [ -73.74754412782535, 40.641132167984523 ], [ -73.74743443985416, 40.640238928133542 ], [ -73.747528778547562, 40.639324434692718 ], [ -73.748124885188162, 40.636872731643294 ], [ -73.748398155361713, 40.63665363731986 ], [ -73.748554783949118, 40.63541155957563 ], [ -73.749354469661213, 40.634947256339679 ], [ -73.750696070401133, 40.63462797576701 ], [ -73.752437585727677, 40.633676780243277 ], [ -73.753483977247441, 40.633514291079059 ], [ -73.754791003049206, 40.63288248836318 ], [ -73.755500137490301, 40.632760973905889 ], [ -73.755680219128678, 40.632585029175225 ], [ -73.757388100559879, 40.632107760630781 ], [ -73.757735576201711, 40.631823811050481 ], [ -73.759009554007022, 40.631489296882449 ], [ -73.76053159775509, 40.630663317188194 ], [ -73.762194078137867, 40.630259432956471 ], [ -73.763087896708427, 40.629658898501972 ], [ -73.764530026372881, 40.629221136356946 ], [ -73.765002226606342, 40.629416298671856 ], [ -73.764742896690706, 40.629168084896222 ], [ -73.766398630952693, 40.628350134062543 ], [ -73.767000061817015, 40.627527790061855 ], [ -73.767777029884328, 40.625918463915689 ], [ -73.768276749971989, 40.625335218515225 ], [ -73.768782363293354, 40.624322796032764 ], [ -73.768842284403519, 40.6239348217523 ], [ -73.768553089207842, 40.623187208766346 ], [ -73.768686610750109, 40.622681953217416 ], [ -73.769446523564, 40.622015448432059 ], [ -73.769521349574944, 40.622118488458298 ], [ -73.769815580974694, 40.621377350999772 ], [ -73.771563827241664, 40.621360526782418 ], [ -73.770914999462732, 40.62240388815033 ], [ -73.770820697079657, 40.623282997944855 ], [ -73.771438836640115, 40.623284616704936 ], [ -73.771727602851385, 40.623585028030327 ], [ -73.771699083400179, 40.623438988204526 ], [ -73.771973183249045, 40.623272116308378 ], [ -73.77188149343587, 40.623203602050609 ], [ -73.772145469706487, 40.623046105200409 ], [ -73.772031313654097, 40.622991212901702 ], [ -73.772188240280315, 40.62299579379507 ], [ -73.773500672940273, 40.621343909174371 ], [ -73.772209507038269, 40.623005232487024 ], [ -73.772403136391745, 40.623095302298807 ], [ -73.772168978669896, 40.623055547338588 ], [ -73.772004605753082, 40.623261929018994 ], [ -73.772170183347725, 40.623359631169123 ], [ -73.771996692703979, 40.623281559487609 ], [ -73.771818828377349, 40.623499017984308 ], [ -73.771987765145695, 40.623597581460785 ], [ -73.77173897581244, 40.6236057260734 ], [ -73.77323537306475, 40.624994162478217 ], [ -73.773486164790853, 40.625085118325693 ], [ -73.773832586605849, 40.624944848252142 ], [ -73.773494616145911, 40.625142569370908 ], [ -73.774841892209537, 40.626554650782616 ], [ -73.776408845460551, 40.627534615323164 ], [ -73.777366895851884, 40.627693821486389 ], [ -73.77850001189644, 40.627583743917782 ], [ -73.779239523448268, 40.627317034407348 ], [ -73.779994207638438, 40.626689298072549 ], [ -73.780776882033848, 40.625808503671628 ], [ -73.781361958916335, 40.624842746114815 ], [ -73.784878887408908, 40.626631470707885 ], [ -73.783465583752346, 40.628118140757195 ], [ -73.782843352402566, 40.629405706177543 ], [ -73.782645434359353, 40.630247968083616 ], [ -73.783777286090398, 40.630634115647759 ], [ -73.784347642421466, 40.631373320433489 ], [ -73.785702938064233, 40.632094989481992 ], [ -73.786906667504653, 40.632261900730128 ], [ -73.788323394405111, 40.63342507906026 ], [ -73.789354064345488, 40.634010308818432 ], [ -73.789427172616541, 40.634263034959979 ], [ -73.789716000367491, 40.634067249776564 ], [ -73.79076947464462, 40.633848725717314 ], [ -73.790664495089445, 40.634152939444888 ], [ -73.790792842990996, 40.634282043205047 ], [ -73.798037518347144, 40.631196239807494 ], [ -73.797968294379473, 40.631101307473635 ], [ -73.798118722262046, 40.631037509261098 ], [ -73.798276154152958, 40.631252179365795 ], [ -73.798055371690992, 40.631224458598119 ], [ -73.79081111250504, 40.634310355510713 ], [ -73.791081328386269, 40.634232634366981 ], [ -73.791308778542017, 40.634401300656009 ], [ -73.791228985097376, 40.634857064069848 ], [ -73.792223179716558, 40.635890088278771 ], [ -73.7934336926225, 40.636086690345898 ], [ -73.794259643337256, 40.636564203549703 ], [ -73.794743874990942, 40.636629367395663 ], [ -73.797257429330486, 40.638007613758838 ], [ -73.79863891856661, 40.638403779071048 ], [ -73.799237119838622, 40.63842010970356 ], [ -73.801772201854504, 40.639760283951532 ], [ -73.804659302414393, 40.640905209496616 ], [ -73.805659395866542, 40.641601983125142 ], [ -73.806702006757646, 40.641776184672835 ], [ -73.808645686505727, 40.642814927879265 ], [ -73.810757494440978, 40.643492391255826 ], [ -73.812033336832954, 40.64430357504574 ], [ -73.813506850931759, 40.644636653826815 ], [ -73.816430716134306, 40.645998005631185 ], [ -73.817612540643339, 40.64614028670853 ], [ -73.81830607821486, 40.646386982850117 ], [ -73.818953648171046, 40.646864599411764 ], [ -73.820154351221277, 40.64826502638541 ], [ -73.821247972839984, 40.64913861606 ], [ -73.821921568602534, 40.650111834874359 ], [ -73.822627236846131, 40.652885188905955 ], [ -73.823149183736035, 40.654022771066593 ], [ -73.823483811107465, 40.655369912718655 ], [ -73.823404069826324, 40.656080242093545 ], [ -73.822336881096575, 40.659363084259319 ], [ -73.821611255101359, 40.659935285598202 ], [ -73.821691394394207, 40.660035086743051 ], [ -73.821568935755749, 40.659958693873207 ], [ -73.81970074186691, 40.660724086809722 ], [ -73.819714199092246, 40.660873726175851 ], [ -73.819657252870172, 40.660741919045357 ], [ -73.818695315586893, 40.661105051055159 ], [ -73.817644023338019, 40.660949032430004 ], [ -73.817672964986983, 40.661059722777054 ], [ -73.817504914315435, 40.661048326201481 ], [ -73.817567271191436, 40.660936734262023 ], [ -73.816567593080663, 40.66074251661712 ], [ -73.81598180388724, 40.660835816548563 ], [ -73.816052030347123, 40.660711574205116 ], [ -73.814681487913788, 40.660515214761716 ], [ -73.81457011758252, 40.66063459763906 ], [ -73.814625339698452, 40.660506673653096 ], [ -73.812621255836689, 40.660157049899404 ], [ -73.811438337780274, 40.660254210772422 ], [ -73.811244353571055, 40.660544639567767 ], [ -73.811514484121844, 40.660767142802158 ], [ -73.818671843741612, 40.662132776928665 ], [ -73.823383242857503, 40.660205747027625 ], [ -73.824080064698649, 40.658488346812213 ], [ -73.824095096450506, 40.658316524229107 ], [ -73.823879515199479, 40.658257808338846 ], [ -73.824086253494556, 40.658289354849266 ], [ -73.824264108676573, 40.657779092686539 ], [ -73.824059291337164, 40.657695954020156 ], [ -73.824267759743677, 40.657746511637463 ], [ -73.824980703785471, 40.655431971183667 ], [ -73.823706050165313, 40.651106718909737 ], [ -73.823392852371612, 40.649354073094571 ], [ -73.823181059388915, 40.649157488027498 ], [ -73.82290717766891, 40.648093446005717 ], [ -73.823194441115561, 40.648011161680266 ], [ -73.823903647256657, 40.648866720139452 ], [ -73.823927499132722, 40.649165548068609 ], [ -73.824662300205844, 40.64972399750841 ], [ -73.824827621318732, 40.649668474784704 ], [ -73.824743880789924, 40.64943427558304 ], [ -73.824998465161983, 40.649376930882873 ], [ -73.825361847913527, 40.649913565692387 ], [ -73.825487708808538, 40.649892156942471 ], [ -73.825600897366655, 40.649528486982902 ], [ -73.825859621020726, 40.649475601539343 ], [ -73.826144830596633, 40.650081840942562 ], [ -73.826300148118193, 40.650022985779664 ], [ -73.826172045928232, 40.649526935747048 ], [ -73.826439319693762, 40.649238243912009 ], [ -73.826272599719687, 40.648405025855141 ], [ -73.826392428444905, 40.648324348615581 ], [ -73.828599424046956, 40.657196973015992 ], [ -73.829314202188229, 40.658898656746459 ], [ -73.829913356874101, 40.659665668181994 ], [ -73.832477682801439, 40.664968212813172 ], [ -73.832118468037351, 40.665032818438817 ], [ -73.832032188073299, 40.664838606129969 ], [ -73.829487160418353, 40.663824539974208 ], [ -73.825843937952683, 40.663388471568034 ], [ -73.823052105664587, 40.663553878135765 ], [ -73.814969224858544, 40.662472668234564 ], [ -73.812816163855132, 40.662724436132628 ], [ -73.811166087138048, 40.663177473599781 ], [ -73.81165574286338, 40.662607339097477 ], [ -73.811978652677936, 40.661247346357953 ], [ -73.807707117047059, 40.66045767119212 ], [ -73.807301763182991, 40.66064934416174 ], [ -73.806101631845792, 40.66482819089773 ], [ -73.804136996254044, 40.665074269678932 ], [ -73.804320505709427, 40.665120733367026 ], [ -73.800728892362457, 40.665269376517465 ] ] ] } }
-,
-{ "type": "Feature", "id": 57, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.766708277815923, 40.614910865180356 ], [ -73.768252880033941, 40.614877725169357 ], [ -73.773976920847829, 40.616003575672757 ], [ -73.768734548220266, 40.62090086721642 ], [ -73.767459268845869, 40.620511322061184 ], [ -73.766708277815923, 40.614910865180356 ] ] ] } }
-,
-{ "type": "Feature", "id": 58, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.770770167543517, 40.620031182310008 ], [ -73.771281602701947, 40.620084812749766 ], [ -73.771654546884108, 40.620416427319391 ], [ -73.771716994473039, 40.620961678797983 ], [ -73.771563827241664, 40.621360526782418 ], [ -73.769815580974694, 40.621377350999772 ], [ -73.769755856302879, 40.621106620392709 ], [ -73.770084670568053, 40.620912927335517 ], [ -73.770461550241293, 40.620197779244613 ], [ -73.770770167543517, 40.620031182310008 ] ] ] } }
-,
-{ "type": "Feature", "id": 59, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.781361958916335, 40.624842746114815 ], [ -73.784194832978713, 40.620892669910248 ], [ -73.78511041590447, 40.620281221956162 ], [ -73.785208702659432, 40.619237347917803 ], [ -73.785159200060193, 40.618647282483352 ], [ -73.784781118167928, 40.618335676678662 ], [ -73.784811064750059, 40.618015042893305 ], [ -73.784518826787476, 40.617982670589299 ], [ -73.784581849887175, 40.617855050601207 ], [ -73.784355690211029, 40.617764490587398 ], [ -73.784452737345617, 40.617556590931514 ], [ -73.784299192876873, 40.617353117964207 ], [ -73.784460870682111, 40.617027834124478 ], [ -73.783900609388525, 40.616431913460453 ], [ -73.783818029213393, 40.616140444208952 ], [ -73.783445971759704, 40.615958589860782 ], [ -73.783225545300184, 40.615578730723236 ], [ -73.782489931275109, 40.615567549886762 ], [ -73.782310426569907, 40.615447257365311 ], [ -73.782295274714372, 40.615168153677551 ], [ -73.781890902838029, 40.615047433891085 ], [ -73.781717009124677, 40.615176848796558 ], [ -73.780793765035241, 40.61458756709235 ], [ -73.780708871952882, 40.614026809005857 ], [ -73.78114906073202, 40.613998270977177 ], [ -73.780883608343572, 40.613640354636296 ], [ -73.781159997780847, 40.613601712787045 ], [ -73.781260511018743, 40.61331793350503 ], [ -73.782615574676214, 40.612497968636781 ], [ -73.782879014151121, 40.612488674791607 ], [ -73.783024505639958, 40.612200083190437 ], [ -73.783552214374041, 40.611924451980869 ], [ -73.783943736042986, 40.612040244785 ], [ -73.784474375672815, 40.611850295948472 ], [ -73.784640866528932, 40.612019520908184 ], [ -73.784975234192913, 40.611929570089337 ], [ -73.78522423150612, 40.611415951242975 ], [ -73.785778093158072, 40.610993477070728 ], [ -73.786218432451605, 40.610911064583924 ], [ -73.786469728009379, 40.610678968981574 ], [ -73.786845186972897, 40.610794723588171 ], [ -73.787198974124848, 40.610655841164551 ], [ -73.787199848103768, 40.610381664913326 ], [ -73.787415445683294, 40.610262110594398 ], [ -73.787707426376429, 40.610365467259747 ], [ -73.787913262145324, 40.610285062197889 ], [ -73.787858943300833, 40.610194384978328 ], [ -73.788659106275574, 40.610090594226783 ], [ -73.788760116609609, 40.609637895678915 ], [ -73.789081601659035, 40.609552805967276 ], [ -73.789018403046072, 40.609222206945802 ], [ -73.789953893623576, 40.608981566325944 ], [ -73.790111671493037, 40.608859453331682 ], [ -73.790012643385936, 40.608685463308149 ], [ -73.790472694918137, 40.608456187914328 ], [ -73.790380206145684, 40.608245490172983 ], [ -73.790856213913827, 40.608048067246578 ], [ -73.790876591000625, 40.607695589287474 ], [ -73.791338996044473, 40.607738045853857 ], [ -73.79139721012227, 40.607610854244768 ], [ -73.791598950081109, 40.607809510119282 ], [ -73.791511146905904, 40.6081545214168 ], [ -73.791157513044581, 40.608251801389201 ], [ -73.791172876726378, 40.608474598606151 ], [ -73.791474100746925, 40.608702811509161 ], [ -73.792749486264782, 40.608646365872914 ], [ -73.793651040956462, 40.608985814969103 ], [ -73.793948936171418, 40.609255631536136 ], [ -73.793896884610689, 40.609468516216808 ], [ -73.794541665147051, 40.609748744979655 ], [ -73.794467468786749, 40.609851429330277 ], [ -73.794806339413157, 40.610378359477203 ], [ -73.795660269392272, 40.610546345846572 ], [ -73.796965819916437, 40.611143529178555 ], [ -73.797367317226758, 40.611154028935601 ], [ -73.797456761956994, 40.611318204396184 ], [ -73.798378692403531, 40.611312481263603 ], [ -73.79852584053728, 40.611515924285683 ], [ -73.798985293946416, 40.611482456713979 ], [ -73.799173180598146, 40.612026245926614 ], [ -73.800257000702388, 40.611597282888134 ], [ -73.800539516772304, 40.611651630324424 ], [ -73.800801259194785, 40.611933904481582 ], [ -73.800239489191554, 40.612081960169185 ], [ -73.799990670713726, 40.612573580330768 ], [ -73.800089789901591, 40.612727977608898 ], [ -73.799934352716051, 40.613143870030349 ], [ -73.799316941432821, 40.613358220592694 ], [ -73.79968510153104, 40.613777474043054 ], [ -73.799517670332108, 40.613906926584448 ], [ -73.799402243669547, 40.614903069234934 ], [ -73.799002520536234, 40.615362599332336 ], [ -73.799039035353061, 40.615550542545627 ], [ -73.798786725820364, 40.615544826071122 ], [ -73.798544656714625, 40.61588959617427 ], [ -73.798163006777045, 40.615716090284735 ], [ -73.798065997171904, 40.615926450481766 ], [ -73.798210992948114, 40.616060366080433 ], [ -73.798060903937483, 40.616326916562805 ], [ -73.797275925503186, 40.616660412961487 ], [ -73.797433340878925, 40.61691923278687 ], [ -73.797410338274062, 40.617146713217906 ], [ -73.797133173535684, 40.617381379159319 ], [ -73.797242981463924, 40.617593763471909 ], [ -73.796783043015438, 40.617704722747298 ], [ -73.79700484712896, 40.618379943956811 ], [ -73.796355679042406, 40.618454684535351 ], [ -73.796188308909194, 40.619609853029196 ], [ -73.795595343085751, 40.620211012602105 ], [ -73.795545309774042, 40.620929798485754 ], [ -73.795011888011814, 40.621330743657417 ], [ -73.795237513433932, 40.621657155463311 ], [ -73.794819379792486, 40.621891449970164 ], [ -73.794440154822979, 40.62185157331524 ], [ -73.794435371238066, 40.622061632956715 ], [ -73.794697012275492, 40.62226136198732 ], [ -73.794466577571228, 40.622691306554799 ], [ -73.793390009177386, 40.62275300952426 ], [ -73.792263513520282, 40.622369089072997 ], [ -73.791428026324567, 40.622277657342764 ], [ -73.789678702058964, 40.62261481917205 ], [ -73.784878887408908, 40.626631470707885 ], [ -73.781361958916335, 40.624842746114815 ] ] ] } }
-,
-{ "type": "Feature", "id": 60, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.7942017268998, 40.607730675614519 ], [ -73.793521526495354, 40.606327591394695 ], [ -73.793997549525926, 40.606080153462585 ], [ -73.79509002319466, 40.607271059100455 ], [ -73.794247990991664, 40.605900380032772 ], [ -73.796963277950383, 40.604117848767729 ], [ -73.801200197338218, 40.603912200653262 ], [ -73.801802851167906, 40.604211431452249 ], [ -73.80428530744544, 40.604519279531651 ], [ -73.805206765173736, 40.606739538099035 ], [ -73.804196956564184, 40.608744198031538 ], [ -73.801592067441149, 40.610230962501213 ], [ -73.798781987460444, 40.610333275690245 ], [ -73.796306542154369, 40.609338032538169 ], [ -73.796094539816792, 40.608826483942622 ], [ -73.795598327396277, 40.608725356302216 ], [ -73.795299779144713, 40.608229878318468 ], [ -73.7942017268998, 40.607730675614519 ] ] ] } }
-,
-{ "type": "Feature", "id": 61, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.797835333985176, 40.627408716571502 ], [ -73.797838480913057, 40.627013465297303 ], [ -73.79744863612693, 40.627110476260938 ], [ -73.795662567260948, 40.626114004327739 ], [ -73.799214934277671, 40.624084712988463 ], [ -73.796983476504252, 40.624864689744726 ], [ -73.794037417545738, 40.625635195956107 ], [ -73.793629274813441, 40.625156476194896 ], [ -73.798090931071741, 40.623062948244311 ], [ -73.799510856737413, 40.62117553302096 ], [ -73.799920576986594, 40.618575240167075 ], [ -73.801724986401652, 40.619967008731727 ], [ -73.800962923082935, 40.617772369398182 ], [ -73.801280495040928, 40.6158798397475 ], [ -73.802703438678122, 40.613580652321716 ], [ -73.80339821027151, 40.613172104349616 ], [ -73.805089060122967, 40.613432560419461 ], [ -73.804669689868064, 40.614301826295602 ], [ -73.804765926825112, 40.615800991372005 ], [ -73.80575302222276, 40.616694857538306 ], [ -73.805659450605575, 40.617600255343717 ], [ -73.807641169620737, 40.621199654693342 ], [ -73.807283313292842, 40.62166643562194 ], [ -73.807689177631573, 40.622277660423599 ], [ -73.806985023151, 40.623871998828832 ], [ -73.805571478884474, 40.624969001573788 ], [ -73.805162488469563, 40.624656224185962 ], [ -73.802713449636173, 40.625934787346893 ], [ -73.802515779469118, 40.626329137692345 ], [ -73.800111772116225, 40.626927441988194 ], [ -73.80092841499382, 40.627524103889321 ], [ -73.797835333985176, 40.627408716571502 ] ] ] } }
-,
-{ "type": "Feature", "id": 62, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.813396652892891, 40.60436407224644 ], [ -73.811841302647963, 40.603134665085676 ], [ -73.810853651866509, 40.603223713014252 ], [ -73.810536367586735, 40.602495988814688 ], [ -73.809863337912333, 40.601895790006751 ], [ -73.81003425937601, 40.601610908460422 ], [ -73.809912581665984, 40.601320209932737 ], [ -73.810042932313465, 40.600954710545167 ], [ -73.809850645023943, 40.600365616758531 ], [ -73.810001329484464, 40.600028682815221 ], [ -73.810144175230306, 40.600054855642156 ], [ -73.809974653176781, 40.599836702804964 ], [ -73.810188964345883, 40.599860400365998 ], [ -73.810294938573207, 40.599689389650045 ], [ -73.810290115860653, 40.59899167007233 ], [ -73.810961697245546, 40.59855703088099 ], [ -73.811387196123263, 40.5985032621372 ], [ -73.811575503455316, 40.598141199259501 ], [ -73.81222073287762, 40.598553908477733 ], [ -73.813293730271823, 40.599816592704812 ], [ -73.814447381362342, 40.600543168853648 ], [ -73.815014715687084, 40.602056290558394 ], [ -73.814286936326482, 40.604455666220517 ], [ -73.813396652892891, 40.60436407224644 ] ] ] } }
-,
-{ "type": "Feature", "id": 63, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.813072338926176, 40.629261099642676 ], [ -73.813525021228912, 40.627306172685863 ], [ -73.812585561040919, 40.628371916184761 ], [ -73.811294322736117, 40.624703779001401 ], [ -73.811355819958663, 40.622937515040668 ], [ -73.81185181296344, 40.6220976183739 ], [ -73.812100453342993, 40.621100596814898 ], [ -73.811714504186654, 40.620703573736179 ], [ -73.811719236618018, 40.620094234140481 ], [ -73.811505425397925, 40.619796809946244 ], [ -73.811094511578759, 40.617910252281831 ], [ -73.81024066504996, 40.616487640654213 ], [ -73.810899904816168, 40.616218471340915 ], [ -73.812007178393188, 40.617179371484418 ], [ -73.812113445243426, 40.617925546835458 ], [ -73.812882139145046, 40.618910919655669 ], [ -73.813703540002933, 40.621386744586061 ], [ -73.814495433027133, 40.622394944300147 ], [ -73.814182786255998, 40.623694631559125 ], [ -73.815182032212078, 40.624744171144378 ], [ -73.81612703184858, 40.62534899918068 ], [ -73.81679073502562, 40.626348918121131 ], [ -73.813832885963151, 40.625926233996523 ], [ -73.813828994934539, 40.626135076638931 ], [ -73.816270260439921, 40.627145805917088 ], [ -73.817209356614313, 40.629106351151314 ], [ -73.817305769936084, 40.630621973798867 ], [ -73.81637181200449, 40.631372727243971 ], [ -73.815067884414589, 40.631164058577959 ], [ -73.813917332200802, 40.630776391212969 ], [ -73.813072338926176, 40.629261099642676 ] ] ] } }
-,
-{ "type": "Feature", "id": 64, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.82337597260657, 40.638987047176713 ], [ -73.822771054386862, 40.635576914085021 ], [ -73.822098680837911, 40.63407230114656 ], [ -73.821846042528037, 40.632040188437323 ], [ -73.821075055995564, 40.629733773562052 ], [ -73.819910140681529, 40.627840653116984 ], [ -73.817964147736035, 40.6271055656957 ], [ -73.818007522949401, 40.626476343857767 ], [ -73.81769796593268, 40.625961622496213 ], [ -73.81611483429549, 40.62460465517298 ], [ -73.816086434707955, 40.624315410309308 ], [ -73.816729980585762, 40.623871514072555 ], [ -73.81795284720684, 40.624093280117371 ], [ -73.818917080398336, 40.623090267163292 ], [ -73.818893890474627, 40.622629158032559 ], [ -73.818253036973459, 40.622094238585781 ], [ -73.817786332880971, 40.621937777634699 ], [ -73.817787183106887, 40.621626331776085 ], [ -73.81697007886828, 40.621491557102146 ], [ -73.816910650598174, 40.621869647095309 ], [ -73.816530742595788, 40.622002518747934 ], [ -73.815714680446263, 40.621489551516952 ], [ -73.815431747042794, 40.620116531242161 ], [ -73.817180538784584, 40.61926727449319 ], [ -73.81744426111274, 40.618911754906527 ], [ -73.817446451391106, 40.618110895991165 ], [ -73.817774298345128, 40.617501121695639 ], [ -73.817517178801467, 40.616396411662905 ], [ -73.817168462030352, 40.615843197723251 ], [ -73.817118936222116, 40.61528219234544 ], [ -73.816526811785394, 40.614947009154939 ], [ -73.820758925048892, 40.61523267901503 ], [ -73.821570601597116, 40.614908690828926 ], [ -73.822349611034923, 40.614260025694712 ], [ -73.823798479832121, 40.612129421391451 ], [ -73.823824685953213, 40.611498664910194 ], [ -73.824100484590318, 40.612319568794369 ], [ -73.824321663829522, 40.612588470368202 ], [ -73.824448212399176, 40.612341126657874 ], [ -73.824674516379474, 40.612419914122576 ], [ -73.824685844134748, 40.613076418757572 ], [ -73.825753221052878, 40.614192081540033 ], [ -73.82725636567055, 40.613378714123492 ], [ -73.827581929048634, 40.613667659283571 ], [ -73.827875254717938, 40.613697628598395 ], [ -73.827241537270012, 40.6140650205719 ], [ -73.827502226095433, 40.614204666720191 ], [ -73.828455031825015, 40.61421603915165 ], [ -73.830919960014242, 40.615005487033436 ], [ -73.832029709067726, 40.614897699357961 ], [ -73.834018881344932, 40.614381166419641 ], [ -73.833422307441211, 40.626781982958533 ], [ -73.833041008417993, 40.628261271059564 ], [ -73.832865287316821, 40.628408350262525 ], [ -73.832895489567733, 40.62890347873293 ], [ -73.832360366712265, 40.629142257747247 ], [ -73.83196080768144, 40.629652729879275 ], [ -73.831896663981922, 40.630572394052074 ], [ -73.83114086389277, 40.632749395288428 ], [ -73.831331128641423, 40.633617691427617 ], [ -73.831938784067233, 40.634236225427472 ], [ -73.831957877866927, 40.634978880565782 ], [ -73.832490944357133, 40.635578551835529 ], [ -73.833406079792184, 40.638501355899017 ], [ -73.832899743611975, 40.638862685066805 ], [ -73.832216588191812, 40.638928490220756 ], [ -73.82866782109744, 40.636614718447966 ], [ -73.828085673532783, 40.635879726836556 ], [ -73.825916579632008, 40.635747412819988 ], [ -73.825050982906006, 40.635905260443749 ], [ -73.824430325632861, 40.636216520036534 ], [ -73.82413577690069, 40.638787996704544 ], [ -73.824573798903302, 40.639353873239195 ], [ -73.824193272931581, 40.639953274487731 ], [ -73.82337597260657, 40.638987047176713 ] ] ] } }
-,
-{ "type": "Feature", "id": 65, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.827182821070537, 40.607919778091201 ], [ -73.826795374971454, 40.60772044059307 ], [ -73.82629763015818, 40.607817072229679 ], [ -73.826173610758204, 40.607554111783294 ], [ -73.826391178187762, 40.607357433652211 ], [ -73.825982128424016, 40.607157997600353 ], [ -73.825900927207712, 40.606465930649414 ], [ -73.826496187957787, 40.606224463717723 ], [ -73.826905245846845, 40.606423897977251 ], [ -73.828616714576626, 40.60583848413755 ], [ -73.828660600902253, 40.606256158374755 ], [ -73.82815085191217, 40.607950289832957 ], [ -73.827182821070537, 40.607919778091201 ] ] ] } }
-,
-{ "type": "Feature", "id": 66, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.826074726045476, 40.608437799546074 ], [ -73.826610510087889, 40.608196205841651 ], [ -73.827711042359923, 40.608398668130668 ], [ -73.828050772600591, 40.610046296865278 ], [ -73.826883264807563, 40.609596678070396 ], [ -73.826074726045476, 40.608437799546074 ] ] ] } }
-,
-{ "type": "Feature", "id": 67, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.826719435468533, 40.649578819319281 ], [ -73.826392428444905, 40.648324348615581 ], [ -73.826869574645244, 40.6487990451825 ], [ -73.828598743519819, 40.649169794434549 ], [ -73.829869487666528, 40.650429629639156 ], [ -73.827013243975188, 40.650859899128911 ], [ -73.826719435468533, 40.649578819319281 ] ] ] } }
-,
-{ "type": "Feature", "id": 68, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.832442073584232, 40.605929448531562 ], [ -73.834541441096718, 40.605477383765837 ], [ -73.83587601623168, 40.605636907042943 ], [ -73.834462656861888, 40.607192532943309 ], [ -73.834283426860807, 40.609185681351356 ], [ -73.833732759732015, 40.609286033073346 ], [ -73.833803115155916, 40.609550591858003 ], [ -73.832521923413054, 40.61038499360474 ], [ -73.830329479060268, 40.608487878911355 ], [ -73.830458153927424, 40.606669201403157 ], [ -73.832442073584232, 40.605929448531562 ] ] ] } }
-,
-{ "type": "Feature", "id": 69, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.831669027678075, 40.647972211017652 ], [ -73.834480693621742, 40.648109047247502 ], [ -73.835278773069163, 40.648283844700721 ], [ -73.835676748637013, 40.648612360146451 ], [ -73.835722754121917, 40.649378229928423 ], [ -73.831270550940246, 40.650067831824579 ], [ -73.831046725155105, 40.648634775422813 ], [ -73.831222092058482, 40.648276844993312 ], [ -73.831669027678075, 40.647972211017652 ] ] ] } }
-,
-{ "type": "Feature", "id": 70, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.836682741067051, 40.5949466970158 ], [ -73.836709208259379, 40.594711963293435 ], [ -73.836244564860706, 40.594496397754135 ], [ -73.835271993899497, 40.594473517514437 ], [ -73.835117203194415, 40.594365843590147 ], [ -73.835113485986497, 40.593968265053959 ], [ -73.834332126848892, 40.593660767746748 ], [ -73.834224631394008, 40.593348241995777 ], [ -73.833611639525699, 40.593277512302294 ], [ -73.833295450780128, 40.592890225452791 ], [ -73.833083773965058, 40.592986625446372 ], [ -73.833124343233067, 40.592264069064825 ], [ -73.832574981063743, 40.592118209113977 ], [ -73.832675969852147, 40.591895394119966 ], [ -73.833067018018994, 40.591936256584773 ], [ -73.833141905317703, 40.591581773930606 ], [ -73.833440300342659, 40.592036192044155 ], [ -73.833757288409018, 40.592101122149245 ], [ -73.833782583954488, 40.591848646617308 ], [ -73.834081531194059, 40.592082786090323 ], [ -73.834226383582802, 40.591932562815465 ], [ -73.833924213031239, 40.591577534575535 ], [ -73.834227770673266, 40.591373813822607 ], [ -73.833114412373902, 40.591302358495739 ], [ -73.832835633422519, 40.591460444804774 ], [ -73.832561110359904, 40.591325729777552 ], [ -73.832535695509648, 40.590218935799292 ], [ -73.833427726754167, 40.590013387771485 ], [ -73.833589565666514, 40.590115701568266 ], [ -73.834002327386344, 40.589922884840057 ], [ -73.834639808756606, 40.590052746674161 ], [ -73.834954227677045, 40.589728155617955 ], [ -73.834055631282439, 40.589742979420819 ], [ -73.833829656434034, 40.589925321265312 ], [ -73.833227415183046, 40.589795506083398 ], [ -73.833478667112772, 40.589368748711827 ], [ -73.834588835529857, 40.589292449605921 ], [ -73.835222669372016, 40.589470656034564 ], [ -73.835947054550061, 40.589366926730968 ], [ -73.836934535836491, 40.589747101007937 ], [ -73.837195411358607, 40.589699117362954 ], [ -73.837412896569433, 40.59010505698776 ], [ -73.838654801292478, 40.590928816163128 ], [ -73.838667436476968, 40.591533251750882 ], [ -73.83946303752542, 40.592256568488203 ], [ -73.839963400872662, 40.591873539011893 ], [ -73.83943345801903, 40.59243960947456 ], [ -73.839890701909241, 40.592800211493802 ], [ -73.840810160810221, 40.592919686203714 ], [ -73.840987566265497, 40.592412220518852 ], [ -73.841358238350168, 40.592133357919657 ], [ -73.841463776137417, 40.592208719980825 ], [ -73.841166508523813, 40.59244606437192 ], [ -73.841840224417368, 40.592713368098053 ], [ -73.842205074437217, 40.593158004692768 ], [ -73.843046605900199, 40.59345196410186 ], [ -73.843858940180127, 40.593425311959727 ], [ -73.84358788589671, 40.594160675791443 ], [ -73.843311537734692, 40.594423032976096 ], [ -73.842916021710977, 40.594447384027504 ], [ -73.842643253652795, 40.594729103032336 ], [ -73.842208030239803, 40.594667662710265 ], [ -73.840319738252703, 40.595870355646724 ], [ -73.839029642480895, 40.596253484748651 ], [ -73.83743435500341, 40.5958004430138 ], [ -73.836623772040127, 40.595062851868427 ], [ -73.836682741067051, 40.5949466970158 ] ] ] } }
-,
-{ "type": "Feature", "id": 71, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.836261097903744, 40.645351677049206 ], [ -73.836589550426282, 40.6458924647579 ], [ -73.837387788457477, 40.649118149467526 ], [ -73.836813345751565, 40.649249415001961 ], [ -73.835923200732836, 40.645499790674947 ], [ -73.836261097903744, 40.645351677049206 ] ] ] } }
-,
-{ "type": "Feature", "id": 72, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.865334325933745, 40.568784783429223 ], [ -73.864309695511167, 40.567391616473806 ], [ -73.863169302136242, 40.567739271748323 ], [ -73.862676080486921, 40.566513013806166 ], [ -73.863004829437855, 40.566875957730836 ], [ -73.863493063602093, 40.567034311733984 ], [ -73.865537572574112, 40.566571610437293 ], [ -73.866617205546305, 40.566091942910305 ], [ -73.866309412324398, 40.565546064124852 ], [ -73.86663005715063, 40.566090111654034 ], [ -73.866884009939341, 40.566083976275301 ], [ -73.868486948458781, 40.565527010301508 ], [ -73.86825117550174, 40.565069489459624 ], [ -73.86862321827094, 40.565538008774986 ], [ -73.870622148152492, 40.564813309494113 ], [ -73.870275884646986, 40.564174653597355 ], [ -73.870640942165053, 40.564809945218073 ], [ -73.870913162064838, 40.564764585510702 ], [ -73.87263971280457, 40.564084184026747 ], [ -73.872378780474875, 40.563575115556318 ], [ -73.872749255476037, 40.564109556041863 ], [ -73.87321952896157, 40.564063906186348 ], [ -73.874593375738584, 40.563631163057003 ], [ -73.874644819210516, 40.563501462300337 ], [ -73.876330399683312, 40.563086553272896 ], [ -73.880284025952221, 40.561511408315269 ], [ -73.880296751109597, 40.561374955249477 ], [ -73.881282492213131, 40.561372133879573 ], [ -73.882415867282972, 40.560910897001527 ], [ -73.882374416797418, 40.560760430809786 ], [ -73.882520569346909, 40.560881395412721 ], [ -73.883247415622392, 40.560855921485079 ], [ -73.88488436886675, 40.560182368041154 ], [ -73.884859494798661, 40.560042807457975 ], [ -73.885112777329837, 40.560150961736582 ], [ -73.886111096844729, 40.559921919029136 ], [ -73.886961706830817, 40.559558154144504 ], [ -73.886975108011583, 40.559400482998484 ], [ -73.887071829972456, 40.559542104885786 ], [ -73.88789256106385, 40.559510651379519 ], [ -73.889385921666658, 40.558920400147862 ], [ -73.889639475428964, 40.558664351794015 ], [ -73.890216535536695, 40.558811548619012 ], [ -73.890795896962629, 40.558619378907785 ], [ -73.89192354828397, 40.558160421525031 ], [ -73.892138643962753, 40.557871540991428 ], [ -73.892527450993938, 40.558119293542525 ], [ -73.893470650505563, 40.557945578638559 ], [ -73.894951424994204, 40.557293925409397 ], [ -73.894918172664831, 40.55707879529308 ], [ -73.895184586969549, 40.55738503715083 ], [ -73.895511887710853, 40.557414270149657 ], [ -73.896995229426608, 40.556891791638733 ], [ -73.897079561167672, 40.556657433084581 ], [ -73.897356886193151, 40.55699842304179 ], [ -73.897995147968118, 40.557102137180223 ], [ -73.899117184923, 40.556800353794728 ], [ -73.899129952148897, 40.556641173154262 ], [ -73.900275959850873, 40.556603894283498 ], [ -73.900585817868091, 40.556422209024262 ], [ -73.90070115515833, 40.556633568543205 ], [ -73.901299152569791, 40.556767815604125 ], [ -73.903018294732988, 40.556701743189244 ], [ -73.906585749210876, 40.55571062532816 ], [ -73.908797305577167, 40.55482950838892 ], [ -73.909282997928784, 40.556997241629283 ], [ -73.909267706566482, 40.560450279142728 ], [ -73.90923653142832, 40.560756522500952 ], [ -73.908353957480756, 40.560754480086381 ], [ -73.909810705132671, 40.561501916940301 ], [ -73.910621846301268, 40.563810518111225 ], [ -73.910032339741406, 40.564788804202941 ], [ -73.909811035714327, 40.564327155477528 ], [ -73.909277082149558, 40.563997124153524 ], [ -73.908515835745405, 40.563939048431287 ], [ -73.907948214866508, 40.564158323984337 ], [ -73.907996023468201, 40.563614657179869 ], [ -73.907699461610832, 40.563289628091567 ], [ -73.906976141944369, 40.562899705722351 ], [ -73.90611446821741, 40.562743210897715 ], [ -73.904223748765304, 40.562995158675477 ], [ -73.902922955789151, 40.56347776231528 ], [ -73.90220568634598, 40.5629654858012 ], [ -73.901086926736454, 40.563038115470661 ], [ -73.899055797342982, 40.563812948642855 ], [ -73.896132624453045, 40.565358427566814 ], [ -73.895540627401388, 40.564020699657355 ], [ -73.88536860326866, 40.566857011351175 ], [ -73.886546839364428, 40.568470978109382 ], [ -73.885341830196779, 40.568599348654601 ], [ -73.884896782201992, 40.568499584876847 ], [ -73.884309731052852, 40.568696119538657 ], [ -73.884887071247249, 40.568470205668682 ], [ -73.88475594832849, 40.568289139187421 ], [ -73.884707910774409, 40.568429673593911 ], [ -73.884336847748187, 40.568487934477972 ], [ -73.884736898650431, 40.568268513241271 ], [ -73.884456657761845, 40.567895763405943 ], [ -73.88416646626051, 40.568001951563964 ], [ -73.884256054500042, 40.568157133402345 ], [ -73.88414806727036, 40.56800897730114 ], [ -73.883989074502139, 40.568060160694188 ], [ -73.884071719351468, 40.568195014133465 ], [ -73.883974125313131, 40.568064973133488 ], [ -73.88379103703096, 40.568123911324527 ], [ -73.884023400924065, 40.568503115610817 ], [ -73.883780867561157, 40.568127185959867 ], [ -73.883576706068169, 40.568209769753544 ], [ -73.883691950437196, 40.568395359723333 ], [ -73.883478500156542, 40.568473114104222 ], [ -73.883904278844128, 40.568906204259243 ], [ -73.883687280963358, 40.568843404832307 ], [ -73.883369273162856, 40.568331859248289 ], [ -73.882629706406789, 40.568368929825084 ], [ -73.88192258910145, 40.568731441525557 ], [ -73.878674673616985, 40.568639939837951 ], [ -73.877400179667973, 40.568926178831227 ], [ -73.86663956227197, 40.574099218934428 ], [ -73.862883018909045, 40.576059761254719 ], [ -73.862803619928798, 40.575933034765349 ], [ -73.863992097390479, 40.575060722125805 ], [ -73.863406293712146, 40.574114331255878 ], [ -73.863611329523778, 40.573823057018551 ], [ -73.866628120238744, 40.573057648924618 ], [ -73.864466329331336, 40.569141785522433 ], [ -73.865334325933745, 40.568784783429223 ] ] ] } }
-,
-{ "type": "Feature", "id": 73, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.931775808843369, 40.557899562384854 ], [ -73.926419093968107, 40.548155780319931 ], [ -73.930546822433598, 40.546421979128752 ], [ -73.936120220423533, 40.544507415973499 ], [ -73.938899459428356, 40.543228013576652 ], [ -73.940474038573043, 40.542850072149172 ], [ -73.940559058617026, 40.541846776959794 ], [ -73.940736817313052, 40.541820087155529 ], [ -73.940129757299161, 40.548002561293096 ], [ -73.940128090006269, 40.549516289012665 ], [ -73.940652732456144, 40.552497817408472 ], [ -73.940171109941161, 40.554075540252313 ], [ -73.938997162970708, 40.555425499740892 ], [ -73.936650812011209, 40.556816174391713 ], [ -73.935433777460617, 40.557305667247839 ], [ -73.933226850549801, 40.55737939674038 ], [ -73.931775808843369, 40.557899562384854 ] ] ] } }
-,
-{ "type": "Feature", "id": 74, "properties": { "communityDistrict": 501, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/501" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.15945602371967, 40.641448332319776 ], [ -74.159978756996153, 40.641446480836365 ], [ -74.161112425881512, 40.64183545373627 ], [ -74.161460360052928, 40.644294969764857 ], [ -74.157987595406453, 40.643861788966056 ], [ -74.157433492009872, 40.643302857778991 ], [ -74.157915893407846, 40.643082694453689 ], [ -74.158134516033471, 40.642632530662979 ], [ -74.158550437705401, 40.642497501306387 ], [ -74.158810938112723, 40.641758634739404 ], [ -74.15945602371967, 40.641448332319776 ] ] ] } }
-,
-{ "type": "Feature", "id": 75, "properties": { "communityDistrict": 501, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/501" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.082212729149362, 40.648280162290064 ], [ -74.08142228269665, 40.648504724943756 ], [ -74.080728387623722, 40.648274873846255 ], [ -74.079809964287037, 40.648383312987917 ], [ -74.078995463992428, 40.648142554421945 ], [ -74.076506571528583, 40.646968818183339 ], [ -74.074452825635859, 40.645067487718052 ], [ -74.073958399764663, 40.645193205445509 ], [ -74.073591079192767, 40.64499892804298 ], [ -74.073498514336009, 40.645083373474655 ], [ -74.073856536847245, 40.645424816099599 ], [ -74.073338139229662, 40.645783116161816 ], [ -74.073245394648524, 40.645704925269506 ], [ -74.073690118064434, 40.645305724054779 ], [ -74.073238538107603, 40.644963863909808 ], [ -74.073025205731824, 40.645131238319735 ], [ -74.073202259546974, 40.644943941243504 ], [ -74.073055598817206, 40.6448079178409 ], [ -74.073425908135121, 40.645000567509591 ], [ -74.073121841835089, 40.644714799468929 ], [ -74.072798503414944, 40.644910123768732 ], [ -74.072587754878882, 40.644790863174045 ], [ -74.072703082676014, 40.644645595627509 ], [ -74.072564682329528, 40.644719748858144 ], [ -74.072666308371851, 40.644620920659086 ], [ -74.072532219597477, 40.64455679217064 ], [ -74.072724670790976, 40.644620883766493 ], [ -74.072698287990249, 40.644441273467329 ], [ -74.071687373767304, 40.645050328200554 ], [ -74.072309191127175, 40.644577753051713 ], [ -74.072018432132381, 40.644411932940834 ], [ -74.072291902818208, 40.644266047820402 ], [ -74.072184886016672, 40.644110465395116 ], [ -74.071860809368559, 40.644201761769722 ], [ -74.071756480877809, 40.644011845498589 ], [ -74.072058174400553, 40.643900427699009 ], [ -74.071649694085195, 40.643786885724602 ], [ -74.071596792011576, 40.643460157488612 ], [ -74.071356121766328, 40.643497304556021 ], [ -74.071482024326187, 40.643292625063495 ], [ -74.070937844714763, 40.643345963840545 ], [ -74.071443317063157, 40.643270561330581 ], [ -74.071131057209342, 40.643205263678269 ], [ -74.071502631474019, 40.643129304192875 ], [ -74.071477773885945, 40.642808293774557 ], [ -74.071648921989933, 40.642679931679616 ], [ -74.071703519672667, 40.642796335279961 ], [ -74.072184349030593, 40.642714093289484 ], [ -74.072109524446319, 40.642463216792741 ], [ -74.070374309905972, 40.642691403053135 ], [ -74.070329237153899, 40.642526128132289 ], [ -74.073238292495745, 40.64218473608193 ], [ -74.073144005859206, 40.641852973474933 ], [ -74.070246587646395, 40.642206974296464 ], [ -74.070193995592192, 40.642007502805278 ], [ -74.073086898193836, 40.641636814969594 ], [ -74.072890056096284, 40.640922672876023 ], [ -74.070018491487403, 40.641278132237495 ], [ -74.069983546539504, 40.641068943116778 ], [ -74.072850411949361, 40.640803688445011 ], [ -74.072776900770862, 40.640528963146913 ], [ -74.073077258377438, 40.640513311796305 ], [ -74.073090355787841, 40.638618999685832 ], [ -74.072929333847483, 40.638592649838223 ], [ -74.073014445621524, 40.638409383616214 ], [ -74.072379411293809, 40.638162726074071 ], [ -74.072606327975492, 40.638136308346994 ], [ -74.072572752126078, 40.637871909875891 ], [ -74.073483538017243, 40.637787357935579 ], [ -74.073487373035618, 40.637233529236205 ], [ -74.070539597051976, 40.637471404624279 ], [ -74.070494122138385, 40.637161886839557 ], [ -74.073415626987909, 40.636893950965103 ], [ -74.073373428880359, 40.636610725639386 ], [ -74.072094838075088, 40.636647277624547 ], [ -74.073358220455944, 40.636536094165137 ], [ -74.072831843444632, 40.633666032826071 ], [ -74.073328213823743, 40.632058442989894 ], [ -74.07298474612324, 40.630308978981432 ], [ -74.068021735439515, 40.628787585185442 ], [ -74.068130192479913, 40.628539046091475 ], [ -74.072911779365583, 40.629996379406478 ], [ -74.072292230800102, 40.627151707706574 ], [ -74.072783822049217, 40.62704855517876 ], [ -74.072255009557722, 40.624608750193943 ], [ -74.071061793964915, 40.622793154505416 ], [ -74.070719940369244, 40.622577481823278 ], [ -74.069755430883276, 40.621208139872358 ], [ -74.066493352963832, 40.618897601595144 ], [ -74.06596065271782, 40.619359015593702 ], [ -74.066409890192546, 40.618864467566667 ], [ -74.06619908020825, 40.618722481288387 ], [ -74.065572808412114, 40.619274543599914 ], [ -74.065445861354391, 40.61920262828891 ], [ -74.066682079829235, 40.618067495938504 ], [ -74.066415587151766, 40.617872498165553 ], [ -74.066049915359073, 40.618195410352712 ], [ -74.065698647441423, 40.617956415586576 ], [ -74.065465499527548, 40.618107070280772 ], [ -74.064961892804305, 40.617772398565229 ], [ -74.064357051586668, 40.618245944865585 ], [ -74.064257217515916, 40.618171687585544 ], [ -74.065099084072074, 40.617510956125443 ], [ -74.064436620050259, 40.617062414602543 ], [ -74.064012117679468, 40.617402225630514 ], [ -74.063908922403627, 40.617328825149038 ], [ -74.064327458580493, 40.616988503022149 ], [ -74.063761299297369, 40.61679875004328 ], [ -74.063766687440761, 40.616603630839904 ], [ -74.061307095502713, 40.614192250765576 ], [ -74.060336807920152, 40.611901880219641 ], [ -74.059854443286241, 40.612102958608112 ], [ -74.060016251162338, 40.612763687895388 ], [ -74.060197727296526, 40.612786375932281 ], [ -74.059999197116355, 40.612783899618634 ], [ -74.059769307381828, 40.612056647139333 ], [ -74.060272248099452, 40.611819639939192 ], [ -74.059533067489113, 40.611714254064239 ], [ -74.059270762436427, 40.611493132507562 ], [ -74.058901334215236, 40.61100228648629 ], [ -74.059123339398155, 40.610822289089086 ], [ -74.059085843087047, 40.610633677254484 ], [ -74.057163838789791, 40.608742783103651 ], [ -74.056858123804815, 40.608056357545159 ], [ -74.065170912507782, 40.604213508846286 ], [ -74.063640585538337, 40.602541948797345 ], [ -74.063505655942024, 40.602150054328227 ], [ -74.065506631910367, 40.602719880932405 ], [ -74.072066828498649, 40.605186347263952 ], [ -74.073999653080435, 40.605725567455515 ], [ -74.076567346693892, 40.606121664158529 ], [ -74.082809497974466, 40.606410978567631 ], [ -74.085427562483389, 40.607022390529522 ], [ -74.093056856199297, 40.610119935737288 ], [ -74.095558297685201, 40.6106247780369 ], [ -74.108344179355655, 40.610234767859801 ], [ -74.110009340522865, 40.610336205547725 ], [ -74.113274079507065, 40.611097937548465 ], [ -74.115087453690194, 40.611209431432336 ], [ -74.116874581820213, 40.610971825929809 ], [ -74.12452618721494, 40.609022318954672 ], [ -74.128748974405028, 40.608391741032456 ], [ -74.14287916669754, 40.60758543877516 ], [ -74.144561010299299, 40.607615025580579 ], [ -74.146281773651552, 40.607886273731602 ], [ -74.148396149821664, 40.608555443501373 ], [ -74.150186665170978, 40.60949781115437 ], [ -74.157926737964715, 40.615457424605061 ], [ -74.162354577564145, 40.61833563791938 ], [ -74.168080862736844, 40.620936256187974 ], [ -74.172362609579181, 40.62163579886596 ], [ -74.17459706258596, 40.62236401199165 ], [ -74.176100527930913, 40.62340624288138 ], [ -74.178883905737052, 40.625932871736872 ], [ -74.179937060479205, 40.626601296520917 ], [ -74.183687910928427, 40.628737925050686 ], [ -74.195559752592104, 40.635023985627974 ], [ -74.195185772436517, 40.635415781046561 ], [ -74.195200969000993, 40.635707944646256 ], [ -74.194422568546429, 40.636582105207943 ], [ -74.194542126457549, 40.637070027626741 ], [ -74.194786897484448, 40.63713151166305 ], [ -74.19462310145191, 40.637391183563665 ], [ -74.193973086275008, 40.637309114196334 ], [ -74.19358317694855, 40.637469116884624 ], [ -74.193719646219492, 40.637566814230084 ], [ -74.186524968975974, 40.643388662171425 ], [ -74.186232097436843, 40.643187396856327 ], [ -74.185908966678539, 40.643631439501739 ], [ -74.185114316148841, 40.643806238289976 ], [ -74.185247936632621, 40.643943526192238 ], [ -74.184835945808473, 40.644128266338718 ], [ -74.184424449663439, 40.643650691575999 ], [ -74.184113190644339, 40.643530083625755 ], [ -74.184064832320573, 40.643323990445751 ], [ -74.18437046839783, 40.643099576888872 ], [ -74.184214440660014, 40.643116895768415 ], [ -74.1839549073662, 40.642494160700039 ], [ -74.183650671300413, 40.642239641049599 ], [ -74.184026111920147, 40.643100408569687 ], [ -74.183845759369106, 40.643266156807364 ], [ -74.183474271664551, 40.642949209571711 ], [ -74.183242122791384, 40.642963677097839 ], [ -74.183800449424226, 40.64443190122303 ], [ -74.18366745872008, 40.644610485050038 ], [ -74.182889316218336, 40.644800282946029 ], [ -74.181184342439266, 40.644586159244859 ], [ -74.180872125132211, 40.644851429678326 ], [ -74.180481739536589, 40.644278924776472 ], [ -74.180040780152098, 40.644288140672614 ], [ -74.179906714553951, 40.644378720664236 ], [ -74.179965072740217, 40.645266982302886 ], [ -74.179884063614196, 40.645110240366471 ], [ -74.179774527332953, 40.645166679847954 ], [ -74.179729878180169, 40.644380702110858 ], [ -74.179331172494315, 40.64440051177251 ], [ -74.179251234066442, 40.645041876969223 ], [ -74.179074665838939, 40.644646507056514 ], [ -74.179035559945405, 40.643394787019638 ], [ -74.179404828020324, 40.643128966476397 ], [ -74.179587137873881, 40.641917683463006 ], [ -74.179187280672934, 40.642987538991306 ], [ -74.178790784368701, 40.642498503459507 ], [ -74.178483138270849, 40.642521174727875 ], [ -74.178256621460278, 40.642129227868175 ], [ -74.178341269459821, 40.642589475996779 ], [ -74.177812376087743, 40.642599844142083 ], [ -74.177686362998415, 40.642948596519531 ], [ -74.177211186369306, 40.643122778602034 ], [ -74.176823868959005, 40.642859145983287 ], [ -74.176704891511747, 40.642416911283973 ], [ -74.176357866175337, 40.642327220562848 ], [ -74.176687237912247, 40.64255213862117 ], [ -74.176667955382442, 40.643386844771591 ], [ -74.175981831919231, 40.643463622280727 ], [ -74.175602509544291, 40.643311298672387 ], [ -74.175471662552781, 40.644123105461098 ], [ -74.175684707425773, 40.644710284895076 ], [ -74.175466911571974, 40.644646521102288 ], [ -74.175296915450573, 40.645075076818912 ], [ -74.174896205251343, 40.645146047962854 ], [ -74.174586215433052, 40.645016931528538 ], [ -74.1743657300959, 40.645136258644435 ], [ -74.172941238916536, 40.644204522855837 ], [ -74.173001546516318, 40.643585405078611 ], [ -74.172447844850666, 40.643421570750803 ], [ -74.172361653865792, 40.643256267551841 ], [ -74.172721453711674, 40.642948498995587 ], [ -74.172440278618851, 40.64281204715865 ], [ -74.171963305659915, 40.642858132693299 ], [ -74.17150811099728, 40.643134442090826 ], [ -74.171335872818062, 40.642855765051948 ], [ -74.171860425825784, 40.642522928518844 ], [ -74.171750128528785, 40.642516755691176 ], [ -74.171849273111008, 40.642380402707083 ], [ -74.17172186950495, 40.64193954418144 ], [ -74.171478789894493, 40.641702509993578 ], [ -74.171587219237338, 40.641029593394471 ], [ -74.172023159181975, 40.640989214656706 ], [ -74.172979905820711, 40.640486067195631 ], [ -74.172062005806751, 40.640941613388478 ], [ -74.171569946854234, 40.641011532092747 ], [ -74.171386518592243, 40.641422735518901 ], [ -74.171373823505107, 40.642085015268052 ], [ -74.171050172398921, 40.642593819129949 ], [ -74.171275245115865, 40.642111682766703 ], [ -74.171192609512076, 40.641739626513946 ], [ -74.17028635441109, 40.641775308255845 ], [ -74.170078786510445, 40.642086160575445 ], [ -74.169152955691374, 40.641872859874347 ], [ -74.169064316288654, 40.642130016798554 ], [ -74.167740940513568, 40.641727774498477 ], [ -74.167576070925065, 40.641844793608016 ], [ -74.166533757928363, 40.641422637883643 ], [ -74.166215999170504, 40.642424100227899 ], [ -74.16609989896034, 40.64240658700119 ], [ -74.166318872924606, 40.641436675004918 ], [ -74.16580110755902, 40.641224511449465 ], [ -74.165634098297758, 40.641214371374701 ], [ -74.165443100823978, 40.642280546708534 ], [ -74.164941390411826, 40.64220899988927 ], [ -74.165190418242133, 40.640642305778407 ], [ -74.164734265368068, 40.640391467024799 ], [ -74.164571324327042, 40.64141866159494 ], [ -74.164414596491127, 40.641396784726048 ], [ -74.164596565974563, 40.640315745042379 ], [ -74.164168868136315, 40.639994110230305 ], [ -74.164001790673964, 40.641065860005838 ], [ -74.16386249420357, 40.641052797343782 ], [ -74.164047315166428, 40.639946658799516 ], [ -74.163849765838691, 40.639891508927292 ], [ -74.163454456819991, 40.639856560398229 ], [ -74.163228558441304, 40.640948510329906 ], [ -74.162793560280207, 40.641029624006705 ], [ -74.161675346942346, 40.640610784766757 ], [ -74.162284652520839, 40.638765652772292 ], [ -74.161818566122577, 40.638646278777607 ], [ -74.161449178267702, 40.639428336668288 ], [ -74.161302218015479, 40.639393734457009 ], [ -74.161660107729688, 40.638664993312332 ], [ -74.16124015814863, 40.638595010611006 ], [ -74.160904907044156, 40.639386140816924 ], [ -74.160736549384524, 40.639351014474506 ], [ -74.161081618248801, 40.638567768311582 ], [ -74.1608112684074, 40.638632958888806 ], [ -74.160348199931647, 40.63844372645346 ], [ -74.159864103990643, 40.639927823693668 ], [ -74.16023470596285, 40.638410316923874 ], [ -74.160057540660986, 40.638722352749845 ], [ -74.159856977678999, 40.638729202219416 ], [ -74.159577123979133, 40.637992583211876 ], [ -74.159319540370362, 40.637810404740293 ], [ -74.159056223788937, 40.63803931031979 ], [ -74.15900957887429, 40.638822577909771 ], [ -74.158895324168228, 40.63881527713027 ], [ -74.158932992266401, 40.638264017818067 ], [ -74.157892629538807, 40.637965051231099 ], [ -74.157841222729132, 40.638873914966119 ], [ -74.157733525063719, 40.638879035166184 ], [ -74.157773659367919, 40.637957159243463 ], [ -74.157187827165458, 40.637950805229806 ], [ -74.157101266907091, 40.639277718600141 ], [ -74.156977232942552, 40.639275401191803 ], [ -74.157070773715589, 40.637947135640061 ], [ -74.156102765568633, 40.637939590885196 ], [ -74.156114883307126, 40.637530747163517 ], [ -74.155698620531524, 40.637517938904132 ], [ -74.155618293261497, 40.638470220024672 ], [ -74.155492690002774, 40.63846677952548 ], [ -74.155586437589122, 40.637730775865379 ], [ -74.154829323958822, 40.637723855419651 ], [ -74.154692638645258, 40.639193968114199 ], [ -74.154778290119864, 40.63772154555086 ], [ -74.154596701633267, 40.637343344069009 ], [ -74.154252701394924, 40.637172310887372 ], [ -74.153414065977898, 40.637272719079263 ], [ -74.152797035773759, 40.637132754851656 ], [ -74.152697004496673, 40.63764184172463 ], [ -74.152218069504514, 40.637692581715953 ], [ -74.152297861755002, 40.638274288263553 ], [ -74.152136758999148, 40.638290747955637 ], [ -74.152046392332664, 40.637667215315453 ], [ -74.151195450071768, 40.637730788536139 ], [ -74.151395176136489, 40.639396513057427 ], [ -74.151248280325476, 40.639409342885038 ], [ -74.151129650904835, 40.638500680073882 ], [ -74.150556389080592, 40.638559330666375 ], [ -74.149967820905445, 40.638150075249214 ], [ -74.149678898308863, 40.637517674260572 ], [ -74.149458182203119, 40.637410320840566 ], [ -74.149312356633075, 40.637525958139513 ], [ -74.149418817743154, 40.6382916405461 ], [ -74.149194181556865, 40.638668331371903 ], [ -74.148881754777946, 40.638705207974063 ], [ -74.148558150922057, 40.637437837527223 ], [ -74.148777920058848, 40.638876251127691 ], [ -74.146021731017186, 40.639094549700694 ], [ -74.146057336183873, 40.639229257689863 ], [ -74.145192794815401, 40.639378497654711 ], [ -74.144671332341687, 40.639304267726772 ], [ -74.143861635958729, 40.638887962516513 ], [ -74.143749599189036, 40.638961577750599 ], [ -74.143817345302693, 40.63920747892395 ], [ -74.143573085937888, 40.639226785257094 ], [ -74.143361030768105, 40.639709845180249 ], [ -74.142577694020247, 40.639534137500974 ], [ -74.142387951493262, 40.639641210829893 ], [ -74.142297669809651, 40.64030580709364 ], [ -74.141556230383287, 40.640366768816186 ], [ -74.141480474694248, 40.640092194294624 ], [ -74.140762536452783, 40.640589396911182 ], [ -74.137575749044601, 40.641001152370336 ], [ -74.137344015292967, 40.641148322830105 ], [ -74.137370018159558, 40.641295463488142 ], [ -74.134352696396093, 40.641886797404375 ], [ -74.134302812513468, 40.64175379490851 ], [ -74.133497197666713, 40.64171690148109 ], [ -74.133415392332793, 40.641547116550989 ], [ -74.132991724594632, 40.641416936663838 ], [ -74.132402836431027, 40.641704388983726 ], [ -74.131255811802561, 40.64159683076381 ], [ -74.131461998307955, 40.641310104074272 ], [ -74.130183700791861, 40.640723826082287 ], [ -74.129677851002484, 40.641385312553595 ], [ -74.129490576373669, 40.64135483519582 ], [ -74.129977401967466, 40.640729872856312 ], [ -74.129307131868501, 40.640337411210957 ], [ -74.129229772610614, 40.640484372352375 ], [ -74.128933012099012, 40.640413929487828 ], [ -74.128907290334524, 40.641194827586133 ], [ -74.12881201847128, 40.640226977503893 ], [ -74.127526773068567, 40.640155304715712 ], [ -74.127147745638979, 40.639311056850197 ], [ -74.127027360209041, 40.639319077984275 ], [ -74.127053622052642, 40.640241737638952 ], [ -74.126448239190239, 40.640377994199007 ], [ -74.126069828621993, 40.64025447268741 ], [ -74.126199962916516, 40.641264314302909 ], [ -74.126368086889812, 40.641332380486901 ], [ -74.12564026804624, 40.641418492082984 ], [ -74.12613276551231, 40.641264388028233 ], [ -74.12599542488428, 40.640231242627998 ], [ -74.124155784450096, 40.640134716640013 ], [ -74.122856305552446, 40.640820508346273 ], [ -74.122572804791574, 40.640622340094168 ], [ -74.122907248985683, 40.641019266617086 ], [ -74.12276203509289, 40.641426635297123 ], [ -74.121841470615479, 40.641405894773463 ], [ -74.121990838075391, 40.641554639499418 ], [ -74.121853295978212, 40.64158069227954 ], [ -74.121806610820684, 40.641412159075522 ], [ -74.121779111975115, 40.641592547116957 ], [ -74.121558865605863, 40.641621632250015 ], [ -74.121760526686245, 40.641574314056548 ], [ -74.121723753188704, 40.64142866444385 ], [ -74.121326171116507, 40.641606569228848 ], [ -74.121311948296679, 40.641452531325015 ], [ -74.121194889577779, 40.641675009060279 ], [ -74.121280747943644, 40.64143249598709 ], [ -74.121077274050251, 40.641607419583508 ], [ -74.121180394417195, 40.641383445380214 ], [ -74.120713175886905, 40.64104578219083 ], [ -74.119934800889112, 40.641197604383819 ], [ -74.119971112135858, 40.641314814562264 ], [ -74.119607167478691, 40.641380309354147 ], [ -74.119956998757644, 40.642209453429054 ], [ -74.119854439420948, 40.642235613904766 ], [ -74.119529861057543, 40.641469914321874 ], [ -74.119097205597001, 40.641473466522669 ], [ -74.119400295324553, 40.642379378532716 ], [ -74.11900348200308, 40.641464614510056 ], [ -74.11861635170294, 40.641530365029681 ], [ -74.11896077402352, 40.642504515993195 ], [ -74.118836246169423, 40.642541864060327 ], [ -74.118401850835497, 40.641529800542855 ], [ -74.118007670936564, 40.641805497533284 ], [ -74.118156357438579, 40.642131298298722 ], [ -74.118048911563619, 40.642157461011791 ], [ -74.117917286831343, 40.641825876952097 ], [ -74.117288144803766, 40.641594377204576 ], [ -74.117112356995563, 40.641655967138846 ], [ -74.117507025232882, 40.642420408430098 ], [ -74.117137064693367, 40.641898064630418 ], [ -74.116721876638877, 40.642031756096564 ], [ -74.117224700825446, 40.643027359962574 ], [ -74.11666607646228, 40.642106766333903 ], [ -74.116300000827437, 40.642202665102246 ], [ -74.116670413826867, 40.643189824892815 ], [ -74.1161420863572, 40.642216454150315 ], [ -74.115719170422963, 40.642351819214007 ], [ -74.116226918394361, 40.643307105862725 ], [ -74.11564823433703, 40.642374682329233 ], [ -74.11535082182931, 40.642470540158172 ], [ -74.115117148180389, 40.642784992677186 ], [ -74.113796660860089, 40.643609515807867 ], [ -74.114040531460219, 40.644042502119753 ], [ -74.113950941344626, 40.64413659167456 ], [ -74.112888065109672, 40.644532444637527 ], [ -74.113890108903234, 40.643989669126007 ], [ -74.11354450863908, 40.643954120067256 ], [ -74.113330232584374, 40.643723496580492 ], [ -74.111161294692565, 40.645096423181258 ], [ -74.111766466500242, 40.64470616034491 ], [ -74.109739325644838, 40.645463728184716 ], [ -74.104722215997626, 40.645563657399435 ], [ -74.104123563017453, 40.645740432200093 ], [ -74.10168264441667, 40.645406732986693 ], [ -74.101618289547375, 40.645526538871444 ], [ -74.1016426644115, 40.645396548926129 ], [ -74.100100073566978, 40.645059416094547 ], [ -74.098800668198265, 40.645047034311347 ], [ -74.098499816255071, 40.645370361953738 ], [ -74.096045553475619, 40.645372747442117 ], [ -74.092988282536297, 40.645972780751919 ], [ -74.093005072963066, 40.646076314816817 ], [ -74.09135697876026, 40.646700724101017 ], [ -74.08940351627777, 40.647305776658257 ], [ -74.087674426814999, 40.648235293614761 ], [ -74.085707543782121, 40.648880553370446 ], [ -74.084844032157164, 40.64889114733942 ], [ -74.082212729149362, 40.648280162290064 ] ] ] } }
-,
-{ "type": "Feature", "id": 76, "properties": { "communityDistrict": 502, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.073466270662578, 40.578385685897373 ], [ -74.073304267553226, 40.578437855716786 ], [ -74.073551466574784, 40.578198393000477 ], [ -74.073496696754617, 40.578327959714429 ], [ -74.075082881926207, 40.579160158755549 ], [ -74.074994130735135, 40.579236557416301 ], [ -74.073466270662578, 40.578385685897373 ] ] ] } }
-,
-{ "type": "Feature", "id": 77, "properties": { "communityDistrict": 502, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.054988678394466, 40.606660696911753 ], [ -74.055287196971321, 40.606538890078674 ], [ -74.055160011223208, 40.606730491350852 ], [ -74.054988678394466, 40.606660696911753 ] ] ] } }
-,
-{ "type": "Feature", "id": 78, "properties": { "communityDistrict": 502, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.195686092233828, 40.635016864640079 ], [ -74.183687910928427, 40.628737925050686 ], [ -74.179937060479205, 40.626601296520917 ], [ -74.178883905737052, 40.625932871736872 ], [ -74.176100527930913, 40.62340624288138 ], [ -74.17459706258596, 40.62236401199165 ], [ -74.172362609579181, 40.62163579886596 ], [ -74.168080862736844, 40.620936256187974 ], [ -74.164841903853699, 40.619572404903359 ], [ -74.161630103265651, 40.617934935404165 ], [ -74.157926737964715, 40.615457424605061 ], [ -74.150186665170978, 40.60949781115437 ], [ -74.148869613388399, 40.60877157754846 ], [ -74.147243818170523, 40.608142117747342 ], [ -74.145499035237336, 40.607730377977234 ], [ -74.143550365070041, 40.607574723911554 ], [ -74.128748974405028, 40.608391741032456 ], [ -74.12452618721494, 40.609022318954672 ], [ -74.116874581820213, 40.610971825929809 ], [ -74.115087453690194, 40.611209431432336 ], [ -74.113274079507065, 40.611097937548465 ], [ -74.110479565020825, 40.610418656144716 ], [ -74.108901462239771, 40.610251584996156 ], [ -74.097769686979348, 40.610623592940705 ], [ -74.094824891188239, 40.610548057360035 ], [ -74.093056856199297, 40.610119935737288 ], [ -74.085427562483389, 40.607022390529522 ], [ -74.082809497974466, 40.606410978567631 ], [ -74.076567346693892, 40.606121664158529 ], [ -74.073999653080435, 40.605725567455515 ], [ -74.072066828498649, 40.605186347263952 ], [ -74.065506631910367, 40.602719880932405 ], [ -74.062564742929581, 40.601768091639556 ], [ -74.061956178680347, 40.601236455949824 ], [ -74.061055178967933, 40.599825891891832 ], [ -74.063759332922046, 40.59893485952216 ], [ -74.060560175404959, 40.594911514274571 ], [ -74.062793646958696, 40.593418545407623 ], [ -74.063164153052256, 40.593313809432964 ], [ -74.063360505573101, 40.592906556906662 ], [ -74.066625595022956, 40.590342019201351 ], [ -74.069391458526098, 40.587608032507489 ], [ -74.07144369874274, 40.585058382216687 ], [ -74.07275277759048, 40.584061527877466 ], [ -74.075251617283882, 40.581519567163788 ], [ -74.079150923809053, 40.578049972735876 ], [ -74.08853447613059, 40.572558506073889 ], [ -74.09204451514826, 40.56889233874098 ], [ -74.092770582239822, 40.567943410603036 ], [ -74.104709791417761, 40.574005939404699 ], [ -74.105242903772805, 40.573094039890904 ], [ -74.102958492987696, 40.571720971899971 ], [ -74.103939495406848, 40.570683061496204 ], [ -74.103681941735786, 40.570207754278179 ], [ -74.105303581836907, 40.57012777121389 ], [ -74.10660439327259, 40.568778268768853 ], [ -74.097631534169039, 40.564483335819247 ], [ -74.101737326858654, 40.559905578356037 ], [ -74.110139471719478, 40.564310666831886 ], [ -74.112112397874341, 40.565505557758527 ], [ -74.11429866700621, 40.562675724084087 ], [ -74.124899043723033, 40.568949142444467 ], [ -74.122789672075257, 40.570429844769556 ], [ -74.121502136573639, 40.57172155879838 ], [ -74.121343520823828, 40.572675734242111 ], [ -74.121830798297381, 40.57421708896559 ], [ -74.1217262391975, 40.574906985080723 ], [ -74.123183664838706, 40.575751816185644 ], [ -74.125133339042605, 40.57587998803136 ], [ -74.127087213660431, 40.576371608635171 ], [ -74.127653582682726, 40.575234942562744 ], [ -74.132610229910227, 40.57353016327037 ], [ -74.145804742060221, 40.571847768978088 ], [ -74.146990577390923, 40.572013320979188 ], [ -74.147235683628423, 40.571461058997379 ], [ -74.150145947937858, 40.571274061782518 ], [ -74.16256475586016, 40.56672939998014 ], [ -74.164386651215594, 40.565624861530104 ], [ -74.164996165540586, 40.561446970875082 ], [ -74.165894046428647, 40.560283362649464 ], [ -74.171462961420787, 40.561375429472051 ], [ -74.174887504223975, 40.562826419265335 ], [ -74.176593660742427, 40.563241329320675 ], [ -74.177945442082788, 40.563983366606685 ], [ -74.179306524568119, 40.569063994948522 ], [ -74.181230616124168, 40.569683482121739 ], [ -74.183065345501376, 40.571039242206346 ], [ -74.184284852693679, 40.571232751339103 ], [ -74.186099217618988, 40.572528016968889 ], [ -74.18918024989307, 40.575525564952748 ], [ -74.188989105236971, 40.573088766867933 ], [ -74.189195379703634, 40.570931206773466 ], [ -74.190251823459448, 40.571057138069015 ], [ -74.189896371152869, 40.57328262168204 ], [ -74.18998091618559, 40.574494878995075 ], [ -74.190462070348673, 40.576679119717888 ], [ -74.191768442451163, 40.576623635620471 ], [ -74.197628736767314, 40.579135411352787 ], [ -74.199298456486517, 40.579121899043635 ], [ -74.200726270672561, 40.579324901293269 ], [ -74.203546719545116, 40.579999792220157 ], [ -74.205957711403229, 40.579310888059489 ], [ -74.205992550814912, 40.580410383935892 ], [ -74.205724032897137, 40.580965688932132 ], [ -74.20541737056935, 40.581069486480246 ], [ -74.205081369872346, 40.581599468802622 ], [ -74.205088544746687, 40.582208190070169 ], [ -74.204709119027257, 40.582797669406794 ], [ -74.204739011926392, 40.58317590192997 ], [ -74.204400764996123, 40.583712945840752 ], [ -74.204633902740255, 40.584323238800081 ], [ -74.204364338990828, 40.58463414937065 ], [ -74.204414717297013, 40.585523675326144 ], [ -74.204119403242558, 40.585895541074571 ], [ -74.204274942826004, 40.586110054126955 ], [ -74.204265330028932, 40.58732053504292 ], [ -74.204580656947968, 40.588217603682608 ], [ -74.204272704020738, 40.588482555463038 ], [ -74.204122009644706, 40.588881474420035 ], [ -74.204323021423932, 40.589136617473308 ], [ -74.204574220727864, 40.588719138822881 ], [ -74.204705298486275, 40.588772370830547 ], [ -74.204435484007817, 40.589218397291695 ], [ -74.204646089432089, 40.589285745465801 ], [ -74.204408926175176, 40.589706763810376 ], [ -74.204203006091618, 40.589642971741675 ], [ -74.203858866092759, 40.590249525361621 ], [ -74.203699743358015, 40.590199906474787 ], [ -74.203885504562166, 40.589786109736252 ], [ -74.20265866971728, 40.59072214527977 ], [ -74.202377636097225, 40.590644712479786 ], [ -74.20201405533291, 40.590895798622427 ], [ -74.202467759565849, 40.590838824857329 ], [ -74.203052549115029, 40.591140541809821 ], [ -74.202963401956453, 40.591230922776631 ], [ -74.202454950631363, 40.590951125851966 ], [ -74.202027339207007, 40.590999079291961 ], [ -74.202123782333885, 40.591253326955652 ], [ -74.201840929244383, 40.591636483358869 ], [ -74.202003498130267, 40.591780764795011 ], [ -74.202316457683239, 40.591523965102695 ], [ -74.200925404963584, 40.59286637930483 ], [ -74.200471268808357, 40.592811752116404 ], [ -74.19974061000579, 40.59356466927909 ], [ -74.199362123456254, 40.594094082794371 ], [ -74.199483449275874, 40.594320936252963 ], [ -74.198732326196634, 40.595011798309336 ], [ -74.198561371435872, 40.595552781012294 ], [ -74.197950028516019, 40.596470354803671 ], [ -74.197513576527768, 40.596798986037868 ], [ -74.19749670863952, 40.597724259604533 ], [ -74.197306197797545, 40.598059522239787 ], [ -74.198759582052986, 40.601711975176229 ], [ -74.200148667599109, 40.603683350098684 ], [ -74.201385274065814, 40.604636966209604 ], [ -74.202218498510561, 40.605969679616479 ], [ -74.202816283745918, 40.608270827967296 ], [ -74.202301790141078, 40.611875642039003 ], [ -74.202443744495241, 40.613284693931924 ], [ -74.200383484286689, 40.616428097238582 ], [ -74.200589865119795, 40.617028927388283 ], [ -74.200828043861975, 40.617094288048229 ], [ -74.200914232382829, 40.617798822398584 ], [ -74.200874787401318, 40.618100410855853 ], [ -74.200541563318183, 40.617997639493566 ], [ -74.200352038562485, 40.618342198554707 ], [ -74.200839915165957, 40.618804302606122 ], [ -74.200680713488723, 40.619168454348056 ], [ -74.201069974031242, 40.620381539773575 ], [ -74.200505881958662, 40.620299672100074 ], [ -74.200428001919192, 40.620495411016812 ], [ -74.200873315820488, 40.620591154721112 ], [ -74.201258473101177, 40.621554830872171 ], [ -74.201432399980391, 40.621612608965307 ], [ -74.201230891375275, 40.622074210990583 ], [ -74.201275342631334, 40.622688276286041 ], [ -74.201545533347684, 40.622698052023075 ], [ -74.201632010381573, 40.62312156545854 ], [ -74.201584944355631, 40.623498333681397 ], [ -74.201344089053492, 40.623552568644286 ], [ -74.20139733073573, 40.62373612103805 ], [ -74.201076627903333, 40.624078346589755 ], [ -74.201060800332996, 40.625895179006818 ], [ -74.201182523538165, 40.626110215709417 ], [ -74.201416706679112, 40.626070513895712 ], [ -74.200986254994461, 40.62934414810745 ], [ -74.200804796812804, 40.629332571444237 ], [ -74.200754838954396, 40.629594634113431 ], [ -74.20047681715856, 40.629657077505016 ], [ -74.200425737851162, 40.629821165953324 ], [ -74.200408127716173, 40.630250100694539 ], [ -74.200787299827866, 40.630346273462649 ], [ -74.200403115770925, 40.630292362268506 ], [ -74.200184621590523, 40.631328669464182 ], [ -74.200403803732854, 40.6314458206799 ], [ -74.200172654077321, 40.631361080530979 ], [ -74.198500805625883, 40.632797911274352 ], [ -74.198343583296847, 40.633141487706276 ], [ -74.197959390075354, 40.63326685737902 ], [ -74.19759109214786, 40.633081284581166 ], [ -74.197286752228678, 40.633291931082091 ], [ -74.197193196760679, 40.633882317445554 ], [ -74.196469651591343, 40.634135533685338 ], [ -74.196029046914518, 40.634995848806987 ], [ -74.195686092233828, 40.635016864640079 ] ] ] } }
-,
-{ "type": "Feature", "id": 79, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.133195801013827, 40.536306742050556 ], [ -74.13301207668799, 40.536256065042828 ], [ -74.133383128530525, 40.536324420329031 ], [ -74.133195801013827, 40.536306742050556 ] ] ] } }
-,
-{ "type": "Feature", "id": 80, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.133075857686634, 40.536397488039498 ], [ -74.132942664536216, 40.536322033081916 ], [ -74.133172359750915, 40.536355197218271 ], [ -74.133075857686634, 40.536397488039498 ] ] ] } }
-,
-{ "type": "Feature", "id": 81, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.131415827643934, 40.538039545740887 ], [ -74.13181387201773, 40.538307358685685 ], [ -74.132112444955595, 40.53805229667767 ], [ -74.13169767667948, 40.5378571233149 ], [ -74.131846272134752, 40.537734643798721 ], [ -74.132135605124574, 40.5380331271827 ], [ -74.132424385792007, 40.537774960734161 ], [ -74.13191182124632, 40.537532840976937 ], [ -74.132079522796616, 40.537395034140332 ], [ -74.132453027641674, 40.537760281363965 ], [ -74.13275480490114, 40.537504536479908 ], [ -74.132235962692448, 40.537262550736571 ], [ -74.132398016499479, 40.537118863926686 ], [ -74.13277603711704, 40.537484010915854 ], [ -74.13307445571553, 40.537229123304009 ], [ -74.132557862049481, 40.536991407756553 ], [ -74.132735602333057, 40.536854535243158 ], [ -74.133094575113702, 40.537212016922552 ], [ -74.133391873773434, 40.536957984347538 ], [ -74.132874382810044, 40.536719632302329 ], [ -74.133035088395317, 40.536574875625867 ], [ -74.133410043653669, 40.536939721870915 ], [ -74.133860542062592, 40.536597962493047 ], [ -74.129938431897855, 40.539947135558201 ], [ -74.130208693615856, 40.539702663817231 ], [ -74.129683755086958, 40.539471719592427 ], [ -74.129845555034976, 40.539326856961551 ], [ -74.130227543637304, 40.539683717555505 ], [ -74.130521643489232, 40.539425558118857 ], [ -74.130002728808307, 40.539172393657736 ], [ -74.130169357325897, 40.539032878024102 ], [ -74.130541765211632, 40.539409306255664 ], [ -74.130839068518938, 40.539147592892448 ], [ -74.130322448992999, 40.538900471244453 ], [ -74.130485282947404, 40.538758916255979 ], [ -74.130859188541024, 40.53913133980231 ], [ -74.131153287152671, 40.538873574103619 ], [ -74.130654281077085, 40.538617311132228 ], [ -74.130799719621692, 40.538492490313338 ], [ -74.131174370507509, 40.538855160392629 ], [ -74.131474242153288, 40.538598314882712 ], [ -74.130975091159897, 40.538341749902081 ], [ -74.131119622826859, 40.53821889282775 ], [ -74.131497401382603, 40.538581380372193 ], [ -74.131793508156591, 40.538325991991705 ], [ -74.131415827643934, 40.538039545740887 ] ] ] } }
-,
-{ "type": "Feature", "id": 82, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.131298618201498, 40.537950649956692 ], [ -74.131195456893906, 40.537872408774533 ], [ -74.13152564883184, 40.537718542638316 ], [ -74.131298618201498, 40.537950649956692 ] ] ] } }
-,
-{ "type": "Feature", "id": 83, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.127753756744383, 40.543566025183466 ], [ -74.128030684975002, 40.543550558278895 ], [ -74.127629940380828, 40.543608893115554 ], [ -74.127753756744383, 40.543566025183466 ] ] ] } }
-,
-{ "type": "Feature", "id": 84, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.200726270672561, 40.579324901293269 ], [ -74.199298456486517, 40.579121899043635 ], [ -74.197628736767314, 40.579135411352787 ], [ -74.191768442451163, 40.576623635620471 ], [ -74.190462070348673, 40.576679119717888 ], [ -74.18998091618559, 40.574494878995075 ], [ -74.189896371152869, 40.57328262168204 ], [ -74.190251823459448, 40.571057138069015 ], [ -74.189195379703634, 40.570931206773466 ], [ -74.188989105236971, 40.573088766867933 ], [ -74.18918024989307, 40.575525564952748 ], [ -74.186099217618988, 40.572528016968889 ], [ -74.184284852693679, 40.571232751339103 ], [ -74.183065345501376, 40.571039242206346 ], [ -74.181230616124168, 40.569683482121739 ], [ -74.179306524568119, 40.569063994948522 ], [ -74.177945442082788, 40.563983366606685 ], [ -74.176593660742427, 40.563241329320675 ], [ -74.174887504223975, 40.562826419265335 ], [ -74.17085970519922, 40.561234430690405 ], [ -74.165894046428647, 40.560283362649464 ], [ -74.164996165540586, 40.561446970875082 ], [ -74.164386651215594, 40.565624861530104 ], [ -74.16256475586016, 40.56672939998014 ], [ -74.150145947937858, 40.571274061782518 ], [ -74.147235683628423, 40.571461058997379 ], [ -74.146990577390923, 40.572013320979188 ], [ -74.145804742060221, 40.571847768978088 ], [ -74.132953228990914, 40.573444774952655 ], [ -74.127653582682726, 40.575234942562744 ], [ -74.127087213660431, 40.576371608635171 ], [ -74.125133339042605, 40.57587998803136 ], [ -74.123183664838706, 40.575751816185644 ], [ -74.1217262391975, 40.574906985080723 ], [ -74.121830798297381, 40.57421708896559 ], [ -74.121343520823828, 40.572675734242111 ], [ -74.121502136573639, 40.57172155879838 ], [ -74.122789672075257, 40.570429844769556 ], [ -74.124899043723033, 40.568949142444467 ], [ -74.11429866700621, 40.562675724084087 ], [ -74.112112397874341, 40.565505557758527 ], [ -74.110139471719478, 40.564310666831886 ], [ -74.101737326858654, 40.559905578356037 ], [ -74.102505970611759, 40.559003251481698 ], [ -74.105728424764209, 40.556195227033406 ], [ -74.106461777747839, 40.5552783983727 ], [ -74.108910796341036, 40.553423629089828 ], [ -74.108852076983197, 40.553006299401069 ], [ -74.109447925597848, 40.552378801196859 ], [ -74.112749551671939, 40.55143532523725 ], [ -74.111652681883271, 40.55037651255796 ], [ -74.11252568934222, 40.549858451684074 ], [ -74.113684352105182, 40.550948084608379 ], [ -74.116762688174788, 40.548991391102973 ], [ -74.119574803796326, 40.551630751913834 ], [ -74.119458592911627, 40.552221906044522 ], [ -74.12730057821922, 40.557295172447724 ], [ -74.130424595729252, 40.554437042058417 ], [ -74.134558682258472, 40.551255078203482 ], [ -74.137697315929699, 40.549383546429411 ], [ -74.138617985475591, 40.548492384772743 ], [ -74.137006296887094, 40.546967771006322 ], [ -74.135857125660365, 40.546451695709621 ], [ -74.136411531190305, 40.546252350041833 ], [ -74.136516134391726, 40.545914747132521 ], [ -74.137096278087512, 40.545952217654381 ], [ -74.137179871957542, 40.545792864659795 ], [ -74.136260852809329, 40.544963297435942 ], [ -74.136115406581752, 40.545019845680606 ], [ -74.136383798019608, 40.544854671506251 ], [ -74.136284333069426, 40.544947040588518 ], [ -74.137192875197158, 40.545784294700034 ], [ -74.137508335088512, 40.545577557238666 ], [ -74.136733702272622, 40.544803742023028 ], [ -74.1365890713694, 40.544845486095127 ], [ -74.136873486308659, 40.544682593910004 ], [ -74.136748888229093, 40.544782584479712 ], [ -74.137949660505484, 40.546000336575453 ], [ -74.138869512745345, 40.545130197608046 ], [ -74.137624307451389, 40.544253566418256 ], [ -74.137756207556691, 40.544144928778152 ], [ -74.137679182441829, 40.544258625718768 ], [ -74.138755347034603, 40.544933958426824 ], [ -74.139019650793117, 40.544715561029903 ], [ -74.137989900985417, 40.543990043790089 ], [ -74.137867985245393, 40.544052544130921 ], [ -74.138043468977017, 40.543904561961156 ], [ -74.139033071786272, 40.544704910300027 ], [ -74.139539379816284, 40.544295140871327 ], [ -74.139432530026482, 40.544217217516142 ], [ -74.139145413461264, 40.5445095801199 ], [ -74.139032659903179, 40.544428097333082 ], [ -74.139420693378824, 40.544205943537179 ], [ -74.139287672952904, 40.544116589404581 ], [ -74.138974542267647, 40.544376101819672 ], [ -74.139220328597077, 40.544066699668619 ], [ -74.13908266920896, 40.543968224883123 ], [ -74.138875703883599, 40.544243557934806 ], [ -74.138728124459604, 40.544130022535029 ], [ -74.139077506586446, 40.543960153165628 ], [ -74.138834605855138, 40.543791358387857 ], [ -74.138585812249914, 40.544104638489486 ], [ -74.13841535772832, 40.543978427317093 ], [ -74.138823254616597, 40.543784054895831 ], [ -74.138539963341046, 40.543587927686737 ], [ -74.138206673329549, 40.543773678359244 ], [ -74.138279645219455, 40.543866694569722 ], [ -74.138150686211034, 40.543772036757112 ], [ -74.138526498104639, 40.543578542305248 ], [ -74.138341512886143, 40.54355182780882 ], [ -74.138522828351412, 40.543401550749273 ], [ -74.138459720337551, 40.543506285990695 ], [ -74.138590053062742, 40.54345034036659 ], [ -74.138533145425541, 40.543544367340843 ], [ -74.13956971698569, 40.544272274830497 ], [ -74.139836977860995, 40.544052462340794 ], [ -74.138706323972798, 40.543291410834378 ], [ -74.138906365394533, 40.543131777602298 ], [ -74.138771402268389, 40.543291332202919 ], [ -74.139036719229651, 40.543226993940607 ], [ -74.138983556086032, 40.543384411372891 ], [ -74.139676404806892, 40.543888995858616 ], [ -74.1398889740626, 40.543752471884915 ], [ -74.139703506941842, 40.543908777186225 ], [ -74.139865272643448, 40.544026844009466 ], [ -74.140012838359254, 40.543830426844771 ], [ -74.140385730736227, 40.544033185007827 ], [ -74.140328486944938, 40.543802087271068 ], [ -74.139349948419081, 40.543096085094135 ], [ -74.139219934858858, 40.543166085137841 ], [ -74.139408100773892, 40.543016584082643 ], [ -74.140295719471681, 40.543640457155497 ], [ -74.140126382196044, 40.543513393416866 ], [ -74.140287346049973, 40.543385071118294 ], [ -74.139361328040323, 40.542825863998644 ], [ -74.139536815480199, 40.542682150869759 ], [ -74.13947877271562, 40.542768492576869 ], [ -74.140306342581368, 40.54336711011436 ], [ -74.140627155669534, 40.543113029692485 ], [ -74.139755848904471, 40.542481155655167 ], [ -74.139631690741666, 40.542541097566179 ], [ -74.139858598916788, 40.542357175129133 ], [ -74.139774847764841, 40.542464047798703 ], [ -74.140646148698224, 40.543094214902098 ], [ -74.140845203697253, 40.542938844978202 ], [ -74.141324267942451, 40.543094133830195 ], [ -74.140406853347756, 40.542360855450418 ], [ -74.140165100374617, 40.542366218433486 ], [ -74.140335282297514, 40.542228209259491 ], [ -74.140207236065791, 40.542365224298329 ], [ -74.140406562348133, 40.542327082552873 ], [ -74.141410735604069, 40.543022415080344 ], [ -74.141078921849413, 40.542791171850759 ], [ -74.14108436804699, 40.542638913703847 ], [ -74.141326531058169, 40.54274704748731 ], [ -74.141143112990719, 40.542587658851346 ], [ -74.141335471929779, 40.542588792470205 ], [ -74.140262904007017, 40.541961511522587 ], [ -74.140495810113123, 40.542060855323918 ], [ -74.140679980930472, 40.541908592971026 ], [ -74.14061919911957, 40.542056021643823 ], [ -74.141349014454804, 40.542577523130745 ], [ -74.141461515854417, 40.542483902223871 ], [ -74.141294421236935, 40.542335875885676 ], [ -74.14148097474451, 40.542467709070451 ], [ -74.141348546945508, 40.542290464870867 ], [ -74.141549579059784, 40.54241061750453 ], [ -74.14179720022932, 40.542200415381544 ], [ -74.140894510246355, 40.541571110188322 ], [ -74.140639842380125, 40.541694542036439 ], [ -74.140958168328922, 40.541432077964956 ], [ -74.140894775834056, 40.541537094860487 ], [ -74.141873079719289, 40.542166658129382 ], [ -74.141672262430845, 40.542335464095203 ], [ -74.142292974326395, 40.542263372587776 ], [ -74.142183442866795, 40.542017861051676 ], [ -74.142476622359553, 40.541333709774797 ], [ -74.141776613832604, 40.540088456334708 ], [ -74.142004592824776, 40.53956795916433 ], [ -74.141728926512968, 40.53933948409702 ], [ -74.142303512758517, 40.539069975289628 ], [ -74.142338315774893, 40.538949190408331 ], [ -74.141765878596431, 40.538542040998934 ], [ -74.14226513073875, 40.53814035366387 ], [ -74.141837893882652, 40.538421620426753 ], [ -74.142229922946555, 40.538114452874623 ], [ -74.142078935782365, 40.538003964285885 ], [ -74.14216718019145, 40.537932761068127 ], [ -74.141218653355523, 40.537253998432462 ], [ -74.141041579163385, 40.53734688446206 ], [ -74.141298254718251, 40.537138177948336 ], [ -74.141241131174667, 40.537234691733246 ], [ -74.142185749075452, 40.537917777285458 ], [ -74.142389636895999, 40.537753260002191 ], [ -74.141582876908927, 40.537087577952377 ], [ -74.143701200154382, 40.537211482642043 ], [ -74.144182834205608, 40.536794031387394 ], [ -74.14474069813582, 40.535801044211155 ], [ -74.145363246527637, 40.535856356896431 ], [ -74.146020082847699, 40.53555352822287 ], [ -74.145996695492187, 40.53539039281268 ], [ -74.146255129277151, 40.535538684733424 ], [ -74.147015251838084, 40.535324472444607 ], [ -74.149217332639694, 40.534241587760867 ], [ -74.14977717489235, 40.533887868801514 ], [ -74.149758464892486, 40.533424302752941 ], [ -74.150695536182781, 40.532545838937075 ], [ -74.151120256905244, 40.532741382506636 ], [ -74.151757988316177, 40.532401794028019 ], [ -74.151682412700112, 40.532276422862083 ], [ -74.151853377444851, 40.532164021023299 ], [ -74.152456609366894, 40.532067944000872 ], [ -74.154131107911027, 40.530722911256341 ], [ -74.154047499498077, 40.530594564841628 ], [ -74.154214677686397, 40.530665367090272 ], [ -74.154641119999013, 40.530334638424307 ], [ -74.15454357374459, 40.530062136303606 ], [ -74.154928948493989, 40.53022548357562 ], [ -74.155647824051854, 40.529642984094743 ], [ -74.1555035725126, 40.529438026337672 ], [ -74.155731534349243, 40.529600904029813 ], [ -74.155990003215535, 40.529419602722839 ], [ -74.156448681501359, 40.528931842203903 ], [ -74.156187319183175, 40.528611371593342 ], [ -74.15667105208162, 40.528993311607181 ], [ -74.157018619462718, 40.528977655809541 ], [ -74.15826103107301, 40.528300499162917 ], [ -74.157972394579062, 40.528067085844384 ], [ -74.158326451269886, 40.528278426783096 ], [ -74.159701345202066, 40.527295992831519 ], [ -74.160304263795837, 40.52755574681855 ], [ -74.161582174235221, 40.527013477776677 ], [ -74.162271961086446, 40.527194261805704 ], [ -74.163720015948641, 40.526350032996007 ], [ -74.164746570686106, 40.52608034550147 ], [ -74.168844318197671, 40.523590681151397 ], [ -74.169997112273322, 40.523045772451368 ], [ -74.170488598100206, 40.523084171644676 ], [ -74.171102636961692, 40.52354970667362 ], [ -74.172063201754753, 40.523320569364707 ], [ -74.17601245544931, 40.520875962828022 ], [ -74.177582955221055, 40.519230866865989 ], [ -74.178318766924733, 40.519945785601138 ], [ -74.179243813604344, 40.519984216896972 ], [ -74.17939137555561, 40.520278278914645 ], [ -74.179810168830699, 40.520552337707066 ], [ -74.181040812088867, 40.520705036287126 ], [ -74.182335556210873, 40.520352238061292 ], [ -74.183148109621271, 40.519870832266172 ], [ -74.183423705834059, 40.519889724567996 ], [ -74.184831165456174, 40.519341358599746 ], [ -74.18656733191348, 40.518115850404868 ], [ -74.18849353678938, 40.516340024578327 ], [ -74.189268755573266, 40.515344976872342 ], [ -74.18884297863984, 40.515087166607557 ], [ -74.189712184983989, 40.515320378534291 ], [ -74.191789226636246, 40.51305164412549 ], [ -74.193443183641023, 40.511567309612047 ], [ -74.194096438022214, 40.51064124236111 ], [ -74.195213400649209, 40.509977652954525 ], [ -74.196499369914235, 40.509923530610259 ], [ -74.198608317073791, 40.511197023110867 ], [ -74.199672053615387, 40.51142685045631 ], [ -74.200037123128538, 40.512677598824574 ], [ -74.198925727938686, 40.512777305998362 ], [ -74.199361274081028, 40.513010194415095 ], [ -74.200828982542419, 40.513030703958414 ], [ -74.207597017286147, 40.511835156151754 ], [ -74.208618656886273, 40.511448235147107 ], [ -74.209687893974404, 40.510797369342384 ], [ -74.209189968250399, 40.510499056955176 ], [ -74.209322004642004, 40.510398628895395 ], [ -74.20971374205881, 40.510777703242951 ], [ -74.209853381943944, 40.51067192532355 ], [ -74.210519496438764, 40.509991368889487 ], [ -74.211791831979937, 40.508173273494968 ], [ -74.213381699327996, 40.506766288192786 ], [ -74.213531308036693, 40.50639747722785 ], [ -74.213855338227177, 40.506607024534247 ], [ -74.214342501297224, 40.506518911287245 ], [ -74.215108158616331, 40.506059755681747 ], [ -74.215912420643122, 40.505371087983754 ], [ -74.217582401605483, 40.503341392601186 ], [ -74.217945702554999, 40.503360090191769 ], [ -74.219770164173994, 40.502742688470335 ], [ -74.223046578555454, 40.502478179081756 ], [ -74.225002321943251, 40.501770295065306 ], [ -74.227294135107513, 40.502297499484285 ], [ -74.229715842370666, 40.502085687587616 ], [ -74.23033892500186, 40.501804178371934 ], [ -74.230538045497326, 40.501946091311268 ], [ -74.2311449502442, 40.501851215880635 ], [ -74.233599041855769, 40.500912531599873 ], [ -74.235264959918837, 40.500606028517716 ], [ -74.236788456515754, 40.500000835335342 ], [ -74.237667704255927, 40.499123254932378 ], [ -74.237987373799754, 40.499165980869343 ], [ -74.238513216353454, 40.498896075363632 ], [ -74.239880172796916, 40.497573626399522 ], [ -74.244327982506704, 40.497546740156288 ], [ -74.245489389405321, 40.497044773874713 ], [ -74.24676102774194, 40.496133987611785 ], [ -74.248027474200029, 40.496190036869436 ], [ -74.24917156868959, 40.496567297053339 ], [ -74.250854894222471, 40.498006163595143 ], [ -74.251167732457546, 40.498993090653308 ], [ -74.252599827399848, 40.499643075886254 ], [ -74.25335537967338, 40.500413197913403 ], [ -74.253845906621052, 40.501635669316968 ], [ -74.254274076567199, 40.502161180509617 ], [ -74.25530969808149, 40.504136410744337 ], [ -74.255307103776204, 40.506536454118979 ], [ -74.255542691639405, 40.507837742496136 ], [ -74.255248177531726, 40.508243230712992 ], [ -74.254628567099076, 40.508674825727006 ], [ -74.254972903709643, 40.50880566213322 ], [ -74.254618507282132, 40.508683909302434 ], [ -74.253997530795829, 40.508970314985028 ], [ -74.254038045678541, 40.509252671645669 ], [ -74.254388778028684, 40.509344184133134 ], [ -74.254314541693105, 40.509413694648956 ], [ -74.254020695053384, 40.509272975787439 ], [ -74.253689118810598, 40.509425596439115 ], [ -74.254646512629094, 40.509826245924366 ], [ -74.254526217322365, 40.509973014880948 ], [ -74.253648125182551, 40.509470530436268 ], [ -74.253315798051304, 40.509861504540929 ], [ -74.253063945530855, 40.511055257369726 ], [ -74.253258068856695, 40.511088689380777 ], [ -74.253008472775534, 40.511193989705362 ], [ -74.253526850767102, 40.511677766031831 ], [ -74.253036353815546, 40.511433160458736 ], [ -74.253089508793749, 40.512121961416213 ], [ -74.25195197554325, 40.512997002545767 ], [ -74.252125913970602, 40.513710379799946 ], [ -74.251353314148872, 40.514392897558395 ], [ -74.250545004972395, 40.514716839715405 ], [ -74.25004587756581, 40.515108510494251 ], [ -74.250555264135556, 40.515716342428838 ], [ -74.250455099238252, 40.515772007109007 ], [ -74.250156265826206, 40.515361188197971 ], [ -74.249888248749983, 40.515521545192932 ], [ -74.250560073376747, 40.516106740528372 ], [ -74.250415359213875, 40.516188335025859 ], [ -74.249356609239001, 40.515005928193688 ], [ -74.249337752436915, 40.515140814379315 ], [ -74.249215287419545, 40.515084861297822 ], [ -74.249632201750941, 40.515545377949586 ], [ -74.249513936786784, 40.51569398097643 ], [ -74.249941588080418, 40.516137488190971 ], [ -74.249430968990893, 40.515687885597472 ], [ -74.248647646321061, 40.516112628496771 ], [ -74.24875958315144, 40.516356221134217 ], [ -74.248545892916752, 40.51616991714841 ], [ -74.248600808230506, 40.516313331917836 ], [ -74.248284220838897, 40.516486949553666 ], [ -74.248946245997573, 40.5171945397881 ], [ -74.249407707889091, 40.516980830418461 ], [ -74.248514491218913, 40.517475626263582 ], [ -74.24891910653055, 40.517208433692424 ], [ -74.247518118355316, 40.515735864778598 ], [ -74.246930480084771, 40.516066454417739 ], [ -74.24664175789384, 40.516121936076615 ], [ -74.246440396509527, 40.515965027503306 ], [ -74.24612857679287, 40.516137392573704 ], [ -74.246749971940659, 40.51649561324043 ], [ -74.246510402676776, 40.516669855305942 ], [ -74.246995569965947, 40.517182085195529 ], [ -74.246478997053288, 40.516687327210789 ], [ -74.246377365012961, 40.516739093357486 ], [ -74.246536829001187, 40.516959960378045 ], [ -74.24634969801771, 40.51675337193489 ], [ -74.245208615283545, 40.517289743624097 ], [ -74.245669890672389, 40.517789708049847 ], [ -74.245634731699454, 40.51807558074573 ], [ -74.245088044605396, 40.518066839404177 ], [ -74.24429835217606, 40.518515003107723 ], [ -74.243652285115999, 40.518294614623123 ], [ -74.242324778332758, 40.518326525021742 ], [ -74.241259686752144, 40.519180469822921 ], [ -74.241031229185424, 40.519542512687885 ], [ -74.240490696218444, 40.519191628971384 ], [ -74.239822583167765, 40.520090711443757 ], [ -74.240732846146173, 40.52056915165241 ], [ -74.24117293552203, 40.521060131431966 ], [ -74.241332195755234, 40.520894517580196 ], [ -74.242932351023697, 40.521227161131364 ], [ -74.242583757053083, 40.522198648999165 ], [ -74.24276246783721, 40.522726789127518 ], [ -74.242613978384341, 40.523080937524476 ], [ -74.242801570095736, 40.524007296286648 ], [ -74.243357926854998, 40.524818912815192 ], [ -74.243965008247216, 40.524905366336405 ], [ -74.243338839497198, 40.525853805178542 ], [ -74.242828607906958, 40.527418880173265 ], [ -74.242886713153439, 40.528200130827386 ], [ -74.242510289315049, 40.528445934764704 ], [ -74.242455410252418, 40.528954699545892 ], [ -74.242188017623107, 40.529437551660209 ], [ -74.242245280714556, 40.529822779506333 ], [ -74.241507333228967, 40.531041342795142 ], [ -74.241810616215332, 40.532562675421495 ], [ -74.242177995973634, 40.532576138477971 ], [ -74.242282003381547, 40.533387496517719 ], [ -74.241964589363278, 40.533633718431766 ], [ -74.242045702860082, 40.534346377050404 ], [ -74.242366102673031, 40.534734232561931 ], [ -74.242580242530238, 40.534767541105666 ], [ -74.242857762382698, 40.535353440320286 ], [ -74.243663480908481, 40.536074719267091 ], [ -74.2441249598849, 40.536196295728971 ], [ -74.243976551065742, 40.536460498559144 ], [ -74.244147826045733, 40.536881409915587 ], [ -74.244587539107243, 40.536932927072797 ], [ -74.244936930485935, 40.536663876918517 ], [ -74.24533651176057, 40.536905994434612 ], [ -74.245261339131503, 40.537152213112961 ], [ -74.244800695993305, 40.537409145437984 ], [ -74.24444259737659, 40.538066765991516 ], [ -74.245271007033836, 40.539241870191226 ], [ -74.245602056324458, 40.540949594578699 ], [ -74.245992847905612, 40.541278932157802 ], [ -74.246486148157899, 40.542213392655597 ], [ -74.247677781054904, 40.543125403301389 ], [ -74.248034637356938, 40.543093240441387 ], [ -74.246184223835186, 40.545633624849131 ], [ -74.243363466186551, 40.547865135234417 ], [ -74.243584476513547, 40.54762399087852 ], [ -74.242935859290199, 40.547113219245205 ], [ -74.242203184630725, 40.546948677294942 ], [ -74.24039182810057, 40.547663310173725 ], [ -74.238371913701172, 40.549141566812921 ], [ -74.237619635332194, 40.550123468577198 ], [ -74.236416234489695, 40.550508626843339 ], [ -74.236174624446562, 40.55142706190513 ], [ -74.23652110289828, 40.552020815905308 ], [ -74.236415597951648, 40.552328066310814 ], [ -74.234898658666978, 40.553005216669895 ], [ -74.233777550774789, 40.552514199512324 ], [ -74.233324000803222, 40.552509143565857 ], [ -74.232291129331657, 40.553363697975662 ], [ -74.231933314449435, 40.554149830117133 ], [ -74.23071036198121, 40.555557594258914 ], [ -74.230249520876214, 40.55538674616394 ], [ -74.229319541857137, 40.55549158696271 ], [ -74.229352538255455, 40.555750600620364 ], [ -74.229051621876366, 40.556107082105058 ], [ -74.228332143720053, 40.55639035431139 ], [ -74.227436827305326, 40.556038533516393 ], [ -74.226404945429508, 40.556255712845854 ], [ -74.223903341344936, 40.555897065544464 ], [ -74.223864214980864, 40.556097694082837 ], [ -74.223442650404166, 40.556046569904765 ], [ -74.223786067087914, 40.555880267004532 ], [ -74.223161290086352, 40.555787142690463 ], [ -74.222972196328627, 40.555503373622606 ], [ -74.22257486867268, 40.55540620977834 ], [ -74.22179863887051, 40.555417070759034 ], [ -74.221570066131989, 40.555648982957671 ], [ -74.221298646044602, 40.55536622468555 ], [ -74.220867150934012, 40.555940202277704 ], [ -74.220553401510614, 40.555885284170301 ], [ -74.220297118748434, 40.555597921061462 ], [ -74.220106271647779, 40.554928812423157 ], [ -74.219743569307226, 40.554612672072437 ], [ -74.219080608993451, 40.554847002197931 ], [ -74.21933701278985, 40.55569136698103 ], [ -74.219217163709331, 40.555796969878585 ], [ -74.218958326330622, 40.554857582913186 ], [ -74.218593257828076, 40.55467421024774 ], [ -74.218750368805601, 40.556027740537253 ], [ -74.218173601933955, 40.555600523248472 ], [ -74.217753423258443, 40.555005284777387 ], [ -74.21604246060636, 40.555544118782983 ], [ -74.214740531988184, 40.556242389132088 ], [ -74.214992570306649, 40.556794932794659 ], [ -74.21462340478287, 40.556913362220882 ], [ -74.214226987883535, 40.556557317918198 ], [ -74.213955374495612, 40.556657154294328 ], [ -74.213764673175888, 40.556396943325282 ], [ -74.213274572913832, 40.556624934276563 ], [ -74.21313586263048, 40.557051009892199 ], [ -74.212643437989115, 40.55728972655433 ], [ -74.212673026654826, 40.557647560008029 ], [ -74.211998432303091, 40.558378067479701 ], [ -74.211756204551293, 40.559124757276152 ], [ -74.211970292347104, 40.559297737575712 ], [ -74.211880423216812, 40.559596937861762 ], [ -74.211178266081816, 40.560446842907183 ], [ -74.211340053472242, 40.561230353084035 ], [ -74.211096003550736, 40.562131470789168 ], [ -74.211379978587786, 40.563492205274827 ], [ -74.210962774012273, 40.564290450150224 ], [ -74.210623437439438, 40.565520200174497 ], [ -74.209541259233049, 40.567514584873244 ], [ -74.209534672329085, 40.567928048658032 ], [ -74.209321752683351, 40.568025300756887 ], [ -74.209241685472435, 40.568409858879768 ], [ -74.20886661112192, 40.568909793929137 ], [ -74.208926363286693, 40.569624298449973 ], [ -74.208017053814189, 40.570517957400732 ], [ -74.208168511021881, 40.570719423414239 ], [ -74.207835590149756, 40.572610000446446 ], [ -74.207262982732203, 40.574113027771538 ], [ -74.207078004104162, 40.574266340216582 ], [ -74.207226502060522, 40.574486796411705 ], [ -74.207070243002704, 40.574743025323485 ], [ -74.207284314131755, 40.575254532872584 ], [ -74.206812056267751, 40.575922020188194 ], [ -74.206886555877631, 40.576217271059569 ], [ -74.207089171794976, 40.576305590338762 ], [ -74.20655509342086, 40.576711094171273 ], [ -74.206531254956033, 40.576901637367683 ], [ -74.206816167047521, 40.577154042628074 ], [ -74.206230057073981, 40.577739435727366 ], [ -74.205917325093964, 40.578616647553616 ], [ -74.205957711403229, 40.579310888059489 ], [ -74.203546719545116, 40.579999792220157 ], [ -74.200726270672561, 40.579324901293269 ] ] ] } }
-,
-{ "type": "Feature", "id": 85, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.118341692271045, 40.550459695296496 ], [ -74.116762688174788, 40.548991391102973 ], [ -74.113684352105182, 40.550948084608379 ], [ -74.11252568934222, 40.549858451684074 ], [ -74.111652681883271, 40.55037651255796 ], [ -74.112749551671939, 40.55143532523725 ], [ -74.109447925597848, 40.552378801196859 ], [ -74.110284573216532, 40.551496357418159 ], [ -74.112788469578973, 40.547884262221665 ], [ -74.113010461044652, 40.547780065430068 ], [ -74.113383406162768, 40.548073375150679 ], [ -74.114737811652688, 40.547996610676556 ], [ -74.115461778211795, 40.547515362250195 ], [ -74.116080047490129, 40.547864946834189 ], [ -74.116545321769834, 40.547872393146555 ], [ -74.117299888803487, 40.547464026193026 ], [ -74.118041330178258, 40.547306612895241 ], [ -74.119778100831297, 40.545470456741306 ], [ -74.121580703280799, 40.545208604005694 ], [ -74.122453060503901, 40.544770545629802 ], [ -74.124244497127776, 40.543110380910733 ], [ -74.12638185131074, 40.540520755459198 ], [ -74.130711842726697, 40.534535075436182 ], [ -74.133564434321698, 40.531511174806326 ], [ -74.136188489933488, 40.529620796687219 ], [ -74.136907990104831, 40.529281918883385 ], [ -74.13728504251867, 40.529740467984801 ], [ -74.138146354877321, 40.52967775847403 ], [ -74.138830307305511, 40.52988935670605 ], [ -74.139017859847655, 40.530270923920916 ], [ -74.139150760138222, 40.531520111621703 ], [ -74.140270152695919, 40.533300017195849 ], [ -74.140610927031204, 40.534130600190132 ], [ -74.140586071933313, 40.534699936841122 ], [ -74.140324753935673, 40.535284579722322 ], [ -74.13995163489804, 40.535457088527622 ], [ -74.138224291190653, 40.535208267323917 ], [ -74.135075093257001, 40.53524117062301 ], [ -74.133810051556324, 40.535642939339226 ], [ -74.128133262740079, 40.540552966012825 ], [ -74.12756314969576, 40.541453976706059 ], [ -74.127387895879167, 40.542295429661387 ], [ -74.127731434273556, 40.543423084803656 ], [ -74.127557605144531, 40.543480354726803 ], [ -74.127638968544574, 40.543628190093472 ], [ -74.127818934465552, 40.543564399644538 ], [ -74.129018646331659, 40.545059241749136 ], [ -74.130114047150812, 40.545975725630484 ], [ -74.131550261918889, 40.54652452900347 ], [ -74.133086643400929, 40.546834295077929 ], [ -74.134355033650678, 40.546788934314158 ], [ -74.135857125660365, 40.546451695709621 ], [ -74.137006296887094, 40.546967771006322 ], [ -74.138617985475591, 40.548492384772743 ], [ -74.137697315929699, 40.549383546429411 ], [ -74.134558682258472, 40.551255078203482 ], [ -74.130424595729252, 40.554437042058417 ], [ -74.12730057821922, 40.557295172447724 ], [ -74.119458592911627, 40.552221906044522 ], [ -74.119574803796326, 40.551630751913834 ], [ -74.118341692271045, 40.550459695296496 ] ] ] } }
-,
-{ "type": "Feature", "id": 86, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.050508064032456, 40.566422034160802 ], [ -74.049983525625734, 40.566395924928266 ], [ -74.049316403620864, 40.56588774778043 ], [ -74.049236298420439, 40.565362736368094 ], [ -74.050026200927391, 40.565318180621404 ], [ -74.050906017050877, 40.566094342130583 ], [ -74.050679167486123, 40.566310845736389 ], [ -74.051071598037751, 40.566722493397791 ], [ -74.050508064032456, 40.566422034160802 ] ] ] } }
-,
-{ "type": "Feature", "id": 87, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.053140367551109, 40.577702714540862 ], [ -74.054060449398733, 40.577116445238865 ], [ -74.054897781448872, 40.577782440920132 ], [ -74.054693169074852, 40.579691632229419 ], [ -74.054851346253884, 40.579707593077593 ], [ -74.05484560052173, 40.579945791427598 ], [ -74.053686291504178, 40.580548759614402 ], [ -74.052931906398157, 40.579902474665836 ], [ -74.053140367551109, 40.577702714540862 ] ] ] } }
-,
-{ "type": "Feature", "id": 88, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.055521261223674, 40.606482892568643 ], [ -74.055287196971321, 40.606538890078674 ], [ -74.055059740958058, 40.606265420452822 ], [ -74.053810698054406, 40.605912718852977 ], [ -74.053607296748808, 40.60523880941804 ], [ -74.054020399589731, 40.604934719911071 ], [ -74.053539644801134, 40.603633557567207 ], [ -74.053033306933116, 40.601466470680279 ], [ -74.053383967571051, 40.600895213818603 ], [ -74.053407058394598, 40.600522661043833 ], [ -74.052245317332876, 40.599748014152865 ], [ -74.052871538433891, 40.599867255467061 ], [ -74.054474223339042, 40.598755539548435 ], [ -74.057193698387195, 40.596395078812293 ], [ -74.059726906431635, 40.59390821671235 ], [ -74.059641205961526, 40.593709388392959 ], [ -74.059766606876437, 40.593835257510129 ], [ -74.060553537029875, 40.5933797554232 ], [ -74.062152744325459, 40.592025040541969 ], [ -74.065033323561806, 40.588990997865274 ], [ -74.064541861337744, 40.588433992394222 ], [ -74.064778330329943, 40.588488310725658 ], [ -74.067222768168875, 40.586734449257492 ], [ -74.070963101820453, 40.583181990402586 ], [ -74.071491805871489, 40.582168782652033 ], [ -74.070657815378155, 40.581625625037709 ], [ -74.071466708670883, 40.582027243898501 ], [ -74.073353895248744, 40.580678939139332 ], [ -74.075082881926207, 40.579160158755549 ], [ -74.075798195407131, 40.578309250650612 ], [ -74.075234536179607, 40.577998803253159 ], [ -74.075346225824049, 40.577887969571719 ], [ -74.076015969779007, 40.578244912290231 ], [ -74.076399283985182, 40.577994855052509 ], [ -74.076297410184395, 40.57789862509334 ], [ -74.076492830772963, 40.577960846125308 ], [ -74.076882264720226, 40.577636788906311 ], [ -74.07673747682658, 40.577372509324988 ], [ -74.076938815286425, 40.577534344586134 ], [ -74.077374724565132, 40.57728215840342 ], [ -74.079263212569074, 40.575671292205683 ], [ -74.078679339389154, 40.575081825223322 ], [ -74.079336405382577, 40.575627204016868 ], [ -74.080906832830635, 40.574689804751543 ], [ -74.084690759914295, 40.571477913939738 ], [ -74.086548587606771, 40.569632319135032 ], [ -74.08691263719129, 40.568985842683055 ], [ -74.086216322242592, 40.568532698147088 ], [ -74.087250783161068, 40.569081678192831 ], [ -74.088356998476343, 40.568266707590865 ], [ -74.089249060751357, 40.5670155705347 ], [ -74.08998259932838, 40.567380011533089 ], [ -74.090999054670405, 40.566737129097518 ], [ -74.094049684097314, 40.562981647611039 ], [ -74.09407071109429, 40.562731619461154 ], [ -74.095110633612919, 40.563173273434572 ], [ -74.095423718622285, 40.563154635568011 ], [ -74.095671980613716, 40.562775598245366 ], [ -74.096118471354586, 40.562587574490067 ], [ -74.098197671960264, 40.559836476805167 ], [ -74.098290308236997, 40.559332614156808 ], [ -74.097821270899061, 40.559053466217158 ], [ -74.098764154150018, 40.559423551651427 ], [ -74.099380314327362, 40.558964193361156 ], [ -74.099717845473364, 40.559141300031079 ], [ -74.099929141354139, 40.559070685653047 ], [ -74.100799639281107, 40.558321821115825 ], [ -74.101243541398716, 40.557660831315509 ], [ -74.101846376747048, 40.556216988779987 ], [ -74.101840329648994, 40.555944639241218 ], [ -74.101374775957126, 40.555692372106684 ], [ -74.101405168449404, 40.55553852616503 ], [ -74.102650763602455, 40.556134404785205 ], [ -74.10309839177431, 40.555904641450532 ], [ -74.10465943491397, 40.554120467311208 ], [ -74.105089079474538, 40.553235468010655 ], [ -74.104844476363382, 40.553025814556236 ], [ -74.106428220651679, 40.553853373621237 ], [ -74.106481508123196, 40.554156828372925 ], [ -74.107047384495033, 40.554195450541982 ], [ -74.10768623398171, 40.553976671478146 ], [ -74.109286477685686, 40.552606897257768 ], [ -74.108852076983197, 40.553006299401069 ], [ -74.108910796341036, 40.553423629089828 ], [ -74.106461777747839, 40.5552783983727 ], [ -74.105728424764209, 40.556195227033406 ], [ -74.102505970611759, 40.559003251481698 ], [ -74.097631534169039, 40.564483335819247 ], [ -74.10660439327259, 40.568778268768853 ], [ -74.105303581836907, 40.57012777121389 ], [ -74.103681941735786, 40.570207754278179 ], [ -74.103939495406848, 40.570683061496204 ], [ -74.102958492987696, 40.571720971899971 ], [ -74.105242903772805, 40.573094039890904 ], [ -74.104709791417761, 40.574005939404699 ], [ -74.092770582239822, 40.567943410603036 ], [ -74.09204451514826, 40.56889233874098 ], [ -74.08853447613059, 40.572558506073889 ], [ -74.079150923809053, 40.578049972735876 ], [ -74.075251617283882, 40.581519567163788 ], [ -74.07275277759048, 40.584061527877466 ], [ -74.07144369874274, 40.585058382216687 ], [ -74.069391458526098, 40.587608032507489 ], [ -74.066625595022956, 40.590342019201351 ], [ -74.063360505573101, 40.592906556906662 ], [ -74.063164153052256, 40.593313809432964 ], [ -74.062793646958696, 40.593418545407623 ], [ -74.060560175404959, 40.594911514274571 ], [ -74.063759332922046, 40.59893485952216 ], [ -74.061055178967933, 40.599825891891832 ], [ -74.061956178680347, 40.601236455949824 ], [ -74.062564742929581, 40.601768091639556 ], [ -74.063505655942024, 40.602150054328227 ], [ -74.063640585538337, 40.602541948797345 ], [ -74.065170912507782, 40.604213508846286 ], [ -74.056858123804815, 40.608056357545159 ], [ -74.05649565936767, 40.607247648256205 ], [ -74.055521261223674, 40.606482892568643 ] ] ] } }
-,
-{ "type": "Feature", "id": 89, "properties": { "communityDistrict": 315, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.937044800018953, 40.583124991022267 ], [ -73.937124597984507, 40.583346730164195 ], [ -73.938119176950934, 40.583340478995126 ], [ -73.938094206277697, 40.583116810716952 ], [ -73.938552763024276, 40.583337984991608 ], [ -73.938477128858722, 40.583177897271135 ], [ -73.93866846657744, 40.58316442817501 ], [ -73.938627557651174, 40.583067021797454 ], [ -73.939296404506692, 40.583167268735288 ], [ -73.939301530189695, 40.583333215054104 ], [ -73.939825389164895, 40.583331446250838 ], [ -73.939828840505442, 40.583170535692517 ], [ -73.939858516427236, 40.583331334095774 ], [ -73.940577458289098, 40.58332822557346 ], [ -73.940566089477699, 40.583087368308057 ], [ -73.940109036170483, 40.583075068681325 ], [ -73.940676578022732, 40.583065805567323 ], [ -73.940588728099328, 40.583206947456418 ], [ -73.940700194488329, 40.583327624731751 ], [ -73.940916454907381, 40.583302406531288 ], [ -73.940897105433365, 40.583087607080088 ], [ -73.940738406046293, 40.583075612817524 ], [ -73.941025179186852, 40.583070361906188 ], [ -73.940934220853563, 40.5833023064367 ], [ -73.941156996754884, 40.583299227468054 ], [ -73.941201557288863, 40.583090465204968 ], [ -73.941209298239841, 40.583298504883025 ], [ -73.941440508572043, 40.583340147476164 ], [ -73.94157408083575, 40.583607555939359 ], [ -73.942551335652936, 40.583514476170805 ], [ -73.942020333527509, 40.583110423782443 ], [ -73.942701678289026, 40.583508797614286 ], [ -73.943047097119248, 40.583492129464553 ], [ -73.942563161909774, 40.583127347516431 ], [ -73.943195062239454, 40.583489662633575 ], [ -73.943544675309226, 40.583471014361066 ], [ -73.943093348473809, 40.583134545214705 ], [ -73.943691530045712, 40.583467754265953 ], [ -73.94406764167104, 40.583472009110366 ], [ -73.943635897957421, 40.583145573909533 ], [ -73.944234035871347, 40.583479951646517 ], [ -73.944618286662347, 40.583496626087666 ], [ -73.944174584578462, 40.583158291217906 ], [ -73.944320597521582, 40.583159424877294 ], [ -73.944775440812947, 40.583507804409805 ], [ -73.945174777816149, 40.583521378244193 ], [ -73.944712710301502, 40.583165044530588 ], [ -73.944845129409146, 40.583164234340913 ], [ -73.945349925034748, 40.583529052110372 ], [ -73.945730148645495, 40.583544874558406 ], [ -73.945266701246254, 40.583182518567234 ], [ -73.945376052378805, 40.5831819316505 ], [ -73.945899118880888, 40.583552662610209 ], [ -73.946286346919536, 40.583568684702762 ], [ -73.945799412588912, 40.583194640230253 ], [ -73.946434290593515, 40.583563152592404 ], [ -73.946789450687774, 40.583550467614117 ], [ -73.946316036487531, 40.583206940210658 ], [ -73.946917962761049, 40.583546033249696 ], [ -73.947268327053067, 40.58353318156928 ], [ -73.946822029471946, 40.583191191871023 ], [ -73.947468678613191, 40.583528195362383 ], [ -73.953493220486791, 40.582988198260963 ], [ -73.953301359956768, 40.58200274963346 ], [ -73.94969672499397, 40.582319401066641 ], [ -73.94274062592514, 40.580995589559244 ], [ -73.933812806639096, 40.581132925742033 ], [ -73.935134076389716, 40.58118378955735 ], [ -73.935108791151904, 40.581303817020974 ], [ -73.93340042885238, 40.581215388869218 ], [ -73.933758013561231, 40.581132041605827 ], [ -73.933003489164122, 40.58114467541715 ], [ -73.932971619566004, 40.581283630075156 ], [ -73.932909587448179, 40.581145767361072 ], [ -73.932872950224024, 40.581286000473149 ], [ -73.932806364933853, 40.581147418686825 ], [ -73.932580066339554, 40.581264741203796 ], [ -73.931062884016683, 40.576163099718514 ], [ -73.931502567440589, 40.575660505126763 ], [ -73.934860928304303, 40.57552779666814 ], [ -73.934893564551913, 40.575221646500196 ], [ -73.935078618963487, 40.575509466010551 ], [ -73.936471075865896, 40.575860496356356 ], [ -73.936707525374729, 40.575418427216235 ], [ -73.936831162282289, 40.575560016725824 ], [ -73.942509078284274, 40.575373554531744 ], [ -73.942557122617387, 40.575564330899105 ], [ -73.944279114060762, 40.575800511747424 ], [ -73.944633191296063, 40.575691196747087 ], [ -73.944596428809746, 40.57524561778304 ], [ -73.944748418059618, 40.575512024748612 ], [ -73.945723520466885, 40.575559439722625 ], [ -73.946182376011237, 40.575298836219396 ], [ -73.945923903017515, 40.575115432309694 ], [ -73.952077916478672, 40.574398602865294 ], [ -73.952543410273947, 40.574223979504254 ], [ -73.953994234050796, 40.574266317041776 ], [ -73.954083334518174, 40.574073272183533 ], [ -73.95428546787106, 40.575731336515922 ], [ -73.953651717053447, 40.575823980895507 ], [ -73.954438286024342, 40.579599959422239 ], [ -73.955071116580399, 40.581680175764198 ], [ -73.954940242385263, 40.581968904738119 ], [ -73.955919977208097, 40.582447832319147 ], [ -73.956041468004543, 40.582736254319975 ], [ -73.956457291257294, 40.582658850555148 ], [ -73.957031342462898, 40.583035332919756 ], [ -73.959007400390789, 40.582838127802084 ], [ -73.960047986674823, 40.583269872406589 ], [ -73.960516672384173, 40.589452911647577 ], [ -73.97433591765278, 40.587941518707822 ], [ -73.974216992455439, 40.590111555499078 ], [ -73.983721526152465, 40.595821078217057 ], [ -73.9732398353256, 40.596978818056797 ], [ -73.972177428008635, 40.604194711537346 ], [ -73.972994340048416, 40.60881414180237 ], [ -73.953598887869589, 40.610949865606109 ], [ -73.951667768069612, 40.611313185999862 ], [ -73.950777930201639, 40.611635456791277 ], [ -73.949119702127703, 40.613053217667755 ], [ -73.944827709962937, 40.616046209109363 ], [ -73.944055609321495, 40.611992841734242 ], [ -73.939012468730184, 40.607599477306643 ], [ -73.939049627748119, 40.607433297476042 ], [ -73.938489866191787, 40.606921943503181 ], [ -73.938347084371415, 40.607000456057875 ], [ -73.937890508110314, 40.606587861063474 ], [ -73.938098083418382, 40.606195209680678 ], [ -73.938434935758409, 40.605973863058743 ], [ -73.934262667258807, 40.60223071136695 ], [ -73.933551171536052, 40.602687280824874 ], [ -73.928131396709531, 40.597777928146151 ], [ -73.929568583093001, 40.596820264919806 ], [ -73.91805568651229, 40.586436545676733 ], [ -73.91919033106555, 40.585962493141999 ], [ -73.919611163540722, 40.58616907889423 ], [ -73.92017117347487, 40.585939908784958 ], [ -73.920404982311013, 40.586089779645668 ], [ -73.920821568760772, 40.585995773200665 ], [ -73.920669808659596, 40.585773626519611 ], [ -73.92089145806905, 40.585903061300435 ], [ -73.920906038363853, 40.585590581533602 ], [ -73.921012183320244, 40.585753595858655 ], [ -73.921899551879449, 40.58569317567391 ], [ -73.921848191077729, 40.585838421436357 ], [ -73.922118512898621, 40.585810514153025 ], [ -73.922353373772992, 40.586023936562341 ], [ -73.922964098263606, 40.585894457063759 ], [ -73.92353515890872, 40.585977723872134 ], [ -73.923895018840881, 40.585800713812297 ], [ -73.924042621471685, 40.585899717842175 ], [ -73.924021820754263, 40.585773535332557 ], [ -73.924679452837736, 40.585637746453415 ], [ -73.925203615142465, 40.58580627115542 ], [ -73.925418357534781, 40.586196514062841 ], [ -73.927207741889035, 40.58772275918674 ], [ -73.927682877473231, 40.587361600134038 ], [ -73.927247505213728, 40.587753274719788 ], [ -73.927356809288938, 40.588022176276155 ], [ -73.927945983511307, 40.587658820005039 ], [ -73.927916257411638, 40.587548735386818 ], [ -73.92807906817859, 40.58770246052319 ], [ -73.927369357535397, 40.588044598802959 ], [ -73.927404523116664, 40.588206445198104 ], [ -73.927901758069154, 40.587953409280338 ], [ -73.928021852764232, 40.588068756350872 ], [ -73.927923180483148, 40.587996187276786 ], [ -73.927454677909921, 40.588299564074042 ], [ -73.927761436391137, 40.588660609758797 ], [ -73.92395294850094, 40.591139850525039 ], [ -73.924199633926591, 40.591364280188685 ], [ -73.924601299385657, 40.591199325003124 ], [ -73.928159051230963, 40.588825249589981 ], [ -73.928620264991991, 40.58912043629617 ], [ -73.928881396844318, 40.588853719575326 ], [ -73.928631587027041, 40.589126361638932 ], [ -73.928734264673039, 40.589147165167702 ], [ -73.929258352174131, 40.588932373437252 ], [ -73.928757034994192, 40.589152966924985 ], [ -73.929981878661906, 40.589515997878614 ], [ -73.929361283544694, 40.589250661977275 ], [ -73.929766157734122, 40.589292068442461 ], [ -73.930577057182575, 40.589890641203155 ], [ -73.930103259887659, 40.589606105071411 ], [ -73.930375432473355, 40.589940459710405 ], [ -73.930297880916754, 40.590035167629964 ], [ -73.93058940447365, 40.589952591132516 ], [ -73.930628493644264, 40.59025299033776 ], [ -73.930467689171536, 40.590061372588018 ], [ -73.930674343554628, 40.590590721315145 ], [ -73.9305250722865, 40.590333113429786 ], [ -73.930471350802236, 40.590859601196989 ], [ -73.930623441806503, 40.590918694275757 ], [ -73.930647499486284, 40.590619683169187 ], [ -73.930641067665022, 40.590944566419722 ], [ -73.930460136618791, 40.591001219020896 ], [ -73.930696415921219, 40.591018541399791 ], [ -73.930449601729251, 40.591079691929131 ], [ -73.930725787957527, 40.591089860265519 ], [ -73.930371977849546, 40.591211400876297 ], [ -73.930604443069598, 40.591186176220965 ], [ -73.930600669062329, 40.591484582041666 ], [ -73.930574953010165, 40.591229731613936 ], [ -73.930465367658201, 40.591273407596098 ], [ -73.930405416622051, 40.591730942142931 ], [ -73.930605806565865, 40.59154136250843 ], [ -73.930450919227113, 40.59224503726179 ], [ -73.930399056021386, 40.591755596428975 ], [ -73.930364436033003, 40.592480093513544 ], [ -73.930362216339915, 40.59231177060942 ], [ -73.930176166341994, 40.592406220970382 ], [ -73.930353645245049, 40.592554950294414 ], [ -73.930265108613881, 40.592619404932535 ], [ -73.930189706582809, 40.592454118288771 ], [ -73.930023010262047, 40.592683046384785 ], [ -73.930212514893668, 40.592678370292404 ], [ -73.929912502223758, 40.592853394873416 ], [ -73.93009899390043, 40.592872440452723 ], [ -73.93005244539404, 40.59300024352072 ], [ -73.929890669643669, 40.592870791368057 ], [ -73.929712820366021, 40.593120048248032 ], [ -73.930042384195886, 40.593060879318038 ], [ -73.92995591843642, 40.593308572326194 ], [ -73.929975936292905, 40.593173815413437 ], [ -73.929741473226528, 40.593143922445535 ], [ -73.92982317336849, 40.593372695598802 ], [ -73.930039224626, 40.593348430884191 ], [ -73.929780817420578, 40.593436741471585 ], [ -73.930016509521863, 40.594094535056954 ], [ -73.930215194703152, 40.593972944184507 ], [ -73.930081594531387, 40.593595462871228 ], [ -73.930227562800411, 40.593930620896849 ], [ -73.930524887278011, 40.593880240701182 ], [ -73.930359688756027, 40.593975941323578 ], [ -73.930546790707112, 40.594199304085528 ], [ -73.930299344703215, 40.593938054510616 ], [ -73.930040119476928, 40.594104887330424 ], [ -73.930432460636794, 40.594402674949485 ], [ -73.930761229054937, 40.594381900521164 ], [ -73.930623056186292, 40.594204497659469 ], [ -73.930834465024674, 40.594413571304578 ], [ -73.930663035101119, 40.594463950932813 ], [ -73.930935161146081, 40.594459949860976 ], [ -73.931220560048402, 40.594183317263102 ], [ -73.931325121460702, 40.594276256189993 ], [ -73.930954634264012, 40.594465945206167 ], [ -73.931184257461297, 40.594501165706284 ], [ -73.930781313796189, 40.594498955276755 ], [ -73.931933649839792, 40.59469240430235 ], [ -73.932308263954042, 40.594916340487096 ], [ -73.932563438393345, 40.594763472296982 ], [ -73.932477028886822, 40.594916096675931 ], [ -73.932671473270631, 40.594911753314058 ], [ -73.932826549188206, 40.594803744969504 ], [ -73.932676539757509, 40.594236417967579 ], [ -73.931758907430861, 40.592830104899178 ], [ -73.9317109079429, 40.593050300520481 ], [ -73.931534952933262, 40.592692830518892 ], [ -73.931740875119829, 40.59279439369439 ], [ -73.931436756138055, 40.592167134518093 ], [ -73.931139561234943, 40.592008928747859 ], [ -73.931399979863869, 40.59180489056213 ], [ -73.931009893431579, 40.591931042480915 ], [ -73.930994659732264, 40.591818198986061 ], [ -73.931353010206649, 40.591791193962251 ], [ -73.931425654397444, 40.591604184147364 ], [ -73.93104847941612, 40.591726290866369 ], [ -73.931076021598102, 40.591597592767727 ], [ -73.931230571089529, 40.591641983133421 ], [ -73.93130541636036, 40.591360358668304 ], [ -73.931245924948186, 40.591636976995822 ], [ -73.931422527160365, 40.591588570390883 ], [ -73.931543347331072, 40.591350471183389 ], [ -73.931432724208165, 40.591239241307946 ], [ -73.931559394416198, 40.59129296407076 ], [ -73.931212948589547, 40.589531308119263 ], [ -73.930685680598131, 40.588821954226788 ], [ -73.930091382132943, 40.588988862378528 ], [ -73.930650219275236, 40.588669869770712 ], [ -73.930399675975096, 40.588465520415262 ], [ -73.929728463801865, 40.588613915829733 ], [ -73.930385452562675, 40.588441616078839 ], [ -73.929722326467314, 40.587560082903785 ], [ -73.931349178240637, 40.587328167229479 ], [ -73.93118073044306, 40.586798733713387 ], [ -73.928573940023924, 40.587061502371817 ], [ -73.928082329715892, 40.586697693937623 ], [ -73.928149693795206, 40.586178107762912 ], [ -73.927919337858469, 40.586135806046094 ], [ -73.928276724976143, 40.586106943570066 ], [ -73.92815700695617, 40.585864523066064 ], [ -73.927743111531484, 40.586050065209321 ], [ -73.927369557858881, 40.586006585316326 ], [ -73.927586418299001, 40.586254135332325 ], [ -73.927516219296891, 40.58639826671498 ], [ -73.927304338238798, 40.585865928419864 ], [ -73.926380419469922, 40.585295756348145 ], [ -73.926548209633268, 40.58557531538758 ], [ -73.925493543583087, 40.585019292003146 ], [ -73.926345420747182, 40.585276154753124 ], [ -73.925305275572356, 40.584641788088561 ], [ -73.924553439264201, 40.584611818712624 ], [ -73.92344966315008, 40.584817853965369 ], [ -73.921012555475045, 40.584575018612249 ], [ -73.920195630533783, 40.58463453786981 ], [ -73.918841775393432, 40.585043116291097 ], [ -73.918795907379931, 40.585223868594795 ], [ -73.918422224994771, 40.585371996276294 ], [ -73.918246860347239, 40.585423445237751 ], [ -73.918240285134715, 40.585316704032117 ], [ -73.917069826937279, 40.58573698211103 ], [ -73.91575404754839, 40.584423268116637 ], [ -73.918310079023996, 40.583889113218525 ], [ -73.921163825588323, 40.583694549307914 ], [ -73.929983417987728, 40.584233435272964 ], [ -73.929632480749021, 40.583398808625454 ], [ -73.930671919416767, 40.583159811896472 ], [ -73.930890532312461, 40.582930194084 ], [ -73.930740694334773, 40.582758947695154 ], [ -73.930960032104991, 40.582728610786468 ], [ -73.93171422041415, 40.582811778842334 ], [ -73.931942589519693, 40.583109750227074 ], [ -73.931928111867549, 40.58286976893524 ], [ -73.932376957428247, 40.5829185099781 ], [ -73.932013799611525, 40.582925981744872 ], [ -73.93201839411536, 40.583111124618526 ], [ -73.932598770539386, 40.582919267816408 ], [ -73.93349145637734, 40.583058717260258 ], [ -73.934209714869667, 40.582979798893412 ], [ -73.934379702092329, 40.583139033674037 ], [ -73.934559929029476, 40.583165413126302 ], [ -73.934560571019816, 40.583020173832239 ], [ -73.935690716397673, 40.583275093189116 ], [ -73.935673531459869, 40.58301942441252 ], [ -73.935824392098567, 40.583021115551659 ], [ -73.935766572110879, 40.58327750984968 ], [ -73.936132335907573, 40.58331447456537 ], [ -73.936287231894042, 40.5830009035583 ], [ -73.936096686913586, 40.582948745832866 ], [ -73.936566070950661, 40.582957648786788 ], [ -73.936300312726843, 40.583002955675838 ], [ -73.936317161954562, 40.583179051201462 ], [ -73.936575924407833, 40.583240505589949 ], [ -73.93697427463762, 40.583230326411289 ], [ -73.936987678970041, 40.583016272171555 ], [ -73.936633074225071, 40.582972211904064 ], [ -73.93763269743296, 40.583096268284059 ], [ -73.937044800018953, 40.583124991022267 ] ] ] } }
-,
-{ "type": "Feature", "id": 90, "properties": { "communityDistrict": 303, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/303" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.918046068924596, 40.687213247770437 ], [ -73.916301198615528, 40.678577111931439 ], [ -73.916464860322691, 40.676647040549057 ], [ -73.952063452586728, 40.67858633071836 ], [ -73.958292168077833, 40.679831133494801 ], [ -73.960292816681118, 40.690346249915414 ], [ -73.961749948352178, 40.696846168402978 ], [ -73.961898378242424, 40.698188332531487 ], [ -73.957019931894408, 40.698973914349807 ], [ -73.941930788822305, 40.700725234695796 ], [ -73.918046068924596, 40.687213247770437 ] ] ] } }
-,
-{ "type": "Feature", "id": 91, "properties": { "communityDistrict": 311, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/311" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.972994340048416, 40.60881414180237 ], [ -73.972177428008635, 40.604194711537346 ], [ -73.9732398353256, 40.596978818056797 ], [ -73.9850613649743, 40.595670918819373 ], [ -73.985200273048463, 40.596398126116434 ], [ -73.991539344444476, 40.590390903081278 ], [ -73.993308549669493, 40.589583898580422 ], [ -73.994215546083012, 40.588868530985344 ], [ -73.997956397392883, 40.587269506365622 ], [ -73.994876776953689, 40.588771746675121 ], [ -73.995347376612173, 40.589331380439951 ], [ -74.000114495384025, 40.586951640902576 ], [ -74.000108860195041, 40.586560729096725 ], [ -74.000317343032677, 40.586453335023251 ], [ -74.000489120678509, 40.587042855123975 ], [ -74.000382071157219, 40.58713305734944 ], [ -73.997883112510394, 40.588343437922781 ], [ -73.99867293309633, 40.589195549939632 ], [ -73.999236903969589, 40.588935328269052 ], [ -73.99946446811073, 40.589233269380699 ], [ -73.998378348821092, 40.58977044508854 ], [ -73.99883618014573, 40.589625489542264 ], [ -73.998443870794901, 40.589860399177489 ], [ -73.998778006555142, 40.590314355341867 ], [ -73.998443259368671, 40.590240105494416 ], [ -73.9977597276729, 40.590952469613761 ], [ -73.997111685715367, 40.591277977443738 ], [ -73.997189827457603, 40.59160618053734 ], [ -73.99806438267683, 40.591209464731477 ], [ -73.998128693953362, 40.591288664257938 ], [ -73.997282697697145, 40.59171481486807 ], [ -73.997548510584039, 40.591917578170403 ], [ -73.999167618620803, 40.591149134810472 ], [ -73.999573291993897, 40.591092566583306 ], [ -74.000043149870848, 40.591204286761624 ], [ -74.000230752858585, 40.591478489805247 ], [ -73.999012172191215, 40.592335117001213 ], [ -73.999483049383045, 40.592969199897588 ], [ -73.998388310836191, 40.59353139160627 ], [ -73.998544213158269, 40.593596761754178 ], [ -74.001057484457178, 40.592537005062248 ], [ -74.001933202083251, 40.593894695412757 ], [ -74.001844151354732, 40.593977667237873 ], [ -74.003458755732638, 40.595924684008843 ], [ -74.005526220520593, 40.597539154070653 ], [ -74.009217239049079, 40.599844045152338 ], [ -74.011150366434961, 40.600830664233975 ], [ -74.012998870333746, 40.601559207546529 ], [ -74.015824048287158, 40.602294980866354 ], [ -74.017590780265849, 40.602503018992188 ], [ -74.018323472168518, 40.60241765113043 ], [ -74.019135639688301, 40.602612754504833 ], [ -74.019427608897502, 40.602871578347951 ], [ -74.015498550096368, 40.606841524276888 ], [ -74.017019101547376, 40.607654416971123 ], [ -73.997181753413983, 40.626710155836285 ], [ -73.995858841456965, 40.626001434103557 ], [ -73.99473485679259, 40.625614741105977 ], [ -73.974972646644076, 40.613668110171787 ], [ -73.97489295756634, 40.613186368916608 ], [ -73.973993194613954, 40.614029893739918 ], [ -73.972994340048416, 40.60881414180237 ] ] ] } }
-,
-{ "type": "Feature", "id": 92, "properties": { "communityDistrict": 404, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/404" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.847508202780645, 40.739007807039158 ], [ -73.851303526722035, 40.737511727542568 ], [ -73.856285677109298, 40.736426042505471 ], [ -73.864470862450929, 40.734007274929702 ], [ -73.876283024266357, 40.730313093919648 ], [ -73.879693540885071, 40.729010159418607 ], [ -73.881309176877039, 40.728680826521192 ], [ -73.88559330979848, 40.728274440980165 ], [ -73.886288846014665, 40.730601703116925 ], [ -73.88838317163345, 40.735758382811248 ], [ -73.891270179531759, 40.741428249292163 ], [ -73.894446887503449, 40.746535270812807 ], [ -73.861117076624396, 40.750024228366328 ], [ -73.852204505658563, 40.752660682362709 ], [ -73.850864397100324, 40.749995641874605 ], [ -73.854425752537722, 40.748851726381922 ], [ -73.850115566364181, 40.740723562798379 ], [ -73.847801646205241, 40.740049676962151 ], [ -73.847579807180352, 40.739721354438394 ], [ -73.847778442173137, 40.739344835748881 ], [ -73.847508202780645, 40.739007807039158 ] ] ] } }
-,
-{ "type": "Feature", "id": 93, "properties": { "communityDistrict": 226, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867890437136481, 40.902986954152283 ], [ -73.868202703053413, 40.902355382773607 ], [ -73.870103695755844, 40.900741946981086 ], [ -73.874820415511664, 40.898445438024375 ], [ -73.875894654551544, 40.897559458644736 ], [ -73.876437430650199, 40.896870593459653 ], [ -73.87711974105801, 40.895468663643506 ], [ -73.880042130590851, 40.895222284586509 ], [ -73.880397478720596, 40.893313814019997 ], [ -73.880340936250946, 40.892482417609223 ], [ -73.879189418923602, 40.890307031497287 ], [ -73.878004672029277, 40.887321997061434 ], [ -73.878149446345148, 40.886873807364744 ], [ -73.881244225415543, 40.882709633005554 ], [ -73.882748332946534, 40.883397386800993 ], [ -73.883683368565229, 40.883157615331406 ], [ -73.884216964431815, 40.883197728058455 ], [ -73.886834866747876, 40.884342025562752 ], [ -73.887586126088365, 40.884255619662973 ], [ -73.899782521419539, 40.886529123507984 ], [ -73.896757900749378, 40.892645443571681 ], [ -73.896431707170763, 40.893655279926804 ], [ -73.897157171654328, 40.899371826677211 ], [ -73.896357859714925, 40.90320013158378 ], [ -73.896633337970684, 40.911417374845669 ], [ -73.867890437136481, 40.902986954152283 ] ] ] } }
-,
-{ "type": "Feature", "id": 94, "properties": { "communityDistrict": 203, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.880720815142809, 40.837521264519715 ], [ -73.881935889571224, 40.835462124985533 ], [ -73.884246295471797, 40.832592072106017 ], [ -73.885097701531322, 40.831152824784617 ], [ -73.885423176302581, 40.830116849951096 ], [ -73.885783262303434, 40.82789690839796 ], [ -73.88789510901421, 40.826743185296529 ], [ -73.892932260349824, 40.82678703602916 ], [ -73.897569587585892, 40.829423000830893 ], [ -73.901292776271063, 40.820475442111587 ], [ -73.909908941380024, 40.822551107614807 ], [ -73.911816157567358, 40.82203502241245 ], [ -73.917565994430134, 40.823883672432409 ], [ -73.916087827917409, 40.824837851830807 ], [ -73.916613685086176, 40.824992308005278 ], [ -73.912169826444909, 40.827902220983532 ], [ -73.905979403756234, 40.83850519529944 ], [ -73.90268810050182, 40.84458147228532 ], [ -73.900939994262416, 40.844384982674271 ], [ -73.901511519957126, 40.843367968965346 ], [ -73.900333303501938, 40.842989379513547 ], [ -73.899637495566893, 40.844233825028809 ], [ -73.894819425613477, 40.843683770968212 ], [ -73.895378361807317, 40.84293877895653 ], [ -73.889417248691998, 40.839422733380196 ], [ -73.88869040830879, 40.839158026467977 ], [ -73.888137521593393, 40.839862002384741 ], [ -73.886598023451214, 40.839279050108473 ], [ -73.88610978780433, 40.840470994132311 ], [ -73.880720815142809, 40.837521264519715 ] ] ] } }
-,
-{ "type": "Feature", "id": 95, "properties": { "communityDistrict": 308, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/308" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.958292168077833, 40.679831133494801 ], [ -73.952063452586728, 40.67858633071836 ], [ -73.921823610157915, 40.676938358472917 ], [ -73.922752572204345, 40.667097332962072 ], [ -73.928722045946031, 40.664495569685258 ], [ -73.92834967165949, 40.668647194188125 ], [ -73.955269636547627, 40.67012490485407 ], [ -73.962575314326202, 40.671644198394539 ], [ -73.966602780071014, 40.672797589726898 ], [ -73.968172958547754, 40.673029414357451 ], [ -73.968942063512657, 40.67288749127016 ], [ -73.968718221691745, 40.673924233914761 ], [ -73.96907731857624, 40.674839670814826 ], [ -73.969545567592618, 40.675276968647239 ], [ -73.970089425133466, 40.675502122885774 ], [ -73.970561113766706, 40.675488575617806 ], [ -73.97104919104342, 40.675237112802613 ], [ -73.975143167228509, 40.680871905306589 ], [ -73.974104486558176, 40.680649672443714 ], [ -73.973977575889506, 40.680983275465891 ], [ -73.974391442014991, 40.681046170246681 ], [ -73.973951353597755, 40.682280730693151 ], [ -73.967678283782007, 40.680955455311469 ], [ -73.967531966996447, 40.681768783617386 ], [ -73.958292168077833, 40.679831133494801 ] ] ] } }
-,
-{ "type": "Feature", "id": 96, "properties": { "communityDistrict": 403, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.862754901969751, 40.766764524925783 ], [ -73.862157856617117, 40.766191757929498 ], [ -73.859490724013014, 40.762562615399062 ], [ -73.858920563126119, 40.762406401185167 ], [ -73.858922981827305, 40.76212234551636 ], [ -73.858645104879514, 40.762514395909015 ], [ -73.858887226601666, 40.762133609397758 ], [ -73.858691102683196, 40.762221190500853 ], [ -73.85884371440261, 40.762058766275757 ], [ -73.858619152818733, 40.761935596998889 ], [ -73.857654736162289, 40.763079823351106 ], [ -73.858415386829904, 40.763453130422633 ], [ -73.858500812554723, 40.763376432579889 ], [ -73.85834319309086, 40.76356256045537 ], [ -73.858395314095347, 40.763477059121733 ], [ -73.857638965359143, 40.763099448633781 ], [ -73.856838887017759, 40.764000179114866 ], [ -73.856963559398054, 40.764074427863086 ], [ -73.856674822962489, 40.763930188325318 ], [ -73.856802909562902, 40.763980845460821 ], [ -73.857582854707033, 40.763072900626561 ], [ -73.856690352230004, 40.762635632858732 ], [ -73.85658675388774, 40.762722840114236 ], [ -73.856782368973924, 40.76250827740575 ], [ -73.856711693994811, 40.762615686952479 ], [ -73.85760424037187, 40.76305328178897 ], [ -73.858176310705304, 40.762396294223826 ], [ -73.856627729414726, 40.761629062393183 ], [ -73.858194331325322, 40.762374107984542 ], [ -73.858585262183468, 40.761917008596093 ], [ -73.857476624355371, 40.761308916687319 ], [ -73.856273206400701, 40.760902408430319 ], [ -73.855376334539542, 40.760669385032251 ], [ -73.855209871879779, 40.760809300774767 ], [ -73.855334545940195, 40.760658154889434 ], [ -73.854782737595954, 40.759848300268381 ], [ -73.853440252213829, 40.75916843724049 ], [ -73.852582524700622, 40.758283451187701 ], [ -73.852165079894235, 40.757459673296168 ], [ -73.85382000610656, 40.757185697572261 ], [ -73.852617253522425, 40.753405065527922 ], [ -73.852204505658563, 40.752660682362709 ], [ -73.861117076624396, 40.750024228366328 ], [ -73.894446887503449, 40.746535270812807 ], [ -73.897339428810128, 40.75141956802932 ], [ -73.897456323526626, 40.752736715644019 ], [ -73.898052843905987, 40.753802473148923 ], [ -73.898114063841007, 40.754221658567843 ], [ -73.899235837136814, 40.755530017451171 ], [ -73.89976862080843, 40.756664237360127 ], [ -73.899845926539342, 40.757562153543596 ], [ -73.899567439398879, 40.758545262512868 ], [ -73.896411384035417, 40.763150082767652 ], [ -73.89506657695074, 40.764331328290297 ], [ -73.894323719553626, 40.766146471734785 ], [ -73.89349605945462, 40.765950930000749 ], [ -73.891444897473946, 40.76607465363174 ], [ -73.891835357963473, 40.766227080049347 ], [ -73.888816539324708, 40.76659534946171 ], [ -73.886025541989028, 40.767282958202564 ], [ -73.882772418262519, 40.768529441437451 ], [ -73.878549156737705, 40.77077199556588 ], [ -73.877045371828999, 40.771316529076699 ], [ -73.873805246241815, 40.771767978456097 ], [ -73.872235776965908, 40.771695659019592 ], [ -73.870714474925975, 40.771390690036839 ], [ -73.868893827245572, 40.770649021897334 ], [ -73.867281938151308, 40.769650003291389 ], [ -73.865092940828532, 40.768015315239843 ], [ -73.863402148656107, 40.766455512262858 ], [ -73.862754901969751, 40.766764524925783 ] ] ] } }
-,
-{ "type": "Feature", "id": 97, "properties": { "communityDistrict": 102, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.996839939264902, 40.737360889398197 ], [ -73.989902959700501, 40.734434790136874 ], [ -73.989868521395636, 40.733527114554889 ], [ -73.990505586035965, 40.730564956235149 ], [ -73.991363881381531, 40.727559783459121 ], [ -73.994807790213102, 40.718457426350312 ], [ -73.996058727443753, 40.7162316402109 ], [ -73.998589255680329, 40.7170995115371 ], [ -73.999312417001448, 40.717550241777381 ], [ -74.010812382607256, 40.725789802555752 ], [ -74.011150343389346, 40.725777216880076 ], [ -74.011457631035512, 40.726155689262022 ], [ -74.015170840858616, 40.726579390657555 ], [ -74.015123565494619, 40.726793942564534 ], [ -74.011542018976044, 40.726447346927067 ], [ -74.01138323604755, 40.728229272367152 ], [ -74.014390699323883, 40.728463047520115 ], [ -74.014037969247994, 40.730694218843873 ], [ -74.011161956964756, 40.730450676349022 ], [ -74.010941274402015, 40.733020313341193 ], [ -74.014002202806751, 40.733068001795353 ], [ -74.013999571748954, 40.733332277517789 ], [ -74.010903898832851, 40.733297617139542 ], [ -74.010737738232308, 40.733419854772428 ], [ -74.010869999225406, 40.733594693906447 ], [ -74.010832846292743, 40.734007093508339 ], [ -74.012017920104739, 40.734063744456307 ], [ -74.012001242223832, 40.734338400663589 ], [ -74.010813594130397, 40.734283443647627 ], [ -74.010476598144194, 40.738063940595033 ], [ -74.01108706635948, 40.738092750081265 ], [ -74.011139156025621, 40.738389862813037 ], [ -74.01045432864592, 40.738364505222982 ], [ -74.010393031345544, 40.739174296059154 ], [ -74.01158045502315, 40.739264536111989 ], [ -74.011527450203985, 40.739873770444717 ], [ -74.011612580173406, 40.739707600549352 ], [ -74.012369174000341, 40.739751646372113 ], [ -74.012310012788447, 40.740194756203955 ], [ -74.011576869242319, 40.740160099501516 ], [ -74.011514917365346, 40.73997286369876 ], [ -74.011460739553399, 40.740584214752488 ], [ -74.012659282084897, 40.74074763849741 ], [ -74.009631455717553, 40.740645367374221 ], [ -74.009411403322076, 40.741154093312794 ], [ -74.012162329092163, 40.741491889682614 ], [ -74.012117458721391, 40.741758516211554 ], [ -74.009519472110711, 40.741490301193359 ], [ -74.009166082830475, 40.742416591463353 ], [ -74.008699022963597, 40.742361723963327 ], [ -73.996839939264902, 40.737360889398197 ] ] ] } }
-,
-{ "type": "Feature", "id": 98, "properties": { "communityDistrict": 205, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.891380233802607, 40.861700588263041 ], [ -73.893215207578095, 40.859874206155673 ], [ -73.893948930790927, 40.858779697027487 ], [ -73.900690100968845, 40.848310096566706 ], [ -73.90268810050182, 40.84458147228532 ], [ -73.906646755595673, 40.844916314067184 ], [ -73.913382939714481, 40.845187232536539 ], [ -73.923540020115283, 40.8447589441123 ], [ -73.927301944986283, 40.846506867376107 ], [ -73.926830232167944, 40.847289760188538 ], [ -73.9246537993034, 40.849785043513052 ], [ -73.923847789458293, 40.851182608715959 ], [ -73.923947894352978, 40.851221784616094 ], [ -73.922561789464751, 40.853188912029864 ], [ -73.921740354030078, 40.854221237840456 ], [ -73.921542618039197, 40.8541168833817 ], [ -73.92134207683867, 40.854317435657634 ], [ -73.921515437055263, 40.854510063891318 ], [ -73.920800702893359, 40.855380814394486 ], [ -73.920300272134298, 40.855246371341451 ], [ -73.92056655954363, 40.855513898313603 ], [ -73.920526531328505, 40.855686668401802 ], [ -73.919566208784985, 40.856840183687666 ], [ -73.917760412511058, 40.858708097958257 ], [ -73.91720664647049, 40.858928922734535 ], [ -73.915762132109379, 40.860644637292928 ], [ -73.914674807120662, 40.859712405659558 ], [ -73.914036078877231, 40.85994195282678 ], [ -73.910721042564745, 40.85870623223358 ], [ -73.910308808511346, 40.858409326604963 ], [ -73.90980269932912, 40.857607548833386 ], [ -73.909567200764997, 40.85759162415976 ], [ -73.907773205133822, 40.859607537685449 ], [ -73.90390816669435, 40.858367585815898 ], [ -73.901079670177253, 40.862756383422955 ], [ -73.899436708404068, 40.862116912065531 ], [ -73.896939613042107, 40.862442856758733 ], [ -73.892851691553773, 40.861832192993191 ], [ -73.891771887992022, 40.861871716750073 ], [ -73.891380233802607, 40.861700588263041 ] ] ] } }
-,
-{ "type": "Feature", "id": 99, "properties": { "communityDistrict": 405, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.88770199270428, 40.734291322758573 ], [ -73.886288846014665, 40.730601703116925 ], [ -73.88559330979848, 40.728274440980165 ], [ -73.880088774891078, 40.728906274716742 ], [ -73.875091540895426, 40.730671363218896 ], [ -73.871460741835079, 40.729326374137671 ], [ -73.870845394241812, 40.727484593440543 ], [ -73.869292704890839, 40.724435929474879 ], [ -73.865238706777987, 40.719976710027446 ], [ -73.85992523558788, 40.714749736033646 ], [ -73.859629209701808, 40.713975295194537 ], [ -73.859776180519688, 40.711226356945232 ], [ -73.859141491551455, 40.706874064141147 ], [ -73.858833712667888, 40.706238897115306 ], [ -73.858232798457479, 40.705591689884926 ], [ -73.855597710146185, 40.703726225652169 ], [ -73.855394235022985, 40.703348637534212 ], [ -73.855295715092595, 40.701991009610488 ], [ -73.857166882525092, 40.701674104892042 ], [ -73.857253514786606, 40.701212177233693 ], [ -73.858932243991106, 40.701320344758884 ], [ -73.858198906347013, 40.702911073862325 ], [ -73.859224121070923, 40.702532945915884 ], [ -73.860130733537147, 40.702422189787669 ], [ -73.862792958108031, 40.702787292454957 ], [ -73.864489836411764, 40.702798334608907 ], [ -73.866855445455272, 40.702213736301431 ], [ -73.867695993750615, 40.701660727142944 ], [ -73.868185026987803, 40.701093055724549 ], [ -73.868867307405594, 40.699023015297335 ], [ -73.869150517428054, 40.698583517911167 ], [ -73.869903301636398, 40.697976624361125 ], [ -73.870573931660374, 40.697688900665028 ], [ -73.868917043081368, 40.695150423196331 ], [ -73.874020533067977, 40.694191294715573 ], [ -73.879506412208997, 40.691146768843161 ], [ -73.883776986493643, 40.687863410682333 ], [ -73.884522509574225, 40.686684749095555 ], [ -73.888083418425452, 40.685293632171053 ], [ -73.88962787578852, 40.684236453750309 ], [ -73.890154187389186, 40.685003989805089 ], [ -73.892523168982663, 40.683424532804615 ], [ -73.894174632671792, 40.68528324817057 ], [ -73.895779455030052, 40.683497183358057 ], [ -73.896466251289269, 40.682336422475885 ], [ -73.90116154994368, 40.68787793535499 ], [ -73.900424650470654, 40.688183898876233 ], [ -73.901804671539708, 40.690766298769027 ], [ -73.901232906600811, 40.691442278638164 ], [ -73.905795970753104, 40.694127155011522 ], [ -73.904260184116879, 40.695700371443174 ], [ -73.911808200384499, 40.699938002621316 ], [ -73.910678826713834, 40.701045969063564 ], [ -73.912904041219576, 40.702361891296647 ], [ -73.91180710003394, 40.703434952026086 ], [ -73.921891846986938, 40.709396096710805 ], [ -73.920745196554748, 40.710529686490297 ], [ -73.921546016956825, 40.711043283534813 ], [ -73.921686635675101, 40.711894317397928 ], [ -73.922232946648109, 40.712854424853191 ], [ -73.924040113340226, 40.714008312628891 ], [ -73.924059097370503, 40.714111559644898 ], [ -73.923683521525248, 40.714082841408185 ], [ -73.924122415754965, 40.715138048445155 ], [ -73.92352547251086, 40.715616608367824 ], [ -73.922329701677015, 40.716076545172392 ], [ -73.920642588745466, 40.715773192028337 ], [ -73.92056905602162, 40.716003708341063 ], [ -73.922237611903924, 40.71638244049452 ], [ -73.922794147453942, 40.717534576143962 ], [ -73.923466026541632, 40.71813033432224 ], [ -73.923938673293534, 40.719042756786983 ], [ -73.923835754717061, 40.720148164078587 ], [ -73.924227162475731, 40.720887344591866 ], [ -73.924243649210055, 40.721429498758546 ], [ -73.925152072720437, 40.722335338815647 ], [ -73.92452702584292, 40.723540911975078 ], [ -73.92433693392303, 40.723603840273817 ], [ -73.922143309612849, 40.72370755701872 ], [ -73.920733560941329, 40.723309812770459 ], [ -73.920370642357895, 40.723681112815882 ], [ -73.920520297691283, 40.72297935048126 ], [ -73.920067122394769, 40.722743048951862 ], [ -73.916554680126907, 40.722005506982967 ], [ -73.912571877438509, 40.723239634949856 ], [ -73.905180579197705, 40.728956576973715 ], [ -73.900628932814598, 40.734463286243781 ], [ -73.899632579618668, 40.735002358303582 ], [ -73.898308127427455, 40.735194184440978 ], [ -73.895101334704705, 40.735021183089998 ], [ -73.892784056659934, 40.734495962751495 ], [ -73.889103189824539, 40.734592396462403 ], [ -73.88770199270428, 40.734291322758573 ] ] ] } }
-,
-{ "type": "Feature", "id": 100, "properties": { "communityDistrict": 412, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.801682665533647, 40.66632235257088 ], [ -73.801250796429386, 40.668385945324694 ], [ -73.80113236214261, 40.670548667618164 ], [ -73.80119461549117, 40.672422464604402 ], [ -73.801681947598723, 40.674383848457268 ], [ -73.807336218687112, 40.686125446991142 ], [ -73.814923432672259, 40.69942244007531 ], [ -73.817097387564516, 40.704029801587659 ], [ -73.814439318654323, 40.70440215056346 ], [ -73.795616689618569, 40.70975307917503 ], [ -73.789012095879585, 40.712072709100696 ], [ -73.788688403626438, 40.712330032624834 ], [ -73.788472460251171, 40.712218530483391 ], [ -73.788434811837149, 40.711984687608989 ], [ -73.787846784799811, 40.711810833167561 ], [ -73.786575285614788, 40.711972493275468 ], [ -73.773571351684041, 40.71512009536869 ], [ -73.767332280868814, 40.717289796810576 ], [ -73.764469517897751, 40.718890392377823 ], [ -73.759441429410103, 40.721063443753103 ], [ -73.753708345570089, 40.713324636235697 ], [ -73.751212469699198, 40.70730658007804 ], [ -73.744846105650581, 40.693139056115278 ], [ -73.748569930944782, 40.687803738207059 ], [ -73.750089911311093, 40.685923446358679 ], [ -73.752258286195811, 40.681491410970018 ], [ -73.755234578055294, 40.677288409747391 ], [ -73.755817710871824, 40.675752742227324 ], [ -73.756362391936634, 40.672429237108844 ], [ -73.756437342919526, 40.669666378742065 ], [ -73.756995333616061, 40.667741268061768 ], [ -73.757956436648485, 40.665955403396751 ], [ -73.770174819819616, 40.667315464264462 ], [ -73.77445107675409, 40.667471577021139 ], [ -73.780316672390697, 40.667176372328825 ], [ -73.78948089661391, 40.666367651621606 ], [ -73.793059808035736, 40.666193204080379 ], [ -73.801682665533647, 40.66632235257088 ] ] ] } }
-,
-{ "type": "Feature", "id": 101, "properties": { "communityDistrict": 305, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.868424897789154, 40.694718119012549 ], [ -73.868684543705783, 40.6940346919056 ], [ -73.867460888910415, 40.688415017596441 ], [ -73.866598483492695, 40.68526955906988 ], [ -73.866026668716259, 40.681918051772897 ], [ -73.864100966791327, 40.682372850292609 ], [ -73.863286408446143, 40.67907719656106 ], [ -73.862345805351268, 40.679164785644275 ], [ -73.860389379181342, 40.671268775444425 ], [ -73.857633231743705, 40.671656194038832 ], [ -73.855684612211434, 40.663867492372923 ], [ -73.858429508573025, 40.663453360931832 ], [ -73.857615372515767, 40.6601189331546 ], [ -73.860359782060087, 40.659645829012177 ], [ -73.863170833405064, 40.658276512446257 ], [ -73.86269778299534, 40.657618309012356 ], [ -73.863002022012893, 40.657488116627256 ], [ -73.863276230686068, 40.656941215328139 ], [ -73.86300171715267, 40.656653757370201 ], [ -73.862999209617413, 40.656357333815244 ], [ -73.863201989732573, 40.656359553934081 ], [ -73.863051322802988, 40.65610609837676 ], [ -73.862641173431655, 40.655667537007659 ], [ -73.861733555475908, 40.65529522177399 ], [ -73.86098917353911, 40.655209767105148 ], [ -73.86052767845527, 40.654705962076605 ], [ -73.870185652936257, 40.649323181866038 ], [ -73.872184733324943, 40.647945070028953 ], [ -73.873465582586235, 40.646816632969191 ], [ -73.879216581649061, 40.654591083772281 ], [ -73.8796386550232, 40.654499091804226 ], [ -73.879719790343032, 40.654375929776307 ], [ -73.876761939563124, 40.650560954495113 ], [ -73.876721924918982, 40.650323221967831 ], [ -73.873901277361, 40.646368367861236 ], [ -73.875963090713597, 40.643644484254786 ], [ -73.877973413343511, 40.63980711772134 ], [ -73.878684931736686, 40.640538552066083 ], [ -73.878647053832296, 40.641065856068501 ], [ -73.881318570509691, 40.643871119271594 ], [ -73.884948358388002, 40.646802172920793 ], [ -73.891365435872459, 40.652364719446901 ], [ -73.893546770738467, 40.655202714083629 ], [ -73.897610132424404, 40.653453815618008 ], [ -73.898002558137307, 40.653801223955682 ], [ -73.899041803889048, 40.657371657570884 ], [ -73.898806984995034, 40.657406661805041 ], [ -73.899217608282456, 40.659111403689977 ], [ -73.903474223424965, 40.675506683277689 ], [ -73.903315996370367, 40.677869223399128 ], [ -73.903490500370751, 40.678898048534748 ], [ -73.904046398088894, 40.679220598019157 ], [ -73.90262262346468, 40.68066450291613 ], [ -73.900245377055157, 40.679422791011412 ], [ -73.898899282875462, 40.679560934398964 ], [ -73.897862999396963, 40.679875011118256 ], [ -73.897383813046474, 40.680168812622249 ], [ -73.896959138460176, 40.680699581824157 ], [ -73.896749659511244, 40.681492026062003 ], [ -73.896581586979721, 40.681574718432479 ], [ -73.896419090737822, 40.68247987574113 ], [ -73.895997273821322, 40.683196878777899 ], [ -73.894174632671792, 40.68528324817057 ], [ -73.892523168982663, 40.683424532804615 ], [ -73.890154187389186, 40.685003989805089 ], [ -73.88962787578852, 40.684236453750309 ], [ -73.888083418425452, 40.685293632171053 ], [ -73.884522509574225, 40.686684749095555 ], [ -73.883776986493643, 40.687863410682333 ], [ -73.879506412208997, 40.691146768843161 ], [ -73.874020533067977, 40.694191294715573 ], [ -73.868917043081368, 40.695150423196331 ], [ -73.868424897789154, 40.694718119012549 ] ] ] } }
-,
-{ "type": "Feature", "id": 102, "properties": { "communityDistrict": 402, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.898114063841007, 40.754221658567843 ], [ -73.898052843905987, 40.753802473148923 ], [ -73.897456323526626, 40.752736715644019 ], [ -73.897339428810128, 40.75141956802932 ], [ -73.891270179531759, 40.741428249292163 ], [ -73.88770199270428, 40.734291322758573 ], [ -73.889103189824539, 40.734592396462403 ], [ -73.892784056659934, 40.734495962751495 ], [ -73.894924217743636, 40.735007722183958 ], [ -73.898307996827228, 40.735194184325657 ], [ -73.899229447688981, 40.735111598774061 ], [ -73.900153434399726, 40.734796405449266 ], [ -73.900628980466351, 40.734463231838753 ], [ -73.905180579197705, 40.728956576973715 ], [ -73.907167052443782, 40.727388654289854 ], [ -73.912571877438509, 40.723239634949856 ], [ -73.916554680126907, 40.722005506982967 ], [ -73.920067122394769, 40.722743048951862 ], [ -73.920520297691283, 40.72297935048126 ], [ -73.920275383406747, 40.723660786038479 ], [ -73.922286202808905, 40.724181286434828 ], [ -73.924192179251506, 40.724275741190368 ], [ -73.924903161651812, 40.72450657567142 ], [ -73.926556639123973, 40.7256690652872 ], [ -73.92853805222326, 40.727882449936722 ], [ -73.92923485876166, 40.728260165761036 ], [ -73.931315093600659, 40.72872944648487 ], [ -73.934531763756894, 40.729104806534941 ], [ -73.936445639671263, 40.72967214559857 ], [ -73.938044785732316, 40.730509967846409 ], [ -73.93911054574815, 40.731379806525538 ], [ -73.939910498958085, 40.733276327859507 ], [ -73.940032009911022, 40.733245044305704 ], [ -73.940164948021547, 40.733486026666867 ], [ -73.940017680329362, 40.733540430685558 ], [ -73.940067093270372, 40.733762152980077 ], [ -73.940864985927035, 40.735070409091044 ], [ -73.941624726364736, 40.735841442338192 ], [ -73.943594804087098, 40.736717789773863 ], [ -73.945940960532909, 40.73750507655425 ], [ -73.944638601309208, 40.738138352039819 ], [ -73.942578858121962, 40.738816020268516 ], [ -73.942803842676611, 40.738861546456199 ], [ -73.942556128052914, 40.739020865746632 ], [ -73.941461734631673, 40.739248583627123 ], [ -73.940508888057252, 40.740113941753087 ], [ -73.940361592850479, 40.740335345658188 ], [ -73.940561449690819, 40.740418322934161 ], [ -73.939108740720599, 40.742617035176309 ], [ -73.938669917531954, 40.74253408202491 ], [ -73.938587869767858, 40.74293088268746 ], [ -73.940019229756658, 40.743208272210694 ], [ -73.940148585873033, 40.742832441460365 ], [ -73.939653015213779, 40.742731087095613 ], [ -73.941188166962505, 40.740290217289349 ], [ -73.941835049927604, 40.739692620211471 ], [ -73.942596668448786, 40.739395147802824 ], [ -73.942790456400715, 40.739193721204309 ], [ -73.942706089921117, 40.739115062978634 ], [ -73.943822722995534, 40.738871537883433 ], [ -73.945482365901157, 40.738207031293726 ], [ -73.947150871811743, 40.737900123344723 ], [ -73.951380715179155, 40.739336477295311 ], [ -73.95379878808717, 40.73981986527194 ], [ -73.957414707659993, 40.739556582011524 ], [ -73.960067579018414, 40.738483749623711 ], [ -73.960725803736779, 40.738080170179131 ], [ -73.962165056193115, 40.738272538258947 ], [ -73.962131461129545, 40.738451070650711 ], [ -73.962608198169079, 40.738795539056753 ], [ -73.962430790713668, 40.739671480082919 ], [ -73.962209165578557, 40.740006175498273 ], [ -73.961592047829782, 40.740003968231591 ], [ -73.961450139104187, 40.740337834680602 ], [ -73.961629825638397, 40.740458929457496 ], [ -73.961293399232574, 40.740432799367952 ], [ -73.961265813022507, 40.740537471108489 ], [ -73.961850098112521, 40.740724481630515 ], [ -73.96190930217675, 40.740867833243847 ], [ -73.961803974890955, 40.741097673472176 ], [ -73.961218628520129, 40.741107860130128 ], [ -73.961077085397619, 40.741697324617817 ], [ -73.96136466826195, 40.741835179027582 ], [ -73.961108145675396, 40.741828024902929 ], [ -73.961552531689563, 40.741993261407146 ], [ -73.961190297890226, 40.74264485525967 ], [ -73.960971684515584, 40.742754054263898 ], [ -73.960519514036164, 40.743495778485887 ], [ -73.959784685522763, 40.743497716583946 ], [ -73.959751238509881, 40.743902276657813 ], [ -73.96064863700721, 40.744130317614029 ], [ -73.959632250239608, 40.743934631914101 ], [ -73.959391066095492, 40.744283324743819 ], [ -73.960126009623863, 40.744443936991445 ], [ -73.959233690117657, 40.744310043026701 ], [ -73.958775370705609, 40.744555599863624 ], [ -73.95946329058691, 40.744654877347081 ], [ -73.958763725813213, 40.744592619164123 ], [ -73.9586409667628, 40.744948314954939 ], [ -73.959652297559813, 40.745216588173456 ], [ -73.958493893031203, 40.744987864916219 ], [ -73.958452522696817, 40.745119011319566 ], [ -73.959273970906651, 40.745328954936383 ], [ -73.959324202658692, 40.745543322753697 ], [ -73.959059356740283, 40.745753368346563 ], [ -73.958398615472362, 40.745719419445592 ], [ -73.95837927085158, 40.745953090093046 ], [ -73.958994272266125, 40.746064646435379 ], [ -73.95867072374395, 40.746643109693849 ], [ -73.956794532905093, 40.74883951695557 ], [ -73.954853942680359, 40.748040794640943 ], [ -73.954651782206113, 40.748232644095424 ], [ -73.954320068357006, 40.748103917082133 ], [ -73.954705613077763, 40.748013620452667 ], [ -73.953183824928573, 40.747734811960925 ], [ -73.953053755713995, 40.74808748722927 ], [ -73.954783878698066, 40.74842768777318 ], [ -73.956485687946696, 40.749111690155708 ], [ -73.955760392070232, 40.74959665953044 ], [ -73.95619953007305, 40.749670714925344 ], [ -73.956120664113612, 40.749759885369613 ], [ -73.955464370024913, 40.749674213082869 ], [ -73.955349285144464, 40.750013856903919 ], [ -73.955132391524785, 40.749926424332287 ], [ -73.955202750408731, 40.749676537409442 ], [ -73.955066525601694, 40.749632730375396 ], [ -73.954515845733866, 40.75058669897674 ], [ -73.954650004131182, 40.750831040959469 ], [ -73.953993534605246, 40.751786195016166 ], [ -73.952971520222661, 40.752746501426415 ], [ -73.950807638183491, 40.755263680114297 ], [ -73.949112951995133, 40.754523619821526 ], [ -73.948767078346719, 40.754904275765433 ], [ -73.943835367463777, 40.752530123056758 ], [ -73.937443629422873, 40.749735692271038 ], [ -73.93739653782103, 40.748916440465884 ], [ -73.936834805464585, 40.748394551916306 ], [ -73.933939394171531, 40.750269645776555 ], [ -73.931526606555877, 40.751166158062539 ], [ -73.924633695362473, 40.751643345661869 ], [ -73.922550430677518, 40.751576479635112 ], [ -73.921612080252757, 40.751371552124191 ], [ -73.92101480198528, 40.750972609970056 ], [ -73.920539001504366, 40.749750828355175 ], [ -73.91525600931422, 40.750845626448282 ], [ -73.91314339244947, 40.750967052175753 ], [ -73.90984318646106, 40.751638679830499 ], [ -73.910354929924694, 40.752749908536124 ], [ -73.910674748970507, 40.752995076827389 ], [ -73.898114063841007, 40.754221658567843 ] ] ] } }
-,
-{ "type": "Feature", "id": 103, "properties": { "communityDistrict": 316, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/316" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.904046398088894, 40.679220598019157 ], [ -73.903490500370751, 40.678898048534748 ], [ -73.903315996370367, 40.677869223399128 ], [ -73.903474223424965, 40.675506683277689 ], [ -73.899217608282456, 40.659111403689977 ], [ -73.899565589760869, 40.658956575610681 ], [ -73.899637864081498, 40.657981441794959 ], [ -73.900117158572513, 40.656754643748044 ], [ -73.901045459677817, 40.655570598609394 ], [ -73.907552095075175, 40.651185925730168 ], [ -73.910709746433369, 40.654178733806091 ], [ -73.910934871825631, 40.654173279907809 ], [ -73.924390993847524, 40.666381423277812 ], [ -73.922752572204345, 40.667097332962072 ], [ -73.921823610157915, 40.676938358472917 ], [ -73.916464860322691, 40.676647040549057 ], [ -73.916301198615528, 40.678577111931439 ], [ -73.918046068924596, 40.687213247770437 ], [ -73.904046398088894, 40.679220598019157 ] ] ] } }
-,
-{ "type": "Feature", "id": 104, "properties": { "communityDistrict": 104, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/104" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.993935876811207, 40.773179512586104 ], [ -73.984763692632328, 40.769226401206481 ], [ -73.984314913071373, 40.769848183213369 ], [ -73.98209271243384, 40.768892298929721 ], [ -73.982043416681321, 40.768408210312678 ], [ -73.981631495061436, 40.768367928152948 ], [ -73.981432823028214, 40.768083021330717 ], [ -73.981710079509341, 40.767745115759418 ], [ -73.982110615330981, 40.767744476546319 ], [ -73.997099029203909, 40.747205102042237 ], [ -73.991418585606979, 40.7448026824962 ], [ -73.996839939264902, 40.737360889398197 ], [ -74.008699022963597, 40.742361723963327 ], [ -74.009166082830475, 40.742416591463353 ], [ -74.009091568461869, 40.742886148569781 ], [ -74.009620153489053, 40.742951247887142 ], [ -74.009568434117654, 40.74325778472636 ], [ -74.012148131835929, 40.743559301547521 ], [ -74.012020850063976, 40.743939770208804 ], [ -74.009512017673671, 40.743676093760243 ], [ -74.009438008708571, 40.743971254970468 ], [ -74.008900329628403, 40.743917927096 ], [ -74.008729864255002, 40.744881537829585 ], [ -74.009612279244124, 40.744997903150519 ], [ -74.009558329297491, 40.74528882529868 ], [ -74.009916607473741, 40.745327255007105 ], [ -74.009998226017132, 40.744955059302079 ], [ -74.009872110854801, 40.74491650212574 ], [ -74.010167905353924, 40.744942329709552 ], [ -74.010038483846117, 40.744963458078132 ], [ -74.009973950219205, 40.745323135109189 ], [ -74.010469200779482, 40.745386766028894 ], [ -74.010550447558813, 40.745013056704842 ], [ -74.010419372093793, 40.744976823668445 ], [ -74.010764197146116, 40.745005032020835 ], [ -74.010585792009309, 40.745020446561554 ], [ -74.010531065377037, 40.745382050389438 ], [ -74.011103598048834, 40.745447670243927 ], [ -74.01117183119824, 40.745078258283336 ], [ -74.011044591508309, 40.745046212401995 ], [ -74.011387700402622, 40.745073112682519 ], [ -74.011230380572215, 40.745075830160083 ], [ -74.011154191769094, 40.745446378083912 ], [ -74.011739586188966, 40.745519918190105 ], [ -74.011795277118154, 40.745154666984909 ], [ -74.011670675837877, 40.74511397683721 ], [ -74.011836428724152, 40.74512596367871 ], [ -74.011782757620097, 40.745601572255453 ], [ -74.011678855055976, 40.745979461815928 ], [ -74.009463898559702, 40.745750143659414 ], [ -74.009365504957756, 40.746337200862044 ], [ -74.011585283619439, 40.746609050951491 ], [ -74.01147606347044, 40.746996685639502 ], [ -74.009243145925922, 40.746762790753749 ], [ -74.009137362599262, 40.747359762802986 ], [ -74.011406739355095, 40.74763054956545 ], [ -74.011303529937507, 40.748014571908875 ], [ -74.009058479674266, 40.747785645332762 ], [ -74.008946065684071, 40.748411893168637 ], [ -74.011215618134159, 40.748677992243529 ], [ -74.01110891182978, 40.749049875416993 ], [ -74.00994818004115, 40.748931988005609 ], [ -74.009560049786785, 40.749935041791517 ], [ -74.010751186035122, 40.750293977204834 ], [ -74.010756579678429, 40.750410852957543 ], [ -74.009253409840099, 40.749985206224437 ], [ -74.008532569250221, 40.751883609304294 ], [ -74.00914082120002, 40.752097594099027 ], [ -74.008651159368029, 40.751939512113026 ], [ -74.009057740096623, 40.752214351243175 ], [ -74.00858095826554, 40.752043882411535 ], [ -74.009327952062293, 40.752373503046122 ], [ -74.008478955727995, 40.752018571919869 ], [ -74.008426364472243, 40.752157850239243 ], [ -74.009990558197501, 40.752816187149072 ], [ -74.009970587970216, 40.752933564153139 ], [ -74.008792100908465, 40.7523521383795 ], [ -74.008687922195719, 40.752493998628374 ], [ -74.00835352838844, 40.75235073934229 ], [ -74.007620132963154, 40.754281475520109 ], [ -74.007744786056406, 40.754336542719372 ], [ -74.007596643258481, 40.754530449686065 ], [ -74.00747193016376, 40.754476814511662 ], [ -74.007284999443229, 40.754735568203138 ], [ -74.007413621029968, 40.754789302669359 ], [ -74.007271811747671, 40.754985594535206 ], [ -74.007144683609724, 40.754932481173412 ], [ -74.005418859071028, 40.757323140851717 ], [ -74.005211877057732, 40.757231998539879 ], [ -74.004803925601834, 40.757809843164686 ], [ -74.005278948639855, 40.75802855492821 ], [ -74.005031051366402, 40.758357016473099 ], [ -74.007003588379192, 40.759231870341097 ], [ -74.006506876401829, 40.759892032317168 ], [ -74.004504830939126, 40.759084996552687 ], [ -74.004206291253894, 40.759501707688372 ], [ -74.003907420988639, 40.759375692183475 ], [ -74.00380657835008, 40.75951073146598 ], [ -74.004246971941569, 40.759699214171356 ], [ -74.004148638146887, 40.759835914170758 ], [ -74.004318894911719, 40.759910685763387 ], [ -74.00366891453541, 40.759705969576551 ], [ -74.003572510400758, 40.759846558973116 ], [ -74.003928548674665, 40.760003019720429 ], [ -74.003133389913998, 40.76107834509628 ], [ -74.002786916187091, 40.760928969703293 ], [ -74.00233528130056, 40.761543727001602 ], [ -74.004556415609215, 40.762524265025036 ], [ -74.004399762035192, 40.762671359098782 ], [ -74.002200820732696, 40.761728432226455 ], [ -74.001533090669824, 40.762644598127579 ], [ -74.003757349715968, 40.763582241640563 ], [ -74.003612147941752, 40.763777043909698 ], [ -74.001386036986005, 40.762850095001873 ], [ -74.000973080220163, 40.76342027172565 ], [ -74.003149769889902, 40.764332888184619 ], [ -74.002948095157194, 40.764616835428725 ], [ -74.003222755853614, 40.764638037670203 ], [ -74.003146529659844, 40.764736281371995 ], [ -73.999927123677296, 40.763406528479315 ], [ -73.999622634581868, 40.763559081210445 ], [ -73.999150981540069, 40.764205259582688 ], [ -74.002288023714783, 40.76556154329262 ], [ -74.002024543964367, 40.765893266570359 ], [ -73.998884731749882, 40.764569377048488 ], [ -73.998576385305384, 40.764998607270762 ], [ -73.9986887069456, 40.765208570449829 ], [ -73.998270903744498, 40.765552233413246 ], [ -74.001573353852663, 40.766977192210675 ], [ -74.001314696360026, 40.767251120049906 ], [ -73.998066759053543, 40.765871881135688 ], [ -73.997378084479678, 40.76682338537438 ], [ -74.000649505304182, 40.768245236105543 ], [ -74.000385864229713, 40.76850419542928 ], [ -73.997155889492106, 40.767128696172776 ], [ -73.99645715471145, 40.768098815795639 ], [ -73.999735902478534, 40.769506177331515 ], [ -73.999472537340225, 40.769764214969129 ], [ -73.997071761054144, 40.768732643576854 ], [ -73.99715035543251, 40.768847387713393 ], [ -73.996571265056801, 40.769424568273827 ], [ -73.999026828329036, 40.770463272982049 ], [ -73.99876206914314, 40.770825056709192 ], [ -73.996313270881913, 40.769798836336427 ], [ -73.995880043516877, 40.770400579012232 ], [ -73.996016931961975, 40.770454848886168 ], [ -73.995900774911391, 40.770613123500951 ], [ -73.995767332836209, 40.77055459545128 ], [ -73.995424744363035, 40.771031615167942 ], [ -73.996001757490504, 40.77130746533053 ], [ -73.995899901670441, 40.77145029858211 ], [ -73.995305663653568, 40.771196004909498 ], [ -73.994925821206365, 40.771516042405473 ], [ -73.994976885608367, 40.771658774923331 ], [ -73.997112185386072, 40.772553236699508 ], [ -73.996909469027869, 40.772832945659943 ], [ -73.994774079308215, 40.771929547530185 ], [ -73.994445013594913, 40.772377126588331 ], [ -73.996448946676338, 40.77305684199672 ], [ -73.99614329133081, 40.773247541563457 ], [ -73.996685444311666, 40.77350368804624 ], [ -73.994163284563086, 40.772487190518689 ], [ -73.993831082030908, 40.772931787850638 ], [ -73.994136652588608, 40.772901870174245 ], [ -73.994376552750978, 40.773039551101355 ], [ -73.994294029823806, 40.773156243991799 ], [ -73.99502327652182, 40.773481196576192 ], [ -73.995050285360264, 40.773297153189866 ], [ -73.996240651898802, 40.773789791397654 ], [ -73.99606316808179, 40.773886886610057 ], [ -73.996179459973774, 40.773986954351493 ], [ -73.996095245226186, 40.774086186940181 ], [ -73.993935876811207, 40.773179512586104 ] ] ] } }
-,
-{ "type": "Feature", "id": 105, "properties": { "communityDistrict": 105, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/105" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.973014871761208, 40.764278879445193 ], [ -73.968186878036107, 40.762226821325882 ], [ -73.976985707283106, 40.7501569597583 ], [ -73.980220899700072, 40.751521979626759 ], [ -73.980673452491104, 40.750905101457384 ], [ -73.982956909551802, 40.747764353690854 ], [ -73.979723464370466, 40.74640287633833 ], [ -73.985232246112872, 40.738840230794956 ], [ -73.986471949786832, 40.739362820927028 ], [ -73.986649696771138, 40.73910091152284 ], [ -73.987035927871261, 40.739266378549431 ], [ -73.98730154868953, 40.738903026036418 ], [ -73.986853452032989, 40.738714752172037 ], [ -73.987288637460722, 40.73813078597442 ], [ -73.987101005187782, 40.738053501438763 ], [ -73.98752047473161, 40.737462697305688 ], [ -73.986535000019614, 40.737050010973675 ], [ -73.988779316840834, 40.733965399235885 ], [ -73.996839939264902, 40.737360889398197 ], [ -73.991418585606979, 40.7448026824962 ], [ -73.997099029203909, 40.747205102042237 ], [ -73.982110615330981, 40.767744476546319 ], [ -73.981791746128081, 40.767713756832023 ], [ -73.981512762813324, 40.767890167529167 ], [ -73.973014871761208, 40.764278879445193 ] ] ] } }
-,
-{ "type": "Feature", "id": 106, "properties": { "communityDistrict": 212, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.793855272090696, 40.883643311333458 ], [ -73.794165557614448, 40.882993216348616 ], [ -73.805505767435776, 40.886092949181226 ], [ -73.807641395017228, 40.885953252900471 ], [ -73.811406452266354, 40.88663558731109 ], [ -73.814427621260975, 40.886771964675148 ], [ -73.816707785914204, 40.886480950542548 ], [ -73.823997350874336, 40.884542136931238 ], [ -73.826513452040672, 40.88358666577458 ], [ -73.830071706276016, 40.881747101681533 ], [ -73.831378261993521, 40.880797607787855 ], [ -73.832656381580705, 40.879598674687841 ], [ -73.833482313011515, 40.878627801564114 ], [ -73.834046665239029, 40.877579113262613 ], [ -73.834491419494981, 40.876066407299554 ], [ -73.83446892238014, 40.873409139489084 ], [ -73.83394979344439, 40.871329433577039 ], [ -73.83268524802601, 40.868550693047354 ], [ -73.830714236956254, 40.864810602435178 ], [ -73.828122989443273, 40.861182113388551 ], [ -73.828343474975767, 40.860892026675806 ], [ -73.829508926921164, 40.861841213446603 ], [ -73.830893296615912, 40.862212849091911 ], [ -73.835784366576917, 40.865016011497033 ], [ -73.847926140692365, 40.871342233077883 ], [ -73.8536363872702, 40.873300599208925 ], [ -73.855549091608694, 40.871813167563765 ], [ -73.85745013526693, 40.869532520523478 ], [ -73.870537385861923, 40.869674031412217 ], [ -73.870561925246619, 40.871510778453704 ], [ -73.875188028222823, 40.871576828949657 ], [ -73.872552509003341, 40.875175183325894 ], [ -73.87160577396476, 40.876921927761565 ], [ -73.87024100052578, 40.880229352906312 ], [ -73.870840770138798, 40.88043889400528 ], [ -73.874945897555889, 40.879947668792724 ], [ -73.874792407319035, 40.880075128890361 ], [ -73.874676015084802, 40.881562851686247 ], [ -73.878125944269257, 40.882153826231246 ], [ -73.877728176615122, 40.883454195084482 ], [ -73.87760676546273, 40.884523043619716 ], [ -73.877870681121365, 40.887254058345292 ], [ -73.879189418923602, 40.890307031497287 ], [ -73.88026939926651, 40.892281498910712 ], [ -73.880397478720596, 40.893313814019997 ], [ -73.880042130590851, 40.895222284586509 ], [ -73.87711974105801, 40.895468663643506 ], [ -73.876437430650199, 40.896870593459653 ], [ -73.875894654551544, 40.897559458644736 ], [ -73.874820415511664, 40.898445438024375 ], [ -73.870103695755844, 40.900741946981086 ], [ -73.868202703053413, 40.902355382773607 ], [ -73.867890437136481, 40.902986954152283 ], [ -73.859467787670013, 40.900517209267683 ], [ -73.859076922748088, 40.901007993099839 ], [ -73.859419840913219, 40.901393125012483 ], [ -73.859376964588165, 40.901565218163491 ], [ -73.859027040859871, 40.901444909752669 ], [ -73.858864013163526, 40.901711695049556 ], [ -73.859463898918833, 40.901933877632771 ], [ -73.859578830144969, 40.90244084277218 ], [ -73.859264324755372, 40.902669480398288 ], [ -73.858728247672204, 40.902288970569387 ], [ -73.858160000048557, 40.902305710202718 ], [ -73.858164602995657, 40.902595860558918 ], [ -73.857969322621273, 40.90285090768684 ], [ -73.857559676576471, 40.902917795958587 ], [ -73.857110905462122, 40.903649532696754 ], [ -73.857171762363151, 40.904082065435446 ], [ -73.856991574128813, 40.904584210069125 ], [ -73.857434576181348, 40.904841544202981 ], [ -73.857177660759646, 40.905286541661447 ], [ -73.856654368890133, 40.905055000280562 ], [ -73.856010233230279, 40.905305983626057 ], [ -73.856011608393445, 40.905482083440681 ], [ -73.856502516281253, 40.905563848794927 ], [ -73.856923981800776, 40.905974170111023 ], [ -73.856810136385363, 40.906155828325986 ], [ -73.855804637959451, 40.906264364126521 ], [ -73.85552697672837, 40.906380251458295 ], [ -73.855137921493281, 40.906866889141824 ], [ -73.854237766868806, 40.907032868254362 ], [ -73.853741035645172, 40.907787916734712 ], [ -73.853833609995888, 40.90797434981959 ], [ -73.854710782734159, 40.908006309942124 ], [ -73.854911096737425, 40.908354869331617 ], [ -73.85458940455753, 40.908939499296636 ], [ -73.85360061654039, 40.909606741449934 ], [ -73.852956184876774, 40.910353044180056 ], [ -73.85258474750411, 40.910310617064077 ], [ -73.852660358257452, 40.910015194162462 ], [ -73.852274516827322, 40.909854099644015 ], [ -73.85149242502591, 40.910271640499644 ], [ -73.851447539028044, 40.910449671201924 ], [ -73.851071161838306, 40.910371520221922 ], [ -73.853475223999467, 40.907530293024102 ], [ -73.85092059296592, 40.906616494488688 ], [ -73.850173175520965, 40.907507865651361 ], [ -73.847080329143736, 40.906156732530313 ], [ -73.844818869187719, 40.905529949673763 ], [ -73.844892649754939, 40.904190866797059 ], [ -73.841386893046604, 40.904172741533955 ], [ -73.840679663904254, 40.901517031463889 ], [ -73.839194866047421, 40.899350692443392 ], [ -73.839209400579335, 40.898810677100073 ], [ -73.839664332118375, 40.897885515105678 ], [ -73.83964812812998, 40.897330535340636 ], [ -73.838391991897439, 40.894067008048992 ], [ -73.838042772198293, 40.894142330884272 ], [ -73.835257905700189, 40.893391644055725 ], [ -73.822677087139155, 40.889619469070304 ], [ -73.822486204131948, 40.890098054404312 ], [ -73.823264898792289, 40.88998702106101 ], [ -73.823366013412908, 40.891075135707418 ], [ -73.822853350726902, 40.891206829096198 ], [ -73.818277381002787, 40.889847130528402 ], [ -73.793855272090696, 40.883643311333458 ] ] ] } }
-,
-{ "type": "Feature", "id": 107, "properties": { "communityDistrict": 306, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/306" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.001743621110407, 40.692406749705455 ], [ -74.001105193250609, 40.692056595339189 ], [ -73.992363670432468, 40.68969012377697 ], [ -73.993929296158825, 40.68645287164901 ], [ -73.989128407289869, 40.684589453073421 ], [ -73.988711560327573, 40.685224618479538 ], [ -73.986563034256491, 40.684388756141708 ], [ -73.986995200094256, 40.683765010822732 ], [ -73.984796946915068, 40.682908865516787 ], [ -73.984374107978155, 40.683542455374401 ], [ -73.982422837554779, 40.682782995732666 ], [ -73.982854360751816, 40.682148963461714 ], [ -73.980461554436758, 40.6812225467568 ], [ -73.978760224629411, 40.683765443980533 ], [ -73.976568723558799, 40.682827059545659 ], [ -73.973951353597755, 40.682280730693151 ], [ -73.974391442014991, 40.681046170246681 ], [ -73.973977575889506, 40.680983275465891 ], [ -73.974104486558176, 40.680649672443714 ], [ -73.975143167228509, 40.680871905306589 ], [ -73.97104919104342, 40.675237112802613 ], [ -73.971412332992642, 40.674600579521702 ], [ -73.971439194751909, 40.673704506970445 ], [ -73.970913919008396, 40.672792586686548 ], [ -73.970412894844742, 40.672593723023965 ], [ -73.971815946547849, 40.670629475305191 ], [ -73.979653534103278, 40.661243233730893 ], [ -73.980171611037022, 40.661154658980422 ], [ -73.99696465059327, 40.669234549028936 ], [ -73.998618879700672, 40.671830172564718 ], [ -73.999311010989203, 40.670772639046668 ], [ -74.000303378748882, 40.668716892497045 ], [ -74.001056641131854, 40.668945681717233 ], [ -74.001415271031604, 40.668359414346988 ], [ -74.002215068165441, 40.668578637441186 ], [ -74.002894838769492, 40.667348465949374 ], [ -74.003190752748409, 40.667263199814862 ], [ -74.003694620005277, 40.667427611208367 ], [ -74.003630263515362, 40.667567523356482 ], [ -74.005102273462668, 40.667975647728184 ], [ -74.005863661806842, 40.667993762585667 ], [ -74.006869481278841, 40.666023782718518 ], [ -74.006967990010324, 40.666099546141687 ], [ -74.00475388758332, 40.670721358944974 ], [ -74.005439265293532, 40.670921468238433 ], [ -74.007548216183878, 40.667051745733538 ], [ -74.007796533496233, 40.667159770777189 ], [ -74.007087242218063, 40.668591358535764 ], [ -74.009854119216314, 40.668523628335322 ], [ -74.011540175433311, 40.665085919756642 ], [ -74.015748728826594, 40.664568336291616 ], [ -74.016902673610673, 40.664846602338862 ], [ -74.017887192153907, 40.665850466285242 ], [ -74.018576050108763, 40.670392413869941 ], [ -74.018763368786736, 40.671075874494385 ], [ -74.019339468717774, 40.671624948422611 ], [ -74.018882833633327, 40.671601666205405 ], [ -74.017510371526996, 40.671034530984024 ], [ -74.016687683688616, 40.665437066264275 ], [ -74.016486656204975, 40.664930508953702 ], [ -74.016025517760113, 40.664863048788078 ], [ -74.015936985345505, 40.66547079172144 ], [ -74.012279678727907, 40.665732414158839 ], [ -74.010876640289752, 40.668601615763514 ], [ -74.010356836673139, 40.668642835388482 ], [ -74.010338459479357, 40.669078195447995 ], [ -74.01091024340414, 40.669190492369474 ], [ -74.010873439781875, 40.669710115558388 ], [ -74.011542880315673, 40.669784342750305 ], [ -74.011625275213561, 40.670581028275834 ], [ -74.014249269978819, 40.669728604737017 ], [ -74.011753505756872, 40.670657756573085 ], [ -74.012078317324509, 40.670933614677843 ], [ -74.012619634167834, 40.67084190894041 ], [ -74.013551986714418, 40.671256934377091 ], [ -74.01393626690006, 40.671179076857939 ], [ -74.014274071917242, 40.671379299181872 ], [ -74.015080064710759, 40.670685673295466 ], [ -74.015199805700703, 40.670754027664309 ], [ -74.013872737632454, 40.671880761760427 ], [ -74.014232894527822, 40.672130000513008 ], [ -74.015596444895536, 40.670970477517301 ], [ -74.015686254975151, 40.671038834928808 ], [ -74.012975877921903, 40.673327918720936 ], [ -74.013363782181429, 40.673591536934367 ], [ -74.015119186639609, 40.672156995969104 ], [ -74.016320999223069, 40.672908269563692 ], [ -74.014579467209543, 40.67441401707157 ], [ -74.014963921845748, 40.674677630294198 ], [ -74.018168392807866, 40.671939240601077 ], [ -74.018800947109099, 40.672250764848798 ], [ -74.01727138470126, 40.673608645805515 ], [ -74.017752471623766, 40.674047722892354 ], [ -74.018010773205404, 40.673913181052349 ], [ -74.017801872032038, 40.674095441412369 ], [ -74.018176182746572, 40.674464177036675 ], [ -74.017834475726886, 40.675258223014254 ], [ -74.018298026553353, 40.67545917918136 ], [ -74.018412357557324, 40.675365449934219 ], [ -74.018182106328823, 40.675291431407601 ], [ -74.018392908960237, 40.675107724147793 ], [ -74.018518871965611, 40.67527388964001 ], [ -74.018881013509343, 40.675092480930836 ], [ -74.018408694548626, 40.675524021071467 ], [ -74.018503326423755, 40.675841558730809 ], [ -74.018018008056131, 40.675889522763249 ], [ -74.017911982261822, 40.676510462801936 ], [ -74.019769256792472, 40.676613224917141 ], [ -74.019951978646773, 40.677103010449976 ], [ -74.019082573863301, 40.677139564047515 ], [ -74.01917743946899, 40.677826949006963 ], [ -74.018430407276057, 40.677908320859586 ], [ -74.018411031831619, 40.678407121278411 ], [ -74.019663126515027, 40.678388201270572 ], [ -74.018252670705778, 40.67855288672579 ], [ -74.01857882788785, 40.67898307947236 ], [ -74.01954011580527, 40.678968206456098 ], [ -74.019281281020298, 40.679648140595354 ], [ -74.017725325724371, 40.68066190267357 ], [ -74.017469289031325, 40.680614731700793 ], [ -74.015200822791442, 40.681979419930641 ], [ -74.015320598647591, 40.682110728780522 ], [ -74.012820003988665, 40.683622416497258 ], [ -74.012134816887894, 40.682905928025086 ], [ -74.014105497139909, 40.681712519375374 ], [ -74.013608632702827, 40.68122194672813 ], [ -74.013873987779803, 40.68100981281632 ], [ -74.013018354881211, 40.680412374014217 ], [ -74.009671085588835, 40.68326872771501 ], [ -74.010773123393804, 40.68435861554088 ], [ -74.011782722012086, 40.683759995499258 ], [ -74.012175966146444, 40.684095186131053 ], [ -74.008354465321744, 40.686400200250681 ], [ -74.008164145278869, 40.686174717161506 ], [ -74.007019886826527, 40.686526417194059 ], [ -74.00588224183231, 40.68619576889359 ], [ -74.005629863303994, 40.686784206043605 ], [ -74.007832937666834, 40.687385055162693 ], [ -74.00742012154096, 40.688206290435893 ], [ -74.005003733150716, 40.687605984898255 ], [ -74.004592705217703, 40.688215222986578 ], [ -74.006784385058353, 40.688826879958214 ], [ -74.00636461225271, 40.689669669139555 ], [ -74.003820388537051, 40.688929644196733 ], [ -74.003409216245203, 40.689613261160098 ], [ -74.005759006703428, 40.690236400016168 ], [ -74.005342096249151, 40.691091602977842 ], [ -74.001963219268362, 40.690136379460725 ], [ -74.001853045246193, 40.690387986741811 ], [ -74.0009615685494, 40.690128768350064 ], [ -74.00069905775851, 40.690611858419054 ], [ -74.004794152945522, 40.691761620374393 ], [ -74.004409413260063, 40.692528800891857 ], [ -74.001969385921072, 40.691843208317465 ], [ -74.001743621110407, 40.692406749705455 ] ] ] } }
-,
-{ "type": "Feature", "id": 108, "properties": { "communityDistrict": 317, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.907552095075175, 40.651185925730168 ], [ -73.915930862438344, 40.645774695237954 ], [ -73.923326545213897, 40.639900215591638 ], [ -73.925591859705051, 40.638422574182655 ], [ -73.938014537373164, 40.63209046662783 ], [ -73.941131597420394, 40.631291638088712 ], [ -73.943573087771142, 40.630994155128782 ], [ -73.944550391147104, 40.631071787088281 ], [ -73.94551095521949, 40.630791482901316 ], [ -73.945867735272003, 40.634117548159495 ], [ -73.947773303283824, 40.633998156194416 ], [ -73.948264995908715, 40.638607190209093 ], [ -73.953600047193774, 40.638422347449996 ], [ -73.95404358590126, 40.638877549190198 ], [ -73.954730247044338, 40.644772578361398 ], [ -73.9556519617487, 40.64663041014429 ], [ -73.955825184397298, 40.650529808078822 ], [ -73.956300351227114, 40.655048281831135 ], [ -73.930903549322721, 40.656610355984142 ], [ -73.931602186067863, 40.663230444400178 ], [ -73.924390993847524, 40.666381423277812 ], [ -73.910934871825631, 40.654173279907809 ], [ -73.910709746433369, 40.654178733806091 ], [ -73.907552095075175, 40.651185925730168 ] ] ] } }
-,
-{ "type": "Feature", "id": 109, "properties": { "communityDistrict": 406, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.82606003226816, 40.715399348602219 ], [ -73.831238554001303, 40.714148221539155 ], [ -73.835900722077483, 40.711641370769733 ], [ -73.83611476516883, 40.711825146370728 ], [ -73.837708941993696, 40.711036484271276 ], [ -73.841339365430443, 40.709946234362214 ], [ -73.844537388463976, 40.708661054970904 ], [ -73.846657241116105, 40.708318642340849 ], [ -73.8493315614799, 40.708388333679913 ], [ -73.854732404775376, 40.706764142594842 ], [ -73.854739573446622, 40.705184850609015 ], [ -73.852520189884061, 40.702291723616682 ], [ -73.855292759047501, 40.70259550128506 ], [ -73.855597710146185, 40.703726225652169 ], [ -73.858232798457479, 40.705591689884926 ], [ -73.859081983691567, 40.706710790722916 ], [ -73.859776180519688, 40.711226356945232 ], [ -73.859629209701808, 40.713975295194537 ], [ -73.860037898757739, 40.714932235723943 ], [ -73.865238706777987, 40.719976710027446 ], [ -73.869292704890839, 40.724435929474879 ], [ -73.870845394241812, 40.727484593440543 ], [ -73.871460741835079, 40.729326374137671 ], [ -73.875091540895426, 40.730671363218896 ], [ -73.856285677109298, 40.736426042505471 ], [ -73.851303526722035, 40.737511727542568 ], [ -73.847508202780645, 40.739007807039158 ], [ -73.847213615878815, 40.738643986683861 ], [ -73.846748819699542, 40.738651789501517 ], [ -73.845910939477719, 40.738307055412641 ], [ -73.845470895005548, 40.737873221949435 ], [ -73.844675955828748, 40.735112344198463 ], [ -73.843715762791177, 40.733225729946035 ], [ -73.84284582578421, 40.732067642742273 ], [ -73.84055003848917, 40.729844729907995 ], [ -73.839200938937779, 40.728266863029113 ], [ -73.836557629259431, 40.723373963168477 ], [ -73.83412823313644, 40.720230532396293 ], [ -73.831853055232642, 40.717912143304176 ], [ -73.830429023525909, 40.716962770431863 ], [ -73.82695834371026, 40.715935281893671 ], [ -73.82606003226816, 40.715399348602219 ] ] ] } }
-,
-{ "type": "Feature", "id": 110, "properties": { "communityDistrict": 207, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/207" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.875188028222823, 40.871576828949657 ], [ -73.876192249125197, 40.870476710929672 ], [ -73.876943519588707, 40.869954681571386 ], [ -73.888014693883406, 40.86388894909858 ], [ -73.889272736550836, 40.862916399208004 ], [ -73.890674550969536, 40.861320040883491 ], [ -73.891771887992022, 40.861871716750073 ], [ -73.892851691553773, 40.861832192993191 ], [ -73.896939613042107, 40.862442856758733 ], [ -73.899436708404068, 40.862116912065531 ], [ -73.901079670177253, 40.862756383422955 ], [ -73.90390816669435, 40.858367585815898 ], [ -73.907773205133822, 40.859607537685449 ], [ -73.909567200764997, 40.85759162415976 ], [ -73.90980269932912, 40.857607548833386 ], [ -73.910308808511346, 40.858409326604963 ], [ -73.910721042564745, 40.85870623223358 ], [ -73.914036078877231, 40.85994195282678 ], [ -73.914674807120662, 40.859712405659558 ], [ -73.915762132109379, 40.860644637292928 ], [ -73.914809343254817, 40.861714189645724 ], [ -73.914818173391055, 40.861899088982398 ], [ -73.913414621936539, 40.863367493700679 ], [ -73.912762719954614, 40.86302917415756 ], [ -73.912272789769787, 40.863632148996672 ], [ -73.912797621951398, 40.863898875433328 ], [ -73.91252604516805, 40.863795223837748 ], [ -73.912676340203859, 40.864021111602405 ], [ -73.910442827503289, 40.866527868562336 ], [ -73.909496643123177, 40.868831156640354 ], [ -73.908937149298978, 40.871019840308804 ], [ -73.908649431113773, 40.871385783802737 ], [ -73.908932351753805, 40.872157347970081 ], [ -73.909511362618105, 40.87297738359792 ], [ -73.910654392496312, 40.873975943060529 ], [ -73.910269710887178, 40.874271814544123 ], [ -73.909689484029713, 40.874602273754043 ], [ -73.90855579588731, 40.873775444425469 ], [ -73.905714252962994, 40.873138322101234 ], [ -73.904677282084094, 40.872619878995792 ], [ -73.904440073250186, 40.87233032825165 ], [ -73.904488604897097, 40.870578548547648 ], [ -73.903749758939654, 40.869595627140072 ], [ -73.902358047802338, 40.868696120952848 ], [ -73.899965756483837, 40.868017301510321 ], [ -73.899338511723883, 40.869228028104736 ], [ -73.897789622704778, 40.870856643398511 ], [ -73.891406962661179, 40.878969446245762 ], [ -73.889975375540757, 40.880233131422152 ], [ -73.888364875387865, 40.882267541861218 ], [ -73.887069627837747, 40.882476896066123 ], [ -73.887165051991502, 40.882576510892207 ], [ -73.886970075228717, 40.882795642716843 ], [ -73.887231940098275, 40.883054978428362 ], [ -73.887051425361179, 40.88434957584596 ], [ -73.884216964431815, 40.883197728058455 ], [ -73.883683368565229, 40.883157615331406 ], [ -73.882748332946534, 40.883397386800993 ], [ -73.881244225415543, 40.882709633005554 ], [ -73.878149446345148, 40.886873807364744 ], [ -73.878000236497797, 40.88742445934291 ], [ -73.877838570010638, 40.887094521176337 ], [ -73.87760676546273, 40.884523043619716 ], [ -73.877728176615122, 40.883454195084482 ], [ -73.878125944269257, 40.882153826231246 ], [ -73.874676015084802, 40.881562851686247 ], [ -73.874792407319035, 40.880075128890361 ], [ -73.874945897555889, 40.879947668792724 ], [ -73.870840770138798, 40.88043889400528 ], [ -73.87024100052578, 40.880229352906312 ], [ -73.87160577396476, 40.876921927761565 ], [ -73.872552509003341, 40.875175183325894 ], [ -73.875188028222823, 40.871576828949657 ] ] ] } }
-,
-{ "type": "Feature", "id": 111, "properties": { "communityDistrict": 313, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/313" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.983721526152465, 40.595821078217057 ], [ -73.974216992455439, 40.590111555499078 ], [ -73.97433591765278, 40.587941518707822 ], [ -73.960516672384173, 40.589452911647577 ], [ -73.960047986674823, 40.583269872406589 ], [ -73.959007400390789, 40.582838127802084 ], [ -73.957031342462898, 40.583035332919756 ], [ -73.956457291257294, 40.582658850555148 ], [ -73.956041468004543, 40.582736254319975 ], [ -73.955919977208097, 40.582447832319147 ], [ -73.954940242385263, 40.581968904738119 ], [ -73.955071116580399, 40.581680175764198 ], [ -73.954438286024342, 40.579599959422239 ], [ -73.953651717053447, 40.575823980895507 ], [ -73.95428546787106, 40.575731336515922 ], [ -73.954133608034539, 40.574333267495142 ], [ -73.956208165951267, 40.574265470675137 ], [ -73.956369041736508, 40.574173312056949 ], [ -73.956345334546072, 40.573797578291838 ], [ -73.956567509059084, 40.574170778492942 ], [ -73.958651471390809, 40.574051523771196 ], [ -73.958966342186514, 40.573947268768698 ], [ -73.958987189726116, 40.573430654726742 ], [ -73.959096421286503, 40.573863820433026 ], [ -73.959828649112396, 40.573929309635673 ], [ -73.96720294103956, 40.573326317397424 ], [ -73.967435678590405, 40.573208969671462 ], [ -73.9674262847454, 40.57298510896922 ], [ -73.967531497537252, 40.573190731882022 ], [ -73.968185060985917, 40.573177868546146 ], [ -73.969451262682838, 40.57285728036333 ], [ -73.969246212155667, 40.572304075654522 ], [ -73.969558951517385, 40.572808580460709 ], [ -73.969755803368841, 40.572846924690324 ], [ -73.971329896263413, 40.572643810384029 ], [ -73.971183063557177, 40.571941899084152 ], [ -73.971607064523894, 40.572628223919821 ], [ -73.972934761627371, 40.572474601642661 ], [ -73.973345022298105, 40.572321214006102 ], [ -73.973249901151632, 40.571626685606411 ], [ -73.973448053256831, 40.572272106969329 ], [ -73.975285649011894, 40.572049832668384 ], [ -73.975470819686947, 40.571969003817038 ], [ -73.975405640942185, 40.571421040640494 ], [ -73.975679180292659, 40.571955984497315 ], [ -73.975925520915297, 40.572018657437525 ], [ -73.977301100927306, 40.571862385946275 ], [ -73.977663845222338, 40.571729387798953 ], [ -73.977568200912074, 40.5712466666591 ], [ -73.977670875897331, 40.571171020079184 ], [ -73.978075997982245, 40.571229570128672 ], [ -73.977715330724891, 40.571251913842204 ], [ -73.977807965370516, 40.571756200609322 ], [ -73.9784548651146, 40.571892204247035 ], [ -73.979100015568946, 40.571840698017972 ], [ -73.97984694469406, 40.571539319610125 ], [ -73.97944328367619, 40.571220925948012 ], [ -73.979754647456801, 40.571249682581978 ], [ -73.980103515518977, 40.571727226484469 ], [ -73.982040758525159, 40.571480370522458 ], [ -73.981571554234293, 40.571249988424803 ], [ -73.982026629187516, 40.571276152089091 ], [ -73.982177106251882, 40.571560578454381 ], [ -73.98308044496568, 40.571508531433359 ], [ -73.983672701532626, 40.571407057687367 ], [ -73.983404407376767, 40.570165544510743 ], [ -73.983043288837123, 40.570145860987935 ], [ -73.983391685025467, 40.570094685019548 ], [ -73.983360580392727, 40.569529994486707 ], [ -73.9834852186614, 40.570089015062742 ], [ -73.983839494892607, 40.570112467157912 ], [ -73.983488421466973, 40.570156029543888 ], [ -73.983757903827424, 40.571396227250823 ], [ -73.988037167444446, 40.57098510876876 ], [ -73.988620254155521, 40.570896051314065 ], [ -73.988577720388719, 40.570697909504929 ], [ -73.9887214578292, 40.570883692082539 ], [ -73.990262675274394, 40.570708340117214 ], [ -73.990773103898334, 40.570599421837841 ], [ -73.990792647669423, 40.570248648755516 ], [ -73.990863746848731, 40.570602016242361 ], [ -73.991193375236165, 40.570611874968193 ], [ -73.992728548311632, 40.570433788037356 ], [ -73.992969230148518, 40.570366732042253 ], [ -73.99298098138074, 40.570196773309185 ], [ -73.993157418867384, 40.570379789438825 ], [ -73.994937632299468, 40.570354674512359 ], [ -73.995138544368032, 40.570314661206666 ], [ -73.995187260857335, 40.570021877633096 ], [ -73.99529301203259, 40.570321282713799 ], [ -73.995764696771019, 40.570392961357264 ], [ -73.997194938258417, 40.570348649043794 ], [ -73.997369449485078, 40.570137307542872 ], [ -73.997667121352009, 40.570374751166142 ], [ -73.998467779001587, 40.570497396972954 ], [ -74.001064386672681, 40.57040154143597 ], [ -74.002011670539048, 40.570208758524096 ], [ -74.00208547639734, 40.569585983984915 ], [ -74.002487077377097, 40.571738388872433 ], [ -74.003031861675382, 40.572185594726179 ], [ -74.00373431084688, 40.572286844482505 ], [ -74.00440185902319, 40.572797892590479 ], [ -74.006669156325955, 40.573393648375315 ], [ -74.008708657301966, 40.573759818587639 ], [ -74.010074107854265, 40.573830809517624 ], [ -74.011156687951768, 40.574166761858727 ], [ -74.012015401911299, 40.574885052474201 ], [ -74.012321835206748, 40.575652682365046 ], [ -74.01245951831028, 40.576681770667378 ], [ -74.013031134855041, 40.57785701813642 ], [ -74.01235035995137, 40.579221820653757 ], [ -74.011761242976803, 40.579854082026202 ], [ -74.010860355718165, 40.580462245271107 ], [ -74.007453660081651, 40.581803522847892 ], [ -74.006047343017357, 40.58198365303577 ], [ -74.003980235505111, 40.581721295663904 ], [ -74.002943741578065, 40.581432835520999 ], [ -74.001240326995969, 40.581426265375875 ], [ -74.000260554245259, 40.581252386322966 ], [ -73.998318391502764, 40.581488204362607 ], [ -73.997955705455382, 40.581287408266526 ], [ -73.997991474122045, 40.580765720885992 ], [ -73.997849725398808, 40.580608959713189 ], [ -73.991829127902761, 40.579247080928766 ], [ -73.99036206466559, 40.579424580120467 ], [ -73.988990935563393, 40.578835099968813 ], [ -73.988428337694288, 40.57881584261947 ], [ -73.987390643884055, 40.579086983063661 ], [ -73.986695399970728, 40.579814908132533 ], [ -73.987021385117885, 40.580022764875189 ], [ -73.985885673948516, 40.581144424564741 ], [ -73.986045099162297, 40.581720685151566 ], [ -73.986945069294578, 40.581136421808658 ], [ -73.987574002281733, 40.580031451227399 ], [ -73.988009733767598, 40.579670687155726 ], [ -73.988903539238194, 40.580008678684663 ], [ -73.989955049217727, 40.580661669531381 ], [ -73.991742734170018, 40.58120016258745 ], [ -73.991825295758701, 40.581738520302707 ], [ -73.990337625044575, 40.584218254885847 ], [ -73.990262447143721, 40.584619148205299 ], [ -73.995396674352946, 40.582227790089235 ], [ -73.996055288864383, 40.582128903854134 ], [ -74.000179228594078, 40.583073949742413 ], [ -74.000417395037061, 40.583545921503251 ], [ -74.000436854239666, 40.584048969486503 ], [ -73.999339763758584, 40.584860814817176 ], [ -73.998085237760137, 40.585364721581485 ], [ -73.998088992543174, 40.585470740763292 ], [ -73.999705970995123, 40.585689819858544 ], [ -73.999525679903627, 40.585758544659889 ], [ -73.999565115703192, 40.586243920095654 ], [ -73.998145304490038, 40.586531693907119 ], [ -73.994173056383758, 40.58838285782074 ], [ -73.995598574103511, 40.587841707554126 ], [ -73.995660545781945, 40.587936207343823 ], [ -73.994079046217806, 40.588693441990529 ], [ -73.994215546083012, 40.588868530985344 ], [ -73.993308549669493, 40.589583898580422 ], [ -73.991539344444476, 40.590390903081278 ], [ -73.985200273048463, 40.596398126116434 ], [ -73.9850613649743, 40.595670918819373 ], [ -73.983721526152465, 40.595821078217057 ] ] ] } }
-,
-{ "type": "Feature", "id": 112, "properties": { "communityDistrict": 312, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/312" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.971396316881737, 40.648257785611484 ], [ -73.967627362927928, 40.635238621822609 ], [ -73.97241481651271, 40.632993834268341 ], [ -73.972557215954396, 40.63371337992691 ], [ -73.97761642303297, 40.633153642403919 ], [ -73.976514621001982, 40.6272944899913 ], [ -73.972581653622655, 40.627917967359245 ], [ -73.965906868800076, 40.628654481308331 ], [ -73.962379478247911, 40.609986374023229 ], [ -73.972994340048416, 40.60881414180237 ], [ -73.973993194613954, 40.614029893739918 ], [ -73.97489295756634, 40.613186368916608 ], [ -73.974972646644076, 40.613668110171787 ], [ -73.99473485679259, 40.625614741105977 ], [ -73.998490042017337, 40.627200639256763 ], [ -74.010583402798758, 40.634501852847713 ], [ -73.996045653746492, 40.648340654426384 ], [ -73.989058724595978, 40.644119240536661 ], [ -73.98834986737009, 40.644562243887307 ], [ -73.981805338572073, 40.647127799262265 ], [ -73.975272134355095, 40.647830604067259 ], [ -73.973266890058781, 40.647583072125762 ], [ -73.971396316881737, 40.648257785611484 ] ] ] } }
-,
-{ "type": "Feature", "id": 113, "properties": { "communityDistrict": 206, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.871846102910098, 40.843760777855778 ], [ -73.873127281585923, 40.838335096918485 ], [ -73.873773088060872, 40.836358751438269 ], [ -73.877227625522892, 40.836583182273763 ], [ -73.879651823506777, 40.837126026934385 ], [ -73.881696749419774, 40.837987113460869 ], [ -73.88610978780433, 40.840470994132311 ], [ -73.886598023451214, 40.839279050108473 ], [ -73.888137521593393, 40.839862002384741 ], [ -73.88869040830879, 40.839158026467977 ], [ -73.889417248691998, 40.839422733380196 ], [ -73.895378361807317, 40.84293877895653 ], [ -73.894819425613477, 40.843683770968212 ], [ -73.899637495566893, 40.844233825028809 ], [ -73.900333303501938, 40.842989379513547 ], [ -73.901511519957126, 40.843367968965346 ], [ -73.900939994262416, 40.844384982674271 ], [ -73.90268810050182, 40.84458147228532 ], [ -73.900690100968845, 40.848310096566706 ], [ -73.893215207578095, 40.859874206155673 ], [ -73.891380233802607, 40.861700588263041 ], [ -73.890674550969536, 40.861320040883491 ], [ -73.889272736550836, 40.862916399208004 ], [ -73.888014693883406, 40.86388894909858 ], [ -73.883090031041945, 40.866591509791832 ], [ -73.882627913877272, 40.865858738650267 ], [ -73.883614298905584, 40.865294850620074 ], [ -73.883835149304986, 40.864758597542853 ], [ -73.883713162903717, 40.86429198447177 ], [ -73.88186568671162, 40.862123761957804 ], [ -73.880562139513984, 40.861197229525743 ], [ -73.88035438798083, 40.860569362507142 ], [ -73.880833876202104, 40.858183125616939 ], [ -73.880592251500204, 40.856739973287922 ], [ -73.88263584800417, 40.847914303764277 ], [ -73.877160535872378, 40.844085199803487 ], [ -73.877981313447265, 40.842804416075822 ], [ -73.87456845016807, 40.841642720122273 ], [ -73.873992955209772, 40.842561505617518 ], [ -73.872807082059936, 40.84342426412389 ], [ -73.871846102910098, 40.843760777855778 ] ] ] } }
-,
-{ "type": "Feature", "id": 114, "properties": { "communityDistrict": 211, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/211" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828343474975767, 40.860892026675806 ], [ -73.831114492216741, 40.857524329623871 ], [ -73.834583217162276, 40.854432336831373 ], [ -73.835519046747692, 40.853019577561206 ], [ -73.83614279002083, 40.851041758573309 ], [ -73.836470550498007, 40.847149372782837 ], [ -73.836711796906599, 40.846057369667832 ], [ -73.838390562912494, 40.840676814135101 ], [ -73.839367942506499, 40.840882973481769 ], [ -73.841247853876254, 40.840621628762499 ], [ -73.843276558603833, 40.843541805945087 ], [ -73.844910342553277, 40.845427460748908 ], [ -73.848068340003266, 40.843072001370466 ], [ -73.86347232379066, 40.841305932707215 ], [ -73.867822581813499, 40.840166499016853 ], [ -73.870094731821638, 40.839245704964 ], [ -73.870214507449845, 40.8396179421215 ], [ -73.872772046585297, 40.839751282336003 ], [ -73.871846102910098, 40.843760777855778 ], [ -73.871092078653859, 40.844324780835031 ], [ -73.868892433407908, 40.848112322126454 ], [ -73.869414027571338, 40.848788024629854 ], [ -73.868234660812561, 40.850913737216231 ], [ -73.869903795785604, 40.855873021615913 ], [ -73.868188305588333, 40.858063833808266 ], [ -73.868602785191243, 40.858083100544775 ], [ -73.868896227883951, 40.857772772945061 ], [ -73.86954868104695, 40.85772602967981 ], [ -73.870889838986443, 40.857272817811328 ], [ -73.871082625789796, 40.857377040135908 ], [ -73.870388547273706, 40.864053876300375 ], [ -73.870537385861923, 40.869674031412217 ], [ -73.85745013526693, 40.869532520523478 ], [ -73.855549091608694, 40.871813167563765 ], [ -73.8536363872702, 40.873300599208925 ], [ -73.847926140692365, 40.871342233077883 ], [ -73.835784366576917, 40.865016011497033 ], [ -73.830893296615912, 40.862212849091911 ], [ -73.829508926921164, 40.861841213446603 ], [ -73.828343474975767, 40.860892026675806 ] ] ] } }
-,
-{ "type": "Feature", "id": 115, "properties": { "communityDistrict": 227, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/227" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.870537385861923, 40.869674031412217 ], [ -73.870388547273706, 40.864053876300375 ], [ -73.871082625789796, 40.857377040135908 ], [ -73.870889838986443, 40.857272817811328 ], [ -73.86954868104695, 40.85772602967981 ], [ -73.868896227883951, 40.857772772945061 ], [ -73.868602785191243, 40.858083100544775 ], [ -73.868188305588333, 40.858063833808266 ], [ -73.869903795785604, 40.855873021615913 ], [ -73.868234660812561, 40.850913737216231 ], [ -73.869414027571338, 40.848788024629854 ], [ -73.868892433407908, 40.848112322126454 ], [ -73.871092078653859, 40.844324780835031 ], [ -73.87190185099935, 40.84372143399213 ], [ -73.872807082059936, 40.84342426412389 ], [ -73.873992955209772, 40.842561505617518 ], [ -73.87456845016807, 40.841642720122273 ], [ -73.877981313447265, 40.842804416075822 ], [ -73.877160535872378, 40.844085199803487 ], [ -73.88263584800417, 40.847914303764277 ], [ -73.880592251500204, 40.856739973287922 ], [ -73.880833876202104, 40.858183125616939 ], [ -73.88035438798083, 40.860569362507142 ], [ -73.880562139513984, 40.861197229525743 ], [ -73.882193563819655, 40.862456612722333 ], [ -73.883713162903717, 40.86429198447177 ], [ -73.883835149304986, 40.864758597542853 ], [ -73.883515202134546, 40.865399532828519 ], [ -73.882627913877272, 40.865858738650267 ], [ -73.883090031041945, 40.866591509791832 ], [ -73.876943519588707, 40.869954681571386 ], [ -73.876192249125197, 40.870476710929672 ], [ -73.875188028222823, 40.871576828949657 ], [ -73.870561925246619, 40.871510778453704 ], [ -73.870537385861923, 40.869674031412217 ] ] ] } }
-,
-{ "type": "Feature", "id": 116, "properties": { "communityDistrict": 482, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.835900722077483, 40.711641370769733 ], [ -73.834051103436607, 40.710027882253115 ], [ -73.836657203108103, 40.708584270057372 ], [ -73.837982802802316, 40.70675198796021 ], [ -73.838042772945016, 40.705956459962259 ], [ -73.836962377449964, 40.704212452332193 ], [ -73.839478151754136, 40.702690194330657 ], [ -73.841563780944213, 40.701100598717581 ], [ -73.842756641805778, 40.7006576953058 ], [ -73.845024729431415, 40.699359377017053 ], [ -73.849138373090511, 40.698282740700151 ], [ -73.850708423224148, 40.700203124602638 ], [ -73.854434556776525, 40.700602952131028 ], [ -73.852711308770878, 40.698414961501221 ], [ -73.852609659869856, 40.69780503974782 ], [ -73.852772385843949, 40.697557111441142 ], [ -73.857444477396186, 40.696912984716768 ], [ -73.868424897789154, 40.694718119012549 ], [ -73.868917043081368, 40.695150423196331 ], [ -73.870573931660374, 40.697688900665028 ], [ -73.869903301636398, 40.697976624361125 ], [ -73.869150517428054, 40.698583517911167 ], [ -73.868867307405594, 40.699023015297335 ], [ -73.868112913876786, 40.701204312500515 ], [ -73.867506860550108, 40.701816776459175 ], [ -73.866616773232764, 40.70231894576407 ], [ -73.865237876339862, 40.702697761282487 ], [ -73.863570925091835, 40.702820004849919 ], [ -73.859775008757126, 40.70244509805795 ], [ -73.858198906347013, 40.702911073862325 ], [ -73.858932243991106, 40.701320344758884 ], [ -73.857253514786606, 40.701212177233693 ], [ -73.857166882525092, 40.701674104892042 ], [ -73.855295715092595, 40.701991009610488 ], [ -73.855292759047501, 40.70259550128506 ], [ -73.852520189884061, 40.702291723616682 ], [ -73.854739573446622, 40.705184850609015 ], [ -73.854732404775376, 40.706764142594842 ], [ -73.8493315614799, 40.708388333679913 ], [ -73.846657241116105, 40.708318642340849 ], [ -73.844910111697914, 40.708560330867826 ], [ -73.841339365430443, 40.709946234362214 ], [ -73.837708941993696, 40.711036484271276 ], [ -73.83611476516883, 40.711825146370728 ], [ -73.835900722077483, 40.711641370769733 ] ] ] } }
-,
-{ "type": "Feature", "id": 117, "properties": { "communityDistrict": 307, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/307" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.980171611037022, 40.661154658980422 ], [ -73.980210052904525, 40.660923322437974 ], [ -73.980001138906843, 40.660757564209916 ], [ -73.979578700956395, 40.660853242153919 ], [ -73.975157381000074, 40.658722794114951 ], [ -73.974367012264977, 40.658187903512044 ], [ -73.971396316881737, 40.648257785611484 ], [ -73.973266890058781, 40.647583072125762 ], [ -73.975272134355095, 40.647830604067259 ], [ -73.981805338572073, 40.647127799262265 ], [ -73.98834986737009, 40.644562243887307 ], [ -73.989058724595978, 40.644119240536661 ], [ -73.996045653746492, 40.648340654426384 ], [ -74.010583402798758, 40.634501852847713 ], [ -74.012740591018073, 40.635406476275641 ], [ -74.016067907983739, 40.636138451094787 ], [ -74.019764960437811, 40.637217434927393 ], [ -74.021160298333569, 40.63828079800588 ], [ -74.021646850826869, 40.63909104800689 ], [ -74.022970093908526, 40.639934604478512 ], [ -74.023105932084846, 40.639995325926826 ], [ -74.023316830243843, 40.639797781724845 ], [ -74.023549391547306, 40.639320333692282 ], [ -74.025723770674631, 40.64063051910798 ], [ -74.026097891295706, 40.640270020325374 ], [ -74.032310843001014, 40.644039214480358 ], [ -74.031897085603191, 40.643889349369566 ], [ -74.030518308633717, 40.645274424203841 ], [ -74.029080909517575, 40.644403596930175 ], [ -74.028997625347486, 40.644471961492734 ], [ -74.029154189945288, 40.644581445419526 ], [ -74.028862411270381, 40.644866023722997 ], [ -74.029086542892401, 40.644583001799596 ], [ -74.028501161846236, 40.644177564702787 ], [ -74.02819053049322, 40.644414330206267 ], [ -74.028457210957811, 40.644156059248161 ], [ -74.028205695450055, 40.644015982890274 ], [ -74.026049484003195, 40.646261350326149 ], [ -74.029740782770588, 40.648486026210222 ], [ -74.029389904866207, 40.648804055113864 ], [ -74.025717588048124, 40.646615492290927 ], [ -74.025162026067264, 40.647138748494129 ], [ -74.024839574067869, 40.64694442476538 ], [ -74.024614871031105, 40.647151125118775 ], [ -74.026296888582181, 40.648168926521002 ], [ -74.026221024755785, 40.648248427809207 ], [ -74.024883054911328, 40.647410523024213 ], [ -74.024683904508905, 40.64760566521803 ], [ -74.024354969367195, 40.647399278153451 ], [ -74.024145660505681, 40.647615101259831 ], [ -74.025129119552389, 40.648323181457236 ], [ -74.024967921171367, 40.648605962267496 ], [ -74.025538645780429, 40.649782159348028 ], [ -74.024844363634429, 40.650599638056967 ], [ -74.025205812535617, 40.650818467899178 ], [ -74.025415539294613, 40.650618697082486 ], [ -74.026051331967977, 40.6509943007431 ], [ -74.025529715436548, 40.651478550692808 ], [ -74.024911228489998, 40.651106284788113 ], [ -74.02510257190238, 40.650893305576858 ], [ -74.02477160495674, 40.650687707435374 ], [ -74.024240213475281, 40.651133516313358 ], [ -74.025501391117317, 40.651839851034033 ], [ -74.025416040285918, 40.651933806855055 ], [ -74.024177529733961, 40.651191773212147 ], [ -74.023594002951896, 40.651315663253719 ], [ -74.023059910470309, 40.650974304134749 ], [ -74.022851417959814, 40.651169195161721 ], [ -74.025368902165084, 40.652721436927095 ], [ -74.025226629726603, 40.652829856959634 ], [ -74.021541383192258, 40.650671622911212 ], [ -74.021246523734106, 40.65083497256429 ], [ -74.021391882106727, 40.650967757988333 ], [ -74.021127077838273, 40.650943212115429 ], [ -74.021052303922147, 40.651098282927713 ], [ -74.022337346668337, 40.651910605381595 ], [ -74.022251731997102, 40.651981601506776 ], [ -74.020982612258621, 40.65115682265769 ], [ -74.020898628708338, 40.651247275218275 ], [ -74.023807039031254, 40.65304472851146 ], [ -74.023594344975564, 40.653216368961743 ], [ -74.021959000905966, 40.652222781970742 ], [ -74.021621533676168, 40.652319951290501 ], [ -74.021186700278903, 40.652839836895325 ], [ -74.023204647271413, 40.65409611681784 ], [ -74.023062191552214, 40.654233236291795 ], [ -74.022101951624506, 40.653587953807623 ], [ -74.021629462954991, 40.65364516521602 ], [ -74.021149634844946, 40.654210755211558 ], [ -74.021824797454983, 40.654656175785377 ], [ -74.0216448641536, 40.654878982377276 ], [ -74.020894697316052, 40.654433575413634 ], [ -74.020639692249816, 40.654439333329357 ], [ -74.020474618861755, 40.654216589227005 ], [ -74.019192030254203, 40.654022598494109 ], [ -74.018726865886833, 40.653474310524388 ], [ -74.018118978764718, 40.653885271105246 ], [ -74.020255889869347, 40.655118262881238 ], [ -74.020051824542975, 40.655335948874452 ], [ -74.017874072238172, 40.654061502330812 ], [ -74.017153195810266, 40.654775104362081 ], [ -74.019800816519975, 40.656487210584636 ], [ -74.019705963442391, 40.656581163751113 ], [ -74.017267159365872, 40.655194187986474 ], [ -74.016916179170636, 40.655483274957639 ], [ -74.016650480257539, 40.65533879657206 ], [ -74.016394375337768, 40.655620642850742 ], [ -74.019108438031225, 40.657368884303445 ], [ -74.018605694609974, 40.65784587402284 ], [ -74.015853701227954, 40.656213239550127 ], [ -74.015436323356425, 40.656632396759562 ], [ -74.017742327274931, 40.658098916724924 ], [ -74.017666444095198, 40.658185638771485 ], [ -74.017865731096791, 40.658308447298516 ], [ -74.01768549175469, 40.658452992761198 ], [ -74.015047382218555, 40.656950386693396 ], [ -74.014421304845527, 40.657608021951368 ], [ -74.017458030879027, 40.659450197386697 ], [ -74.015541653890068, 40.660758355476105 ], [ -74.014004283924152, 40.659811963440099 ], [ -74.013662739266081, 40.660028780636914 ], [ -74.011838620565513, 40.658912837274698 ], [ -74.011107504763061, 40.65970627458055 ], [ -74.014022477440207, 40.661529747439978 ], [ -74.013155549388159, 40.661981597725926 ], [ -74.012653588114944, 40.661981654037561 ], [ -74.008599569682886, 40.659520923098235 ], [ -74.007458581638957, 40.660558476209893 ], [ -74.010372013632121, 40.662398879227297 ], [ -74.010463317244941, 40.662642119790036 ], [ -74.00955074208035, 40.663267694130305 ], [ -74.008683715913008, 40.663372012840213 ], [ -74.006161411363209, 40.661845068990473 ], [ -74.005685948228901, 40.662274740360459 ], [ -74.004283583161225, 40.661444894101251 ], [ -74.00414624826216, 40.661561635681302 ], [ -74.006226982479248, 40.662787827860939 ], [ -74.005923605030333, 40.663108250739057 ], [ -74.00380815470885, 40.661907945728146 ], [ -74.003488011006482, 40.662240556128488 ], [ -74.004554984887136, 40.662816372912694 ], [ -74.004732981217771, 40.66249650399665 ], [ -74.005358128642513, 40.66286912973171 ], [ -74.004971577586119, 40.663068213242063 ], [ -74.005192338410865, 40.663201553096549 ], [ -74.00538014413921, 40.662883926452778 ], [ -74.005997487486923, 40.663258610828478 ], [ -74.005613486817481, 40.663458390254732 ], [ -74.007721335067032, 40.664718633019767 ], [ -74.007305161928358, 40.664597590752535 ], [ -74.007125326467403, 40.66491521847427 ], [ -74.006524696661117, 40.664547226657731 ], [ -74.00688215307305, 40.664340372942924 ], [ -74.006629378595704, 40.664187930124427 ], [ -74.006449799807925, 40.664506206799039 ], [ -74.005841576324855, 40.664138020674557 ], [ -74.006203065853754, 40.663930168210477 ], [ -74.006046085189794, 40.663840005635521 ], [ -74.005757810454867, 40.663922756801618 ], [ -74.005849247706109, 40.664503298619657 ], [ -74.005641407544744, 40.66453149089061 ], [ -74.005650259595853, 40.663900337843721 ], [ -74.003628625085668, 40.662734847534544 ], [ -74.003403485956312, 40.662985726598237 ], [ -74.004592386367534, 40.663735199832836 ], [ -74.004322949633774, 40.664052319975234 ], [ -74.005281321773424, 40.664657003523956 ], [ -74.004861937926592, 40.665064821938167 ], [ -74.001135194436586, 40.662901723049927 ], [ -74.000944243316098, 40.6630763919839 ], [ -74.000834011084422, 40.663006441686541 ], [ -73.999531526099162, 40.664397485936902 ], [ -74.002924635163879, 40.666462312163368 ], [ -74.002240310573796, 40.666793835145164 ], [ -74.001619500210921, 40.666766279174453 ], [ -74.00120611414313, 40.667018107202786 ], [ -74.001464709327081, 40.66716956870755 ], [ -74.000687748687653, 40.667545951898767 ], [ -73.999981493391232, 40.667450274908639 ], [ -73.999026009983893, 40.668442972126961 ], [ -73.999026332641748, 40.669007888400671 ], [ -73.999240491050344, 40.668306286559968 ], [ -73.999079353279754, 40.669038271861567 ], [ -73.998655807576171, 40.669514795547904 ], [ -73.998911601678898, 40.669648578639517 ], [ -73.99891684904766, 40.669804563217738 ], [ -73.99855824468392, 40.671335501669915 ], [ -73.998769410589219, 40.671602047105061 ], [ -73.998618879700672, 40.671830172564718 ], [ -73.99696465059327, 40.669234549028936 ], [ -73.980171611037022, 40.661154658980422 ] ] ] } }
-,
-{ "type": "Feature", "id": 118, "properties": { "communityDistrict": 310, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.032310843001014, 40.644039214480358 ], [ -74.026097891295706, 40.640270020325374 ], [ -74.025723770674631, 40.64063051910798 ], [ -74.023549391547306, 40.639320333692282 ], [ -74.023316830243843, 40.639797781724845 ], [ -74.023105932084846, 40.639995325926826 ], [ -74.022970093908526, 40.639934604478512 ], [ -74.021646850826869, 40.63909104800689 ], [ -74.021160298333569, 40.63828079800588 ], [ -74.019764960437811, 40.637217434927393 ], [ -74.016067907983739, 40.636138451094787 ], [ -74.012740591018073, 40.635406476275641 ], [ -74.010918344655252, 40.63468251965682 ], [ -73.998490042017337, 40.627200639256763 ], [ -73.997181753413983, 40.626710155836285 ], [ -74.017019101547376, 40.607654416971123 ], [ -74.015498550096368, 40.606841524276888 ], [ -74.019427608897502, 40.602871578347951 ], [ -74.021016629496316, 40.603555553061256 ], [ -74.030051466136257, 40.604759173811786 ], [ -74.03213159551315, 40.605901836264231 ], [ -74.034272805394494, 40.607717478230313 ], [ -74.034958308299366, 40.608659489086641 ], [ -74.036039777779152, 40.60929563900185 ], [ -74.036815426504205, 40.611037721554638 ], [ -74.039205576473947, 40.61343951273367 ], [ -74.040476120214549, 40.615625262658888 ], [ -74.041375228256328, 40.619993552965468 ], [ -74.041617407735998, 40.62056271454572 ], [ -74.041710158124687, 40.623305320611784 ], [ -74.041888492598176, 40.624409312969057 ], [ -74.041063204689081, 40.630190337193341 ], [ -74.03680662048852, 40.638984221545485 ], [ -74.038762979207561, 40.63958825898051 ], [ -74.038688046907339, 40.639738256029574 ], [ -74.036724843748829, 40.639141190206679 ], [ -74.035712761507298, 40.64064015404648 ], [ -74.036734426851581, 40.641458421718845 ], [ -74.03674294096578, 40.641631829699861 ], [ -74.034073292942608, 40.644313932963897 ], [ -74.032842920138606, 40.643563710350584 ], [ -74.032620556401795, 40.643765402259241 ], [ -74.032310706641724, 40.643574585612399 ], [ -74.032235244367783, 40.643643370155345 ], [ -74.032541738616018, 40.643825483849135 ], [ -74.032310843001014, 40.644039214480358 ] ] ] } }
-,
-{ "type": "Feature", "id": 119, "properties": { "communityDistrict": 314, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.956300351227114, 40.655048281831135 ], [ -73.955825184397298, 40.650529808078822 ], [ -73.9556519617487, 40.64663041014429 ], [ -73.954730247044338, 40.644772578361398 ], [ -73.95404358590126, 40.638877549190198 ], [ -73.953600047193774, 40.638422347449996 ], [ -73.948264995908715, 40.638607190209093 ], [ -73.947773303283824, 40.633998156194416 ], [ -73.945867735272003, 40.634117548159495 ], [ -73.94551095521949, 40.630791482901316 ], [ -73.944155352558241, 40.629508285207962 ], [ -73.947326721606174, 40.629166566706836 ], [ -73.944827709962937, 40.616046209109363 ], [ -73.949119702127703, 40.613053217667755 ], [ -73.950777930201639, 40.611635456791277 ], [ -73.951667768069612, 40.611313185999862 ], [ -73.953598887869589, 40.610949865606109 ], [ -73.962379478247911, 40.609986374023229 ], [ -73.965906868800076, 40.628654481308331 ], [ -73.972581653622655, 40.627917967359245 ], [ -73.976514621001982, 40.6272944899913 ], [ -73.97761642303297, 40.633153642403919 ], [ -73.972557215954396, 40.63371337992691 ], [ -73.97241481651271, 40.632993834268341 ], [ -73.967627362927928, 40.635238621822609 ], [ -73.972222286057303, 40.6510469517657 ], [ -73.971456203085324, 40.651140312462367 ], [ -73.959861031131027, 40.655634789439297 ], [ -73.959696658630605, 40.654839214726195 ], [ -73.956300351227114, 40.655048281831135 ] ] ] } }
-,
-{ "type": "Feature", "id": 120, "properties": { "communityDistrict": 411, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/411" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.713518281059919, 40.759837730830796 ], [ -73.716854404449265, 40.759525514019671 ], [ -73.718319718187516, 40.759082075675337 ], [ -73.719982969884953, 40.758160821512952 ], [ -73.721110014829279, 40.757111525815716 ], [ -73.7224109479736, 40.754920189248402 ], [ -73.723266734112798, 40.753947599496982 ], [ -73.726414721371526, 40.751915877812721 ], [ -73.727378891401585, 40.751029567399691 ], [ -73.728253810495048, 40.749693728645596 ], [ -73.729145938101581, 40.747273799812717 ], [ -73.730628018362623, 40.745364158239383 ], [ -73.732269180563506, 40.743818962745351 ], [ -73.734369658431717, 40.742351598559608 ], [ -73.738160479203913, 40.740376435816998 ], [ -73.739012103523919, 40.739746479175146 ], [ -73.74151636839602, 40.73686036104047 ], [ -73.742947857899594, 40.735456551528806 ], [ -73.746721402966443, 40.732477150642502 ], [ -73.750482956498644, 40.729221294393867 ], [ -73.752970287172531, 40.727705620131594 ], [ -73.756703291674768, 40.726229432660404 ], [ -73.7578714145791, 40.727106851486425 ], [ -73.762342098391528, 40.729538290701278 ], [ -73.764350715262154, 40.73115119213589 ], [ -73.765643744656387, 40.732533126738993 ], [ -73.76369979170164, 40.732864116847814 ], [ -73.764709290881811, 40.734084854795164 ], [ -73.762495338772496, 40.734734559472997 ], [ -73.762733034679158, 40.7352621626722 ], [ -73.762486092774552, 40.736730981449632 ], [ -73.765568498107683, 40.743258154524618 ], [ -73.766878535967948, 40.744093579206236 ], [ -73.767729913594749, 40.745776225670049 ], [ -73.772414610026615, 40.743884845221935 ], [ -73.780366035437737, 40.742591663146563 ], [ -73.795886816956127, 40.738376374997962 ], [ -73.796402186404435, 40.738282357687652 ], [ -73.796439400484999, 40.738438947644617 ], [ -73.79672497858914, 40.738416642621935 ], [ -73.796292972916092, 40.738552306431508 ], [ -73.797256707929805, 40.740213043295192 ], [ -73.797230850381595, 40.741695506635992 ], [ -73.79543059287569, 40.743264290405541 ], [ -73.794535073550804, 40.744507638214664 ], [ -73.794458691576153, 40.745436953712691 ], [ -73.794815314152785, 40.748422226715448 ], [ -73.794577269899989, 40.753563011339054 ], [ -73.792375179985399, 40.75307044775694 ], [ -73.793439911464574, 40.760764127961266 ], [ -73.792167893840372, 40.770976689467666 ], [ -73.792712593167664, 40.773787527360469 ], [ -73.791635260664592, 40.774238655585854 ], [ -73.775839583323403, 40.778612372112015 ], [ -73.775598853663681, 40.779323365621018 ], [ -73.770609744548594, 40.782079793940667 ], [ -73.768580585494689, 40.779876824912144 ], [ -73.768159154444035, 40.779635958694875 ], [ -73.768200555261402, 40.779444179192289 ], [ -73.767161936875922, 40.779782875660651 ], [ -73.767023923465061, 40.780086234158304 ], [ -73.766889947038393, 40.779779433943396 ], [ -73.766775704400487, 40.779812458699681 ], [ -73.768161730515814, 40.779396821241981 ], [ -73.767091134847348, 40.776844841109174 ], [ -73.766328233242191, 40.775843054332121 ], [ -73.765727969039276, 40.774603328092049 ], [ -73.764176331145222, 40.772829990442659 ], [ -73.761263012598405, 40.770395965074243 ], [ -73.759600780928238, 40.768723256713002 ], [ -73.758935120936954, 40.768334328515841 ], [ -73.758642643580785, 40.767357170035446 ], [ -73.757870305674103, 40.766946427446968 ], [ -73.757390208038743, 40.7671666723584 ], [ -73.756410842897509, 40.766514222767583 ], [ -73.756500720039284, 40.766344505019376 ], [ -73.75602210333291, 40.766464421210159 ], [ -73.755473104397922, 40.76636558041649 ], [ -73.75493674407366, 40.766093252140251 ], [ -73.754100654884411, 40.765349353964517 ], [ -73.753770365306337, 40.765304631484341 ], [ -73.753804413791201, 40.76506822784313 ], [ -73.753409947264316, 40.764692659656511 ], [ -73.752192615365217, 40.763830418515063 ], [ -73.751074322525596, 40.761763671336205 ], [ -73.748612250725614, 40.760927803075973 ], [ -73.747535134089603, 40.759857196185848 ], [ -73.746425463105382, 40.759223542143566 ], [ -73.746289044913738, 40.759059244817507 ], [ -73.74642482955997, 40.758209665279772 ], [ -73.746277005397687, 40.757796784403311 ], [ -73.746131434549511, 40.757676883358215 ], [ -73.745760142955518, 40.757836644816933 ], [ -73.744635990572093, 40.756891175867104 ], [ -73.744657486468725, 40.756558104977302 ], [ -73.744576396428528, 40.756907272386371 ], [ -73.744866184047524, 40.75720430488041 ], [ -73.745759849542097, 40.757913517108626 ], [ -73.746046681746094, 40.757809942869265 ], [ -73.746311967054908, 40.758054814022742 ], [ -73.746062149421917, 40.758761500449225 ], [ -73.74616224371907, 40.759024799276915 ], [ -73.746553780988265, 40.759450174035813 ], [ -73.747494241534966, 40.759976686852134 ], [ -73.748158659046211, 40.760726377280193 ], [ -73.748374564394837, 40.761558789630769 ], [ -73.749362033490613, 40.761844520340276 ], [ -73.749173944623834, 40.761377744827918 ], [ -73.750040421305769, 40.761576082739609 ], [ -73.750570493653058, 40.761915474821542 ], [ -73.751420487896056, 40.762761694366731 ], [ -73.751695235218094, 40.763651827370133 ], [ -73.752510927501035, 40.764527376918657 ], [ -73.753045711561057, 40.764817227436524 ], [ -73.755072108490467, 40.76753310678734 ], [ -73.754859158293186, 40.768404252958412 ], [ -73.754393882693449, 40.768753462748627 ], [ -73.754713916878629, 40.768795143897506 ], [ -73.754705936505744, 40.769741522945267 ], [ -73.75533279459188, 40.770998154653263 ], [ -73.755534986627879, 40.770985526492957 ], [ -73.75534216256267, 40.771022152241187 ], [ -73.755573327154224, 40.771529125924097 ], [ -73.755082677136457, 40.77171322899477 ], [ -73.755115236284269, 40.771834906488358 ], [ -73.755059203860483, 40.771719174693374 ], [ -73.754380747575411, 40.772041271642145 ], [ -73.753570009061363, 40.772694616129293 ], [ -73.753366919996822, 40.773207846758233 ], [ -73.753955739399075, 40.774306209075107 ], [ -73.754241499993839, 40.775266830365211 ], [ -73.755185753282149, 40.776498070828787 ], [ -73.754858006585664, 40.776896399792385 ], [ -73.754981937472166, 40.777043803362758 ], [ -73.754813228934353, 40.777619032305587 ], [ -73.755517816047202, 40.777584144019919 ], [ -73.755517375817973, 40.777704048364164 ], [ -73.754812171246527, 40.77763599592339 ], [ -73.754557911058413, 40.777776590664253 ], [ -73.754484528283257, 40.7779044679815 ], [ -73.754649812513847, 40.777992106293027 ], [ -73.754301835408654, 40.778406111489844 ], [ -73.7541296414919, 40.779384143239007 ], [ -73.753008126158349, 40.780866075189856 ], [ -73.752998392964329, 40.781289489522109 ], [ -73.750805936137837, 40.782893378668064 ], [ -73.744123145681016, 40.778638657554154 ], [ -73.74007973971888, 40.7762087953963 ], [ -73.73937598887052, 40.776013669167277 ], [ -73.739123620037176, 40.775704143072694 ], [ -73.737702836222994, 40.774793585732326 ], [ -73.728707221187449, 40.769461484092567 ], [ -73.723560022866366, 40.766128761165724 ], [ -73.723059241725181, 40.766144406314133 ], [ -73.722484384118246, 40.765527210355806 ], [ -73.721142727509843, 40.764872606365557 ], [ -73.713518281059919, 40.759837730830796 ] ] ] } }
-,
-{ "type": "Feature", "id": 121, "properties": { "communityDistrict": 107, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/107" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.959646854231522, 40.801156423256458 ], [ -73.958172971038437, 40.800582541457338 ], [ -73.981679436393961, 40.76839013093614 ], [ -73.982043416681321, 40.768408210312678 ], [ -73.98209271243384, 40.768892298929721 ], [ -73.984314913071373, 40.769848183213369 ], [ -73.984763692632328, 40.769226401206481 ], [ -73.993935876811207, 40.773179512586104 ], [ -73.992622663865404, 40.774974056036925 ], [ -73.992267089035394, 40.775116033858545 ], [ -73.992059084937139, 40.775497598192246 ], [ -73.992386042960391, 40.775557179419465 ], [ -73.990927174149675, 40.777566878762961 ], [ -73.990396160036497, 40.777585065679041 ], [ -73.988868618061176, 40.779692922911465 ], [ -73.991551059227518, 40.779574820432188 ], [ -73.991419826520797, 40.779755280287077 ], [ -73.988886144116961, 40.779878898532715 ], [ -73.988919261468425, 40.780226094343668 ], [ -73.988210420831635, 40.781225482542055 ], [ -73.988076449806229, 40.781650935001679 ], [ -73.98546581263146, 40.785360700575531 ], [ -73.986172704965441, 40.786068452258675 ], [ -73.987119013942745, 40.785210317998938 ], [ -73.986128422485876, 40.786239001331118 ], [ -73.985429321269422, 40.785413942184618 ], [ -73.985081137732053, 40.785921935110444 ], [ -73.985765660297517, 40.786196274858625 ], [ -73.985682871922506, 40.786309786213131 ], [ -73.985016964064968, 40.78601423719563 ], [ -73.984655078830215, 40.786534741807941 ], [ -73.985949561556779, 40.786487112961353 ], [ -73.985812373526514, 40.78661686535709 ], [ -73.984619429245299, 40.786586016349915 ], [ -73.971107658523039, 40.805790139676695 ], [ -73.966701068903021, 40.804168476937107 ], [ -73.959646854231522, 40.801156423256458 ] ] ] } }
-,
-{ "type": "Feature", "id": 122, "properties": { "communityDistrict": 201, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.901292776271063, 40.820475442111587 ], [ -73.904465514767352, 40.812281959913648 ], [ -73.903417203736481, 40.811506882855625 ], [ -73.902193726873193, 40.804788693486444 ], [ -73.902445390708209, 40.804416954053934 ], [ -73.902927703310894, 40.804197291709094 ], [ -73.902709731025439, 40.804163663467193 ], [ -73.903059666675745, 40.80401743484979 ], [ -73.902973119450195, 40.80393677187098 ], [ -73.903732845816847, 40.803773296117768 ], [ -73.904529540295954, 40.803170235651315 ], [ -73.905521532406965, 40.802019954898519 ], [ -73.90652042213172, 40.801175510519741 ], [ -73.906389768214154, 40.801090791685809 ], [ -73.906585878338817, 40.801107478445942 ], [ -73.907470304367592, 40.800003457914848 ], [ -73.908073972556608, 40.799572819167203 ], [ -73.907682228008952, 40.79938831392527 ], [ -73.908102100342376, 40.799539646862854 ], [ -73.908026332767136, 40.799237872162117 ], [ -73.908421907680065, 40.799442092444927 ], [ -73.908550267423962, 40.799307425389479 ], [ -73.908255795003356, 40.799092868180558 ], [ -73.908303036082913, 40.798959135418059 ], [ -73.910892222653445, 40.79701779503629 ], [ -73.911622858662753, 40.796641078496641 ], [ -73.913722559735774, 40.796789438758658 ], [ -73.919049787638059, 40.798993935686994 ], [ -73.920240681588737, 40.799613687870277 ], [ -73.921327307785148, 40.801284591631394 ], [ -73.92292710065783, 40.802373294642848 ], [ -73.924227068411582, 40.802545011358092 ], [ -73.926657947884891, 40.802409803914657 ], [ -73.927627886588482, 40.802695665481544 ], [ -73.927282719436022, 40.803508264417026 ], [ -73.927645003525768, 40.803988632846064 ], [ -73.928367187945426, 40.804032709664369 ], [ -73.928482992568547, 40.804193029073048 ], [ -73.928726074898293, 40.804103625227249 ], [ -73.93051758839178, 40.806590563566793 ], [ -73.931845644930434, 40.807855845481392 ], [ -73.932527087859782, 40.808823281775332 ], [ -73.932594344671415, 40.810053158827223 ], [ -73.93286397083277, 40.810124437388467 ], [ -73.932874120019648, 40.810414043428949 ], [ -73.932565033020694, 40.81088597518967 ], [ -73.932632292551958, 40.811904622263199 ], [ -73.932365641826237, 40.815032964874703 ], [ -73.932389713250288, 40.819502847336764 ], [ -73.930315050305069, 40.81931688055203 ], [ -73.925184864635582, 40.818012668874921 ], [ -73.922652612397059, 40.820494315281039 ], [ -73.917565994430134, 40.823883672432409 ], [ -73.911816157567358, 40.82203502241245 ], [ -73.909908941380024, 40.822551107614807 ], [ -73.901292776271063, 40.820475442111587 ] ] ] } }
-,
-{ "type": "Feature", "id": 123, "properties": { "communityDistrict": 209, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/209" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.83979488496, 40.835619207491888 ], [ -73.839614872384587, 40.835610568868297 ], [ -73.839594376454642, 40.835088907192976 ], [ -73.839457837975857, 40.835006105691932 ], [ -73.839619931150352, 40.834800981937406 ], [ -73.839476939168577, 40.834817305076641 ], [ -73.839604564749521, 40.834730151287012 ], [ -73.839412203108751, 40.834600065107395 ], [ -73.839592667550377, 40.834560475645532 ], [ -73.839591084522908, 40.834041688090572 ], [ -73.839920484787982, 40.833320794296881 ], [ -73.841817259121115, 40.831726193654625 ], [ -73.842213346646943, 40.83155050727715 ], [ -73.842758842937798, 40.830818484142796 ], [ -73.843106915999044, 40.829794139319844 ], [ -73.843033946085498, 40.828934984940972 ], [ -73.842533257309427, 40.827527304148425 ], [ -73.84044970382466, 40.823345566497551 ], [ -73.840466034599956, 40.823080023582847 ], [ -73.84001752995961, 40.822190242120335 ], [ -73.839829262416927, 40.821571501496017 ], [ -73.840100692020158, 40.820322761728583 ], [ -73.839998604735769, 40.819934946813973 ], [ -73.840289119450148, 40.819807704051264 ], [ -73.840365285256141, 40.819577750024223 ], [ -73.84198684834044, 40.818774373908134 ], [ -73.842093663118547, 40.818059542951573 ], [ -73.843063790337368, 40.816558645026703 ], [ -73.843169927637206, 40.816051055013368 ], [ -73.8437405300036, 40.81532169954199 ], [ -73.845280192365593, 40.811778116745614 ], [ -73.845765617022266, 40.811582278841961 ], [ -73.846173029381987, 40.810676664431305 ], [ -73.847196845757921, 40.810580487615042 ], [ -73.848214865817411, 40.812462909499146 ], [ -73.849385562141237, 40.813236865345893 ], [ -73.85041066820115, 40.81358402388846 ], [ -73.851144722607017, 40.814396548875912 ], [ -73.85246819393376, 40.814279207419247 ], [ -73.852424036273135, 40.814420084234889 ], [ -73.852911775018583, 40.814500996711516 ], [ -73.85281883014774, 40.814335174743924 ], [ -73.852650133356335, 40.814363146473582 ], [ -73.852612625192691, 40.813962582840212 ], [ -73.85288616298557, 40.813881712529501 ], [ -73.852869369427395, 40.813692824922938 ], [ -73.853368578688219, 40.813593903136272 ], [ -73.854346556511203, 40.813863857914924 ], [ -73.855146953815861, 40.814368994297212 ], [ -73.85538030243687, 40.814288882082693 ], [ -73.854430755965979, 40.813717919069752 ], [ -73.853467740585231, 40.813477711608591 ], [ -73.852557394349276, 40.813735334655156 ], [ -73.851199977251852, 40.813553144376137 ], [ -73.849650104501109, 40.812751881768762 ], [ -73.849145066175723, 40.812298793608875 ], [ -73.849063018500431, 40.811905358232018 ], [ -73.849384203219699, 40.811287074768423 ], [ -73.849173584248518, 40.810924340783991 ], [ -73.849798045881656, 40.810032877885895 ], [ -73.849908923063083, 40.809660122089376 ], [ -73.849760116340775, 40.809645213220442 ], [ -73.84991938701836, 40.809626665926835 ], [ -73.850017101925488, 40.809330656289035 ], [ -73.849846625180774, 40.80925232875299 ], [ -73.850042416129057, 40.809215408487617 ], [ -73.849967328392367, 40.808875512453525 ], [ -73.849728654247841, 40.808875111639665 ], [ -73.849951169380105, 40.80871472017219 ], [ -73.84955076934942, 40.808720867510871 ], [ -73.849953556063809, 40.808693406076351 ], [ -73.84996696802817, 40.808578018843605 ], [ -73.849611664865293, 40.808124185052037 ], [ -73.848760076798399, 40.808337457792156 ], [ -73.848709624793486, 40.808240469916427 ], [ -73.849522182567355, 40.808055277720193 ], [ -73.848416409616519, 40.807368775795304 ], [ -73.848280240182973, 40.806852405047685 ], [ -73.848379536552727, 40.806360186333677 ], [ -73.847536219755952, 40.805926402795144 ], [ -73.847488226419102, 40.805448909149128 ], [ -73.847902986527416, 40.805002179397242 ], [ -73.84864784606215, 40.804699371480325 ], [ -73.848743172128536, 40.804896259686096 ], [ -73.848946040059957, 40.804762168994685 ], [ -73.849333823079363, 40.805051218261745 ], [ -73.84941036337716, 40.804667976275596 ], [ -73.849428526615696, 40.80505982813969 ], [ -73.849821071838477, 40.805094430843432 ], [ -73.849977227091827, 40.805059594981849 ], [ -73.850198391025572, 40.804510024974768 ], [ -73.852049225994875, 40.804599116241 ], [ -73.855388793111914, 40.804464427294199 ], [ -73.856051629336477, 40.804587429683878 ], [ -73.856618134363202, 40.804865571163745 ], [ -73.85639785205899, 40.804946835713338 ], [ -73.855690470982694, 40.804676566078065 ], [ -73.855563584999615, 40.80478499633314 ], [ -73.855604970397252, 40.805062157034875 ], [ -73.856125425632001, 40.80528168175335 ], [ -73.857244919884621, 40.805307238618639 ], [ -73.856675797244193, 40.804995370824194 ], [ -73.856834210245594, 40.80490927021274 ], [ -73.858890375022725, 40.805889491177751 ], [ -73.858826432391083, 40.805993192722482 ], [ -73.858505600391553, 40.805819542792754 ], [ -73.858314877070782, 40.805998591012155 ], [ -73.858611919672356, 40.806697513538531 ], [ -73.858934717264304, 40.80667435866588 ], [ -73.859084758526691, 40.806480218163472 ], [ -73.858877094031868, 40.805988508100747 ], [ -73.859195450244769, 40.806269877829692 ], [ -73.859366023323204, 40.806675683207786 ], [ -73.859401919202014, 40.807529591337229 ], [ -73.859257752760755, 40.807542673007745 ], [ -73.859158681488196, 40.806878974649152 ], [ -73.858665051691915, 40.806832751495591 ], [ -73.858389962288143, 40.808258809148768 ], [ -73.858774526546384, 40.809233974632939 ], [ -73.858951412879222, 40.810271417587316 ], [ -73.859076625664173, 40.809975558102082 ], [ -73.860126952355841, 40.809605499891248 ], [ -73.859540598624804, 40.809019702446314 ], [ -73.859329192961795, 40.808996540576238 ], [ -73.859389820729248, 40.808163768341295 ], [ -73.859822304348342, 40.809113247471963 ], [ -73.860659658139397, 40.809631903060605 ], [ -73.864403333796247, 40.810275985935014 ], [ -73.867656462844678, 40.810583761937146 ], [ -73.869769558500366, 40.813423699757152 ], [ -73.870778048859364, 40.814486895487775 ], [ -73.8717160645012, 40.814922335490174 ], [ -73.876519960997811, 40.816131063424834 ], [ -73.876634599637072, 40.815711508099156 ], [ -73.878062832621268, 40.816182632444068 ], [ -73.882447795528904, 40.819268322511505 ], [ -73.884294881451382, 40.822718204764747 ], [ -73.884646026497066, 40.823823537474574 ], [ -73.884387053537296, 40.826817283532826 ], [ -73.883784141345714, 40.828274292462368 ], [ -73.885088387643762, 40.828156821266326 ], [ -73.885783262303434, 40.82789690839796 ], [ -73.885423176302581, 40.830116849951096 ], [ -73.885097701531322, 40.831152824784617 ], [ -73.884246295471797, 40.832592072106017 ], [ -73.881935889571224, 40.835462124985533 ], [ -73.880720815142809, 40.837521264519715 ], [ -73.877890467801038, 40.836689568962683 ], [ -73.873773088060872, 40.836358751438269 ], [ -73.872772046585297, 40.839751282336003 ], [ -73.870214507449845, 40.8396179421215 ], [ -73.870094731821638, 40.839245704964 ], [ -73.867822581813499, 40.840166499016853 ], [ -73.86347232379066, 40.841305932707215 ], [ -73.853335249420454, 40.84247015515475 ], [ -73.851684597478283, 40.834201052350295 ], [ -73.83979488496, 40.835619207491888 ] ] ] } }
-,
-{ "type": "Feature", "id": 124, "properties": { "communityDistrict": 407, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/407" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.770609744548594, 40.782079793940667 ], [ -73.775598853663681, 40.779323365621018 ], [ -73.775839583323403, 40.778612372112015 ], [ -73.791635260664592, 40.774238655585854 ], [ -73.792712593167664, 40.773787527360469 ], [ -73.792167893840372, 40.770976689467666 ], [ -73.793439911464574, 40.760764127961266 ], [ -73.792375179985399, 40.75307044775694 ], [ -73.794577269899989, 40.753563011339054 ], [ -73.794815314152785, 40.748422226715448 ], [ -73.794458691576153, 40.745436953712691 ], [ -73.794535073550804, 40.744507638214664 ], [ -73.79543059287569, 40.743264290405541 ], [ -73.797230850381595, 40.741695506635992 ], [ -73.797256707929805, 40.740213043295192 ], [ -73.796292972916092, 40.738552306431508 ], [ -73.79672497858914, 40.738416642621935 ], [ -73.796439400484999, 40.738438947644617 ], [ -73.796402186404435, 40.738282357687652 ], [ -73.798220589933877, 40.738174630696257 ], [ -73.814073820424952, 40.738780902078872 ], [ -73.815935942273825, 40.739127860871264 ], [ -73.825373876673737, 40.742232240499355 ], [ -73.824811784878335, 40.739630959900524 ], [ -73.824974399919341, 40.739440426756168 ], [ -73.825590303232616, 40.739447592295349 ], [ -73.825853683416867, 40.739123780146976 ], [ -73.826867464523616, 40.73862891215893 ], [ -73.827943602841955, 40.738489982440825 ], [ -73.82809152577299, 40.737083175272865 ], [ -73.829467519970137, 40.737024482753384 ], [ -73.83053551231437, 40.737520194763206 ], [ -73.831430254382042, 40.739135733128357 ], [ -73.831131227778442, 40.742338000406534 ], [ -73.835861318721328, 40.743227984538507 ], [ -73.83595071525383, 40.743730569104294 ], [ -73.835675539474607, 40.744850518062684 ], [ -73.834690426199643, 40.746902697785934 ], [ -73.83513889924977, 40.747160372591594 ], [ -73.834733311313599, 40.748287335526548 ], [ -73.834787361300471, 40.749458289450487 ], [ -73.835080493039897, 40.750153225254117 ], [ -73.837989212642583, 40.754515042982305 ], [ -73.840581316336156, 40.753618746290755 ], [ -73.840572749452335, 40.753779619146016 ], [ -73.840847999142554, 40.753913221699101 ], [ -73.840692373355125, 40.754121978192046 ], [ -73.840662690255201, 40.755208812717377 ], [ -73.839746278511527, 40.755921121043762 ], [ -73.839510493379223, 40.756416007711444 ], [ -73.839060075881889, 40.756665549076821 ], [ -73.839123298415657, 40.756828062269051 ], [ -73.843243813565991, 40.755336803767008 ], [ -73.845852358104509, 40.760455397694045 ], [ -73.843716577998109, 40.761739001439047 ], [ -73.842395698824348, 40.762214199018139 ], [ -73.841224044254048, 40.762300299826371 ], [ -73.839253657660919, 40.761908062372001 ], [ -73.839981248329821, 40.763438746487431 ], [ -73.840022202075062, 40.764232465541603 ], [ -73.839834259423796, 40.765070408822069 ], [ -73.840625628830807, 40.764023419892112 ], [ -73.841965988319444, 40.763597940528236 ], [ -73.842613122634532, 40.764682989692886 ], [ -73.840526355456106, 40.765387989198423 ], [ -73.839578268535462, 40.765252322973012 ], [ -73.839131891973182, 40.765991105567409 ], [ -73.839526787139377, 40.766139549726503 ], [ -73.839697725490865, 40.766392677045367 ], [ -73.839733868068635, 40.766734414653186 ], [ -73.839498058619171, 40.767017016985626 ], [ -73.839939221774685, 40.767064277147341 ], [ -73.839901909134525, 40.766824158414025 ], [ -73.840311703152864, 40.766294797898368 ], [ -73.844488958842049, 40.765459602583931 ], [ -73.845281635415873, 40.765666119482518 ], [ -73.846200240379503, 40.766196343166378 ], [ -73.847230679761552, 40.766313158095699 ], [ -73.847805751044291, 40.766772948171663 ], [ -73.848566972051458, 40.768090907199912 ], [ -73.848301382658505, 40.768430440607276 ], [ -73.848835223817204, 40.768752302094036 ], [ -73.84901287145172, 40.76921530435213 ], [ -73.848601014253589, 40.769817824882757 ], [ -73.84872999189102, 40.769989541779182 ], [ -73.848927243433721, 40.769914788361568 ], [ -73.848817810956149, 40.769738054635809 ], [ -73.84950427178488, 40.76951022388225 ], [ -73.849774078593185, 40.769936012943802 ], [ -73.849075512612544, 40.77019356377096 ], [ -73.848992744326466, 40.770028680072748 ], [ -73.848726718904402, 40.770106189089653 ], [ -73.848586643045735, 40.770504249905002 ], [ -73.848671529349573, 40.770761572903353 ], [ -73.849494027118652, 40.771328616815438 ], [ -73.849942418829784, 40.77192719325987 ], [ -73.850303975165758, 40.771938199590359 ], [ -73.850338088185254, 40.771743668538754 ], [ -73.851301084405819, 40.77180636079845 ], [ -73.851270376207097, 40.771985534743564 ], [ -73.850361465963132, 40.771830745648693 ], [ -73.850334105693776, 40.772017605255563 ], [ -73.849951625834152, 40.771958298877898 ], [ -73.849869024119187, 40.772183062008224 ], [ -73.85004065546363, 40.772224600554921 ], [ -73.849839583776784, 40.772231002867429 ], [ -73.84957161022011, 40.772561103831613 ], [ -73.84897619933308, 40.773561667957807 ], [ -73.849216780975567, 40.77463958213896 ], [ -73.84893873474762, 40.775560358480696 ], [ -73.849116366639393, 40.775787518870267 ], [ -73.848968025446965, 40.778022212691553 ], [ -73.849367616269276, 40.778168680728108 ], [ -73.849535865963404, 40.77842588555707 ], [ -73.8497474142047, 40.778414054006049 ], [ -73.849536646905577, 40.778457620289842 ], [ -73.849469048461657, 40.778663783211698 ], [ -73.849933532961757, 40.778769123380989 ], [ -73.849800881783096, 40.778793284828531 ], [ -73.849781143163483, 40.779111930042752 ], [ -73.849571554537008, 40.779192836707068 ], [ -73.849639689991591, 40.77948327517759 ], [ -73.851487555466591, 40.778992977613228 ], [ -73.851013396194176, 40.779121956674338 ], [ -73.851079460828572, 40.779297757683999 ], [ -73.850140173819483, 40.779390986926551 ], [ -73.849793043476282, 40.77949768469491 ], [ -73.849817200660084, 40.779630348054148 ], [ -73.852352678815222, 40.779480671828182 ], [ -73.852356619362538, 40.779169330522301 ], [ -73.85238832844523, 40.779528902387767 ], [ -73.849821023258698, 40.779651339304756 ], [ -73.849843629104512, 40.779775474920079 ], [ -73.84956325207466, 40.779879082167099 ], [ -73.849740181069777, 40.780040450022895 ], [ -73.850314739577399, 40.780041536004077 ], [ -73.850456559655868, 40.779888279912882 ], [ -73.851690280854342, 40.779867508478162 ], [ -73.851670991622385, 40.780035228878113 ], [ -73.849493812744313, 40.780065828115049 ], [ -73.849889320817937, 40.781089134798421 ], [ -73.850936463965397, 40.781119575155998 ], [ -73.849887280637518, 40.781121511316854 ], [ -73.849836600803982, 40.781599624917121 ], [ -73.849187094184657, 40.781641811549498 ], [ -73.849547742659965, 40.781841078342701 ], [ -73.849246760463643, 40.782256365322503 ], [ -73.850285208823976, 40.782459450176489 ], [ -73.853149930691771, 40.782323936276157 ], [ -73.853223310161695, 40.782060533865852 ], [ -73.853679740950611, 40.781985742044249 ], [ -73.85528242786593, 40.781975384349899 ], [ -73.855450628349217, 40.783143079138334 ], [ -73.856452066617564, 40.783322990816075 ], [ -73.85643993663156, 40.783157516967002 ], [ -73.856676908933323, 40.783150088162067 ], [ -73.856649510906081, 40.782892319276414 ], [ -73.856841290146718, 40.783371363485166 ], [ -73.857340523168361, 40.783371270586187 ], [ -73.857612233528357, 40.783611870504132 ], [ -73.858083181033209, 40.783724078841665 ], [ -73.858125027092314, 40.784188151814746 ], [ -73.857831054503677, 40.784442088339411 ], [ -73.857976856086538, 40.784678164568909 ], [ -73.858526985935967, 40.78522893917453 ], [ -73.858991560509054, 40.785204169142432 ], [ -73.859095000083656, 40.785438748851469 ], [ -73.859036289738384, 40.785092722779517 ], [ -73.859110497986705, 40.78544258469838 ], [ -73.859529092635768, 40.785530559529683 ], [ -73.858990489374762, 40.785491598431115 ], [ -73.859124612237181, 40.785850159663262 ], [ -73.858588405085584, 40.786148140153834 ], [ -73.858682833500779, 40.786531166475243 ], [ -73.85812817092382, 40.787051561057432 ], [ -73.856811337654833, 40.786672613697149 ], [ -73.856200203811994, 40.787150099959781 ], [ -73.856172757866574, 40.787493219875678 ], [ -73.855958689791663, 40.78767517877457 ], [ -73.853451844613389, 40.787826112298845 ], [ -73.85284230067748, 40.788211371739067 ], [ -73.852889902611878, 40.788346670054672 ], [ -73.854383647885811, 40.788320128763019 ], [ -73.854801947993295, 40.788619154726753 ], [ -73.854471941373546, 40.790258975320413 ], [ -73.852658306930493, 40.791106420610326 ], [ -73.85285879649112, 40.791533785514233 ], [ -73.853778549768336, 40.792421274007893 ], [ -73.853630801660074, 40.793098182710629 ], [ -73.853733516600769, 40.793935374086779 ], [ -73.852766271986155, 40.794389246824153 ], [ -73.852630982562445, 40.79494485424469 ], [ -73.852426512229769, 40.794609758821004 ], [ -73.851590771574635, 40.794086530575285 ], [ -73.849061608350866, 40.793362610298466 ], [ -73.848848947231119, 40.793501685658299 ], [ -73.849078147957272, 40.794145384480792 ], [ -73.848783702199185, 40.794542102226124 ], [ -73.848876545633445, 40.795134041691234 ], [ -73.848559887389811, 40.795495060218315 ], [ -73.846245284724603, 40.796161950667937 ], [ -73.845591671224113, 40.796011819025679 ], [ -73.845616063245217, 40.795845718962205 ], [ -73.84528519601372, 40.795443390379127 ], [ -73.844599150444338, 40.79491154987516 ], [ -73.84354668938991, 40.794913944010482 ], [ -73.843337608761246, 40.7950213869603 ], [ -73.843306323869186, 40.795500933488874 ], [ -73.843043639192814, 40.795214739011726 ], [ -73.842848653223911, 40.795213401671695 ], [ -73.843284972603371, 40.796174392685927 ], [ -73.842808752412253, 40.79541822241309 ], [ -73.842259593683465, 40.795584968937327 ], [ -73.842866752593693, 40.796922229071917 ], [ -73.842167473411379, 40.795612940163593 ], [ -73.841587212407788, 40.79540106821694 ], [ -73.841362872719557, 40.795619950695084 ], [ -73.841494093422881, 40.795981889206381 ], [ -73.841299436121076, 40.796219669330895 ], [ -73.840599822946189, 40.796806803210544 ], [ -73.840139303644605, 40.796879187836097 ], [ -73.840415179758367, 40.797678437258718 ], [ -73.839209483241063, 40.797844314353952 ], [ -73.838429158291646, 40.79837567115333 ], [ -73.837899675038472, 40.798508970181459 ], [ -73.839190047271885, 40.797777266447611 ], [ -73.840258608091361, 40.797588858432142 ], [ -73.839970996561817, 40.79690564189314 ], [ -73.839036768125226, 40.797052476075621 ], [ -73.838400830779619, 40.796755258306845 ], [ -73.837064988802695, 40.793851098426181 ], [ -73.836531873247097, 40.791743432405688 ], [ -73.836944768689918, 40.791471487535276 ], [ -73.837423294473723, 40.791392837918551 ], [ -73.837645659937252, 40.791035553077037 ], [ -73.837503588835887, 40.790461660725455 ], [ -73.836818149570433, 40.790469906359753 ], [ -73.837481914032395, 40.790434497921744 ], [ -73.837175445350439, 40.789427313316381 ], [ -73.837280397869819, 40.789009701079053 ], [ -73.837134329895235, 40.789564033014251 ], [ -73.836378095721429, 40.789460178689588 ], [ -73.835680220690307, 40.789574917568324 ], [ -73.835331502420871, 40.789212742716849 ], [ -73.834135665874086, 40.789066136552336 ], [ -73.833795481099003, 40.788517169043637 ], [ -73.832929372375446, 40.788518114204102 ], [ -73.832161006323432, 40.78875008316119 ], [ -73.8317543370473, 40.789228593368215 ], [ -73.831435487383104, 40.789184434996315 ], [ -73.831951184637305, 40.789414772132154 ], [ -73.83214871934797, 40.790033244852225 ], [ -73.831660809278659, 40.791102591159721 ], [ -73.830962697072948, 40.79157601668993 ], [ -73.829740376982727, 40.791630426993052 ], [ -73.828366576486047, 40.792395419557337 ], [ -73.829278509993003, 40.792890607834508 ], [ -73.829228575339457, 40.793019340410822 ], [ -73.828291552995609, 40.792514245960611 ], [ -73.827986333992598, 40.792770064606167 ], [ -73.827808956475792, 40.793197349396237 ], [ -73.828013723559152, 40.794932408769959 ], [ -73.828412798224718, 40.795613368288926 ], [ -73.82878010953813, 40.795917923947407 ], [ -73.828809629429557, 40.79618376840105 ], [ -73.829131269485259, 40.796293620543011 ], [ -73.829459915343648, 40.79682336759145 ], [ -73.829058642578872, 40.796562114135249 ], [ -73.827417688314583, 40.796789017823762 ], [ -73.826970915106529, 40.797128277689581 ], [ -73.827173656011894, 40.797622201316223 ], [ -73.826738561666872, 40.797796245452957 ], [ -73.826148569285564, 40.797415985003013 ], [ -73.82514036020433, 40.797341446769124 ], [ -73.824035932507186, 40.798079662716781 ], [ -73.824027844848217, 40.798361183208733 ], [ -73.823859483847031, 40.798154135104639 ], [ -73.823433235169389, 40.798406514408839 ], [ -73.823679836938609, 40.798769946499498 ], [ -73.823408723760195, 40.79841781429694 ], [ -73.823107696683678, 40.798613103772752 ], [ -73.823305524314463, 40.79896286611951 ], [ -73.823002630366972, 40.798642289724974 ], [ -73.822599356172731, 40.798901842475743 ], [ -73.822777278828298, 40.799320221378984 ], [ -73.822519165220186, 40.798987735690247 ], [ -73.822412270047423, 40.7990889137536 ], [ -73.822621745567645, 40.799407808072161 ], [ -73.822387546704931, 40.79911289157257 ], [ -73.821617892453119, 40.799991987693772 ], [ -73.820980719504206, 40.800478109129173 ], [ -73.820432460327794, 40.800627864422097 ], [ -73.820528107884215, 40.801006023868062 ], [ -73.820404549272368, 40.800639500292434 ], [ -73.81982823872157, 40.800994874895359 ], [ -73.817404298767144, 40.799299019784989 ], [ -73.816516397931963, 40.799024946483875 ], [ -73.816026039327426, 40.798532968334015 ], [ -73.813679075670606, 40.797545787909854 ], [ -73.813699637252583, 40.797079415665095 ], [ -73.813420504158501, 40.797693020410584 ], [ -73.81349350368555, 40.797058380377678 ], [ -73.813159963843049, 40.797197536205587 ], [ -73.813052794699345, 40.797455018850862 ], [ -73.812933696741212, 40.797426008096757 ], [ -73.813042876218546, 40.797178205752161 ], [ -73.812883864524736, 40.797166565226973 ], [ -73.812547989085431, 40.798047064458387 ], [ -73.812241845382346, 40.798125827928871 ], [ -73.811778383213124, 40.798025053453358 ], [ -73.811609382684438, 40.79737240944452 ], [ -73.806363314525754, 40.796393605437665 ], [ -73.80623135012371, 40.796817477582806 ], [ -73.806330767146676, 40.796392740435969 ], [ -73.805876262845771, 40.796472983430377 ], [ -73.805395733411117, 40.796170821514451 ], [ -73.805349801604976, 40.796317851318854 ], [ -73.805339444875742, 40.796163928288756 ], [ -73.804671737687841, 40.796167469163997 ], [ -73.804634377532864, 40.796438088956208 ], [ -73.804648739768467, 40.796159195983073 ], [ -73.804348259354057, 40.796214090992727 ], [ -73.8042735368103, 40.796641261329512 ], [ -73.804311386999345, 40.796212876160027 ], [ -73.804165356428669, 40.796229008776791 ], [ -73.804122185003791, 40.796528819706573 ], [ -73.804136447669748, 40.796234231177763 ], [ -73.803958230643701, 40.796557359017989 ], [ -73.803974189250823, 40.796278255919646 ], [ -73.803817167946974, 40.796630193236602 ], [ -73.803822941960092, 40.796335012840956 ], [ -73.803643015091595, 40.796406085507577 ], [ -73.803612508110973, 40.796684393153988 ], [ -73.803612885465625, 40.796420856820511 ], [ -73.8033499636296, 40.796713026429984 ], [ -73.80299970742962, 40.796708836095306 ], [ -73.802949251602215, 40.79640492955587 ], [ -73.80226038840371, 40.796262208350242 ], [ -73.801779477645411, 40.796316141853715 ], [ -73.80174543088819, 40.796512405600375 ], [ -73.80175550251785, 40.796321295918013 ], [ -73.801011262305948, 40.796522374589586 ], [ -73.80086307346707, 40.79633253590832 ], [ -73.80062184740089, 40.796426762360454 ], [ -73.800256629358515, 40.796260149266509 ], [ -73.800083502033871, 40.79662756747463 ], [ -73.80018235388124, 40.796266913696812 ], [ -73.799680679004069, 40.796174502706407 ], [ -73.799605482925116, 40.796332220605656 ], [ -73.798111080452145, 40.795605888565298 ], [ -73.797898327533488, 40.795559220917838 ], [ -73.797669940750026, 40.795993822382876 ], [ -73.797870149147144, 40.795552012141329 ], [ -73.79673567726374, 40.795208942919189 ], [ -73.796434387376678, 40.795736429856461 ], [ -73.796705875622109, 40.795197625951801 ], [ -73.794610981483515, 40.794929735526082 ], [ -73.794428447952086, 40.794806810348391 ], [ -73.794582981846446, 40.794763111619666 ], [ -73.794380224845824, 40.794177354392041 ], [ -73.794609071902912, 40.793913303477716 ], [ -73.794950771024517, 40.791774200640717 ], [ -73.793751265502337, 40.789061933340136 ], [ -73.793380335049932, 40.789578392620584 ], [ -73.79323941781152, 40.789530249703802 ], [ -73.793620072760206, 40.788996637749811 ], [ -73.792806695804572, 40.788783046246159 ], [ -73.792352911541528, 40.788906841809926 ], [ -73.790282023532058, 40.790316963399782 ], [ -73.785681013014056, 40.790340671659976 ], [ -73.783838425143543, 40.790640954671538 ], [ -73.782530806635236, 40.791276789431919 ], [ -73.784341530595952, 40.791749353794799 ], [ -73.782273301833897, 40.791373715717981 ], [ -73.781747088292278, 40.791133406645741 ], [ -73.781078459702229, 40.791677321779048 ], [ -73.780775031390178, 40.792990705340529 ], [ -73.780839490143194, 40.793277440172815 ], [ -73.781588815450164, 40.7934635410125 ], [ -73.7816386419167, 40.793309707766824 ], [ -73.781660115553905, 40.793482020313022 ], [ -73.780724350698364, 40.793333618824171 ], [ -73.780791820726506, 40.794035919864378 ], [ -73.781005396672953, 40.794384818627137 ], [ -73.781903854871686, 40.794901203895428 ], [ -73.783109769639708, 40.794914460505801 ], [ -73.783317966842645, 40.794758356474148 ], [ -73.783258762530366, 40.794923914800499 ], [ -73.782003261033807, 40.79497546250353 ], [ -73.781541500327478, 40.795659737319994 ], [ -73.779803051181958, 40.796205528937996 ], [ -73.779362468048291, 40.796685392534812 ], [ -73.778714788287317, 40.796597360197261 ], [ -73.778066629376013, 40.796738727304287 ], [ -73.776928178268562, 40.796469251526702 ], [ -73.776126281443581, 40.796061479534735 ], [ -73.774314374908954, 40.794425261346198 ], [ -73.774013534992974, 40.794030001360298 ], [ -73.773632481227907, 40.792749756213794 ], [ -73.772326482331891, 40.7914808246436 ], [ -73.772132928264625, 40.790178774334414 ], [ -73.770631245377743, 40.788462905032013 ], [ -73.770823150214255, 40.787982667059907 ], [ -73.771737563506662, 40.787463608911828 ], [ -73.774268361250904, 40.786756658656024 ], [ -73.774389768349096, 40.786857145296807 ], [ -73.774230114868587, 40.787065041675916 ], [ -73.775019226121813, 40.787394474382836 ], [ -73.776337288848453, 40.788487225755055 ], [ -73.774806953694153, 40.786970687278853 ], [ -73.774264666944347, 40.786651229145228 ], [ -73.774076382977881, 40.785917284019185 ], [ -73.771607319794867, 40.782996265185446 ], [ -73.770609744548594, 40.782079793940667 ] ] ] } }
-,
-{ "type": "Feature", "id": 125, "properties": { "communityDistrict": 408, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/408" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.756703291674768, 40.726229432660404 ], [ -73.75409142333362, 40.724691905785285 ], [ -73.759500941502282, 40.721027372276801 ], [ -73.764469517897751, 40.718890392377823 ], [ -73.767332280868814, 40.717289796810576 ], [ -73.773571351684041, 40.71512009536869 ], [ -73.786160059249454, 40.712060071342577 ], [ -73.787846784799811, 40.711810833167561 ], [ -73.788434811837149, 40.711984687608989 ], [ -73.788472460251171, 40.712218530483391 ], [ -73.788688403626438, 40.712330032624834 ], [ -73.789012095879585, 40.712072709100696 ], [ -73.795616689618569, 40.70975307917503 ], [ -73.814439318654323, 40.70440215056346 ], [ -73.817097387564516, 40.704029801587659 ], [ -73.818285663457132, 40.706302850482075 ], [ -73.820452364596164, 40.709774548575126 ], [ -73.82363860711493, 40.712666644483171 ], [ -73.824717494276598, 40.714506849725737 ], [ -73.825890698681974, 40.715938526458785 ], [ -73.826325626110787, 40.717399930167879 ], [ -73.826142223373338, 40.719379527615928 ], [ -73.826212780826879, 40.720199243902556 ], [ -73.82662157445283, 40.721237069343253 ], [ -73.827690590644806, 40.72289294931705 ], [ -73.829051032179208, 40.724325708097204 ], [ -73.831717649745357, 40.726221681523349 ], [ -73.832861832220743, 40.727893443800951 ], [ -73.836127786102153, 40.734241312003135 ], [ -73.836356249845934, 40.735008592150187 ], [ -73.836744575851313, 40.738602570580063 ], [ -73.837679583556039, 40.741977252524684 ], [ -73.837683428075167, 40.743300339711446 ], [ -73.835915649418624, 40.743430893895997 ], [ -73.835861318721328, 40.743227984538507 ], [ -73.833825727327209, 40.742762421119849 ], [ -73.831131227778442, 40.742338000406534 ], [ -73.831430254382042, 40.739135733128357 ], [ -73.83053551231437, 40.737520194763206 ], [ -73.829467519970137, 40.737024482753384 ], [ -73.82809152577299, 40.737083175272865 ], [ -73.827943602841955, 40.738489982440825 ], [ -73.826867464523616, 40.73862891215893 ], [ -73.825853683416867, 40.739123780146976 ], [ -73.825590303232616, 40.739447592295349 ], [ -73.824974399919341, 40.739440426756168 ], [ -73.824811784878335, 40.739630959900524 ], [ -73.825373876673737, 40.742232240499355 ], [ -73.815935942273825, 40.739127860871264 ], [ -73.814073820424952, 40.738780902078872 ], [ -73.797292605542609, 40.738185428334184 ], [ -73.795337729222794, 40.738493672772748 ], [ -73.780366035437737, 40.742591663146563 ], [ -73.772414610026615, 40.743884845221935 ], [ -73.767729913594749, 40.745776225670049 ], [ -73.766878535967948, 40.744093579206236 ], [ -73.765568498107683, 40.743258154524618 ], [ -73.762486092774552, 40.736730981449632 ], [ -73.762733034679158, 40.7352621626722 ], [ -73.762495338772496, 40.734734559472997 ], [ -73.764709290881811, 40.734084854795164 ], [ -73.76369979170164, 40.732864116847814 ], [ -73.765643744656387, 40.732533126738993 ], [ -73.764350715262154, 40.73115119213589 ], [ -73.762342098391528, 40.729538290701278 ], [ -73.7578714145791, 40.727106851486425 ], [ -73.756703291674768, 40.726229432660404 ] ] ] } }
-,
-{ "type": "Feature", "id": 126, "properties": { "communityDistrict": 481, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.835915649418624, 40.743430893895997 ], [ -73.837683428075167, 40.743300339711446 ], [ -73.837721719638623, 40.742366367753114 ], [ -73.836744575851313, 40.738602570580063 ], [ -73.836356249845934, 40.735008592150187 ], [ -73.836127786102153, 40.734241312003135 ], [ -73.832245221035535, 40.72682572097694 ], [ -73.831421586874313, 40.725964269605086 ], [ -73.828455836293145, 40.723786489157625 ], [ -73.82662157445283, 40.721237069343253 ], [ -73.826282550528305, 40.720467881605032 ], [ -73.826142397293751, 40.719653355516115 ], [ -73.826299440441844, 40.717111789626529 ], [ -73.826132714730804, 40.716437144630419 ], [ -73.825597163292713, 40.715514336939208 ], [ -73.82606003226816, 40.715399348602219 ], [ -73.82695834371026, 40.715935281893671 ], [ -73.830429023525909, 40.716962770431863 ], [ -73.831853055232642, 40.717912143304176 ], [ -73.832783460599714, 40.718802429439855 ], [ -73.83412823313644, 40.720230532396293 ], [ -73.836557629259431, 40.723373963168477 ], [ -73.839200938937779, 40.728266863029113 ], [ -73.84055003848917, 40.729844729907995 ], [ -73.84284582578421, 40.732067642742273 ], [ -73.843715762791177, 40.733225729946035 ], [ -73.844587070444092, 40.734879704222763 ], [ -73.845564478511534, 40.738002282360156 ], [ -73.846646527991808, 40.73861704635388 ], [ -73.847213615878815, 40.738643986683861 ], [ -73.847778442173137, 40.739344835748881 ], [ -73.847579807180352, 40.739721354438394 ], [ -73.847801646205241, 40.740049676962151 ], [ -73.850115566364181, 40.740723562798379 ], [ -73.854425752537722, 40.748851726381922 ], [ -73.850864397100324, 40.749995641874605 ], [ -73.852617253522425, 40.753405065527922 ], [ -73.85382000610656, 40.757185697572261 ], [ -73.852165079894235, 40.757459673296168 ], [ -73.852191168197322, 40.757566795357626 ], [ -73.852924766599486, 40.758711007572863 ], [ -73.853834400514302, 40.759426977806484 ], [ -73.854782737595954, 40.759848300268381 ], [ -73.855302660297895, 40.760649584249649 ], [ -73.854663663928022, 40.760171169561232 ], [ -73.853724039348421, 40.760246389137372 ], [ -73.852779285654833, 40.759972989616628 ], [ -73.851585529011857, 40.759355420656952 ], [ -73.850424378224886, 40.75950641103757 ], [ -73.849709083506298, 40.759838837957389 ], [ -73.849301108143379, 40.760242875349959 ], [ -73.849874844961491, 40.761103812948427 ], [ -73.851974129628715, 40.760249407381743 ], [ -73.852072001778481, 40.760392884672086 ], [ -73.84981162475141, 40.761270974008134 ], [ -73.849166624062661, 40.760296583785248 ], [ -73.848686556591531, 40.760138494105476 ], [ -73.843593612502019, 40.763370542787463 ], [ -73.843687876641269, 40.763612726083679 ], [ -73.843436287804707, 40.763432566193593 ], [ -73.843069612035563, 40.763592569152813 ], [ -73.843042408108317, 40.764321319920235 ], [ -73.842728193964845, 40.764628548931697 ], [ -73.84244022546055, 40.764504272993577 ], [ -73.841965988319444, 40.763597940528236 ], [ -73.840625628830807, 40.764023419892112 ], [ -73.839834259423796, 40.765070408822069 ], [ -73.840022202075062, 40.764232465541603 ], [ -73.839981248329821, 40.763438746487431 ], [ -73.839253657660919, 40.761908062372001 ], [ -73.841224044254048, 40.762300299826371 ], [ -73.842395698824348, 40.762214199018139 ], [ -73.843716577998109, 40.761739001439047 ], [ -73.845852358104509, 40.760455397694045 ], [ -73.843243813565991, 40.755336803767008 ], [ -73.839123298415657, 40.756828062269051 ], [ -73.839060075881889, 40.756665549076821 ], [ -73.839510493379223, 40.756416007711444 ], [ -73.839746278511527, 40.755921121043762 ], [ -73.840662690255201, 40.755208812717377 ], [ -73.840692373355125, 40.754121978192046 ], [ -73.840847999142554, 40.753913221699101 ], [ -73.840572749452335, 40.753779619146016 ], [ -73.840581316336156, 40.753618746290755 ], [ -73.837989212642583, 40.754515042982305 ], [ -73.835080493039897, 40.750153225254117 ], [ -73.834787361300471, 40.749458289450487 ], [ -73.834707080240747, 40.748631931767974 ], [ -73.834848409588332, 40.747792914629045 ], [ -73.83513889924977, 40.747160372591594 ], [ -73.834690426199643, 40.746902697785934 ], [ -73.835675539474607, 40.744850518062684 ], [ -73.835915649418624, 40.743430893895997 ] ] ] } }
-,
-{ "type": "Feature", "id": 127, "properties": { "communityDistrict": 309, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.928722045946031, 40.664495569685258 ], [ -73.931602186067863, 40.663230444400178 ], [ -73.930903549322721, 40.656610355984142 ], [ -73.959696658630605, 40.654839214726195 ], [ -73.959861031131027, 40.655634789439297 ], [ -73.961880864397983, 40.65488119205223 ], [ -73.963069062239654, 40.662207859940246 ], [ -73.962428941590517, 40.663125207981075 ], [ -73.960955953876265, 40.663285054833999 ], [ -73.962575314326202, 40.671644198394539 ], [ -73.955269636547627, 40.67012490485407 ], [ -73.92834967165949, 40.668647194188125 ], [ -73.928722045946031, 40.664495569685258 ] ] ] } }
-,
-{ "type": "Feature", "id": 128, "properties": { "communityDistrict": 355, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/355" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.962575314326202, 40.671644198394539 ], [ -73.960955953876265, 40.663285054833999 ], [ -73.962428941590517, 40.663125207981075 ], [ -73.963069062239654, 40.662207859940246 ], [ -73.961880864397983, 40.65488119205223 ], [ -73.971456203085324, 40.651140312462367 ], [ -73.972222286057303, 40.6510469517657 ], [ -73.974119534582783, 40.65769375242148 ], [ -73.974482340347052, 40.65833944977868 ], [ -73.979578700956395, 40.660853242153919 ], [ -73.980001138906843, 40.660757564209916 ], [ -73.980206450103537, 40.661105712448816 ], [ -73.979653534103278, 40.661243233730893 ], [ -73.97085440701143, 40.67186436527696 ], [ -73.970412894844742, 40.672593723023965 ], [ -73.97074859323223, 40.672638249975272 ], [ -73.971189312508415, 40.673135553750669 ], [ -73.971478291649149, 40.674103237677492 ], [ -73.97130682016514, 40.674889431905704 ], [ -73.970840412707744, 40.675386969787304 ], [ -73.969942563507274, 40.675468900880887 ], [ -73.96907731857624, 40.674839670814826 ], [ -73.968718221691745, 40.673924233914761 ], [ -73.968942063512657, 40.67288749127016 ], [ -73.968172958547754, 40.673029414357451 ], [ -73.966602780071014, 40.672797589726898 ], [ -73.962575314326202, 40.671644198394539 ] ] ] } }
-,
-{ "type": "Feature", "id": 129, "properties": { "communityDistrict": 164, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/164" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.949231860729938, 40.7968730719466 ], [ -73.973014871761208, 40.764278879445193 ], [ -73.981512762813324, 40.767890167529167 ], [ -73.981443327542408, 40.768164458683223 ], [ -73.981679436393961, 40.76839013093614 ], [ -73.958172971038437, 40.800582541457338 ], [ -73.949231860729938, 40.7968730719466 ] ] ] } }
-,
-{ "type": "Feature", "id": 130, "properties": { "communityDistrict": 301, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.924059097370503, 40.714111559644898 ], [ -73.922232946648109, 40.712854424853191 ], [ -73.921686635675101, 40.711894317397928 ], [ -73.921546016956825, 40.711043283534813 ], [ -73.920745196554748, 40.710529686490297 ], [ -73.926089300269695, 40.705679701161777 ], [ -73.933950929725427, 40.702674592697853 ], [ -73.941930788822305, 40.700725234695796 ], [ -73.957019931894408, 40.698973914349807 ], [ -73.962839637163441, 40.698038668339827 ], [ -73.962179780891731, 40.700220710101576 ], [ -73.967209620426217, 40.704255709153294 ], [ -73.968389336807874, 40.706829186746916 ], [ -73.969292963484961, 40.70709333109555 ], [ -73.969848648235356, 40.708003041687661 ], [ -73.969940881256278, 40.709310231405937 ], [ -73.969556795897248, 40.71029607081725 ], [ -73.970009532225248, 40.710453937627591 ], [ -73.969731236297619, 40.710512829442145 ], [ -73.969633999364191, 40.71066539565313 ], [ -73.9697502667848, 40.710832877727157 ], [ -73.969348948808317, 40.710960614786423 ], [ -73.969762803571356, 40.711172617759978 ], [ -73.969258121947675, 40.711162421246428 ], [ -73.969425981825339, 40.71147272512718 ], [ -73.969115353610121, 40.711511898978102 ], [ -73.968809342546137, 40.712256055474661 ], [ -73.96894455591719, 40.712426547720199 ], [ -73.968795809314557, 40.712737038853582 ], [ -73.968469733470428, 40.71282470934613 ], [ -73.968499274458566, 40.71310284084992 ], [ -73.968842290502749, 40.713223925021602 ], [ -73.967244043489757, 40.716585349916322 ], [ -73.967113542899298, 40.716897539103933 ], [ -73.967267983560447, 40.716985740955586 ], [ -73.96659690266641, 40.717967980887437 ], [ -73.967307414744155, 40.71831306668156 ], [ -73.967182436972962, 40.718483056301764 ], [ -73.96706867689133, 40.718439036293866 ], [ -73.967151011065539, 40.71831612593224 ], [ -73.966531175651781, 40.718032127098624 ], [ -73.9658789353267, 40.718755077686396 ], [ -73.96662993360907, 40.719132427860877 ], [ -73.966543446305494, 40.719222942469457 ], [ -73.965858471751758, 40.718773228346457 ], [ -73.965525773331521, 40.718900892712249 ], [ -73.965153859760392, 40.719269683047351 ], [ -73.96554693084714, 40.719659198690835 ], [ -73.965374310617179, 40.720093633066867 ], [ -73.965137135622882, 40.720343594754155 ], [ -73.964463861803665, 40.720064662999889 ], [ -73.964356061313552, 40.72016300359865 ], [ -73.964682836412777, 40.72047045735993 ], [ -73.964350905740957, 40.720404032371697 ], [ -73.964087691478667, 40.720755529522236 ], [ -73.96504914549368, 40.721357344251757 ], [ -73.964894220979659, 40.721475120882218 ], [ -73.96399793658405, 40.72093843807253 ], [ -73.963538553484597, 40.721573378514123 ], [ -73.962965663369587, 40.722034477122676 ], [ -73.962072719438567, 40.723880300905492 ], [ -73.962471951129032, 40.724174989273486 ], [ -73.962007447990146, 40.723991901607768 ], [ -73.961894267121849, 40.724106702101054 ], [ -73.961659843013464, 40.724860454463034 ], [ -73.962114615668355, 40.72514806339889 ], [ -73.961902396431299, 40.725320500811073 ], [ -73.961536793587229, 40.725108918349491 ], [ -73.961163663684175, 40.725264605830894 ], [ -73.960432302406105, 40.725114108660506 ], [ -73.958330782269087, 40.72441170076614 ], [ -73.958039167416644, 40.724427440878614 ], [ -73.957941834894953, 40.724649202699865 ], [ -73.957950962792992, 40.725036439168612 ], [ -73.958351771449216, 40.725198057301952 ], [ -73.95842611909984, 40.725400535832364 ], [ -73.960124971993039, 40.725319636637117 ], [ -73.960285449442097, 40.725948122412944 ], [ -73.96161518835936, 40.725865563074024 ], [ -73.96161716963762, 40.72666142199099 ], [ -73.960996408416563, 40.728769125583263 ], [ -73.961431876117715, 40.730965171647625 ], [ -73.961716145120263, 40.731569917443444 ], [ -73.961909477178594, 40.731651374500011 ], [ -73.962263404232957, 40.732915551623478 ], [ -73.963677260131689, 40.732920073981035 ], [ -73.963661225696498, 40.732798506484301 ], [ -73.964030991366371, 40.73275793875959 ], [ -73.964088219002377, 40.732919099545029 ], [ -73.962304080110698, 40.733114091410627 ], [ -73.962355059552436, 40.733713260621464 ], [ -73.962090344499103, 40.7345079978736 ], [ -73.960467480762475, 40.736399644850124 ], [ -73.959191076228649, 40.737539116286747 ], [ -73.956918200096553, 40.738888914787999 ], [ -73.954663215000195, 40.73912795313435 ], [ -73.952923557241817, 40.738934942395183 ], [ -73.95046458346593, 40.73830958079531 ], [ -73.946523528547857, 40.736926853958146 ], [ -73.94645392267347, 40.736809590461142 ], [ -73.947199833010473, 40.735355178113807 ], [ -73.947065329153872, 40.734401992819222 ], [ -73.946598067073523, 40.734442224347262 ], [ -73.946736923406988, 40.735294943719829 ], [ -73.946929027374708, 40.735313140683722 ], [ -73.946626637866245, 40.735865585167396 ], [ -73.946443101402551, 40.735813184455999 ], [ -73.94617195815438, 40.73620288877391 ], [ -73.945873106289611, 40.736101831258438 ], [ -73.945570485232892, 40.736612303910718 ], [ -73.944999089555594, 40.736436693712911 ], [ -73.945254922795627, 40.735892789003742 ], [ -73.94518507247389, 40.735479152678096 ], [ -73.94503299031922, 40.735428615683325 ], [ -73.944520087357361, 40.736283654181612 ], [ -73.943213476529465, 40.735790530016118 ], [ -73.942394436084996, 40.735425749947829 ], [ -73.941545668324494, 40.734734335934768 ], [ -73.940997465999175, 40.733790485555772 ], [ -73.941156158094145, 40.733748909609844 ], [ -73.941038433408494, 40.733488260203302 ], [ -73.940568689302509, 40.733058494257641 ], [ -73.940684916674059, 40.733017077124842 ], [ -73.940366589529503, 40.732212586914791 ], [ -73.939813225593824, 40.731152688911699 ], [ -73.938103349606649, 40.729728519521316 ], [ -73.936931247998686, 40.729108091265545 ], [ -73.934929264579367, 40.728543915753342 ], [ -73.932004204538131, 40.728145082893441 ], [ -73.929580206908796, 40.72761282070865 ], [ -73.928494185401618, 40.726614603307858 ], [ -73.927871724050249, 40.725854051197643 ], [ -73.927796501041854, 40.724925668211021 ], [ -73.925614705166225, 40.720061662212423 ], [ -73.924817989436974, 40.720265137475288 ], [ -73.924538550518534, 40.719342580204902 ], [ -73.924702278071138, 40.718688304100596 ], [ -73.924931813129405, 40.718405828748971 ], [ -73.928379301015013, 40.717578367290066 ], [ -73.928879651800145, 40.71772031862352 ], [ -73.929705399813798, 40.717049279389535 ], [ -73.929319998321347, 40.716112008833008 ], [ -73.929473569214608, 40.715721452621125 ], [ -73.931792671630646, 40.715182975090769 ], [ -73.93222529811969, 40.714935797460804 ], [ -73.932136869872764, 40.71467904647514 ], [ -73.93175357116219, 40.714741675505287 ], [ -73.931240670594903, 40.713724810884685 ], [ -73.931645273916658, 40.713342793758102 ], [ -73.932646214588075, 40.713039272297976 ], [ -73.932032629805093, 40.711590223074253 ], [ -73.933384846153018, 40.71123372774565 ], [ -73.933283493203476, 40.710978706452757 ], [ -73.93190101920861, 40.711338471428178 ], [ -73.930932275477375, 40.709165311254111 ], [ -73.930501000831981, 40.708681225039548 ], [ -73.930250388490833, 40.708927912919926 ], [ -73.93154613680818, 40.71185535175065 ], [ -73.930778947370527, 40.71216042795546 ], [ -73.931610327349432, 40.712038022177772 ], [ -73.931842494934315, 40.712627237990588 ], [ -73.9304229437912, 40.713172558671431 ], [ -73.931052318356663, 40.714610223922932 ], [ -73.930851901340304, 40.714902985592772 ], [ -73.928438817485414, 40.715530949575331 ], [ -73.92890242854061, 40.716572812317885 ], [ -73.928768050934465, 40.716807330616838 ], [ -73.928211350045686, 40.71711323979315 ], [ -73.924492665378452, 40.717909675837682 ], [ -73.923587862339772, 40.717271580636805 ], [ -73.923055000143336, 40.716342664793345 ], [ -73.924313299615733, 40.71584705657672 ], [ -73.924885535736507, 40.715267187652948 ], [ -73.92433589757124, 40.714122593466371 ], [ -73.924059097370503, 40.714111559644898 ] ] ] } }
-,
-{ "type": "Feature", "id": 131, "properties": { "communityDistrict": 304, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/304" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896466251289269, 40.682336422475885 ], [ -73.896581586979721, 40.681574718432479 ], [ -73.896749659511244, 40.681492026062003 ], [ -73.896959138460176, 40.680699581824157 ], [ -73.897383813046474, 40.680168812622249 ], [ -73.897862999396963, 40.679875011118256 ], [ -73.898899282875462, 40.679560934398964 ], [ -73.900245377055157, 40.679422791011412 ], [ -73.90262262346468, 40.68066450291613 ], [ -73.904046398088894, 40.679220598019157 ], [ -73.941930788822305, 40.700725234695796 ], [ -73.933950929725427, 40.702674592697853 ], [ -73.926089300269695, 40.705679701161777 ], [ -73.921891846986938, 40.709396096710805 ], [ -73.91180710003394, 40.703434952026086 ], [ -73.912904041219576, 40.702361891296647 ], [ -73.910678826713834, 40.701045969063564 ], [ -73.911808200384499, 40.699938002621316 ], [ -73.904260184116879, 40.695700371443174 ], [ -73.905795970753104, 40.694127155011522 ], [ -73.901232906600811, 40.691442278638164 ], [ -73.901804671539708, 40.690766298769027 ], [ -73.900424650470654, 40.688183898876233 ], [ -73.90116154994368, 40.68787793535499 ], [ -73.896466251289269, 40.682336422475885 ] ] ] } }
-,
-{ "type": "Feature", "id": 132, "properties": { "communityDistrict": 480, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/480" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.891450788577373, 40.776397251863614 ], [ -73.891120443394783, 40.777124699735985 ], [ -73.890562505953582, 40.777403920964275 ], [ -73.890465373951272, 40.777703219287069 ], [ -73.890173695746853, 40.777850812778432 ], [ -73.889471053997596, 40.775535550967213 ], [ -73.889789007560651, 40.774236861169818 ], [ -73.8901917158678, 40.773646876225598 ], [ -73.889851699596761, 40.773753297363925 ], [ -73.889454869037365, 40.773532951127159 ], [ -73.885807622205476, 40.774022224474699 ], [ -73.885626507399152, 40.774437639289459 ], [ -73.885632310353756, 40.774097074788578 ], [ -73.885784736976674, 40.774024712164497 ], [ -73.883916279638086, 40.774132606591536 ], [ -73.884551505982643, 40.7743606223328 ], [ -73.884837423910511, 40.774952980745631 ], [ -73.884773619734403, 40.775332280587151 ], [ -73.884287377121282, 40.775472056165981 ], [ -73.885055226584527, 40.778405312744127 ], [ -73.885250270527052, 40.778612901743095 ], [ -73.885052917409524, 40.778775435672046 ], [ -73.885084107162726, 40.779352571616101 ], [ -73.884881137310472, 40.779987196741253 ], [ -73.883852032195705, 40.780264319754494 ], [ -73.882904911865566, 40.780348697239738 ], [ -73.882744497173078, 40.780223423067 ], [ -73.881390759194431, 40.780601608407331 ], [ -73.879734668430231, 40.780654818049832 ], [ -73.879586468348052, 40.780698109854903 ], [ -73.879606924328698, 40.780850313065237 ], [ -73.879358061023254, 40.780656680128018 ], [ -73.879204838516287, 40.780767389334819 ], [ -73.878705625188744, 40.780585909950055 ], [ -73.879051157592997, 40.781730532358885 ], [ -73.87930868295156, 40.781853658332288 ], [ -73.878858374194763, 40.782398178680481 ], [ -73.879701636722544, 40.782882818072267 ], [ -73.878831467817449, 40.782430714494346 ], [ -73.878339232980636, 40.783025920749417 ], [ -73.875157548935576, 40.781509448648102 ], [ -73.874845273314833, 40.781684924075265 ], [ -73.871248562425151, 40.786038151254978 ], [ -73.869780811926418, 40.785337933325813 ], [ -73.868099122578883, 40.787458661818384 ], [ -73.867884074707646, 40.787361036694563 ], [ -73.868130320000176, 40.787232777844125 ], [ -73.86987007434341, 40.785085907068158 ], [ -73.869437517232143, 40.78363839981445 ], [ -73.868607160114422, 40.783800140944386 ], [ -73.868494792590866, 40.783662778245507 ], [ -73.869423447954205, 40.783591314917714 ], [ -73.870480298328459, 40.78230611231443 ], [ -73.871462923581831, 40.782126400740765 ], [ -73.872557327398482, 40.780821121543305 ], [ -73.864710664970914, 40.776733186253558 ], [ -73.855051062718189, 40.772195389989093 ], [ -73.85508635910341, 40.771831388277363 ], [ -73.856458073493727, 40.770320861198734 ], [ -73.857380913283251, 40.770570807156396 ], [ -73.857529746091615, 40.77038630696542 ], [ -73.858205110502098, 40.770323456477165 ], [ -73.856212676101833, 40.769195797757774 ], [ -73.856245657460647, 40.768885714701554 ], [ -73.857047902621204, 40.769139556451385 ], [ -73.857678002661373, 40.768276265894023 ], [ -73.858052619465298, 40.768090656371264 ], [ -73.858773765530614, 40.767349995600988 ], [ -73.859375104297783, 40.767075328942681 ], [ -73.860855359444798, 40.766932118591775 ], [ -73.861102771522781, 40.76727194252976 ], [ -73.861313861661117, 40.766940631743722 ], [ -73.862265651377228, 40.766803167772721 ], [ -73.862602214031156, 40.766893979839814 ], [ -73.863402148656107, 40.766455512262858 ], [ -73.866068759550757, 40.76879618165259 ], [ -73.869437197639769, 40.77092448203004 ], [ -73.871433573419822, 40.771576467221315 ], [ -73.873279414553082, 40.771767401350935 ], [ -73.876016564526168, 40.771551044049495 ], [ -73.877814163199744, 40.771070456837741 ], [ -73.883565936288562, 40.768180444659357 ], [ -73.887706618200212, 40.766838598051493 ], [ -73.888221093892724, 40.768592289569682 ], [ -73.888725513387399, 40.768916239120159 ], [ -73.889423743511657, 40.7730459285143 ], [ -73.893242367511419, 40.77394301864571 ], [ -73.896564775519536, 40.776247024325471 ], [ -73.89423247497794, 40.778153613229705 ], [ -73.892860400757385, 40.777159074348354 ], [ -73.892253657035397, 40.777204522526318 ], [ -73.891450788577373, 40.776397251863614 ] ] ] } }
-,
-{ "type": "Feature", "id": 133, "properties": { "communityDistrict": 413, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.74694320572226, 40.637529202175521 ], [ -73.746789789886549, 40.637876681499385 ], [ -73.744597963429428, 40.639521173264775 ], [ -73.743990632320248, 40.641247069543333 ], [ -73.747372810445341, 40.644620178206722 ], [ -73.748555411130468, 40.645540914719547 ], [ -73.766695938389375, 40.655802847501583 ], [ -73.767390970865605, 40.655838168699717 ], [ -73.768327401635787, 40.655600115136018 ], [ -73.769743641745009, 40.655948254796364 ], [ -73.775253079707582, 40.659320044127135 ], [ -73.776413927202583, 40.659870722897544 ], [ -73.778799852846348, 40.660562153298919 ], [ -73.783939817926694, 40.6627828314193 ], [ -73.785025138063148, 40.663421072397398 ], [ -73.795822963931485, 40.664953255151815 ], [ -73.802032076901142, 40.665248024829793 ], [ -73.801682665533647, 40.66632235257088 ], [ -73.793059808035736, 40.666193204080379 ], [ -73.78948089661391, 40.666367651621606 ], [ -73.780316672390697, 40.667176372328825 ], [ -73.77445107675409, 40.667471577021139 ], [ -73.770174819819616, 40.667315464264462 ], [ -73.757956436648485, 40.665955403396751 ], [ -73.756995333616061, 40.667741268061768 ], [ -73.756437342919526, 40.669666378742065 ], [ -73.756362391936634, 40.672429237108844 ], [ -73.755817710871824, 40.675752742227324 ], [ -73.755234578055294, 40.677288409747391 ], [ -73.752258286195811, 40.681491410970018 ], [ -73.750089911311093, 40.685923446358679 ], [ -73.748569930944782, 40.687803738207059 ], [ -73.744846105650581, 40.693139056115278 ], [ -73.751212469699198, 40.70730658007804 ], [ -73.753708345570089, 40.713324636235697 ], [ -73.759441429410103, 40.721063443753103 ], [ -73.75409142333362, 40.724691905785285 ], [ -73.756703291674768, 40.726229432660404 ], [ -73.752970287172531, 40.727705620131594 ], [ -73.750482956498644, 40.729221294393867 ], [ -73.746721402966443, 40.732477150642502 ], [ -73.742947857899594, 40.735456551528806 ], [ -73.74151636839602, 40.73686036104047 ], [ -73.739012103523919, 40.739746479175146 ], [ -73.738160479203913, 40.740376435816998 ], [ -73.73375484853679, 40.742747628312401 ], [ -73.731064618808389, 40.744888375884287 ], [ -73.729066709742796, 40.747390958743573 ], [ -73.728253810495048, 40.749693728645596 ], [ -73.727713561863254, 40.750626894611599 ], [ -73.726414721371526, 40.751915877812721 ], [ -73.723266734112798, 40.753947599496982 ], [ -73.7224109479736, 40.754920189248402 ], [ -73.721458702613546, 40.75665808054616 ], [ -73.720315952915698, 40.757897258117524 ], [ -73.718970503650667, 40.758783237036504 ], [ -73.717672370657056, 40.759311211520334 ], [ -73.716125282334986, 40.759660714307273 ], [ -73.713518281059919, 40.759837730830796 ], [ -73.701633458262947, 40.752493329188589 ], [ -73.700020205032914, 40.739236541731927 ], [ -73.701470730381175, 40.73751156096408 ], [ -73.707662172399296, 40.72783093450775 ], [ -73.710499953620726, 40.727227087413205 ], [ -73.715879719946443, 40.726541905659133 ], [ -73.718287067787642, 40.726041110767838 ], [ -73.725671969594401, 40.72403765899314 ], [ -73.729144354071764, 40.72276307052519 ], [ -73.730326289020383, 40.722157296783266 ], [ -73.729176295154446, 40.719167214561701 ], [ -73.727359618426561, 40.712388941114781 ], [ -73.726894874152777, 40.709978573617782 ], [ -73.727046964868734, 40.709498752808933 ], [ -73.72678346833888, 40.701987123948363 ], [ -73.726544350585797, 40.698982640166044 ], [ -73.726202596767351, 40.688984340809085 ], [ -73.725797879423141, 40.684353849825037 ], [ -73.725906600606777, 40.682656604624043 ], [ -73.725630051199005, 40.679587950781354 ], [ -73.726198061957462, 40.677380889729726 ], [ -73.727556163566533, 40.67416158768895 ], [ -73.727994456800815, 40.669426693583226 ], [ -73.728263851373683, 40.668072875630394 ], [ -73.728272722549718, 40.666429592083581 ], [ -73.72787486759978, 40.664695132718997 ], [ -73.727813923274411, 40.663223969476455 ], [ -73.728330718759594, 40.663043943731125 ], [ -73.727931243454947, 40.661748835103268 ], [ -73.726444386084552, 40.659161614919604 ], [ -73.725926876752027, 40.657731319351264 ], [ -73.725552842045872, 40.655039958596099 ], [ -73.725055690535726, 40.653507893640302 ], [ -73.725099345820951, 40.652345748311753 ], [ -73.725226081070161, 40.652001000147443 ], [ -73.730286529721809, 40.650368522674384 ], [ -73.735135014063204, 40.649732040465288 ], [ -73.739044821314337, 40.648201180344401 ], [ -73.741437060423451, 40.646889178321423 ], [ -73.741661413177269, 40.642198061679821 ], [ -73.742050849527686, 40.641474204525665 ], [ -73.741422793149624, 40.640503390753288 ], [ -73.742273871599423, 40.640123381449982 ], [ -73.741259000675782, 40.638897499434982 ], [ -73.739471216267901, 40.635706431829369 ], [ -73.739959575705754, 40.635143809373297 ], [ -73.74001376732646, 40.635345586724839 ], [ -73.740773490474055, 40.635163200064767 ], [ -73.740420473543182, 40.635144298440466 ], [ -73.74164858697317, 40.63505389381686 ], [ -73.741678863369742, 40.63495617450787 ], [ -73.74144240592274, 40.634964020678723 ], [ -73.741708827298211, 40.634926322434787 ], [ -73.742466426812285, 40.635119228253572 ], [ -73.742551526621654, 40.635291501586053 ], [ -73.742391239526356, 40.635630300126799 ], [ -73.742585398435921, 40.635453356661131 ], [ -73.742436380204964, 40.635712755107448 ], [ -73.742313404080349, 40.635687984457867 ], [ -73.740964877523396, 40.637304775031545 ], [ -73.741303724911035, 40.637898812918422 ], [ -73.741890403056061, 40.638122213540228 ], [ -73.742729662373904, 40.638270155980194 ], [ -73.743971284962342, 40.637880012614836 ], [ -73.744038154506214, 40.637986076622539 ], [ -73.743522263041612, 40.638889486376229 ], [ -73.743734215706056, 40.639022117665419 ], [ -73.744795580825311, 40.637075029074644 ], [ -73.744712755776732, 40.637307046895664 ], [ -73.745194969008281, 40.637191712310511 ], [ -73.746292190006656, 40.63643726798243 ], [ -73.746790746413723, 40.636778135539537 ], [ -73.746453943678944, 40.63725982088264 ], [ -73.745271386429266, 40.637915901245329 ], [ -73.745162199737081, 40.638112187973036 ], [ -73.745327703335931, 40.638372211969788 ], [ -73.745673160042543, 40.63812465742793 ], [ -73.745510583177264, 40.637943881034793 ], [ -73.746439509020078, 40.63742955057031 ], [ -73.746995183730206, 40.63689083416341 ], [ -73.74699985204262, 40.63712702776175 ], [ -73.747154358577063, 40.637126363606498 ], [ -73.746993912571256, 40.63715064468574 ], [ -73.74694320572226, 40.637529202175521 ] ] ] } }
-,
-{ "type": "Feature", "id": 134, "properties": { "communityDistrict": 112, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.934452393973729, 40.835980960149861 ], [ -73.934798863439653, 40.836110116261764 ], [ -73.934962741107384, 40.835759934247271 ], [ -73.938385089004612, 40.83311350252125 ], [ -73.940170897886517, 40.830384391128689 ], [ -73.949415704906926, 40.834358589832483 ], [ -73.950155209966098, 40.83439675981581 ], [ -73.949546007293733, 40.836604371501778 ], [ -73.949282850620207, 40.836740786585409 ], [ -73.949540037170678, 40.83687963152353 ], [ -73.948560545205652, 40.839564884659111 ], [ -73.947383221543006, 40.841940825299289 ], [ -73.946124163555936, 40.843892496556798 ], [ -73.946171749838769, 40.845392891580602 ], [ -73.946517302005773, 40.845995184403719 ], [ -73.946350780499344, 40.846240331289252 ], [ -73.946824453426444, 40.84713426206978 ], [ -73.946635500788531, 40.84891242506 ], [ -73.947027824947213, 40.850041831812419 ], [ -73.946926264710498, 40.850528055668654 ], [ -73.946515901499836, 40.850968338577609 ], [ -73.946275014966645, 40.850840977675539 ], [ -73.946200783220817, 40.851031488105349 ], [ -73.946081905010672, 40.85098071488104 ], [ -73.946117441051513, 40.851172583019675 ], [ -73.945652836264131, 40.851211098341174 ], [ -73.944667212442909, 40.851921226509624 ], [ -73.944325184824763, 40.8518225764386 ], [ -73.944196607813481, 40.852015341815829 ], [ -73.943479786118971, 40.852281881942261 ], [ -73.941869964266729, 40.853867739442784 ], [ -73.940293475633112, 40.856641770657937 ], [ -73.93911094164396, 40.858040911225714 ], [ -73.938309574342924, 40.859380523608095 ], [ -73.937529441725616, 40.860096641282013 ], [ -73.936475616648963, 40.861926591170722 ], [ -73.934016644266976, 40.865035548291594 ], [ -73.933950017115777, 40.865346746209838 ], [ -73.932663327214627, 40.867237066436971 ], [ -73.932901718255664, 40.867293043899295 ], [ -73.932839582050619, 40.86741527691138 ], [ -73.932597948528041, 40.867311349670395 ], [ -73.932425382153397, 40.867568248423645 ], [ -73.932267698924591, 40.868562318972756 ], [ -73.932492143648886, 40.868677518657485 ], [ -73.932650835128072, 40.868465033481861 ], [ -73.932523545600375, 40.868722078358907 ], [ -73.932250318212539, 40.868639508367878 ], [ -73.932313854482302, 40.868923720343695 ], [ -73.932567951698772, 40.869044391473821 ], [ -73.932189038922829, 40.869366976389443 ], [ -73.932468830699079, 40.869476099386972 ], [ -73.932353708072753, 40.869755255296575 ], [ -73.932359344660028, 40.869507363219356 ], [ -73.932133366030499, 40.86941597544098 ], [ -73.932059082863461, 40.869582816886684 ], [ -73.932206005318662, 40.870096445104423 ], [ -73.931913771368087, 40.871129493722719 ], [ -73.931062541995999, 40.872666806528684 ], [ -73.929013458760522, 40.875738659587938 ], [ -73.928146236035687, 40.87652252894393 ], [ -73.927530821274885, 40.876710534812979 ], [ -73.926481856522244, 40.877618203017448 ], [ -73.926296809925859, 40.877565027875669 ], [ -73.926440135797648, 40.877218403959226 ], [ -73.926192922463073, 40.877064419302521 ], [ -73.925552922482126, 40.877102588983313 ], [ -73.925082157013364, 40.87739761061556 ], [ -73.924570369647185, 40.877428912603712 ], [ -73.923294767339243, 40.877264435459765 ], [ -73.922397681693155, 40.876780223141182 ], [ -73.922444682266473, 40.875691835764471 ], [ -73.922668040028441, 40.874981991368919 ], [ -73.92257636844127, 40.874295182683888 ], [ -73.922083201628439, 40.873583808194944 ], [ -73.921117415779733, 40.873033455186217 ], [ -73.920292305727145, 40.873098416622568 ], [ -73.91979301672356, 40.873606512660395 ], [ -73.920626991656874, 40.874234811128744 ], [ -73.920802556303556, 40.874194058866657 ], [ -73.920700106651935, 40.87439193360985 ], [ -73.921181864427652, 40.875137840850179 ], [ -73.92090325581637, 40.875466166382992 ], [ -73.918861874083859, 40.874642585787029 ], [ -73.919192887780966, 40.874195168795509 ], [ -73.919294677868109, 40.873649890353896 ], [ -73.918928512967099, 40.873316510216178 ], [ -73.918499957284055, 40.873191715604293 ], [ -73.918397228083364, 40.87323181163088 ], [ -73.918597298663158, 40.873495497325088 ], [ -73.917929029179888, 40.873978893205013 ], [ -73.917577298847291, 40.874548678547193 ], [ -73.917871449175053, 40.873904995288648 ], [ -73.91634348733777, 40.874523849890132 ], [ -73.91522402146056, 40.874486621868122 ], [ -73.9126088423167, 40.873767443623592 ], [ -73.91142596184433, 40.87318176665238 ], [ -73.910648772778103, 40.872296248460621 ], [ -73.910433635042423, 40.87138081638372 ], [ -73.910723558799631, 40.870948835639432 ], [ -73.910924911580295, 40.869436591353605 ], [ -73.911474488991118, 40.869454757638316 ], [ -73.911030579502579, 40.869155402995972 ], [ -73.911128908817645, 40.868920043663984 ], [ -73.911328177588246, 40.868802439535763 ], [ -73.91184774646814, 40.867672520472468 ], [ -73.912731739857207, 40.866605212711804 ], [ -73.91254775130281, 40.86651494300429 ], [ -73.913918631332407, 40.864745584403586 ], [ -73.914923879278689, 40.864580378919115 ], [ -73.914540376260206, 40.864412351623358 ], [ -73.914411133927459, 40.864173626370388 ], [ -73.91508583854332, 40.864448143417277 ], [ -73.915899116458604, 40.864308037582482 ], [ -73.915871480657202, 40.864129090533012 ], [ -73.91519574800094, 40.863945224735858 ], [ -73.915175564297087, 40.863680433750915 ], [ -73.915476824442536, 40.863346107296742 ], [ -73.915386730511415, 40.863084384200683 ], [ -73.91729467741682, 40.861679418230622 ], [ -73.918434392517852, 40.860221533395261 ], [ -73.91839311151449, 40.860080469421412 ], [ -73.918777965339643, 40.859546750310891 ], [ -73.919502137271209, 40.858791133790938 ], [ -73.920478682731627, 40.859104092098825 ], [ -73.921270912963138, 40.860188042816688 ], [ -73.921590147820325, 40.860072800026423 ], [ -73.921866338499626, 40.859181339145074 ], [ -73.921255801367948, 40.858846553527009 ], [ -73.920938690169507, 40.858120674461475 ], [ -73.920624274948864, 40.85801681477232 ], [ -73.920484385475262, 40.858232548062446 ], [ -73.920364772497692, 40.858164937099126 ], [ -73.92047278308776, 40.85819530433254 ], [ -73.920564586812631, 40.857882978878614 ], [ -73.920773151525381, 40.857941185857911 ], [ -73.920706108160928, 40.857701014101913 ], [ -73.921014321597127, 40.857838803180528 ], [ -73.920755321305109, 40.857557159145706 ], [ -73.920982176603744, 40.857612216980648 ], [ -73.92090011378167, 40.857494287338653 ], [ -73.921048915136822, 40.857381521111556 ], [ -73.921121196903286, 40.85753677083315 ], [ -73.921519672686344, 40.857348906380025 ], [ -73.921558572219425, 40.85708883062955 ], [ -73.922376956761624, 40.856583569624377 ], [ -73.922344593741286, 40.855682335814841 ], [ -73.921698419708889, 40.856672301855397 ], [ -73.921518940590886, 40.856601170623179 ], [ -73.924440651399479, 40.852840472704372 ], [ -73.929718504776432, 40.845231777258597 ], [ -73.930894652014246, 40.842538340141893 ], [ -73.934452393973729, 40.835980960149861 ] ] ] } }
-,
-{ "type": "Feature", "id": 135, "properties": { "communityDistrict": 208, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/208" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896633337970684, 40.911417374845669 ], [ -73.896357859714925, 40.90320013158378 ], [ -73.897157171654328, 40.899371826677211 ], [ -73.896431707170763, 40.893655279926804 ], [ -73.896757900749378, 40.892645443571681 ], [ -73.899782521419539, 40.886529123507984 ], [ -73.887586126088365, 40.884255619662973 ], [ -73.887051425361179, 40.88434957584596 ], [ -73.887231940098275, 40.883054978428362 ], [ -73.886942468093807, 40.882682767258473 ], [ -73.887165051991502, 40.882576510892207 ], [ -73.887069627837747, 40.882476896066123 ], [ -73.888364875387865, 40.882267541861218 ], [ -73.889975375540757, 40.880233131422152 ], [ -73.891406962661179, 40.878969446245762 ], [ -73.897789622704778, 40.870856643398511 ], [ -73.899338511723883, 40.869228028104736 ], [ -73.899965756483837, 40.868017301510321 ], [ -73.902358047802338, 40.868696120952848 ], [ -73.903749758939654, 40.869595627140072 ], [ -73.904488604897097, 40.870578548547648 ], [ -73.904469013868876, 40.872415520678075 ], [ -73.905714252962994, 40.873138322101234 ], [ -73.90855579588731, 40.873775444425469 ], [ -73.909689484029713, 40.874602273754043 ], [ -73.910654392496312, 40.873975943060529 ], [ -73.911671462567114, 40.874487862056689 ], [ -73.915720981214321, 40.875709670949277 ], [ -73.91726028337294, 40.875809003580549 ], [ -73.917756693297093, 40.875663627860192 ], [ -73.91978381299063, 40.876421436106376 ], [ -73.92206723585673, 40.878572414802477 ], [ -73.922737882875268, 40.878905445427876 ], [ -73.923591725531338, 40.87895215933267 ], [ -73.923636952230083, 40.878815355931643 ], [ -73.923629739504122, 40.878963943243278 ], [ -73.924517958510364, 40.879058659561892 ], [ -73.924903274730823, 40.878888367853143 ], [ -73.923805256054962, 40.880324901636044 ], [ -73.9203928019909, 40.887648500226859 ], [ -73.917822182579613, 40.894422287078868 ], [ -73.917908700410848, 40.894676766399556 ], [ -73.917634882074864, 40.894941905352169 ], [ -73.916941610784022, 40.896644551702359 ], [ -73.91518455871676, 40.901584282862132 ], [ -73.91543172958427, 40.901812683688327 ], [ -73.915014495860447, 40.903081299106404 ], [ -73.914590392433141, 40.904119002196353 ], [ -73.91418416752515, 40.904139333800913 ], [ -73.912865402025631, 40.907535122202901 ], [ -73.913108639273631, 40.907844484157884 ], [ -73.912649321728779, 40.908070811955348 ], [ -73.91149190703743, 40.912233769311996 ], [ -73.91143213027847, 40.912823826219665 ], [ -73.911654723359604, 40.913417851896185 ], [ -73.911134128523685, 40.914330605901398 ], [ -73.910668554013142, 40.914799428656579 ], [ -73.91033256848911, 40.915532777005183 ], [ -73.902456640049394, 40.912958933425948 ], [ -73.896633337970684, 40.911417374845669 ] ] ] } }
-,
-{ "type": "Feature", "id": 136, "properties": { "communityDistrict": 109, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.940170897886517, 40.830384391128689 ], [ -73.93962569930143, 40.830155837387963 ], [ -73.939805957117386, 40.830004512317636 ], [ -73.939728629682307, 40.82930184433183 ], [ -73.94384275614668, 40.823647801542087 ], [ -73.942923668464658, 40.823260586747516 ], [ -73.945154570217539, 40.820876264825252 ], [ -73.946078287404234, 40.821263215559654 ], [ -73.949199601462425, 40.814720854586277 ], [ -73.950350192752254, 40.813159389290092 ], [ -73.952101251492223, 40.811442853501241 ], [ -73.953575778103641, 40.80947669765964 ], [ -73.954966571724654, 40.810064554703729 ], [ -73.958181673189713, 40.805596791128636 ], [ -73.958248783298146, 40.803106486471115 ], [ -73.959646854231522, 40.801156423256458 ], [ -73.966701068903021, 40.804168476937107 ], [ -73.971107658523039, 40.805790139676695 ], [ -73.968557478373427, 40.809072894323748 ], [ -73.96740185312369, 40.811022155397097 ], [ -73.964140828882989, 40.815771657453901 ], [ -73.959998922293451, 40.820382944802269 ], [ -73.959814626745853, 40.820297874198786 ], [ -73.959130615806288, 40.821168953774738 ], [ -73.959426244158038, 40.821252381738169 ], [ -73.959146857151907, 40.821571328550938 ], [ -73.959032942219295, 40.821513746228703 ], [ -73.959234672601511, 40.821277825270641 ], [ -73.959089603062452, 40.821206247056153 ], [ -73.958818922339958, 40.821518524846745 ], [ -73.958941729417091, 40.821569364009548 ], [ -73.958745236604997, 40.821805511973615 ], [ -73.959000183560505, 40.822409728374573 ], [ -73.959229762796213, 40.82228691013254 ], [ -73.959909994443962, 40.822571119821973 ], [ -73.959603324602782, 40.822994686783296 ], [ -73.958926147183021, 40.822711755441333 ], [ -73.959049533317085, 40.822541335368214 ], [ -73.958527314581005, 40.821843756651887 ], [ -73.95820019287855, 40.822283136917846 ], [ -73.957939049091223, 40.822774353547267 ], [ -73.958228382491924, 40.822887867101095 ], [ -73.958143127692011, 40.823020722271416 ], [ -73.959555755600221, 40.823693797769003 ], [ -73.957258970433088, 40.827117309873316 ], [ -73.956948664204674, 40.82700055393498 ], [ -73.956317845103115, 40.827944215388541 ], [ -73.955039129783941, 40.827413431911843 ], [ -73.954697366856635, 40.827918385514458 ], [ -73.954541881282907, 40.82786147636574 ], [ -73.951316411189993, 40.832450511970627 ], [ -73.950935762314813, 40.833293997985642 ], [ -73.950155209966098, 40.83439675981581 ], [ -73.949415704906926, 40.834358589832483 ], [ -73.940170897886517, 40.830384391128689 ] ] ] } }
-,
-{ "type": "Feature", "id": 137, "properties": { "communityDistrict": 110, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/110" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.934452393973729, 40.835980960149861 ], [ -73.934915335786499, 40.835230821938772 ], [ -73.935167252285169, 40.832874991772954 ], [ -73.9344239633905, 40.82704289397212 ], [ -73.933800194730466, 40.818349758873957 ], [ -73.934873438350309, 40.816527847015031 ], [ -73.936209578142737, 40.814673849920545 ], [ -73.942753672281938, 40.805744012794605 ], [ -73.944301945871231, 40.806390824581001 ], [ -73.945239652139207, 40.805136014461745 ], [ -73.946131310486734, 40.803877357584135 ], [ -73.944597513456074, 40.803228145255666 ], [ -73.949231860729938, 40.7968730719466 ], [ -73.959646854231522, 40.801156423256458 ], [ -73.958248783298146, 40.803106486471115 ], [ -73.958181673189713, 40.805596791128636 ], [ -73.954966571724654, 40.810064554703729 ], [ -73.953575778103641, 40.80947669765964 ], [ -73.952101251492223, 40.811442853501241 ], [ -73.950350192752254, 40.813159389290092 ], [ -73.949199601462425, 40.814720854586277 ], [ -73.946078287404234, 40.821263215559654 ], [ -73.945154570217539, 40.820876264825252 ], [ -73.942923668464658, 40.823260586747516 ], [ -73.94384275614668, 40.823647801542087 ], [ -73.939728629682307, 40.82930184433183 ], [ -73.939805957117386, 40.830004512317636 ], [ -73.93962569930143, 40.830155837387963 ], [ -73.940170897886517, 40.830384391128689 ], [ -73.938683162963443, 40.832800789417831 ], [ -73.934962741107384, 40.835759934247271 ], [ -73.934798863439653, 40.836110116261764 ], [ -73.934452393973729, 40.835980960149861 ] ] ] } }
-,
-{ "type": "Feature", "id": 138, "properties": { "communityDistrict": 204, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.90268810050182, 40.84458147228532 ], [ -73.905979403756234, 40.83850519529944 ], [ -73.912169826444909, 40.827902220983532 ], [ -73.916613685086176, 40.824992308005278 ], [ -73.916087827917409, 40.824837851830807 ], [ -73.92194764145448, 40.821031544959396 ], [ -73.924025572419666, 40.819285330110709 ], [ -73.925184864635582, 40.818012668874921 ], [ -73.930315050305069, 40.81931688055203 ], [ -73.932389713250288, 40.819502847336764 ], [ -73.93276594581215, 40.8254582266824 ], [ -73.933546067469919, 40.831509453501425 ], [ -73.933605920367057, 40.83278953052077 ], [ -73.933462357031431, 40.833643823071682 ], [ -73.933143067092601, 40.835194127616468 ], [ -73.932656203539793, 40.83647347652591 ], [ -73.930515723199036, 40.839933642686375 ], [ -73.930483244548711, 40.840460060566691 ], [ -73.929194079410593, 40.842818415236557 ], [ -73.929184586730983, 40.843203757647643 ], [ -73.928615748223521, 40.844676865029953 ], [ -73.928274547067915, 40.844975761156938 ], [ -73.927301944986283, 40.846506867376107 ], [ -73.923540020115283, 40.8447589441123 ], [ -73.913382939714481, 40.845187232536539 ], [ -73.906646755595673, 40.844916314067184 ], [ -73.90268810050182, 40.84458147228532 ] ] ] } }
-,
-{ "type": "Feature", "id": 139, "properties": { "communityDistrict": 103, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/103" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.988779316840834, 40.733965399235885 ], [ -73.971626972717061, 40.726628453499416 ], [ -73.973148311338107, 40.720021431551899 ], [ -73.974435518656364, 40.716246838391271 ], [ -73.976428725805761, 40.711909032503797 ], [ -73.97705659467816, 40.711197625964338 ], [ -73.97807974906604, 40.710532251079798 ], [ -73.981276842109892, 40.710217251191011 ], [ -73.981237344620908, 40.70982334331849 ], [ -73.988390640232666, 40.709126949162631 ], [ -73.988636580718492, 40.70991206151627 ], [ -73.989460670194262, 40.709889287051261 ], [ -73.99728287195579, 40.708731619842894 ], [ -73.998527585853111, 40.70833152790825 ], [ -73.999194511748954, 40.707947376351463 ], [ -74.001471402320803, 40.709746554323239 ], [ -74.000509860972329, 40.710984270453366 ], [ -74.000867814643087, 40.711568158862143 ], [ -74.000931743323804, 40.713263253045277 ], [ -74.000454630659604, 40.714365047598868 ], [ -74.000578392161202, 40.715570902924213 ], [ -73.999312417001448, 40.717550241777381 ], [ -73.998589255680329, 40.7170995115371 ], [ -73.996058727443753, 40.7162316402109 ], [ -73.994807790213102, 40.718457426350312 ], [ -73.991363881381531, 40.727559783459121 ], [ -73.99002687656818, 40.732756284494208 ], [ -73.989868521395636, 40.733527114554889 ], [ -73.989902959700501, 40.734434790136874 ], [ -73.988779316840834, 40.733965399235885 ] ] ] } }
-,
-{ "type": "Feature", "id": 140, "properties": { "communityDistrict": 302, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.969292963484961, 40.70709333109555 ], [ -73.968389336807874, 40.706829186746916 ], [ -73.967209620426217, 40.704255709153294 ], [ -73.962179780891731, 40.700220710101576 ], [ -73.962839637163441, 40.698038668339827 ], [ -73.961898378242424, 40.698188332531487 ], [ -73.961749948352178, 40.696846168402978 ], [ -73.960292816681118, 40.690346249915414 ], [ -73.958292168077833, 40.679831133494801 ], [ -73.967531966996447, 40.681768783617386 ], [ -73.967678283782007, 40.680955455311469 ], [ -73.97620908230067, 40.682729549681049 ], [ -73.978760224629411, 40.683765443980533 ], [ -73.980461554436758, 40.6812225467568 ], [ -73.982854360751816, 40.682148963461714 ], [ -73.982422837554779, 40.682782995732666 ], [ -73.984374107978155, 40.683542455374401 ], [ -73.984796946915068, 40.682908865516787 ], [ -73.986995200094256, 40.683765010822732 ], [ -73.986563034256491, 40.684388756141708 ], [ -73.988711560327573, 40.685224618479538 ], [ -73.989128407289869, 40.684589453073421 ], [ -73.993929296158825, 40.68645287164901 ], [ -73.992363670432468, 40.68969012377697 ], [ -74.001105193250609, 40.692056595339189 ], [ -74.004007959710961, 40.693208199632345 ], [ -74.00346218092524, 40.694057015074719 ], [ -74.001270149686704, 40.693296061673706 ], [ -74.000958684830195, 40.694069083582193 ], [ -74.003013938290835, 40.694777844479127 ], [ -74.002398025837948, 40.695711654864475 ], [ -74.000268723777879, 40.694965802577912 ], [ -73.999413024332057, 40.696357676453268 ], [ -73.999523739035141, 40.69657482604083 ], [ -74.000489334059552, 40.696926195088039 ], [ -74.000431472743998, 40.697052466178526 ], [ -73.99959333581242, 40.696782261474375 ], [ -73.999553890836694, 40.696945232396793 ], [ -73.999407384429574, 40.696885189446014 ], [ -73.999474068206041, 40.696704134461974 ], [ -73.999181990168637, 40.696885188064741 ], [ -73.998996041391933, 40.696812278372938 ], [ -73.998764580277054, 40.697120732591387 ], [ -74.001049031235567, 40.697908235692211 ], [ -74.000487686285524, 40.6987577781371 ], [ -73.998377606857716, 40.698063296146074 ], [ -73.998021027251099, 40.698761736573765 ], [ -74.000018404336203, 40.699466048073617 ], [ -73.999474639049623, 40.700322778018318 ], [ -73.997498983100002, 40.699638869321213 ], [ -73.997160542439218, 40.699792812644105 ], [ -73.997244628056634, 40.700141409394462 ], [ -73.996697689974638, 40.70087697691703 ], [ -73.998138799654924, 40.701518788248372 ], [ -73.996192272947724, 40.703377140864141 ], [ -73.995138268406848, 40.702974114722821 ], [ -73.995045927483247, 40.703131839799553 ], [ -73.995445642460297, 40.703275305471735 ], [ -73.995293467009333, 40.703554065897968 ], [ -73.994800382748679, 40.703291958141975 ], [ -73.994662903436122, 40.703430608056578 ], [ -73.995029259824861, 40.703808200868018 ], [ -73.994714242351506, 40.703996689060894 ], [ -73.994776143534594, 40.704245861052343 ], [ -73.994569790169322, 40.704376263513907 ], [ -73.993863410318809, 40.704556006930403 ], [ -73.993774572078053, 40.704449457408742 ], [ -73.99350881403609, 40.704623505273986 ], [ -73.992127035350663, 40.704689642033486 ], [ -73.992121005730468, 40.704396201577843 ], [ -73.991861592553562, 40.7040866421044 ], [ -73.990947553507937, 40.70403244213918 ], [ -73.99022721262051, 40.704934044487111 ], [ -73.988303322085429, 40.704540468954995 ], [ -73.98828999111295, 40.705070658495011 ], [ -73.987956765575433, 40.705134217412535 ], [ -73.986863206603715, 40.70515985694135 ], [ -73.986529730120878, 40.704979099173755 ], [ -73.986434298927065, 40.705348607419644 ], [ -73.9834380628795, 40.705644094847855 ], [ -73.983368199441571, 40.705461064573981 ], [ -73.982459568722376, 40.705508797225335 ], [ -73.982422871798903, 40.705822054949373 ], [ -73.981023906182799, 40.705898913893535 ], [ -73.981017339009455, 40.705797506467732 ], [ -73.982302051838786, 40.705736979399632 ], [ -73.982329442166034, 40.705552033664006 ], [ -73.980925103119873, 40.705369255200488 ], [ -73.980908645638038, 40.705907943811788 ], [ -73.979559184872429, 40.705743615249823 ], [ -73.979050499041293, 40.705966963089026 ], [ -73.97893110285527, 40.705924906230337 ], [ -73.97906084845792, 40.705946028940744 ], [ -73.979245087233366, 40.705548389273893 ], [ -73.978963550810661, 40.705502196504284 ], [ -73.978819090400691, 40.705862467079278 ], [ -73.978927658897888, 40.705496199169183 ], [ -73.978738294866346, 40.705463064672081 ], [ -73.978639066585714, 40.705830648221735 ], [ -73.978684405844717, 40.705454177107875 ], [ -73.978645292288533, 40.705591021595623 ], [ -73.978465578489633, 40.70556222186439 ], [ -73.97839230543768, 40.705970682310785 ], [ -73.978853032946688, 40.706065535284417 ], [ -73.978344748528713, 40.705999964987555 ], [ -73.978531988867317, 40.704876523429753 ], [ -73.978020673266556, 40.704290966456135 ], [ -73.977211963392406, 40.704213926624213 ], [ -73.977512154949636, 40.703196752663445 ], [ -73.977135626253968, 40.7030055814025 ], [ -73.976238648345273, 40.704775644190811 ], [ -73.975960962787951, 40.704715506440394 ], [ -73.976927491883515, 40.702797820400363 ], [ -73.976159372920222, 40.702171280356836 ], [ -73.975534564897416, 40.703042808805669 ], [ -73.975329873939813, 40.702951924338258 ], [ -73.976005878454458, 40.701946133781767 ], [ -73.975500831764222, 40.701758308965601 ], [ -73.975403481585289, 40.701911147567372 ], [ -73.974550233883889, 40.701590343299607 ], [ -73.975817137829992, 40.699737121272619 ], [ -73.975763695932358, 40.699592577468501 ], [ -73.975376498638397, 40.699601293329223 ], [ -73.974115139265209, 40.701305270414132 ], [ -73.97292642848619, 40.700294553427668 ], [ -73.972573119672035, 40.700082056120891 ], [ -73.972392013974584, 40.700166322752231 ], [ -73.973757007131979, 40.70153413888179 ], [ -73.973186766708963, 40.701669803673667 ], [ -73.97097896923556, 40.699856457652373 ], [ -73.970805244328432, 40.700097500342288 ], [ -73.973324560379012, 40.70241265601053 ], [ -73.972835128547729, 40.702728740744092 ], [ -73.969825565595315, 40.700245070367977 ], [ -73.96948655218084, 40.700519061258142 ], [ -73.972838900409926, 40.703346428602003 ], [ -73.972669383677143, 40.70350138043095 ], [ -73.969245392733939, 40.701364741883665 ], [ -73.968934748184296, 40.701615868207242 ], [ -73.968985173629278, 40.701747088786341 ], [ -73.97231246276111, 40.703844539538572 ], [ -73.972157988250117, 40.703970207123469 ], [ -73.971456573548267, 40.703508715924556 ], [ -73.971103422988307, 40.703459735839729 ], [ -73.970933078863382, 40.703624772048755 ], [ -73.971019631845522, 40.703815613686501 ], [ -73.974655696080404, 40.706074262994186 ], [ -73.974390835023229, 40.706325774144688 ], [ -73.973476295324247, 40.705686283391167 ], [ -73.972548800578181, 40.706204490003756 ], [ -73.974629666704644, 40.707681060768365 ], [ -73.974236169685341, 40.708024386122354 ], [ -73.971224929122684, 40.70578989940843 ], [ -73.971096554891076, 40.705850056558191 ], [ -73.971056923061823, 40.706946433816654 ], [ -73.97275756998377, 40.708831278547613 ], [ -73.972320321398243, 40.709082883304198 ], [ -73.970262185322852, 40.70688750428404 ], [ -73.970488819146198, 40.70540066562203 ], [ -73.970168945099189, 40.705361853407247 ], [ -73.970180755727995, 40.704929270566829 ], [ -73.967621148459884, 40.703348505194491 ], [ -73.967476744930281, 40.703949870956244 ], [ -73.969296938377127, 40.705088331229661 ], [ -73.969292963484961, 40.70709333109555 ] ] ] } }
-,
-{ "type": "Feature", "id": 141, "properties": { "communityDistrict": 409, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/409" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.817097387564516, 40.704029801587659 ], [ -73.814923432672259, 40.69942244007531 ], [ -73.810632983108889, 40.6919473825767 ], [ -73.846714643074961, 40.681858493694463 ], [ -73.853923891622188, 40.679686155801697 ], [ -73.863286408446143, 40.67907719656106 ], [ -73.864100966791327, 40.682372850292609 ], [ -73.866026668716259, 40.681918051772897 ], [ -73.866598483492695, 40.68526955906988 ], [ -73.867460888910415, 40.688415017596441 ], [ -73.868684543705783, 40.6940346919056 ], [ -73.868424897789154, 40.694718119012549 ], [ -73.857444477396186, 40.696912984716768 ], [ -73.852772385843949, 40.697557111441142 ], [ -73.852609659869856, 40.69780503974782 ], [ -73.852711308770878, 40.698414961501221 ], [ -73.854434556776525, 40.700602952131028 ], [ -73.850708423224148, 40.700203124602638 ], [ -73.849138373090511, 40.698282740700151 ], [ -73.845024729431415, 40.699359377017053 ], [ -73.842756641805778, 40.7006576953058 ], [ -73.841563780944213, 40.701100598717581 ], [ -73.839478151754136, 40.702690194330657 ], [ -73.836962377449964, 40.704212452332193 ], [ -73.838042772945016, 40.705956459962259 ], [ -73.837982802802316, 40.70675198796021 ], [ -73.836657203108103, 40.708584270057372 ], [ -73.834051103436607, 40.710027882253115 ], [ -73.835900722077483, 40.711641370769733 ], [ -73.831238554001303, 40.714148221539155 ], [ -73.825597163292713, 40.715514336939208 ], [ -73.824717494276598, 40.714506849725737 ], [ -73.82363860711493, 40.712666644483171 ], [ -73.820452364596164, 40.709774548575126 ], [ -73.818285663457132, 40.706302850482075 ], [ -73.817097387564516, 40.704029801587659 ] ] ] } }
-,
-{ "type": "Feature", "id": 142, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.791866920271332, 40.851791661387004 ], [ -73.792057313917027, 40.851825573261152 ], [ -73.790170071924877, 40.852280661154566 ], [ -73.791137951709317, 40.852055852573642 ], [ -73.791334567532587, 40.852166067673579 ], [ -73.791226533189317, 40.852258010501984 ], [ -73.791361879798984, 40.852225977533898 ], [ -73.791236559717774, 40.852280289886508 ], [ -73.793182841420418, 40.851808571872468 ], [ -73.793118371838361, 40.851578295240799 ], [ -73.793237867876343, 40.851931174674448 ], [ -73.793128940739194, 40.851848072675871 ], [ -73.791245567837663, 40.852304681410715 ], [ -73.791380527617108, 40.852602038305946 ], [ -73.793409876311628, 40.852021883730373 ], [ -73.793507628319134, 40.852264043924819 ], [ -73.793424006690429, 40.852136302527562 ], [ -73.791391064686735, 40.852628074985887 ], [ -73.791446400277877, 40.852771571924151 ], [ -73.790420537801694, 40.853022978212493 ], [ -73.790498793630491, 40.853188721513447 ], [ -73.791005867402191, 40.853117691261929 ], [ -73.791454363037246, 40.853010847713527 ], [ -73.791437027167987, 40.852822727480898 ], [ -73.79150327251574, 40.853004748959641 ], [ -73.791702239622765, 40.852958085946781 ], [ -73.791655545024312, 40.852777338227696 ], [ -73.791729955246211, 40.852954423490104 ], [ -73.791963182449607, 40.852895448227535 ], [ -73.791916500124046, 40.852710988139613 ], [ -73.791989281645655, 40.852888070298 ], [ -73.792224129975452, 40.852831572093088 ], [ -73.792175809039904, 40.852649584322762 ], [ -73.792251861637482, 40.852822960383357 ], [ -73.792486698814898, 40.852770173952187 ], [ -73.792436754733544, 40.852585708206007 ], [ -73.792509541142422, 40.852761552715556 ], [ -73.792830838848943, 40.852680460767843 ], [ -73.792815119669299, 40.852494819308866 ], [ -73.792900866870625, 40.852695435982291 ], [ -73.79080758729927, 40.853199060064263 ], [ -73.790862019868413, 40.853319781103487 ], [ -73.791114314293836, 40.853264451924659 ], [ -73.791265732320667, 40.85370686423434 ], [ -73.79252408728911, 40.85340992070487 ], [ -73.792409310369308, 40.853053336114719 ], [ -73.792555983925809, 40.853401178540771 ], [ -73.792979283110483, 40.853302944909416 ], [ -73.792876100485884, 40.852944181328425 ], [ -73.793039911702664, 40.853371249285175 ], [ -73.791273681943167, 40.853732207882842 ], [ -73.79105721254831, 40.853918412426637 ], [ -73.792458168448107, 40.853600708754911 ], [ -73.791070027659515, 40.853944956664598 ], [ -73.792537146048673, 40.853849327812881 ], [ -73.792567589446335, 40.854016434943063 ], [ -73.791793668094144, 40.854004829900354 ], [ -73.791918117363849, 40.85422235474288 ], [ -73.791338117915771, 40.854439011538304 ], [ -73.791292821606476, 40.854584025976791 ], [ -73.792076756675542, 40.855645167707088 ], [ -73.792503067516421, 40.855788666138189 ], [ -73.792487911573716, 40.855946993209756 ], [ -73.792116170146954, 40.856012615292798 ], [ -73.792017122285259, 40.856176948606254 ], [ -73.792705239851358, 40.856192328905713 ], [ -73.792687682226543, 40.856335218720325 ], [ -73.79315700296155, 40.856350911074763 ], [ -73.793146860859693, 40.856467828471096 ], [ -73.792617937968302, 40.856358294907622 ], [ -73.792632943811796, 40.856249739029344 ], [ -73.792010500752468, 40.856225127719604 ], [ -73.791937002797468, 40.856405157922097 ], [ -73.792088148199653, 40.856477642009374 ], [ -73.791901833402562, 40.856546911368 ], [ -73.793094922185631, 40.85668644140528 ], [ -73.793030783612295, 40.856813917951534 ], [ -73.791894230250762, 40.856568889330781 ], [ -73.791828455068796, 40.856668143394614 ], [ -73.79196180657604, 40.856716856586345 ], [ -73.791792645352828, 40.856719852819126 ], [ -73.791929557804636, 40.856769001669612 ], [ -73.79185125084949, 40.856798154914365 ], [ -73.791735464765566, 40.856866429528225 ], [ -73.792202658840608, 40.857146000409124 ], [ -73.792427941308048, 40.856928541531616 ], [ -73.792221891863861, 40.857152298424666 ], [ -73.792827132379813, 40.857435789917872 ], [ -73.79301264449191, 40.85700302604436 ], [ -73.792884039550898, 40.857479202494808 ], [ -73.791859787814047, 40.8570041072606 ], [ -73.792683385092928, 40.857420393591489 ], [ -73.79260923020631, 40.857507704502261 ], [ -73.792112667836278, 40.857166931870339 ], [ -73.791894519130921, 40.857437121865232 ], [ -73.792465161314851, 40.857715331785222 ], [ -73.792569704405992, 40.857639625362275 ], [ -73.792395217232809, 40.857845547752156 ], [ -73.792443364035577, 40.857736741971841 ], [ -73.791742540823591, 40.857393950004131 ], [ -73.791872819639451, 40.857427183076716 ], [ -73.792093325040952, 40.857157989947154 ], [ -73.791843032173972, 40.857028702011341 ], [ -73.791603934613121, 40.857375312992446 ], [ -73.791293788521529, 40.857263238698074 ], [ -73.790942022603716, 40.857552748188795 ], [ -73.791636645879663, 40.857882812570885 ], [ -73.79178529423254, 40.857775425855543 ], [ -73.791436959081096, 40.858154685123054 ], [ -73.791618660758274, 40.857901342048031 ], [ -73.790932228007478, 40.857567787470522 ], [ -73.790235927387627, 40.858154084811197 ], [ -73.790061335632444, 40.858459548561221 ], [ -73.790187451950032, 40.858609917386147 ], [ -73.790045998377536, 40.858475404912085 ], [ -73.78898385079637, 40.858470842735954 ], [ -73.788784028545791, 40.857420690336504 ], [ -73.788043429757991, 40.857559917687105 ], [ -73.788778986102145, 40.857400925200871 ], [ -73.788710477543788, 40.857047032712231 ], [ -73.788896549571888, 40.85657338670979 ], [ -73.788536877354829, 40.856158503785373 ], [ -73.788359432223658, 40.855626489148236 ], [ -73.788415111842909, 40.85518763710445 ], [ -73.788553657910015, 40.855148736115453 ], [ -73.788294136466661, 40.854822651390073 ], [ -73.788477326533609, 40.854400520532153 ], [ -73.788347006836304, 40.854153518949786 ], [ -73.787347531464235, 40.854385885459472 ], [ -73.788323994499137, 40.854102515649636 ], [ -73.787314500662418, 40.854211942725648 ], [ -73.786907347026968, 40.854063972299166 ], [ -73.78792821707313, 40.853737797389137 ], [ -73.787962642880714, 40.85347472093553 ], [ -73.785881865066514, 40.851788672440847 ], [ -73.785292107190273, 40.851620649973505 ], [ -73.784131891679834, 40.851832806157219 ], [ -73.784314151660126, 40.851767545706863 ], [ -73.783871152919602, 40.851558961668779 ], [ -73.783961124883092, 40.851486933922963 ], [ -73.783381586103928, 40.851586733914331 ], [ -73.78360210541598, 40.851319519782649 ], [ -73.784600777637948, 40.851095692196424 ], [ -73.784454632223671, 40.850772873853224 ], [ -73.78384119241808, 40.850692899497055 ], [ -73.784065808373342, 40.850625233236379 ], [ -73.784012880418416, 40.85047528985303 ], [ -73.784257857600153, 40.850253180641083 ], [ -73.784200472005722, 40.850060644241836 ], [ -73.783534978087403, 40.849220967420266 ], [ -73.78317944898275, 40.849222360949476 ], [ -73.783035355379056, 40.84907190812784 ], [ -73.782449527092126, 40.849341154015669 ], [ -73.782218064743049, 40.849166804596116 ], [ -73.782094563045021, 40.849247300009687 ], [ -73.782158141520526, 40.849116173923854 ], [ -73.781544490885992, 40.849400434643279 ], [ -73.782141086978484, 40.849100662667652 ], [ -73.781615940690727, 40.848896204611108 ], [ -73.781613675352034, 40.848772386349907 ], [ -73.781506202591302, 40.848842528177826 ], [ -73.781574404406385, 40.848731808212364 ], [ -73.781432495222901, 40.848800005813288 ], [ -73.78149386587495, 40.848580475825756 ], [ -73.782674670790442, 40.848139671941404 ], [ -73.780978209389545, 40.848458347913521 ], [ -73.781306275173833, 40.8483476864726 ], [ -73.781106978415082, 40.848294758197767 ], [ -73.782637404640766, 40.848072649247044 ], [ -73.782504086335379, 40.847913273763218 ], [ -73.781584180817134, 40.848037051537183 ], [ -73.781484319505623, 40.847882193848626 ], [ -73.781429203479163, 40.847456345357209 ], [ -73.782214978174324, 40.846861409589437 ], [ -73.782163935017621, 40.846636337782051 ], [ -73.780636684111613, 40.84692333475239 ], [ -73.780676937040738, 40.847061485793461 ], [ -73.780462415984658, 40.847100233289559 ], [ -73.78040327024776, 40.846931134167328 ], [ -73.781060439730155, 40.846802551854296 ], [ -73.78115182578567, 40.84624630462708 ], [ -73.781106757608001, 40.846746997141139 ], [ -73.781647204005992, 40.84664644143021 ], [ -73.781688803593681, 40.846635027873198 ], [ -73.781742889032557, 40.846412290115893 ], [ -73.781718430764258, 40.846626899153208 ], [ -73.782513451830411, 40.846408771552404 ], [ -73.782357028105167, 40.845981588332627 ], [ -73.782579328656908, 40.845935893027736 ], [ -73.782495972589558, 40.845661561949022 ], [ -73.783094420486535, 40.845518285564673 ], [ -73.78314644227369, 40.845309942025992 ], [ -73.783074558306609, 40.845509764291876 ], [ -73.781816461704935, 40.845764978052216 ], [ -73.783050749408005, 40.84549682317585 ], [ -73.783060231265836, 40.845085708566991 ], [ -73.781815359666339, 40.845480582881542 ], [ -73.781887076726719, 40.845333885649353 ], [ -73.783074574466866, 40.84505636873385 ], [ -73.783152455057419, 40.845295983327766 ], [ -73.783222076139282, 40.845063444658159 ], [ -73.78297579244331, 40.844680948020375 ], [ -73.783365362015246, 40.844444722982921 ], [ -73.78306041018179, 40.844372063894077 ], [ -73.783011297633692, 40.84417269034595 ], [ -73.783269871388399, 40.844069392091583 ], [ -73.783094947062864, 40.843866093899656 ], [ -73.783484287488164, 40.843678545998436 ], [ -73.783188838821161, 40.843763135582584 ], [ -73.783474812492528, 40.843654738109706 ], [ -73.783191945188008, 40.842867863983848 ], [ -73.783045398154457, 40.842896332066672 ], [ -73.78321038850865, 40.843479338866466 ], [ -73.78291098678902, 40.842922355005555 ], [ -73.783139260348563, 40.842822319491283 ], [ -73.782917470851174, 40.842806445679088 ], [ -73.783123830865023, 40.842736202994878 ], [ -73.782887783014857, 40.842494828849603 ], [ -73.782733193767768, 40.842521705498463 ], [ -73.782815845260572, 40.842764522596617 ], [ -73.782706699825695, 40.842532475810309 ], [ -73.782299412709179, 40.842605896413303 ], [ -73.782444524045943, 40.84304203441669 ], [ -73.782266828747382, 40.842612018228202 ], [ -73.781800483624494, 40.842696145793632 ], [ -73.781933065936713, 40.843228088076422 ], [ -73.781771969939086, 40.842702273493202 ], [ -73.78124656634499, 40.842797107289435 ], [ -73.781427852549456, 40.843370873277635 ], [ -73.781216011854681, 40.842804777396935 ], [ -73.780674299250208, 40.842907304537675 ], [ -73.780829036813032, 40.843507297145663 ], [ -73.780643760596533, 40.842910337119534 ], [ -73.78029552532071, 40.842973044893938 ], [ -73.780227738726808, 40.843778181297694 ], [ -73.780226624184124, 40.842883267930304 ], [ -73.782864993049188, 40.842478101882691 ], [ -73.780597357564176, 40.842786599939714 ], [ -73.78236855953503, 40.842428493149633 ], [ -73.782151661395545, 40.842355228111309 ], [ -73.782311109767235, 40.842224178958389 ], [ -73.781620550880987, 40.842329494889242 ], [ -73.782306433841043, 40.842211115308658 ], [ -73.782332572158921, 40.841922844111366 ], [ -73.781440031078489, 40.84214213349339 ], [ -73.782323512859506, 40.841898330454576 ], [ -73.782037526001218, 40.84184191671627 ], [ -73.782263453262431, 40.841778115982422 ], [ -73.782015934356068, 40.841793189025147 ], [ -73.782166244851396, 40.841689144111342 ], [ -73.781299281155697, 40.841794441623577 ], [ -73.781338685715582, 40.841996218484148 ], [ -73.781248635025037, 40.841877807985313 ], [ -73.781132901012668, 40.841910626053568 ], [ -73.781197722388939, 40.842042029372983 ], [ -73.780979357270908, 40.841952935336764 ], [ -73.781023544250147, 40.842092994411558 ], [ -73.780846439969466, 40.841989198625754 ], [ -73.780887174486566, 40.8421344670586 ], [ -73.780696328021335, 40.842032383000635 ], [ -73.780720988966152, 40.842191532306998 ], [ -73.780655082842529, 40.842041868866268 ], [ -73.780562927070164, 40.842214705203638 ], [ -73.780348051582251, 40.842109098224434 ], [ -73.780425771815317, 40.842494394206817 ], [ -73.780298639761568, 40.842511540467299 ], [ -73.780195999552873, 40.842046210976143 ], [ -73.781850481977813, 40.841653946394274 ], [ -73.781660512137748, 40.84112417458303 ], [ -73.780842238023098, 40.841276324028101 ], [ -73.780892206101512, 40.841553084198239 ], [ -73.780797529896347, 40.841256146049616 ], [ -73.781648553617657, 40.841097763530037 ], [ -73.7813914356895, 40.841036609618143 ], [ -73.781610696515287, 40.84099624002566 ], [ -73.781374882611289, 40.8409788710063 ], [ -73.781593968710794, 40.840939796746781 ], [ -73.781418050718869, 40.840714755716164 ], [ -73.781542960605393, 40.840386661604434 ], [ -73.781491720069354, 40.840206224525211 ], [ -73.781253619009107, 40.840255499937506 ], [ -73.781488780892531, 40.840197323922027 ], [ -73.781362672453156, 40.839730189816279 ], [ -73.781179478685758, 40.839745862257054 ], [ -73.781359320106731, 40.839711708215745 ], [ -73.781341252119404, 40.839478563444132 ], [ -73.781138757921383, 40.839494278802974 ], [ -73.781339888494173, 40.839469699830246 ], [ -73.781567809835096, 40.838537405736297 ], [ -73.782004209890431, 40.8380155723071 ], [ -73.781884557202801, 40.837650276604748 ], [ -73.7823814255608, 40.837324106167358 ], [ -73.782727607388253, 40.837487959346241 ], [ -73.782906291908787, 40.837320006072716 ], [ -73.782703645836506, 40.836842801965531 ], [ -73.782681315017626, 40.836483677154789 ], [ -73.782822601397385, 40.836338155887873 ], [ -73.783029218627348, 40.836345852344742 ], [ -73.783381680593351, 40.836909271680632 ], [ -73.784101645913125, 40.836725529357928 ], [ -73.784484561400149, 40.837024222538524 ], [ -73.784980603280943, 40.836746426080545 ], [ -73.785082267091155, 40.836881907209154 ], [ -73.784503339653611, 40.837057765171103 ], [ -73.784850092226634, 40.837470489178493 ], [ -73.785125821093104, 40.837446041568164 ], [ -73.785639978454526, 40.837064434585322 ], [ -73.785830679641222, 40.837209980004516 ], [ -73.785652795723195, 40.837132104725967 ], [ -73.785165844286638, 40.837471334061753 ], [ -73.785277129484214, 40.837756718086908 ], [ -73.785577968509486, 40.837927113225348 ], [ -73.78553011511525, 40.838798277338341 ], [ -73.785735092986897, 40.839234231775805 ], [ -73.786525984964257, 40.839723115606979 ], [ -73.787407587460109, 40.839677623196884 ], [ -73.787639312190095, 40.840531895236651 ], [ -73.787357242444585, 40.840590771776618 ], [ -73.787491664125952, 40.840842341674019 ], [ -73.78818132144562, 40.84071108050135 ], [ -73.788159211003418, 40.840490778565815 ], [ -73.788254532834557, 40.840745863118471 ], [ -73.787523797336959, 40.840879612185148 ], [ -73.787786567951002, 40.840892222012755 ], [ -73.78786404049697, 40.841081725834869 ], [ -73.787612377825923, 40.841198005295823 ], [ -73.787844874994789, 40.841471479333229 ], [ -73.788366174089631, 40.841504610010162 ], [ -73.788020035503621, 40.841783841458749 ], [ -73.78829358843862, 40.841785373136652 ], [ -73.78805599136966, 40.841867030178754 ], [ -73.788384566136742, 40.842381978370589 ], [ -73.788838648951483, 40.842350395961155 ], [ -73.788527808673749, 40.842425576894726 ], [ -73.789058255013657, 40.843235331770025 ], [ -73.7896166032845, 40.843112654364973 ], [ -73.789924248582423, 40.843224154239472 ], [ -73.789930933882502, 40.843042264363646 ], [ -73.78999975375217, 40.843307817244785 ], [ -73.789861838582809, 40.843250954146683 ], [ -73.789889536038388, 40.84338093446727 ], [ -73.789734692605862, 40.843413247477471 ], [ -73.78989919889905, 40.843417146659021 ], [ -73.78980449435862, 40.843586656281154 ], [ -73.789337086595353, 40.843681498054309 ], [ -73.789471822140939, 40.84429297835203 ], [ -73.790665890010217, 40.845741558834384 ], [ -73.79098858375896, 40.84565283206247 ], [ -73.790697853648581, 40.845786012550832 ], [ -73.790973333106777, 40.846357311524962 ], [ -73.791490765135578, 40.846251004965239 ], [ -73.791127593128309, 40.846357590950717 ], [ -73.791181287853448, 40.84655567592975 ], [ -73.791413791144407, 40.846547847032802 ], [ -73.791324519472994, 40.846608731996596 ], [ -73.791480346595023, 40.846802052712484 ], [ -73.791793436254551, 40.846731672329277 ], [ -73.791367098584502, 40.8468876426858 ], [ -73.79148637416958, 40.846958803260229 ], [ -73.791440496883297, 40.847306043483542 ], [ -73.791919978100879, 40.84725821803071 ], [ -73.791429627564995, 40.847359989174358 ], [ -73.791541048822666, 40.847538017298206 ], [ -73.791267085673624, 40.847601867354058 ], [ -73.791329760362359, 40.84805792306544 ], [ -73.791617654314507, 40.848052924407796 ], [ -73.791335880632317, 40.848086238652414 ], [ -73.791111954078829, 40.848808127034154 ], [ -73.790919717940866, 40.848866873016995 ], [ -73.791013623389901, 40.848985209716794 ], [ -73.790887102073697, 40.848886563296524 ], [ -73.789757110706105, 40.849531469287605 ], [ -73.789858369521909, 40.849972559361852 ], [ -73.79098877124963, 40.849828348526991 ], [ -73.789866303801546, 40.849989389699232 ], [ -73.790017587891654, 40.850316331459922 ], [ -73.790357670479153, 40.850142334617111 ], [ -73.790405060543094, 40.850272762713963 ], [ -73.790024118294909, 40.850347819582844 ], [ -73.789918724828681, 40.850611727137753 ], [ -73.791023811304228, 40.850432275424033 ], [ -73.789929536266612, 40.850626122554992 ], [ -73.790070931707518, 40.850932020106761 ], [ -73.790247648375185, 40.850903510522798 ], [ -73.790086400219081, 40.850984473853458 ], [ -73.790268245072681, 40.850961088073802 ], [ -73.790090944519363, 40.850994764404064 ], [ -73.790124391718308, 40.851189912194556 ], [ -73.789513715161675, 40.85130077171312 ], [ -73.789662762834084, 40.851488703322133 ], [ -73.789785107026489, 40.851462293880694 ], [ -73.789665719140146, 40.851338642824828 ], [ -73.790057814269247, 40.851414530211066 ], [ -73.790017970535416, 40.851259470959484 ], [ -73.790089615699927, 40.851407163589769 ], [ -73.790345187979469, 40.851366793054979 ], [ -73.790337095180746, 40.851220143851037 ], [ -73.790379436533073, 40.851358503723979 ], [ -73.790824541989707, 40.85128970631839 ], [ -73.790817653529558, 40.85114862715578 ], [ -73.790987179842986, 40.851264015299037 ], [ -73.790890184358247, 40.851403977437691 ], [ -73.789664902783315, 40.851500382130865 ], [ -73.789725736458948, 40.851692670563722 ], [ -73.790892179300741, 40.851546903548872 ], [ -73.790195886672848, 40.851752904562886 ], [ -73.790463705280985, 40.851767006153977 ], [ -73.790083969041163, 40.852034527382187 ], [ -73.790155092610107, 40.852251285235795 ], [ -73.790160951501818, 40.852040235425761 ], [ -73.790274043019721, 40.85222327109372 ], [ -73.790532123546512, 40.852163414643947 ], [ -73.790452003361011, 40.851989720950272 ], [ -73.790574934103063, 40.852153284134332 ], [ -73.790806105877692, 40.852099875967738 ], [ -73.790743094993672, 40.851926212494341 ], [ -73.790560925243284, 40.851944443891369 ], [ -73.79079463354843, 40.851861341385735 ], [ -73.790853807839085, 40.85208882496957 ], [ -73.791111961505763, 40.852005767311049 ], [ -73.791010971184562, 40.85186080525289 ], [ -73.791173667311199, 40.851816553269423 ], [ -73.791187707645491, 40.852016112506718 ], [ -73.791462933390321, 40.85194514919408 ], [ -73.791320451175096, 40.851779696094127 ], [ -73.791517386779503, 40.851729935890866 ], [ -73.791495968804043, 40.851934072422495 ], [ -73.791866920271332, 40.851791661387004 ] ] ] } }
-,
-{ "type": "Feature", "id": 143, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.782832556073245, 40.843865142505784 ], [ -73.782803952504523, 40.843873331962207 ], [ -73.782572107241037, 40.843294581440702 ], [ -73.782784986356603, 40.843754545480898 ], [ -73.783091861123793, 40.843685054811175 ], [ -73.782873882431872, 40.843124102362339 ], [ -73.78313252568671, 40.843697496731735 ], [ -73.782806615065581, 40.84377931612201 ], [ -73.782832556073245, 40.843865142505784 ] ] ] } }
-,
-{ "type": "Feature", "id": 144, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.782458800187328, 40.843972152143984 ], [ -73.782427508127682, 40.843981111339296 ], [ -73.78224871668732, 40.843436168417476 ], [ -73.782458800187328, 40.843972152143984 ] ] ] } }
-,
-{ "type": "Feature", "id": 145, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.782033837018488, 40.844093822883252 ], [ -73.782005224865514, 40.844102014797421 ], [ -73.781833065993609, 40.843575518304867 ], [ -73.782033837018488, 40.844093822883252 ] ] ] } }
-,
-{ "type": "Feature", "id": 146, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.7818673707729, 40.84414148365164 ], [ -73.780527361147264, 40.8445251403394 ], [ -73.779927037444381, 40.843883081355827 ], [ -73.780533027145609, 40.844453021762618 ], [ -73.780396232820095, 40.843966408179753 ], [ -73.780584647950633, 40.844434572699456 ], [ -73.781062613642987, 40.844328317876688 ], [ -73.780876901987099, 40.843862220487779 ], [ -73.781089777978522, 40.844320127077602 ], [ -73.781546025233339, 40.844215889747694 ], [ -73.781376741645474, 40.843704486541277 ], [ -73.781575903028624, 40.844207702967857 ], [ -73.7818673707729, 40.84414148365164 ] ] ] } }
-,
-{ "type": "Feature", "id": 147, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.767832056371674, 40.854442205742032 ], [ -73.76855660327054, 40.853238322959399 ], [ -73.769044389871283, 40.853290924693574 ], [ -73.769385291396986, 40.852536133996786 ], [ -73.768608176870998, 40.850788395378075 ], [ -73.769596743776518, 40.847594519099502 ], [ -73.769503216289394, 40.84721783423646 ], [ -73.767894926730023, 40.84528943251447 ], [ -73.769013891811241, 40.845097342721822 ], [ -73.771183780105758, 40.846944513312089 ], [ -73.7715721876706, 40.847500058579044 ], [ -73.770889202873605, 40.849751771339307 ], [ -73.772049636684542, 40.851618289757383 ], [ -73.772711174961444, 40.851826580933668 ], [ -73.772465941266674, 40.851833683999693 ], [ -73.772460522292462, 40.852059542172348 ], [ -73.772963566112878, 40.852159253958554 ], [ -73.772648377469224, 40.852224402629503 ], [ -73.772890756651137, 40.852398268996907 ], [ -73.772459401630229, 40.852106267082135 ], [ -73.772451494816693, 40.852435896894796 ], [ -73.77173060478097, 40.852476831320402 ], [ -73.771717159365437, 40.853004539281812 ], [ -73.772296805313815, 40.853086378252364 ], [ -73.772349175213606, 40.853851419732798 ], [ -73.772962854010615, 40.85380006224775 ], [ -73.772958175170444, 40.854137432923366 ], [ -73.772795977881401, 40.854131758703147 ], [ -73.772694480260554, 40.853906639013331 ], [ -73.772332722197376, 40.853900844675195 ], [ -73.772140368418178, 40.854412712600571 ], [ -73.772181529913411, 40.85886834678476 ], [ -73.772354327106527, 40.859673161980531 ], [ -73.772192230554225, 40.859986638596922 ], [ -73.770845623605695, 40.860101012856738 ], [ -73.769473054240123, 40.859330136668561 ], [ -73.768362772245965, 40.858358288850511 ], [ -73.768360859853473, 40.857655362702076 ], [ -73.765332439952914, 40.855043595124869 ], [ -73.767832056371674, 40.854442205742032 ] ] ] } }
-,
-{ "type": "Feature", "id": 148, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.820139251591158, 40.885510427950329 ], [ -73.819733652109988, 40.88562389796774 ], [ -73.819465662940473, 40.883780568495617 ], [ -73.81955499266364, 40.882797941540737 ], [ -73.819197673770958, 40.88217263347854 ], [ -73.81955499266364, 40.882083303755365 ], [ -73.819822981833155, 40.881725984862683 ], [ -73.819108344047791, 40.881368665969994 ], [ -73.819644322386822, 40.880922017354145 ], [ -73.820090971002671, 40.880832687630971 ], [ -73.819822981833155, 40.880028720122432 ], [ -73.820180300725838, 40.879760730952917 ], [ -73.820269630449019, 40.87815279593584 ], [ -73.820984268234383, 40.877348828427301 ], [ -73.82107359795755, 40.876902179811445 ], [ -73.820805608788035, 40.876187542026074 ], [ -73.820537619618534, 40.876187542026074 ], [ -73.820537619618534, 40.87663419064193 ], [ -73.820805608788035, 40.877080839257786 ], [ -73.820180300725838, 40.876991509534619 ], [ -73.820001641279504, 40.876812850088271 ], [ -73.819912311556337, 40.876276871749248 ], [ -73.820001641279504, 40.876098212302907 ], [ -73.820358960172186, 40.876008882579733 ], [ -73.820448289895353, 40.875383574517535 ], [ -73.820626949341701, 40.875294244794368 ], [ -73.821341587127066, 40.875472904240709 ], [ -73.821341587127066, 40.875204915071194 ], [ -73.821252257403899, 40.874936925901679 ], [ -73.820448289895353, 40.874936925901679 ], [ -73.820090971002671, 40.874758266455338 ], [ -73.819912311556337, 40.874400947562656 ], [ -73.819287003494139, 40.874311617839481 ], [ -73.819376333217306, 40.874043628669973 ], [ -73.819822981833155, 40.874043628669973 ], [ -73.819644322386822, 40.873864969223632 ], [ -73.819287003494139, 40.873954298946799 ], [ -73.819019014324624, 40.873775639500458 ], [ -73.819019014324624, 40.873507650330943 ], [ -73.819197673770958, 40.873418320607776 ], [ -73.820180300725838, 40.873596980054117 ], [ -73.820090971002671, 40.873954298946799 ], [ -73.820448289895353, 40.87449027728583 ], [ -73.820984268234383, 40.874400947562656 ], [ -73.822145554635611, 40.874758266455338 ], [ -73.821966895189263, 40.873686309777284 ], [ -73.821341587127066, 40.87413295839314 ], [ -73.820716279064868, 40.87413295839314 ], [ -73.820716279064868, 40.873775639500458 ], [ -73.820984268234383, 40.873239661161435 ], [ -73.821877565466096, 40.873150331438261 ], [ -73.821877565466096, 40.872525023376063 ], [ -73.821609576296581, 40.872525023376063 ], [ -73.821252257403899, 40.872793012545579 ], [ -73.821162927680732, 40.872614353099237 ], [ -73.821162927680732, 40.872346363929722 ], [ -73.821788235742929, 40.872167704483381 ], [ -73.821966895189263, 40.871810385590692 ], [ -73.821877565466096, 40.870559769466297 ], [ -73.821520246573414, 40.870023791127274 ], [ -73.820805608788035, 40.870202450573615 ], [ -73.820894938511216, 40.8699344614041 ], [ -73.820716279064868, 40.86948781278825 ], [ -73.820180300725838, 40.869219823618735 ], [ -73.819108344047791, 40.869309153341902 ], [ -73.818751025155109, 40.868505185833364 ], [ -73.817321749584366, 40.867343899432143 ], [ -73.817143090138032, 40.867701218324825 ], [ -73.817321749584366, 40.868505185833364 ], [ -73.818036387369744, 40.868505185833364 ], [ -73.818751025155109, 40.869755801957758 ], [ -73.818304376539245, 40.870113120850448 ], [ -73.817857727923396, 40.869309153341902 ], [ -73.817500409030714, 40.869219823618735 ], [ -73.81678577124535, 40.869398483065076 ], [ -73.815981803736804, 40.87047043974313 ], [ -73.81526716595144, 40.8699344614041 ], [ -73.815445825397774, 40.869666472234591 ], [ -73.815445825397774, 40.868505185833364 ], [ -73.814373868719727, 40.868058537217507 ], [ -73.81526716595144, 40.866093283307748 ], [ -73.816964430691684, 40.864485348290671 ], [ -73.816517782075834, 40.864217359121156 ], [ -73.815088506505091, 40.865467975245551 ], [ -73.815088506505091, 40.863949369951641 ], [ -73.814820517335576, 40.863413391612617 ], [ -73.816339122629486, 40.86126947825651 ], [ -73.81678577124535, 40.86126947825651 ], [ -73.816964430691684, 40.860822829640654 ], [ -73.817411079307547, 40.860822829640654 ], [ -73.817679068477048, 40.861090818810169 ], [ -73.818483035985594, 40.860912159363828 ], [ -73.818661695431942, 40.860644170194313 ], [ -73.818393706262427, 40.860108191855289 ], [ -73.818751025155109, 40.859304224346744 ], [ -73.820180300725838, 40.859304224346744 ], [ -73.820180300725838, 40.859036235177236 ], [ -73.820626949341701, 40.858946905454061 ], [ -73.821877565466096, 40.859393554069918 ], [ -73.821877565466096, 40.8597508729626 ], [ -73.822234884358778, 40.8597508729626 ], [ -73.822145554635611, 40.860018862132115 ], [ -73.822413543805126, 40.860018862132115 ], [ -73.822413543805126, 40.860197521578456 ], [ -73.821698906019748, 40.860465510747972 ], [ -73.821698906019748, 40.859929532408941 ], [ -73.821341587127066, 40.860018862132115 ], [ -73.821341587127066, 40.859393554069918 ], [ -73.820984268234383, 40.859482883793092 ], [ -73.820805608788035, 40.859840202685774 ], [ -73.820269630449019, 40.8597508729626 ], [ -73.820001641279504, 40.859929532408941 ], [ -73.820358960172186, 40.860465510747972 ], [ -73.820090971002671, 40.861180148533336 ], [ -73.81955499266364, 40.861358807979684 ], [ -73.818929684601443, 40.862162775488223 ], [ -73.819019014324624, 40.86225210521139 ], [ -73.830006570274662, 40.858053608222349 ], [ -73.82964925138198, 40.856356343482105 ], [ -73.828934613596601, 40.855731035419907 ], [ -73.828577294703919, 40.855731035419907 ], [ -73.827773327195388, 40.854480419295513 ], [ -73.827416008302706, 40.8535871220638 ], [ -73.827505338025873, 40.852961814001603 ], [ -73.826880029963675, 40.853140473447944 ], [ -73.827326678579524, 40.8495672845211 ], [ -73.827237348856357, 40.84840599811988 ], [ -73.825986732731963, 40.846530073933287 ], [ -73.825540084116113, 40.846530073933287 ], [ -73.825540084116113, 40.845726106424749 ], [ -73.820448289895353, 40.848495327843047 ], [ -73.820090971002671, 40.847959349504023 ], [ -73.816071133459971, 40.848495327843047 ], [ -73.815803144290456, 40.848941976458903 ], [ -73.815088506505091, 40.848941976458903 ], [ -73.816160463183152, 40.847512700888167 ], [ -73.815892474013637, 40.846530073933287 ], [ -73.814641857889242, 40.846440744210113 ], [ -73.81428453899656, 40.846262084763772 ], [ -73.814463198442894, 40.845815436147916 ], [ -73.814105879550212, 40.845815436147916 ], [ -73.812676603979469, 40.845190128085719 ], [ -73.812051295917271, 40.846708733379629 ], [ -73.81178330674777, 40.846440744210113 ], [ -73.81276593370265, 40.844118171407665 ], [ -73.813391241764847, 40.845100798362552 ], [ -73.813927220103864, 40.845011468639377 ], [ -73.813927220103864, 40.844564820023521 ], [ -73.813569901211181, 40.844207501130839 ], [ -73.813569901211181, 40.843582193068642 ], [ -73.814195209273379, 40.843582193068642 ], [ -73.814373868719727, 40.843046214729618 ], [ -73.815356495674607, 40.843760852514983 ], [ -73.815803144290456, 40.844475490300354 ], [ -73.816249792906319, 40.844028841684498 ], [ -73.817232419861199, 40.844475490300354 ], [ -73.818036387369744, 40.844207501130839 ], [ -73.816964430691684, 40.844118171407665 ], [ -73.816249792906319, 40.84286755528327 ], [ -73.815445825397774, 40.842510236390588 ], [ -73.815356495674607, 40.841170290543026 ], [ -73.814909847058757, 40.839919674418631 ], [ -73.814909847058757, 40.839026377186919 ], [ -73.816160463183152, 40.838669058294236 ], [ -73.816517782075834, 40.838133079955206 ], [ -73.816339122629486, 40.837061123277152 ], [ -73.815981803736804, 40.836346485491788 ], [ -73.815981803736804, 40.834023912689339 ], [ -73.81526716595144, 40.83152268044055 ], [ -73.814373868719727, 40.83054005348567 ], [ -73.813837890380697, 40.829289437361275 ], [ -73.812676603979469, 40.828306810406389 ], [ -73.809996712284345, 40.828306810406389 ], [ -73.809818052837997, 40.828038821236881 ], [ -73.810175371730679, 40.827860161790539 ], [ -73.812587274256302, 40.827681502344191 ], [ -73.813659230934363, 40.826877534835653 ], [ -73.813927220103864, 40.826341556496629 ], [ -73.813837890380697, 40.825894907880773 ], [ -73.813391241764847, 40.825269599818576 ], [ -73.813391241764847, 40.824912280925894 ], [ -73.813837890380697, 40.824644291756378 ], [ -73.813837890380697, 40.824376302586863 ], [ -73.813569901211181, 40.824018983694181 ], [ -73.813123252595332, 40.824018983694181 ], [ -73.81276593370265, 40.824554962033204 ], [ -73.811515317578255, 40.824554962033204 ], [ -73.809550063668482, 40.825448259264917 ], [ -73.808924755606284, 40.825984237603947 ], [ -73.807584809758723, 40.825716248434432 ], [ -73.806602182803843, 40.824822951202719 ], [ -73.806423523357495, 40.823483005355158 ], [ -73.80570888557213, 40.821785740614907 ], [ -73.806155534187994, 40.820624454213679 ], [ -73.804011620831886, 40.818480540857578 ], [ -73.80267167498431, 40.818391211134404 ], [ -73.802046366922113, 40.818569870580745 ], [ -73.800617091351384, 40.818033892241722 ], [ -73.800527761628217, 40.817408584179525 ], [ -73.797758540209912, 40.816872605840494 ], [ -73.797311891594049, 40.816336627501471 ], [ -73.797311891594049, 40.815711319439274 ], [ -73.797847869933079, 40.815800649162441 ], [ -73.798115859102595, 40.815532659992932 ], [ -73.799009156334307, 40.815532659992932 ], [ -73.800170442735521, 40.813924724975848 ], [ -73.800885080520899, 40.813835395252681 ], [ -73.801153069690415, 40.813210087190484 ], [ -73.801957037198946, 40.812674108851454 ], [ -73.803028993877007, 40.812495449405112 ], [ -73.803654301939204, 40.813031427744143 ], [ -73.803296983046508, 40.813567406083166 ], [ -73.803743631662371, 40.814103384422197 ], [ -73.806959501696525, 40.816961935563668 ], [ -73.806959501696525, 40.816336627501471 ], [ -73.806512853080676, 40.815532659992932 ], [ -73.805887545018479, 40.815175341100243 ], [ -73.805262236956281, 40.814550033038046 ], [ -73.805351566679448, 40.813746065529507 ], [ -73.804904918063599, 40.812674108851454 ], [ -73.804368939724569, 40.812495449405112 ], [ -73.803743631662371, 40.811959471066089 ], [ -73.803118323600174, 40.810708854941694 ], [ -73.801957037198946, 40.810351536049012 ], [ -73.801599718306264, 40.810708854941694 ], [ -73.800974410244066, 40.810708854941694 ], [ -73.801331729136749, 40.810172876602671 ], [ -73.800170442735521, 40.809994217156323 ], [ -73.799723794119672, 40.809726227986815 ], [ -73.798562507718444, 40.809726227986815 ], [ -73.793202724328182, 40.807224995738025 ], [ -73.791952108203787, 40.806778347122169 ], [ -73.791237470418423, 40.807046336291684 ], [ -73.79132680014159, 40.807671644353881 ], [ -73.790880151525741, 40.807314325461192 ], [ -73.79079082180256, 40.806689017398995 ], [ -73.790433502909877, 40.806063709336797 ], [ -73.790254843463543, 40.804991752658744 ], [ -73.790969481248908, 40.804187785150205 ], [ -73.792220097373303, 40.803919795980697 ], [ -73.793738702667213, 40.804277114873379 ], [ -73.794810659345259, 40.8054384012746 ], [ -73.795525297130638, 40.80597437961363 ], [ -73.795614626853805, 40.805706390444115 ], [ -73.795971945746487, 40.805706390444115 ], [ -73.796239934916002, 40.806063709336797 ], [ -73.798651837441625, 40.807046336291684 ], [ -73.801599718306264, 40.809011590201443 ], [ -73.803922291108705, 40.808564941585587 ], [ -73.804636928894084, 40.809190249647784 ], [ -73.806602182803843, 40.810262206325838 ], [ -73.80722749086604, 40.811155503557551 ], [ -73.808299447544087, 40.812048800789263 ], [ -73.809996712284345, 40.812942098020969 ], [ -73.815624484844122, 40.813478076359999 ], [ -73.816339122629486, 40.813924724975848 ], [ -73.817411079307547, 40.813567406083166 ], [ -73.820894938511216, 40.812942098020969 ], [ -73.825718743562447, 40.811512822450233 ], [ -73.82813064608807, 40.811423492727066 ], [ -73.829559921658799, 40.811155503557551 ], [ -73.830989197229542, 40.810262206325838 ], [ -73.831793164738087, 40.809368909094125 ], [ -73.832239813353937, 40.808118292969731 ], [ -73.832061153907588, 40.807314325461192 ], [ -73.831435845845391, 40.806510357952654 ], [ -73.832061153907588, 40.806063709336797 ], [ -73.831703835014906, 40.804902422935577 ], [ -73.833043780862468, 40.804902422935577 ], [ -73.835187694218575, 40.8054384012746 ], [ -73.836616969789318, 40.805617060720941 ], [ -73.83795691563688, 40.80695700656851 ], [ -73.83795691563688, 40.808207622692905 ], [ -73.838850212868593, 40.809368909094125 ], [ -73.840368818162503, 40.812048800789263 ], [ -73.840368818162503, 40.813388746636825 ], [ -73.839654180377138, 40.814192714145364 ], [ -73.83947552093079, 40.815979308608789 ], [ -73.840100828992988, 40.816872605840494 ], [ -73.840100828992988, 40.817765903072207 ], [ -73.838671553422245, 40.819373838089284 ], [ -73.83893954259176, 40.819999146151481 ], [ -73.838850212868593, 40.821160432552709 ], [ -73.839118202038108, 40.822589708123445 ], [ -73.839743510100305, 40.824286972863696 ], [ -73.840279488439336, 40.824733621479552 ], [ -73.841262115394215, 40.826877534835653 ], [ -73.842334072072262, 40.828306810406389 ], [ -73.841887423456413, 40.830808042655178 ], [ -73.838671553422245, 40.833487934350316 ], [ -73.839207531761275, 40.836435815214955 ], [ -73.839207531761275, 40.838937047463745 ], [ -73.83947552093079, 40.838847717740578 ], [ -73.839654180377138, 40.839741014972283 ], [ -73.840100828992988, 40.839651685249116 ], [ -73.839922169546639, 40.835542517983249 ], [ -73.85180302272839, 40.83420257213568 ], [ -73.8533216280223, 40.842331576944247 ], [ -73.848229833801554, 40.842956885006444 ], [ -73.845103293490567, 40.845458117255234 ], [ -73.843584688196657, 40.844118171407665 ], [ -73.841262115394215, 40.84072364192717 ], [ -73.838492893975911, 40.840902301373511 ], [ -73.837688926467365, 40.843135544452785 ], [ -73.836348980619803, 40.848138008950365 ], [ -73.835991661727121, 40.851621868154034 ], [ -73.835455683388091, 40.853140473447944 ], [ -73.834294396986863, 40.85456974901868 ], [ -73.832061153907588, 40.856356343482105 ], [ -73.830453218890511, 40.858500256838205 ], [ -73.828041316364903, 40.861180148533336 ], [ -73.8286666244271, 40.862162775488223 ], [ -73.830185229720996, 40.863949369951641 ], [ -73.833311770031983, 40.869398483065076 ], [ -73.834294396986863, 40.872346363929722 ], [ -73.834562386156378, 40.874400947562656 ], [ -73.834294396986863, 40.876276871749248 ], [ -73.833758418647847, 40.878063466212666 ], [ -73.832507802523452, 40.879939390399258 ], [ -73.828934613596601, 40.882351292924881 ], [ -73.82509343550025, 40.884137887388299 ], [ -73.820139251591158, 40.885510427950329 ] ] ] } }
-
-]
-}
diff --git a/packages/examples/src/assets/pin.png b/packages/examples/src/assets/pin.png
deleted file mode 100644
index 986533315..000000000
Binary files a/packages/examples/src/assets/pin.png and /dev/null differ
diff --git a/packages/examples/src/assets/radar.png b/packages/examples/src/assets/radar.png
deleted file mode 100755
index ba0f9c919..000000000
Binary files a/packages/examples/src/assets/radar.png and /dev/null differ
diff --git a/packages/examples/src/assets/radar1.png b/packages/examples/src/assets/radar1.png
deleted file mode 100755
index db9696c47..000000000
Binary files a/packages/examples/src/assets/radar1.png and /dev/null differ
diff --git a/packages/examples/src/assets/radar2.png b/packages/examples/src/assets/radar2.png
deleted file mode 100755
index a4ddc3d20..000000000
Binary files a/packages/examples/src/assets/radar2.png and /dev/null differ
diff --git a/packages/examples/src/assets/smiley_face.json b/packages/examples/src/assets/smiley_face.json
deleted file mode 100755
index 4b93c681a..000000000
--- a/packages/examples/src/assets/smiley_face.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "properties": {
-
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -50.2734375,
- 55.578344672182
- ],
- [
- -53.4375,
- 47.989921667414
- ],
- [
- -42.5390625,
- 47.989921667414
- ],
- [
- -41.484375,
- 55.578344672182
- ],
- [
- -50.2734375,
- 55.578344672182
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {
-
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -26.71875,
- 54.977613670696
- ],
- [
- -27.7734375,
- 47.517200697839
- ],
- [
- -15.46875,
- 48.458351882809
- ],
- [
- -18.6328125,
- 54.977613670696
- ],
- [
- -26.71875,
- 54.977613670696
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {
-
- },
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -52.734375,
- 39.095962936306
- ],
- [
- -32.34375,
- 29.840643899834
- ],
- [
- -14.0625,
- 38.822590976177
- ],
- [
- -14.0625,
- 30.448673679288
- ],
- [
- -32.34375,
- 21.943045533438
- ],
- [
- -53.7890625,
- 28.613459424004
- ],
- [
- -52.734375,
- 39.095962936306
- ]
- ]
- ]
- }
- }
- ]
-}
diff --git a/packages/examples/src/assets/style-json-example.json b/packages/examples/src/assets/style-json-example.json
deleted file mode 100644
index 3951914ff..000000000
--- a/packages/examples/src/assets/style-json-example.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
- "version": 1,
- "name": "style-json-example",
- "sources": {
- "population": {
- "type": "vector",
- "url": "mapbox://mapbox.660ui7x6"
- },
- "overlay": {
- "type": "image",
- "url": "https://docs.mapbox.com/mapbox-gl-js/assets/radar.gif",
- "coordinates": [
- [-80.425, 46.437],
- [-71.516, 46.437],
- [-71.516, 37.936],
- [-80.425, 37.936]
- ]
- }
- },
- "layers": [
- {
- "id": "state-population",
- "source": "population",
- "source-layer": "state_county_population_2014_cen",
- "type": "fill",
- "maxzoom": 4,
- "filter": ["==", "isState", true],
- "paint": {
- "fill-opacity": 0.75,
- "fill-color": [
- "interpolate",
- ["linear"],
- ["get", "population"],
- 0,
- "#F2F12D",
- 500000,
- "#EED322",
- 750000,
- "#E6B71E",
- 1000000,
- "#DA9C20",
- 2500000,
- "#CA8323",
- 5000000,
- "#B86B25",
- 7500000,
- "#A25626",
- 10000000,
- "#8B4225",
- 25000000,
- "#723122"
- ]
- }
- },
- {
- "id": "county-population",
- "source": "population",
- "source-layer": "state_county_population_2014_cen",
- "type": "fill",
- "maxzoom": 4,
- "filter": ["==", "isState", true],
- "paint": {
- "fill-opacity": 0.75,
- "fill-color": [
- "interpolate",
- ["linear"],
- ["get", "population"],
- 0,
- "#F2F12D",
- 100,
- "#EED322",
- 1000,
- "#E6B71E",
- 5000,
- "#DA9C20",
- 10000,
- "#CA8323",
- 50000,
- "#B86B25",
- 100000,
- "#A25626",
- 500000,
- "#8B4225",
- 1000000,
- "#723122"
- ]
- }
- },
- {
- "id": "overlay",
- "source": "overlay",
- "type": "raster",
- "paint": {"raster-opacity": 0.85}
- }
- ]
-}
diff --git a/packages/examples/src/assets/style-json-example2.json b/packages/examples/src/assets/style-json-example2.json
deleted file mode 100644
index 19cb89c18..000000000
--- a/packages/examples/src/assets/style-json-example2.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
- "version": 1,
- "name": "style-json-example",
- "sources": {
- "population": {
- "type": "vector",
- "url": "mapbox://mapbox.660ui7x6"
- },
- "overlay": {
- "type": "image",
- "url": "https://upload.wikimedia.org/wikipedia/commons/7/7c/201408_cat.png",
- "coordinates": [
- [-80.425, 46.437],
- [-71.516, 46.437],
- [-71.516, 37.936],
- [-80.425, 37.936]
- ]
- }
- },
- "layers": [
- {
- "id": "state-population",
- "source": "population",
- "source-layer": "state_county_population_2014_cen",
- "type": "fill",
- "maxzoom": 4,
- "filter": ["==", "isState", true],
- "paint": {
- "fill-opacity": 0.75,
- "fill-color": [
- "interpolate",
- ["linear"],
- ["get", "population"],
- 0,
- "#32E8CB",
- 500000,
- "#2DD2B4",
- 750000,
- "#27BB9E",
- 1000000,
- "#22A587",
- 2500000,
- "#1C8E71",
- 5000000,
- "#16775A",
- 7500000,
- "#116144",
- 10000000,
- "#0B4A2D",
- 25000000,
- "#063417"
- ]
- }
- },
- {
- "id": "county-population",
- "source": "population",
- "source-layer": "state_county_population_2014_cen",
- "type": "fill",
- "maxzoom": 4,
- "filter": ["==", "isState", true],
- "paint": {
- "fill-opacity": 0.75,
- "fill-color": [
- "interpolate",
- ["linear"],
- ["get", "population"],
- 0,
- "#32E8CB",
- 100,
- "#2DD2B4",
- 1000,
- "#27BB9E",
- 5000,
- "#22A587",
- 10000,
- "#1C8E71",
- 50000,
- "#16775A",
- 100000,
- "#116144",
- 500000,
- "#0B4A2D",
- 1000000,
- "#063417"
- ]
- }
- },
- {
- "id": "overlay",
- "source": "overlay",
- "type": "raster",
- "paint": {"raster-opacity": 0.85}
- }
- ]
-}
diff --git a/packages/examples/src/assets/map-styleURL-style.json b/packages/examples/src/assets/styles/maplibre-demo-tiles-blue.json
similarity index 83%
rename from packages/examples/src/assets/map-styleURL-style.json
rename to packages/examples/src/assets/styles/maplibre-demo-tiles-blue.json
index 784963e07..eadb093e8 100644
--- a/packages/examples/src/assets/map-styleURL-style.json
+++ b/packages/examples/src/assets/styles/maplibre-demo-tiles-blue.json
@@ -14,7 +14,7 @@
"id": "background",
"type": "background",
"paint": {
- "background-color": "rgba(135, 149, 154, 1)"
+ "background-color": "#ffffff"
}
}, {
"id": "land",
@@ -22,7 +22,7 @@
"source": "demotiles",
"source-layer": "countries",
"paint": {
- "fill-color": "forest green"
+ "fill-color": "#285daa"
}
}]
}
diff --git a/packages/examples/src/assets/styles/maplibre-demo-tiles-white.json b/packages/examples/src/assets/styles/maplibre-demo-tiles-white.json
new file mode 100644
index 000000000..2e2bc1945
--- /dev/null
+++ b/packages/examples/src/assets/styles/maplibre-demo-tiles-white.json
@@ -0,0 +1,28 @@
+{
+ "version": 8,
+ "name": "Basic",
+ "constants": {},
+ "sources": {
+ "demotiles": {
+ "type": "vector",
+ "url": "https://demotiles.maplibre.org/tiles/tiles.json"
+ }
+ },
+ "sprite": "",
+ "glyphs": "",
+ "layers": [{
+ "id": "background",
+ "type": "background",
+ "paint": {
+ "background-color": "#285daa"
+ }
+ }, {
+ "id": "land",
+ "type": "fill",
+ "source": "demotiles",
+ "source-layer": "countries",
+ "paint": {
+ "fill-color": "#ffffff"
+ }
+ }]
+}
diff --git a/packages/examples/src/assets/test_pattern.jpg b/packages/examples/src/assets/test_pattern.jpg
deleted file mode 100755
index c9ab99e57..000000000
Binary files a/packages/examples/src/assets/test_pattern.jpg and /dev/null differ
diff --git a/packages/examples/src/examples/common/Bubble.tsx b/packages/examples/src/components/Bubble.tsx
similarity index 100%
rename from packages/examples/src/examples/common/Bubble.tsx
rename to packages/examples/src/components/Bubble.tsx
diff --git a/packages/examples/src/components/ButtonGroup.tsx b/packages/examples/src/components/ButtonGroup.tsx
index 184f1a994..d03cb72c0 100644
--- a/packages/examples/src/components/ButtonGroup.tsx
+++ b/packages/examples/src/components/ButtonGroup.tsx
@@ -7,7 +7,7 @@ import {
View,
} from "react-native";
-import colors from "../styles/colors";
+import { colors } from "../styles/colors";
const styles = StyleSheet.create({
root: {
diff --git a/packages/examples/src/components/MapSafeAreaView.tsx b/packages/examples/src/components/MapSafeAreaView.tsx
new file mode 100755
index 000000000..7ccda1b98
--- /dev/null
+++ b/packages/examples/src/components/MapSafeAreaView.tsx
@@ -0,0 +1,16 @@
+import { type ReactNode } from "react";
+import { SafeAreaView } from "react-native-safe-area-context";
+
+import { sheet } from "../styles/sheet";
+
+interface PageProps {
+ children: ReactNode;
+}
+
+export default function MapSafeAreaView({ children }: PageProps) {
+ return (
+
+ {children}
+
+ );
+}
diff --git a/packages/examples/src/examples/common/PulseCircleLayer.tsx b/packages/examples/src/components/PulseCircleLayer.tsx
similarity index 100%
rename from packages/examples/src/examples/common/PulseCircleLayer.tsx
rename to packages/examples/src/components/PulseCircleLayer.tsx
diff --git a/packages/examples/src/examples/common/TabBarPage.tsx b/packages/examples/src/components/TabBarView.tsx
similarity index 71%
rename from packages/examples/src/examples/common/TabBarPage.tsx
rename to packages/examples/src/components/TabBarView.tsx
index 963eb5452..00280ef71 100755
--- a/packages/examples/src/examples/common/TabBarPage.tsx
+++ b/packages/examples/src/components/TabBarView.tsx
@@ -1,9 +1,9 @@
import { type ReactNode, useState } from "react";
-import Page from "./Page";
-import { ButtonGroup } from "../../components/ButtonGroup";
+import { ButtonGroup } from "./ButtonGroup";
+import MapSafeAreaView from "./MapSafeAreaView";
-interface TabBarPageProps {
+interface TabBarViewProps {
children: ReactNode;
scrollable?: boolean;
options: { label: string; data: DataT }[];
@@ -11,17 +11,17 @@ interface TabBarPageProps {
defaultValue?: number;
}
-function TabBarPage({
+function TabBarView({
children,
scrollable = false,
options,
onOptionPress,
defaultValue,
-}: TabBarPageProps) {
+}: TabBarViewProps) {
const [value, setValue] = useState(defaultValue);
return (
-
+
{children}
({
}}
scrollable={scrollable}
/>
-
+
);
}
-export default TabBarPage;
+export default TabBarView;
diff --git a/packages/examples/src/constants/AMERICANA_VECTOR_STYLE.ts b/packages/examples/src/constants/AMERICANA_VECTOR_STYLE.ts
new file mode 100644
index 000000000..0fe03619f
--- /dev/null
+++ b/packages/examples/src/constants/AMERICANA_VECTOR_STYLE.ts
@@ -0,0 +1 @@
+export const AMERICANA_VECTOR_STYLE = "https://americanamap.org/style.json";
diff --git a/packages/examples/src/constants/GEOMETRIES.ts b/packages/examples/src/constants/GEOMETRIES.ts
new file mode 100644
index 000000000..9dad11663
--- /dev/null
+++ b/packages/examples/src/constants/GEOMETRIES.ts
@@ -0,0 +1,50 @@
+export const EU_BOUNDS = {
+ ne: [40, 70] as [number, number],
+ sw: [-20, 30] as [number, number],
+};
+
+export const US_BOUNDS = {
+ ne: [-60, 60],
+ sw: [-140, 20],
+} as const;
+
+export const EU_CENTER_COORDINATES = [
+ (EU_BOUNDS.ne[0] + EU_BOUNDS.sw[0]) / 2,
+ (EU_BOUNDS.ne[1] + EU_BOUNDS.sw[1]) / 2,
+];
+
+export const US_CENTER_COORDINATES = [
+ (US_BOUNDS.ne[0] + US_BOUNDS.sw[0]) / 2,
+ (US_BOUNDS.ne[1] + US_BOUNDS.sw[1]) / 2,
+];
+
+export const FEATURE_COLLECTION: GeoJSON.FeatureCollection<
+ GeoJSON.Point,
+ { name: string }
+> = {
+ type: "FeatureCollection",
+ features: [
+ {
+ type: "Feature",
+ id: "eu",
+ geometry: {
+ type: "Point",
+ coordinates: EU_CENTER_COORDINATES,
+ },
+ properties: {
+ name: "EU Center",
+ },
+ },
+ {
+ type: "Feature",
+ id: "us",
+ geometry: {
+ type: "Point",
+ coordinates: US_CENTER_COORDINATES,
+ },
+ properties: {
+ name: "US Center",
+ },
+ },
+ ],
+};
diff --git a/packages/examples/src/utils/OSM_RASTER_STYLE.ts b/packages/examples/src/constants/OSM_RASTER_STYLE.ts
similarity index 87%
rename from packages/examples/src/utils/OSM_RASTER_STYLE.ts
rename to packages/examples/src/constants/OSM_RASTER_STYLE.ts
index 85b3f6dd4..fd87865fe 100644
--- a/packages/examples/src/utils/OSM_RASTER_STYLE.ts
+++ b/packages/examples/src/constants/OSM_RASTER_STYLE.ts
@@ -1,5 +1,5 @@
// License: https://operations.osmfoundation.org/policies/tiles/
-export const OSM_RASTER_STYLE = JSON.stringify({
+export const OSM_RASTER_STYLE = {
version: 8,
sources: {
osm: {
@@ -17,4 +17,4 @@ export const OSM_RASTER_STYLE = JSON.stringify({
source: "osm",
},
],
-});
+};
diff --git a/packages/examples/src/examples/Animations/AnimateCircleAlongLine.tsx b/packages/examples/src/examples/Animations/AnimateCircleAlongLine.tsx
index 136cde8a2..dffafe551 100755
--- a/packages/examples/src/examples/Animations/AnimateCircleAlongLine.tsx
+++ b/packages/examples/src/examples/Animations/AnimateCircleAlongLine.tsx
@@ -3,10 +3,9 @@ import MapLibreGL, {
} from "@maplibre/maplibre-react-native";
import { useEffect, useState } from "react";
-import sheet from "../../styles/sheet";
+import PulseCircleLayer from "../../components/PulseCircleLayer";
+import { sheet } from "../../styles/sheet";
import RouteSimulator from "../../utils/RouteSimulator";
-import Page from "../common/Page";
-import PulseCircleLayer from "../common/PulseCircleLayer";
const ROUTE_FEATURE: GeoJSON.Feature = {
type: "Feature",
@@ -99,25 +98,23 @@ export default function AnimateCircleAlongLine() {
};
return (
-
-
-
-
-
-
-
-
- {currentPoint && }
-
- {renderProgressLine()}
-
-
+
+
+
+
+
+
+
+ {currentPoint && }
+
+ {renderProgressLine()}
+
);
}
diff --git a/packages/examples/src/examples/Animations/AnimatedLine.js b/packages/examples/src/examples/Animations/AnimatedLine.js
index 408eacc70..7c773755a 100755
--- a/packages/examples/src/examples/Animations/AnimatedLine.js
+++ b/packages/examples/src/examples/Animations/AnimatedLine.js
@@ -1,13 +1,12 @@
-import { Animated, MapView, Camera } from "@maplibre/maplibre-react-native";
+import { Animated, Camera, MapView } from "@maplibre/maplibre-react-native";
import along from "@turf/along";
-import { point, lineString } from "@turf/helpers";
+import { lineString, point } from "@turf/helpers";
import length from "@turf/length";
import React from "react";
-import { Easing, Button } from "react-native";
+import { Button, Easing } from "react-native";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
const blon = -73.99155;
const blat = 40.73481;
@@ -202,7 +201,7 @@ class AnimatedLine extends React.Component {
render() {
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
@@ -269,7 +268,7 @@ class AnimatedLine extends React.Component {
onPress={() => this.startAnimateRoute()}
/>
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Annotations/CustomCallout.tsx b/packages/examples/src/examples/Annotations/CustomCallout.tsx
index b253e0904..4523ec757 100644
--- a/packages/examples/src/examples/Annotations/CustomCallout.tsx
+++ b/packages/examples/src/examples/Annotations/CustomCallout.tsx
@@ -1,124 +1,54 @@
-import MapLibreGL, {
- type SymbolLayerStyle,
-} from "@maplibre/maplibre-react-native";
-import { type ReactElement, useState } from "react";
-import {
- type StyleProp,
- Text,
- type TextStyle,
- View,
- type ViewStyle,
-} from "react-native";
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useState } from "react";
+import { Text, View } from "react-native";
-import exampleIcon from "../../assets/pin.png";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import maplibreIcon from "../../assets/images/maplibre.png";
+import { FEATURE_COLLECTION } from "../../constants/GEOMETRIES";
+import { sheet } from "../../styles/sheet";
-const defaultCamera = {
- centerCoordinate: [12.338, 45.4385],
- zoomLevel: 17.4,
-};
-
-const featureCollection: GeoJSON.FeatureCollection = {
- type: "FeatureCollection",
- features: [
- {
- type: "Feature",
- id: "9d10456e-bdda-4aa9-9269-04c1667d4552",
- properties: {
- icon: "example",
- message: "Hello!",
- },
- geometry: {
- type: "Point",
- coordinates: [12.338, 45.4385],
- },
- },
- ],
-};
-
-type CustomCalloutViewProps = {
- message: string;
-};
-
-const CustomCalloutView = ({ message }: CustomCalloutViewProps) => {
- return (
-
- {message}
-
- );
-};
-
-type CustomCalloutProps = {
- label: string;
-};
-
-const CustomCallout = (props: CustomCalloutProps): ReactElement => {
+export default function CustomCallout() {
const [selectedFeature, setSelectedFeature] =
- useState>();
-
- const onPinPress = (e: any): void => {
- if (selectedFeature) {
- setSelectedFeature(undefined);
- return;
- }
-
- const feature = e?.features[0];
- setSelectedFeature(feature);
- };
+ useState>();
return (
-
-
-
-
+ {
+ const feature = event?.features[0] as
+ | GeoJSON.Feature
+ | undefined;
+
+ setSelectedFeature(feature);
+ }}
+ >
+
+
+ {selectedFeature && (
+
-
-
- {selectedFeature && (
-
- )}
-
-
+ {selectedFeature?.properties?.name}
+
+
+ )}
+
);
-};
-
-interface CustomCalloutStyles {
- mapPinLayer: SymbolLayerStyle;
- customCalloutText: StyleProp;
- calloutContainerStyle: StyleProp;
}
-
-const styles: CustomCalloutStyles = {
- mapPinLayer: {
- iconAllowOverlap: true,
- iconAnchor: "bottom",
- iconSize: 1.0,
- iconImage: exampleIcon,
- },
- customCalloutText: {
- color: "black",
- fontSize: 16,
- },
- calloutContainerStyle: {
- backgroundColor: "white",
- width: 60,
- height: 40,
- display: "flex",
- justifyContent: "center",
- alignItems: "center",
- },
-};
-
-export default CustomCallout;
diff --git a/packages/examples/src/examples/Annotations/Heatmap.js b/packages/examples/src/examples/Annotations/Heatmap.js
deleted file mode 100644
index fe0336847..000000000
--- a/packages/examples/src/examples/Annotations/Heatmap.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-
-import sheet from "../../styles/sheet";
-import { SF_OFFICE_COORDINATE } from "../../utils";
-import Page from "../common/Page";
-
-function Heatmap() {
- return (
-
-
-
-
-
-
-
-
-
- );
-}
-
-export default Heatmap;
diff --git a/packages/examples/src/examples/Annotations/Heatmap.tsx b/packages/examples/src/examples/Annotations/Heatmap.tsx
new file mode 100644
index 000000000..8ea6e13ed
--- /dev/null
+++ b/packages/examples/src/examples/Annotations/Heatmap.tsx
@@ -0,0 +1,38 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+
+import { sheet } from "../../styles/sheet";
+
+export default function Heatmap() {
+ return (
+
+
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/Annotations/MarkerView.tsx b/packages/examples/src/examples/Annotations/MarkerView.tsx
index 85ea52ee9..2c19989df 100644
--- a/packages/examples/src/examples/Annotations/MarkerView.tsx
+++ b/packages/examples/src/examples/Annotations/MarkerView.tsx
@@ -1,8 +1,7 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { StyleSheet, Text, TouchableOpacity, View } from "react-native";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import { sheet } from "../../styles/sheet";
const styles = StyleSheet.create({
touchableContainer: {
@@ -46,18 +45,16 @@ const COORDINATES = [
export default function MarkerView() {
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
);
}
diff --git a/packages/examples/src/examples/Annotations/PointAnnotationAnchors.js b/packages/examples/src/examples/Annotations/PointAnnotationAnchors.js
index 21b3b82eb..f2a6197ac 100644
--- a/packages/examples/src/examples/Annotations/PointAnnotationAnchors.js
+++ b/packages/examples/src/examples/Annotations/PointAnnotationAnchors.js
@@ -2,8 +2,7 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { StyleSheet, Text, View } from "react-native";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import { sheet } from "../../styles/sheet";
const ANNOTATION_SIZE = 50;
@@ -70,64 +69,62 @@ const styles = StyleSheet.create({
},
});
-const PointAnnotationAnchors = (props) => {
+const PointAnnotationAnchors = () => {
return (
-
-
-
- {corners.map((p, i) => (
+
+
+ {corners.map((p, i) => (
+
+
+
+ x={p.anchor.x.toPrecision(2)}, y={p.anchor.y.toPrecision(2)}
+
+
+
+ ))}
+ {sides.map((p, i) => {
+ let { x, y } = p.anchor;
+ if (x === 1) {
+ x = 0;
+ }
+ if (y === 1) {
+ y = 0;
+ }
+ return (
-
-
+
+
+
+
x={p.anchor.x.toPrecision(2)}, y={p.anchor.y.toPrecision(2)}
- ))}
- {sides.map((p, i) => {
- let { x, y } = p.anchor;
- if (x === 1) {
- x = 0;
- }
- if (y === 1) {
- y = 0;
- }
- return (
-
-
-
-
-
- x={p.anchor.x.toPrecision(2)}, y={p.anchor.y.toPrecision(2)}
-
-
-
- );
- })}
-
-
+ );
+ })}
+
);
};
diff --git a/packages/examples/src/examples/Annotations/ShowPointAnnotation.tsx b/packages/examples/src/examples/Annotations/ShowPointAnnotation.tsx
index 0a6632f66..ebd76380a 100755
--- a/packages/examples/src/examples/Annotations/ShowPointAnnotation.tsx
+++ b/packages/examples/src/examples/Annotations/ShowPointAnnotation.tsx
@@ -1,17 +1,16 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
-import { useRef, useState, type ReactNode } from "react";
+import { type ReactNode, useRef, useState } from "react";
import {
- View,
- Text,
- StyleSheet,
Image,
- TouchableOpacity,
Platform,
+ StyleSheet,
+ Text,
+ TouchableOpacity,
+ View,
} from "react-native";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
const ANNOTATION_SIZE = 40;
@@ -119,7 +118,7 @@ const ShowPointAnnotation = () => {
};
return (
-
+ <>
{
setCoordinates((prevState) => [
@@ -182,7 +181,7 @@ const ShowPointAnnotation = () => {
-
+ >
);
};
diff --git a/packages/examples/src/examples/BugReport.tsx b/packages/examples/src/examples/BugReport.tsx
new file mode 100644
index 000000000..fdedeffdc
--- /dev/null
+++ b/packages/examples/src/examples/BugReport.tsx
@@ -0,0 +1,11 @@
+import { MapView } from "@maplibre/maplibre-react-native";
+
+import { sheet } from "../styles/sheet";
+
+export default function BugReport() {
+ return (
+
+ {/* Reproduce your Bug here! */}
+
+ );
+}
diff --git a/packages/examples/src/examples/BugReportPage.js b/packages/examples/src/examples/BugReportPage.js
deleted file mode 100644
index 3e6eeeb12..000000000
--- a/packages/examples/src/examples/BugReportPage.js
+++ /dev/null
@@ -1,97 +0,0 @@
-import {
- MapView,
- ShapeSource,
- SymbolLayer,
- CircleLayer,
- Camera,
-} from "@maplibre/maplibre-react-native";
-import React from "react";
-import { Button } from "react-native";
-
-import Page from "./common/Page";
-
-const styles = {
- mapView: { flex: 1 },
- circleLayer: {
- circleRadiusTransition: { duration: 5000, delay: 0 },
- circleColor: "#ff0000",
- },
-};
-
-const features = {
- type: "FeatureCollection",
- features: [
- {
- type: "Feature",
- id: "a-feature",
- properties: {
- icon: "example",
- text: "example-icon-and-label",
- },
- geometry: {
- type: "Point",
- coordinates: [-74.00597, 40.71427],
- },
- },
- {
- type: "Feature",
- id: "b-feature",
- properties: {
- text: "just-label",
- },
- geometry: {
- type: "Point",
- coordinates: [-74.001097, 40.71527],
- },
- },
- {
- type: "Feature",
- id: "c-feature",
- properties: {
- icon: "example",
- },
- geometry: {
- type: "Point",
- coordinates: [-74.00697, 40.72427],
- },
- },
- ],
-};
-
-class BugReportPage extends React.Component {
- state = {
- radius: 20,
- };
-
- render() {
- const circleLayerStyle = {
- ...styles.circleLayer,
- ...{ circleRadius: this.state.radius },
- };
-
- return (
-
-
- );
- }
-}
-
-export default BugReportPage;
diff --git a/packages/examples/src/examples/CacheManagement.js b/packages/examples/src/examples/CacheManagement.js
index 37b9ca95f..0d2aa3412 100755
--- a/packages/examples/src/examples/CacheManagement.js
+++ b/packages/examples/src/examples/CacheManagement.js
@@ -1,17 +1,15 @@
-import MapLibreGL, { MapView, Camera } from "@maplibre/maplibre-react-native";
+import MapLibreGL, { MapView } from "@maplibre/maplibre-react-native";
import React from "react";
import {
Alert,
StyleSheet,
- View,
+ Text,
TextInput,
TouchableOpacity,
- Text,
+ View,
} from "react-native";
-import sheet from "../styles/sheet";
-import { DEFAULT_CENTER_COORDINATE } from "../utils";
-import Page from "./common/Page";
+import { sheet } from "../styles/sheet";
const styles = StyleSheet.create({
button: {
@@ -83,10 +81,8 @@ class CacheManagement extends React.Component {
: [styles.button, { backgroundColor: "grey" }];
return (
-
-
-
-
+ <>
+
@@ -135,7 +131,7 @@ class CacheManagement extends React.Component {
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Camera/CompassView.js b/packages/examples/src/examples/Camera/CompassView.js
index ddb40f67f..25fb58608 100644
--- a/packages/examples/src/examples/Camera/CompassView.js
+++ b/packages/examples/src/examples/Camera/CompassView.js
@@ -1,21 +1,18 @@
-import { MapView, Camera } from "@maplibre/maplibre-react-native";
+import { Camera, MapView } from "@maplibre/maplibre-react-native";
import React from "react";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import { sheet } from "../../styles/sheet";
function CompassView() {
return (
-
-
-
-
-
+
+
+
);
}
diff --git a/packages/examples/src/examples/Camera/Fit.js b/packages/examples/src/examples/Camera/Fit.js
index 0f003a1d1..40fb58ea7 100755
--- a/packages/examples/src/examples/Camera/Fit.js
+++ b/packages/examples/src/examples/Camera/Fit.js
@@ -1,10 +1,15 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { isEqual } from "lodash";
import React from "react";
-import { ScrollView, TouchableOpacity, View, Text } from "react-native";
+import { ScrollView, Text, TouchableOpacity, View } from "react-native";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import {
+ EU_BOUNDS,
+ EU_CENTER_COORDINATES,
+ US_BOUNDS,
+ US_CENTER_COORDINATES,
+} from "../../constants/GEOMETRIES";
+import { sheet } from "../../styles/sheet";
const buildPadding = ([top, right, bottom, left] = [0, 0, 0, 0]) => {
return {
@@ -15,25 +20,6 @@ const buildPadding = ([top, right, bottom, left] = [0, 0, 0, 0]) => {
};
};
-const usBounds = {
- ne: [-60, 60],
- sw: [-140, 20],
-};
-
-const euBounds = {
- ne: [40, 70],
- sw: [-20, 30],
-};
-
-const usCenter = [
- (usBounds.ne[0] + usBounds.sw[0]) / 2,
- (usBounds.ne[1] + usBounds.sw[1]) / 2,
-];
-const euCenter = [
- (euBounds.ne[0] + euBounds.sw[0]) / 2,
- (euBounds.ne[1] + euBounds.sw[1]) / 2,
-];
-
const paddingZero = buildPadding();
const paddingTop = buildPadding([200, 40, 40, 40]);
const paddingBottom = buildPadding([40, 40, 200, 40]);
@@ -137,13 +123,13 @@ class Fit extends React.Component {
};
if (locationType === "usCenter") {
- p.centerCoordinate = usCenter;
+ p.centerCoordinate = US_CENTER_COORDINATES;
} else if (locationType === "usBounds") {
- p.bounds = usBounds;
+ p.bounds = US_BOUNDS;
} else if (locationType === "euCenter") {
- p.centerCoordinate = euCenter;
+ p.centerCoordinate = EU_CENTER_COORDINATES;
} else if (locationType === "euBounds") {
- p.bounds = euBounds;
+ p.bounds = EU_BOUNDS;
}
if (zoomLevel !== undefined) {
@@ -199,7 +185,7 @@ class Fit extends React.Component {
});
return (
-
+ <>
{
- this.camera.flyTo(usCenter);
+ this.camera.flyTo(US_CENTER_COORDINATES);
this.setState({ cachedFlyTo: "us" });
},
},
@@ -256,7 +242,7 @@ class Fit extends React.Component {
title: "EU",
selected: cachedFlyTo === "eu",
onPress: () => {
- this.camera.flyTo(euCenter);
+ this.camera.flyTo(EU_CENTER_COORDINATES);
this.setState({ cachedFlyTo: "eu" });
},
},
@@ -282,7 +268,7 @@ class Fit extends React.Component {
},
])}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Camera/FlyTo.js b/packages/examples/src/examples/Camera/FlyTo.js
index 894b3312a..fc92f543f 100755
--- a/packages/examples/src/examples/Camera/FlyTo.js
+++ b/packages/examples/src/examples/Camera/FlyTo.js
@@ -2,14 +2,14 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Alert } from "react-native";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import {
+ EU_CENTER_COORDINATES,
+ US_CENTER_COORDINATES,
+} from "../../constants/GEOMETRIES";
+import { sheet } from "../../styles/sheet";
class FlyTo extends React.Component {
- static SF_OFFICE_LOCATION = [-122.400021, 37.789085];
-
- static DC_OFFICE_LOCATION = [-77.036086, 38.910233];
-
static ZERO_ZERO = [0, 0];
static ZERO_TEN = [0, 10];
static TEN_ZERO = [10, 0];
@@ -18,12 +18,12 @@ class FlyTo extends React.Component {
super(props);
this.state = {
- location: FlyTo.SF_OFFICE_LOCATION,
+ location: EU_CENTER_COORDINATES,
};
this._flyToOptions = [
- { label: "SF", data: FlyTo.SF_OFFICE_LOCATION },
- { label: "DC", data: FlyTo.DC_OFFICE_LOCATION },
+ { label: "EU", data: EU_CENTER_COORDINATES },
+ { label: "US", data: US_CENTER_COORDINATES },
{ label: "0,0", data: FlyTo.ZERO_ZERO },
{ label: "0,10", data: FlyTo.ZERO_TEN },
{ label: "10,0", data: FlyTo.TEN_ZERO },
@@ -43,7 +43,7 @@ class FlyTo extends React.Component {
render() {
return (
-
-
+
);
}
}
diff --git a/packages/examples/src/examples/Camera/GetCenter.js b/packages/examples/src/examples/Camera/GetCenter.js
index a27bb28ed..7fc77f582 100755
--- a/packages/examples/src/examples/Camera/GetCenter.js
+++ b/packages/examples/src/examples/Camera/GetCenter.js
@@ -2,8 +2,7 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
const styles = {
mapView: { flex: 1 },
@@ -39,7 +38,7 @@ class GetCenter extends React.Component {
render() {
return (
-
+ <>
(this._map = c)}
@@ -57,7 +56,7 @@ class GetCenter extends React.Component {
{this.getLng()}
{this.getLat()}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Camera/GetZoom.js b/packages/examples/src/examples/Camera/GetZoom.js
deleted file mode 100755
index 18429afaa..000000000
--- a/packages/examples/src/examples/Camera/GetZoom.js
+++ /dev/null
@@ -1,51 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-import { Text } from "react-native";
-
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
-
-const styles = {
- mapView: { flex: 1 },
-};
-
-class GetZoom extends React.Component {
- constructor(props) {
- super(props);
-
- this.state = {
- zoom: 9,
- };
-
- this.onRegionDidChange = this.onRegionDidChange.bind(this);
- }
-
- async onRegionDidChange() {
- const zoom = await this._map.getZoom();
- this.setState({ zoom });
- }
-
- render() {
- return (
-
- (this._map = c)}
- onPress={this.onPress}
- style={styles.mapView}
- >
-
-
-
-
- Current zoom: {this.state.zoom}
-
-
- );
- }
-}
-
-export default GetZoom;
diff --git a/packages/examples/src/examples/Camera/GetZoom.tsx b/packages/examples/src/examples/Camera/GetZoom.tsx
new file mode 100755
index 000000000..763045cd4
--- /dev/null
+++ b/packages/examples/src/examples/Camera/GetZoom.tsx
@@ -0,0 +1,26 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useRef, useState } from "react";
+import { Text } from "react-native";
+
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
+
+export default function GetZoom() {
+ const [zoom, setZoom] = useState();
+ const mapViewRef = useRef(null);
+
+ return (
+ <>
+ {
+ setZoom(await mapViewRef.current?.getZoom());
+ }}
+ style={sheet.matchParent}
+ />
+
+ Zoom: {zoom}
+
+ >
+ );
+}
diff --git a/packages/examples/src/examples/Camera/RestrictMapBounds.js b/packages/examples/src/examples/Camera/RestrictMapBounds.js
deleted file mode 100644
index 49ddfe4b4..000000000
--- a/packages/examples/src/examples/Camera/RestrictMapBounds.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import bboxPolygon from "@turf/bbox-polygon";
-import React from "react";
-
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
-
-const boundsStyle = {
- fillColor: "rgba(255, 255, 255, 0.1)",
- fillOutlineColor: "white",
-};
-
-const bounds = {
- ne: [-4.265762, 51.054738],
- sw: [-5.760365, 49.947256],
-};
-
-const { ne, sw } = bounds;
-const polygon = bboxPolygon([sw[0], sw[1], ne[0], ne[1]]);
-
-const RestrictMapBounds = (props) => (
-
-
-
-
-
-
-
-
-);
-
-export default RestrictMapBounds;
diff --git a/packages/examples/src/examples/Camera/RestrictMapBounds.tsx b/packages/examples/src/examples/Camera/RestrictMapBounds.tsx
new file mode 100644
index 000000000..59fa02e57
--- /dev/null
+++ b/packages/examples/src/examples/Camera/RestrictMapBounds.tsx
@@ -0,0 +1,31 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import bboxPolygon from "@turf/bbox-polygon";
+
+import { EU_BOUNDS } from "../../constants/GEOMETRIES";
+import { colors } from "../../styles/colors";
+import { sheet } from "../../styles/sheet";
+
+const POLYGON = bboxPolygon([
+ EU_BOUNDS.sw[0],
+ EU_BOUNDS.sw[1],
+ EU_BOUNDS.ne[0],
+ EU_BOUNDS.ne[1],
+]);
+
+export default function RestrictMapBounds() {
+ return (
+
+
+
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/Camera/SetHeading.js b/packages/examples/src/examples/Camera/SetHeading.js
index f152605cb..3a4bcb9b1 100755
--- a/packages/examples/src/examples/Camera/SetHeading.js
+++ b/packages/examples/src/examples/Camera/SetHeading.js
@@ -1,8 +1,8 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
class SetHeading extends React.Component {
constructor(props) {
@@ -44,7 +44,7 @@ class SetHeading extends React.Component {
render() {
return (
-
-
+
);
}
}
diff --git a/packages/examples/src/examples/Camera/SetPitch.js b/packages/examples/src/examples/Camera/SetPitch.js
index e50d6cc46..44c363d89 100755
--- a/packages/examples/src/examples/Camera/SetPitch.js
+++ b/packages/examples/src/examples/Camera/SetPitch.js
@@ -1,8 +1,8 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
class SetPitch extends React.Component {
constructor(props) {
@@ -37,7 +37,7 @@ class SetPitch extends React.Component {
render() {
return (
-
-
+
);
}
}
diff --git a/packages/examples/src/examples/Camera/SetUserTrackingMode.js b/packages/examples/src/examples/Camera/SetUserTrackingMode.js
deleted file mode 100755
index 5c209ce0c..000000000
--- a/packages/examples/src/examples/Camera/SetUserTrackingMode.js
+++ /dev/null
@@ -1,142 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-import { Text } from "react-native";
-
-import sheet from "../../styles/sheet";
-import { onSortOptions } from "../../utils";
-import Bubble from "../common/Bubble";
-import TabBarPage from "../common/TabBarPage";
-
-const styles = {
- bubbleOne: { bottom: 80 },
- bubbleTwo: { bottom: 150 },
- bubbleThree: { bottom: 220 },
-};
-
-class SetUserTrackingMode extends React.Component {
- constructor(props) {
- super(props);
-
- this._trackingOptions = Object.keys(MapLibreGL.UserTrackingMode)
- .map((key) => {
- return {
- label: key,
- data: MapLibreGL.UserTrackingMode[key],
- };
- })
- .concat([
- {
- label: "None",
- data: "none",
- },
- ])
- .sort(onSortOptions);
-
- this.state = {
- showUserLocation: true,
- userSelectedUserTrackingMode: this._trackingOptions[3].data,
- currentTrackingMode: this._trackingOptions[3].data,
- showsUserHeadingIndicator: false,
- };
-
- this.onTrackingChange = this.onTrackingChange.bind(this);
- this.onUserTrackingModeChange = this.onUserTrackingModeChange.bind(this);
- this.onToggleUserLocation = this.onToggleUserLocation.bind(this);
- this.onToggleHeadingIndicator = this.onToggleHeadingIndicator.bind(this);
- }
-
- onTrackingChange(index, userTrackingMode) {
- this.setState({
- userSelectedUserTrackingMode: userTrackingMode,
- currentTrackingMode: userTrackingMode,
- });
- }
-
- onUserTrackingModeChange(e) {
- const { followUserMode } = e.nativeEvent.payload;
- this.setState({ currentTrackingMode: followUserMode || "none" });
- }
-
- onToggleUserLocation() {
- this.setState((prevState) => ({
- showUserLocation: !prevState.showUserLocation,
- }));
- }
-
- onToggleHeadingIndicator() {
- this.setState((prevState) => ({
- showsUserHeadingIndicator: !prevState.showsUserHeadingIndicator,
- }));
- }
-
- get userTrackingModeText() {
- switch (this.state.currentTrackingMode) {
- case MapLibreGL.UserTrackingMode.Follow:
- return "Follow";
- case MapLibreGL.UserTrackingMode.FollowWithCourse:
- return "FollowWithCourse";
- case MapLibreGL.UserTrackingMode.FollowWithHeading:
- return "FollowWithHeading";
- default:
- return "None";
- }
- }
-
- render() {
- return (
-
-
-
-
-
-
-
-
- User Tracking Mode: {this.userTrackingModeText}
-
-
-
-
- Toggle User Location:{" "}
- {this.state.showUserLocation ? "true" : "false"}
-
-
-
-
-
- Toggle user heading indicator:{" "}
- {this.state.showsUserHeadingIndicator ? "true" : "false"}
-
-
-
- );
- }
-}
-
-export default SetUserTrackingMode;
diff --git a/packages/examples/src/examples/Camera/TakeSnapshot.js b/packages/examples/src/examples/Camera/TakeSnapshot.js
index 0650d2e4d..90e710882 100755
--- a/packages/examples/src/examples/Camera/TakeSnapshot.js
+++ b/packages/examples/src/examples/Camera/TakeSnapshot.js
@@ -1,16 +1,14 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import {
- View,
+ ActivityIndicator,
+ Dimensions,
Image,
StyleSheet,
- Dimensions,
Text,
- ActivityIndicator,
+ View,
} from "react-native";
-import Page from "../common/Page";
-
const styles = StyleSheet.create({
container: {
flex: 1,
@@ -53,17 +51,15 @@ class TakeSnapshot extends React.Component {
}
render() {
- let childView = null;
-
if (!this.state.snapshotURI) {
- childView = (
+ return (
Generating Snapshot
);
} else {
- childView = (
+ return (
);
}
-
- return {childView};
}
}
diff --git a/packages/examples/src/examples/Camera/TakeSnapshotWithMap.js b/packages/examples/src/examples/Camera/TakeSnapshotWithMap.js
index 86c5491c7..9486c35b9 100755
--- a/packages/examples/src/examples/Camera/TakeSnapshotWithMap.js
+++ b/packages/examples/src/examples/Camera/TakeSnapshotWithMap.js
@@ -1,15 +1,14 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
-import { StyleSheet, View, Text, TouchableOpacity, Image } from "react-native";
+import { Image, StyleSheet, Text, TouchableOpacity, View } from "react-native";
-import colors from "../../styles/colors";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import { colors } from "../../styles/colors";
+import { sheet } from "../../styles/sheet";
const styles = StyleSheet.create({
button: {
alignItems: "center",
- backgroundColor: colors.primary.blueLight,
+ backgroundColor: colors.blue,
height: 60,
justifyContent: "center",
},
@@ -37,7 +36,7 @@ class TakeSnapshotWithMap extends React.Component {
render() {
return (
-
+ <>
(this.map = ref)}
@@ -66,7 +65,7 @@ class TakeSnapshotWithMap extends React.Component {
Take snapshot
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Camera/YoYo.js b/packages/examples/src/examples/Camera/YoYo.js
deleted file mode 100755
index 4c8f2f85a..000000000
--- a/packages/examples/src/examples/Camera/YoYo.js
+++ /dev/null
@@ -1,56 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-
-import sheet from "../../styles/sheet";
-import { SF_OFFICE_COORDINATE } from "../../utils";
-import Page from "../common/Page";
-
-class YoYo extends React.Component {
- timeout = null;
-
- constructor(props) {
- super(props);
-
- this.state = {
- zoomLevel: 2,
- };
- }
-
- componentDidMount() {
- this.cameraLoop();
- }
-
- componentWillUnmount() {
- if (this.timeout) {
- clearTimeout(this.timeout);
- }
- }
-
- cameraLoop() {
- requestAnimationFrame(async () => {
- this.setState((prevState) => ({
- zoomLevel: prevState.zoomLevel === 6 ? 2 : 6,
- }));
- this.timeout = setTimeout(() => this.cameraLoop(), 2000);
- });
- }
-
- render() {
- return (
-
- (this.map = ref)}
- style={sheet.matchParent}
- styleURL={MapLibreGL.StyleURL.Default}
- >
-
-
-
- );
- }
-}
-
-export default YoYo;
diff --git a/packages/examples/src/examples/Camera/YoYo.tsx b/packages/examples/src/examples/Camera/YoYo.tsx
new file mode 100755
index 000000000..2c150169c
--- /dev/null
+++ b/packages/examples/src/examples/Camera/YoYo.tsx
@@ -0,0 +1,36 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useEffect, useState } from "react";
+
+import { sheet } from "../../styles/sheet";
+
+export default function YoYo() {
+ const [zoomLevel, setZoomLevel] = useState(2);
+
+ useEffect(() => {
+ let timeout: NodeJS.Timeout;
+
+ const cameraLoop = () => {
+ requestAnimationFrame(() => {
+ setZoomLevel((prevState) => (prevState === 4 ? 0 : 4));
+ timeout = setTimeout(() => cameraLoop(), 2000);
+ });
+ };
+ cameraLoop();
+
+ return () => {
+ if (timeout) {
+ clearTimeout(timeout);
+ }
+ };
+ }, []);
+
+ return (
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/FillRasterLayer/ChoroplethLayerByZoomLevel.js b/packages/examples/src/examples/FillRasterLayer/ChoroplethLayerByZoomLevel.js
deleted file mode 100755
index 0508a7fa6..000000000
--- a/packages/examples/src/examples/FillRasterLayer/ChoroplethLayerByZoomLevel.js
+++ /dev/null
@@ -1,100 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
-
-const styles = {
- statePopulation: {
- fillColor: [
- "interpolate",
- ["linear"],
- ["get", "population"],
- 0,
- "#F2F12D",
- 500000,
- "#EED322",
- 750000,
- "#E6B71E",
- 1000000,
- "#DA9C20",
- 2500000,
- "#CA8323",
- 5000000,
- "#B86B25",
- 7500000,
- "#A25626",
- 10000000,
- "#8B4225",
- 25000000,
- "#723122",
- ],
-
- fillOpacity: 0.75,
- },
-
- countyPopulation: {
- fillColor: [
- "interpolate",
- ["linear"],
- ["get", "population"],
- 0,
- "#F2F12D",
- 100,
- "#EED322",
- 1000,
- "#E6B71E",
- 5000,
- "#DA9C20",
- 10000,
- "#CA8323",
- 50000,
- "#B86B25",
- 100000,
- "#A25626",
- 500000,
- "#8B4225",
- 1000000,
- "#723122",
- ],
-
- fillOpacity: 0.75,
- },
-};
-
-function ChoroplethLayerByZoomLevel() {
- return (
-
-
-
-
-
-
-
-
-
-
-
- );
-}
-
-export default React.memo(ChoroplethLayerByZoomLevel);
diff --git a/packages/examples/src/examples/FillRasterLayer/CustomVectorSource.js b/packages/examples/src/examples/FillRasterLayer/CustomVectorSource.js
deleted file mode 100755
index 42aa1ccb4..000000000
--- a/packages/examples/src/examples/FillRasterLayer/CustomVectorSource.js
+++ /dev/null
@@ -1,76 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-import { Text } from "react-native";
-
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
-
-const styles = {
- boxFill: {
- fillColor: [
- "interpolate",
- ["linear"],
- ["get", "box"],
- 0,
- "green",
- 1,
- "blue",
- ],
-
- fillAntialias: true,
- },
-};
-
-const VECTOR_SOURCE_URL =
- "mapbox://nickitaliano.cj94go8xl18fl2qp92v8bdivv-4kgl9";
-
-class CustomVectorSource extends React.PureComponent {
- state = {
- featuresCount: null,
- };
-
- queryFeatures = async () => {
- const features = await this._vectorSource.features([
- "react-native-example",
- ]);
- this.setState({ featuresCount: features.features.length });
- };
-
- render() {
- const { featuresCount } = this.state;
- return (
-
-
-
-
- {
- this._vectorSource = source;
- }}
- onPress={(e) => {
- console.log(`VectorSource onPress: ${e.features}`, e.features);
- }}
- >
-
-
-
-
- Query features:
- {featuresCount && Count: {featuresCount}}
-
-
- );
- }
-}
-
-export default CustomVectorSource;
diff --git a/packages/examples/src/examples/FillRasterLayer/CustomVectorSource.tsx b/packages/examples/src/examples/FillRasterLayer/CustomVectorSource.tsx
new file mode 100755
index 000000000..ab8e70b2f
--- /dev/null
+++ b/packages/examples/src/examples/FillRasterLayer/CustomVectorSource.tsx
@@ -0,0 +1,51 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useRef, useState } from "react";
+import { Text } from "react-native";
+
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
+
+export default function CustomVectorSource() {
+ const vectorSourceRef = useRef();
+ const [featuresCount, setFeaturesCount] = useState();
+
+ return (
+ <>
+
+ {
+ console.log(
+ `VectorSource onPress: ${event.features}`,
+ event.features,
+ );
+ }}
+ >
+
+
+
+ {
+ const features = await vectorSourceRef.current?.features?.([
+ "countries",
+ ]);
+ setFeaturesCount(features.features.length);
+ }}
+ >
+ Query features
+ {typeof featuresCount === "number" ? (
+ Count: {featuresCount}
+ ) : null}
+
+ >
+ );
+}
diff --git a/packages/examples/src/examples/FillRasterLayer/GeoJSONSource.js b/packages/examples/src/examples/FillRasterLayer/GeoJSONSource.js
deleted file mode 100755
index 54e21d914..000000000
--- a/packages/examples/src/examples/FillRasterLayer/GeoJSONSource.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-
-import gridPattern from "../../assets/grid_pattern.png";
-import smileyFaceGeoJSON from "../../assets/smiley_face.json";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
-
-const layerStyles = {
- background: {
- backgroundPattern: gridPattern,
- },
- smileyFace: {
- fillAntialias: true,
- fillColor: "white",
- fillOutlineColor: "rgba(255, 255, 255, 0.84)",
- },
-};
-
-function GeoJSONSource() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
-
-export default GeoJSONSource;
diff --git a/packages/examples/src/examples/FillRasterLayer/GeoJSONSource.tsx b/packages/examples/src/examples/FillRasterLayer/GeoJSONSource.tsx
new file mode 100755
index 000000000..353b4157b
--- /dev/null
+++ b/packages/examples/src/examples/FillRasterLayer/GeoJSONSource.tsx
@@ -0,0 +1,38 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import type { FeatureCollection } from "geojson";
+
+import smileyFeatureCollection from "../../assets/geojson/smiley.json";
+import gridPattern from "../../assets/images/maplibre.png";
+import { sheet } from "../../styles/sheet";
+
+export default function GeoJSONSource() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/FillRasterLayer/ImageOverlay.js b/packages/examples/src/examples/FillRasterLayer/ImageOverlay.js
deleted file mode 100755
index 34e4cb44b..000000000
--- a/packages/examples/src/examples/FillRasterLayer/ImageOverlay.js
+++ /dev/null
@@ -1,111 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-import { Text } from "react-native";
-
-import radar0 from "../../assets/radar.png";
-import radar1 from "../../assets/radar1.png";
-import radar2 from "../../assets/radar2.png";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
-
-const styles = {
- rasterLayer: { rasterOpacity: 0.6 },
- bubble: { bottom: 100 },
-};
-
-const frames = [radar0, radar1, radar2];
-const coordQuads = [
- [
- [-80.425, 46.437], // top left
- [-71.516, 46.437], // top right
- [-71.516, 37.936], // bottom right
- [-80.425, 37.936], // bottom left
- ],
- [
- [-85.425, 45.437], // top left
- [-75.516, 45.437], // top right
- [-75.516, 36.936], // bottom right
- [-85.425, 36.936], // bottom left
- ],
-];
-
-class ImageOverlay extends React.Component {
- state = {
- radarFrameIndex: 0,
- coords: coordQuads[0],
- dynamic: false,
- };
-
- _timeout = null;
-
- componentDidMount() {
- this.heartbeat();
- }
-
- heartbeat() {
- this._timeout = setTimeout(() => {
- requestAnimationFrame(() => {
- let nextFrame = this.state.radarFrameIndex + 1;
- if (nextFrame > 1) {
- nextFrame = 0;
- }
-
- if (this.state.dynamic) {
- this.setState({
- radarFrameIndex: nextFrame,
- coords: coordQuads[nextFrame],
- });
- } else {
- this.setState({ radarFrameIndex: nextFrame });
- }
- this.heartbeat();
- });
- }, 1000);
- }
-
- componentWillUnmount() {
- if (this._timeout) {
- clearTimeout(this._timeout);
- }
- }
-
- render() {
- const bubbleText = this.state.dynamic
- ? "Static coordinates"
- : "Dynamic coordinates";
- return (
-
- (this.map = ref)}
- style={sheet.matchParent}
- styleURL={MapLibreGL.StyleURL.Default}
- >
-
-
-
-
-
-
- {
- this.setState((prevState) => ({ dynamic: !prevState.dynamic }));
- }}
- style={styles.bubble}
- >
- {bubbleText}
-
-
- );
- }
-}
-
-export default ImageOverlay;
diff --git a/packages/examples/src/examples/FillRasterLayer/ImageOverlay.tsx b/packages/examples/src/examples/FillRasterLayer/ImageOverlay.tsx
new file mode 100755
index 000000000..1223ba218
--- /dev/null
+++ b/packages/examples/src/examples/FillRasterLayer/ImageOverlay.tsx
@@ -0,0 +1,63 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useEffect, useState } from "react";
+
+import radar0 from "../../assets/images/radar0.png";
+import radar1 from "../../assets/images/radar1.png";
+import radar2 from "../../assets/images/radar2.png";
+import { sheet } from "../../styles/sheet";
+
+const styles = {
+ rasterLayer: { rasterOpacity: 0.6 },
+ bubble: { bottom: 100 },
+};
+
+const FRAMES = [radar0, radar1, radar2];
+
+const COORDINATES: [
+ GeoJSON.Position,
+ GeoJSON.Position,
+ GeoJSON.Position,
+ GeoJSON.Position,
+] = [
+ [-80.425, 46.437], // top left
+ [-71.516, 46.437], // top right
+ [-71.516, 37.936], // bottom right
+ [-80.425, 37.936], // bottom left
+];
+
+export default function ImageOverlay() {
+ const [index, setIndex] = useState(0);
+
+ useEffect(() => {
+ let timeout: NodeJS.Timeout;
+
+ const loop = () => {
+ requestAnimationFrame(() => {
+ setIndex((prevState) => (prevState + 1) % 3);
+
+ timeout = setTimeout(() => loop(), 1000);
+ });
+ };
+ loop();
+
+ return () => {
+ if (timeout) {
+ clearTimeout(timeout);
+ }
+ };
+ }, []);
+
+ return (
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/FillRasterLayer/IndoorBuilding.tsx b/packages/examples/src/examples/FillRasterLayer/IndoorBuilding.tsx
index 6e924a926..94bf269a0 100755
--- a/packages/examples/src/examples/FillRasterLayer/IndoorBuilding.tsx
+++ b/packages/examples/src/examples/FillRasterLayer/IndoorBuilding.tsx
@@ -1,13 +1,15 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
+import MapLibreGL, {
+ type FillExtrusionLayerStyle,
+} from "@maplibre/maplibre-react-native";
import { useState } from "react";
-import indoorMapGeoJSON from "../../assets/indoor_3d_map.json";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import indoor3DFeatureCollection from "../../assets/geojson/indoor-3d.json";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
const OPTIONS = [-180, -90, 0, 90, 180];
-const layerStyles: { building: MapLibreGL.FillExtrusionLayerStyle } = {
+const layerStyles: { building: FillExtrusionLayerStyle } = {
building: {
fillExtrusionOpacity: 0.5,
fillExtrusionHeight: ["get", "height"],
@@ -21,7 +23,7 @@ export default function IndoorBuilding() {
const [value, setValue] = useState(-90);
return (
- ({
label: option.toString(),
@@ -41,8 +43,7 @@ export default function IndoorBuilding() {
-
+
);
}
diff --git a/packages/examples/src/examples/FillRasterLayer/OpenStreetMapRasterTiles.tsx b/packages/examples/src/examples/FillRasterLayer/OpenStreetMapRasterTiles.tsx
new file mode 100755
index 000000000..4fcca422d
--- /dev/null
+++ b/packages/examples/src/examples/FillRasterLayer/OpenStreetMapRasterTiles.tsx
@@ -0,0 +1,37 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useState } from "react";
+
+import TabBarView from "../../components/TabBarView";
+import { OSM_RASTER_STYLE } from "../../constants/OSM_RASTER_STYLE";
+import { sheet } from "../../styles/sheet";
+
+const OPTIONS = [0, 0.25, 0.5, 0.75, 1];
+const DEFAULT_OPTION = 4;
+
+export default function OpenStreetMapRasterTiles() {
+ const [value, setValue] = useState(OPTIONS[DEFAULT_OPTION]);
+
+ return (
+ ({
+ label: option.toString(),
+ data: option,
+ }))}
+ onOptionPress={(_index, data) => setValue(data)}
+ >
+
+
+
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/FillRasterLayer/QueryAtPoint.js b/packages/examples/src/examples/FillRasterLayer/QueryAtPoint.js
index 65d2b9821..d3826c184 100755
--- a/packages/examples/src/examples/FillRasterLayer/QueryAtPoint.js
+++ b/packages/examples/src/examples/FillRasterLayer/QueryAtPoint.js
@@ -2,10 +2,9 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import nycJSON from "../../assets/nyc_geojson.json";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import newYorkCityDistrictsFeatureCollection from "../../assets/geojson/new-york-city-districts.json";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
const styles = {
neighborhoods: {
@@ -54,7 +53,7 @@ class QueryAtPoint extends React.Component {
render() {
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
@@ -66,7 +65,10 @@ class QueryAtPoint extends React.Component {
centerCoordinate={[-73.970895, 40.723279]}
/>
-
+
@@ -86,7 +88,7 @@ class QueryAtPoint extends React.Component {
Press on a feature to highlight it.
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/FillRasterLayer/QueryWithRect.js b/packages/examples/src/examples/FillRasterLayer/QueryWithRect.js
index 11023a625..202454845 100755
--- a/packages/examples/src/examples/FillRasterLayer/QueryWithRect.js
+++ b/packages/examples/src/examples/FillRasterLayer/QueryWithRect.js
@@ -2,10 +2,9 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import nycJSON from "../../assets/nyc_geojson.json";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import newYorkCityDistrictsFeatureCollection from "../../assets/geojson/new-york-city-districts.json";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
const styles = {
neighborhoods: {
@@ -75,7 +74,7 @@ class QueryWithRect extends React.Component {
render() {
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
@@ -87,7 +86,10 @@ class QueryWithRect extends React.Component {
centerCoordinate={[-73.970895, 40.723279]}
/>
-
+
@@ -107,7 +109,7 @@ class QueryWithRect extends React.Component {
{this.message}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/FillRasterLayer/WatercolorRasterTiles.tsx b/packages/examples/src/examples/FillRasterLayer/WatercolorRasterTiles.tsx
deleted file mode 100755
index 9f2e827fb..000000000
--- a/packages/examples/src/examples/FillRasterLayer/WatercolorRasterTiles.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import { useState } from "react";
-
-import sheet from "../../styles/sheet";
-import { SF_OFFICE_COORDINATE } from "../../utils";
-import TabBarPage from "../common/TabBarPage";
-
-const OPTIONS = [0, 0.25, 0.5, 0.75, 1];
-const DEFAULT_OPTION = 4;
-
-export default function WatercolorRasterTiles() {
- const [value, setValue] = useState(OPTIONS[DEFAULT_OPTION]);
-
- const rasterSourceProps = {
- id: "stamenWatercolorSource",
- tileUrlTemplates: [
- "https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.jpg",
- ],
- tileSize: 256,
- };
-
- return (
- ({
- label: option.toString(),
- data: option,
- }))}
- onOptionPress={(_index, data) => setValue(data)}
- >
-
-
-
-
-
-
-
-
- );
-}
diff --git a/packages/examples/src/examples/LineLayer/GradientLine.js b/packages/examples/src/examples/LineLayer/GradientLine.js
index 49f6a2831..d35a58109 100644
--- a/packages/examples/src/examples/LineLayer/GradientLine.js
+++ b/packages/examples/src/examples/LineLayer/GradientLine.js
@@ -1,8 +1,7 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import { sheet } from "../../styles/sheet";
const styles = {
lineLayer: {
@@ -33,45 +32,43 @@ const styles = {
class GradientLine extends React.Component {
render() {
return (
-
-
-
-
-
-
-
-
+
+
+
+
+
+
);
}
}
diff --git a/packages/examples/src/examples/Map/ChangeLayerColor.js b/packages/examples/src/examples/Map/ChangeLayerColor.js
index 7dae7ea46..8417cb9bc 100644
--- a/packages/examples/src/examples/Map/ChangeLayerColor.js
+++ b/packages/examples/src/examples/Map/ChangeLayerColor.js
@@ -2,8 +2,7 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
const defaultCamera = {
centerCoordinate: [12.338, 45.4385],
@@ -27,7 +26,7 @@ class ChangeLayerColor extends React.Component {
render() {
const { backgroundColor } = this.state;
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
@@ -44,7 +43,7 @@ class ChangeLayerColor extends React.Component {
Paint Water
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Map/CreateOfflineRegion.tsx b/packages/examples/src/examples/Map/CreateOfflineRegion.tsx
index 3b645854c..bf006c353 100755
--- a/packages/examples/src/examples/Map/CreateOfflineRegion.tsx
+++ b/packages/examples/src/examples/Map/CreateOfflineRegion.tsx
@@ -1,23 +1,22 @@
import geoViewport from "@mapbox/geo-viewport";
import MapLibreGL, {
OfflinePack,
- type OfflineProgressStatus,
type OfflinePackError,
+ type OfflinePackStatus,
} from "@maplibre/maplibre-react-native";
import { useEffect, useState } from "react";
import {
Alert,
- Text,
- View,
- TouchableOpacity,
Dimensions,
StyleSheet,
+ Text,
+ TouchableOpacity,
+ View,
} from "react-native";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
-import { AMERICANA_STYLE } from "../mapStyles";
+import Bubble from "../../components/Bubble";
+import { AMERICANA_VECTOR_STYLE } from "../../constants/AMERICANA_VECTOR_STYLE";
+import { sheet } from "../../styles/sheet";
const CENTER_COORD: [number, number] = [18.6466, 54.352];
const MVT_SIZE = 512;
@@ -70,7 +69,7 @@ function getRegionDownloadState(downloadState: OfflinePackDownloadState) {
export default function CreateOfflineRegion() {
const [offlineRegionStatus, setOfflineRegionStatus] =
- useState(null);
+ useState(null);
const [offlinePack, setOfflinePack] = useState(null);
const [isLoading, setIsLoading] = useState(true);
@@ -80,10 +79,7 @@ export default function CreateOfflineRegion() {
};
}, []);
- function onDownloadProgress(
- pack: OfflinePack,
- status: OfflineProgressStatus,
- ) {
+ function onDownloadProgress(pack: OfflinePack, status: OfflinePackStatus) {
setOfflinePack(pack);
setOfflineRegionStatus(status);
}
@@ -109,7 +105,7 @@ export default function CreateOfflineRegion() {
const options = {
name: PACK_NAME,
// demotiles are crashing the app when used with offline manager
- styleURL: AMERICANA_STYLE,
+ styleURL: AMERICANA_VECTOR_STYLE,
bounds,
minZoom: 12,
maxZoom: 14,
@@ -182,11 +178,11 @@ export default function CreateOfflineRegion() {
}
return (
-
+ <>
)}
-
+ >
);
}
diff --git a/packages/examples/src/examples/Map/PointInMapView.js b/packages/examples/src/examples/Map/PointInMapView.js
index 412d682a8..381ff9914 100755
--- a/packages/examples/src/examples/Map/PointInMapView.js
+++ b/packages/examples/src/examples/Map/PointInMapView.js
@@ -2,8 +2,7 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
const styles = {
mapView: { flex: 1 },
@@ -38,7 +37,7 @@ class PointInMapView extends React.Component {
render() {
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
@@ -51,7 +50,7 @@ class PointInMapView extends React.Component {
{this.renderPointInView()}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Map/SetTintColor.tsx b/packages/examples/src/examples/Map/SetTintColor.tsx
index 1666c5e0d..86b2b13e2 100644
--- a/packages/examples/src/examples/Map/SetTintColor.tsx
+++ b/packages/examples/src/examples/Map/SetTintColor.tsx
@@ -1,8 +1,8 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { useState } from "react";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
const OPTIONS = ["red", "yellow", "green"].map((data) => ({
label: data,
@@ -13,7 +13,7 @@ export default function SetTintColor() {
const [tintColor, setTintColor] = useState(OPTIONS[0]!.data);
return (
- {
setTintColor(data);
@@ -21,7 +21,7 @@ export default function SetTintColor() {
>
@@ -31,6 +31,6 @@ export default function SetTintColor() {
androidRenderMode="compass"
/>
-
+
);
}
diff --git a/packages/examples/src/examples/Map/ShowAndHideLayer.js b/packages/examples/src/examples/Map/ShowAndHideLayer.js
index d7d7fb263..f3f3e5933 100644
--- a/packages/examples/src/examples/Map/ShowAndHideLayer.js
+++ b/packages/examples/src/examples/Map/ShowAndHideLayer.js
@@ -2,8 +2,7 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
const defaultCamera = {
centerCoordinate: [-77.036532, 38.897318],
@@ -28,7 +27,7 @@ class ShowAndHideLayer extends React.Component {
render() {
const visibility = this.state.show ? "visible" : "none";
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
@@ -42,7 +41,7 @@ class ShowAndHideLayer extends React.Component {
{this.state.show ? "Hide Country Labels" : "Show Country Labels"}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Map/ShowClick.js b/packages/examples/src/examples/Map/ShowClick.js
index b292c36bd..52e56d8a9 100755
--- a/packages/examples/src/examples/Map/ShowClick.js
+++ b/packages/examples/src/examples/Map/ShowClick.js
@@ -2,10 +2,8 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import sheet from "../../styles/sheet";
-import { DEFAULT_CENTER_COORDINATE } from "../../utils";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
class ShowClick extends React.Component {
constructor(props) {
@@ -60,12 +58,10 @@ class ShowClick extends React.Component {
render() {
return (
-
-
-
-
+ <>
+
{this.renderLastClicked()}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Map/ShowMap.tsx b/packages/examples/src/examples/Map/ShowMap.tsx
index d4167d1ef..b6b9d4ff6 100755
--- a/packages/examples/src/examples/Map/ShowMap.tsx
+++ b/packages/examples/src/examples/Map/ShowMap.tsx
@@ -1,48 +1,7 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
-import { useEffect, useState } from "react";
-import { Alert } from "react-native";
-import sheet from "../../styles/sheet";
-import { onSortOptions } from "../../utils";
-import TabBarPage from "../common/TabBarPage";
-
-const OPTIONS = Object.keys(MapLibreGL.StyleURL)
- .map((key) => {
- return {
- label: key,
- data: (MapLibreGL.StyleURL as any)[key], // bad any, because enums
- };
- })
- .sort(onSortOptions);
+import { sheet } from "../../styles/sheet";
export default function ShowMap() {
- const [styleURL, setStyleURL] = useState(OPTIONS[0]!.data);
-
- useEffect(() => {
- MapLibreGL.locationManager.start();
-
- return (): void => {
- MapLibreGL.locationManager.stop();
- };
- }, []);
-
- return (
- {
- setStyleURL(data);
- }}
- >
-
-
-
- {
- Alert.alert("You pressed on the user location annotation");
- }}
- />
-
-
- );
+ return ;
}
diff --git a/packages/examples/src/examples/Map/ShowMapLocalStyle.tsx b/packages/examples/src/examples/Map/ShowMapLocalStyle.tsx
index b971fe666..69d302f3e 100644
--- a/packages/examples/src/examples/Map/ShowMapLocalStyle.tsx
+++ b/packages/examples/src/examples/Map/ShowMapLocalStyle.tsx
@@ -1,34 +1,10 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
-import { useEffect } from "react";
-import { Alert } from "react-native";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import MapLibreDemoTilesBlue from "../../assets/styles/maplibre-demo-tiles-blue.json";
+import { sheet } from "../../styles/sheet";
-// eslint-disable-next-line @typescript-eslint/no-var-requires
-const style = JSON.stringify(require("../../assets/map-styleURL-style.json"));
+const STYLE = JSON.stringify(MapLibreDemoTilesBlue);
-const ShowMap = () => {
- useEffect(() => {
- MapLibreGL.locationManager.start();
-
- return (): void => {
- MapLibreGL.locationManager.stop();
- };
- }, []);
-
- const onUserMarkerPress = (): void => {
- Alert.alert("You pressed on the user location annotation");
- };
-
- return (
-
-
-
-
-
-
- );
-};
-
-export default ShowMap;
+export default function ShowMap() {
+ return ;
+}
diff --git a/packages/examples/src/examples/Map/ShowRegionDidChange.js b/packages/examples/src/examples/Map/ShowRegionDidChange.js
index c9ae9818d..c268286b5 100644
--- a/packages/examples/src/examples/Map/ShowRegionDidChange.js
+++ b/packages/examples/src/examples/Map/ShowRegionDidChange.js
@@ -2,10 +2,10 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
import { Text } from "react-native";
-import sheet from "../../styles/sheet";
-import { DEFAULT_CENTER_COORDINATE, SF_OFFICE_COORDINATE } from "../../utils";
-import Bubble from "../common/Bubble";
-import TabBarPage from "../common/TabBarPage";
+import Bubble from "../../components/Bubble";
+import TabBarView from "../../components/TabBarView";
+import { EU_BOUNDS, EU_CENTER_COORDINATES } from "../../constants/GEOMETRIES";
+import { sheet } from "../../styles/sheet";
const styles = {
bubble: { marginBottom: 100 },
@@ -24,20 +24,17 @@ class ShowRegionDidChange extends React.Component {
this.state = {
reason: "",
- cameraConfig: {
- centerCoordinate: DEFAULT_CENTER_COORDINATE,
- zoomLevel: 12,
- },
+ cameraConfig: undefined,
regionFeature: undefined,
};
this._tabOptions = [
- { label: "Fly To", data: SF_OFFICE_COORDINATE },
+ { label: "Fly To", data: EU_CENTER_COORDINATES },
{
label: "Fit Bounds",
- data: { ne: [-74.12641, 40.797968], sw: [-74.143727, 40.772177] },
+ data: EU_BOUNDS,
},
- { label: "Zoom To", data: 16 },
+ { label: "Zoom To", data: 4 },
];
this.onRegionDidChange = this.onRegionDidChange.bind(this);
@@ -52,7 +49,7 @@ class ShowRegionDidChange extends React.Component {
cameraConfig: {
triggerKey: Date.now(),
centerCoordinate: optionData,
- animationMode: MapLibreGL.Camera.Mode.Flight,
+ animationMode: "flyTo",
animationDuration: 2000,
},
});
@@ -74,15 +71,15 @@ class ShowRegionDidChange extends React.Component {
}
onRegionWillChange(regionFeature) {
- this.setState({ reason: "will change", regionFeature });
+ this.setState({ reason: "Will Change", regionFeature });
}
onRegionDidChange(regionFeature) {
- this.setState({ reason: "did change", regionFeature });
+ this.setState({ reason: "Did Change", regionFeature });
}
onRegionIsChanging(regionFeature) {
- this.setState({ reason: "is changing", regionFeature });
+ this.setState({ reason: "Is Changing", regionFeature });
}
renderRegionChange() {
@@ -126,7 +123,7 @@ class ShowRegionDidChange extends React.Component {
render() {
return (
-
{this.renderRegionChange()}
-
+
);
}
}
diff --git a/packages/examples/src/examples/Map/SourceLayerVisibility.js b/packages/examples/src/examples/Map/SourceLayerVisibility.js
deleted file mode 100755
index 08812c50c..000000000
--- a/packages/examples/src/examples/Map/SourceLayerVisibility.js
+++ /dev/null
@@ -1,53 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-import { Text } from "react-native";
-
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
-
-const defaultCamera = {
- centerCoordinate: [-74.005974, 40.712776],
- zoomLevel: 13,
-};
-
-const styles = {
- mapView: { flex: 1 },
-};
-
-class SourceLayerVisibility extends React.Component {
- state = {
- show: true,
- };
-
- onPress = () => {
- this.setState(
- (prevState) => ({
- show: !prevState.show,
- }),
- () => {
- this._map.setSourceVisibility(this.state.show, "composite", "road");
- },
- );
- };
-
- render() {
- return (
-
- (this._map = c)}
- onPress={this.onPress}
- style={styles.mapView}
- >
-
-
-
- {`${
- this.state.show ? "Hide" : "Show"
- } 'Roads' source layer`}
-
-
- );
- }
-}
-
-export default SourceLayerVisibility;
diff --git a/packages/examples/src/examples/Map/SourceLayerVisibility.tsx b/packages/examples/src/examples/Map/SourceLayerVisibility.tsx
new file mode 100755
index 000000000..30b78d471
--- /dev/null
+++ b/packages/examples/src/examples/Map/SourceLayerVisibility.tsx
@@ -0,0 +1,30 @@
+import MapLibreGL, { type MapViewRef } from "@maplibre/maplibre-react-native";
+import { useRef, useState } from "react";
+import { Text } from "react-native";
+
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
+
+export default function SourceLayerVisibility() {
+ const mapViewRef = useRef(null);
+ const [visible, setVisible] = useState(true);
+
+ return (
+ <>
+
+ {
+ mapViewRef.current?.setSourceVisibility(
+ !visible,
+ "maplibre",
+ "countries",
+ );
+
+ setVisible((prevState) => !prevState);
+ }}
+ >
+ {`${visible ? "Hide" : "Show"} Countries`}
+
+ >
+ );
+}
diff --git a/packages/examples/src/examples/Map/StyleJson.js b/packages/examples/src/examples/Map/StyleJson.js
index 516273342..5dc256dbb 100755
--- a/packages/examples/src/examples/Map/StyleJson.js
+++ b/packages/examples/src/examples/Map/StyleJson.js
@@ -1,11 +1,10 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
-import { Text, StyleSheet } from "react-native";
+import { StyleSheet, Text } from "react-native";
-import StyleJsonExample from "../../assets/style-json-example.json";
-import StyleJsonExample2 from "../../assets/style-json-example2.json";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import MapLibreDemoTilesBlue from "../../assets/styles/maplibre-demo-tiles-blue.json";
+import MapLibreDemoTilesWhite from "../../assets/styles/maplibre-demo-tiles-white.json";
+import Bubble from "../../components/Bubble";
const styles = StyleSheet.create({
map: {
@@ -32,7 +31,7 @@ class StyleJson extends React.Component {
render() {
return (
-
+ <>
{this.state.showAltStyle ? "Style 2" : "Style 1"}
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/Map/TwoByTwo.js b/packages/examples/src/examples/Map/TwoByTwo.js
deleted file mode 100755
index 367b53834..000000000
--- a/packages/examples/src/examples/Map/TwoByTwo.js
+++ /dev/null
@@ -1,55 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-
-import smileyFaceGeoJSON from "../../assets/smiley_face.json";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
-
-const layerStyles = {
- smileyFaceLight: {
- fillAntialias: true,
- fillColor: "white",
- fillOutlineColor: "rgba(255, 255, 255, 0.84)",
- },
- smileyFaceDark: {
- fillAntialias: true,
- fillColor: "black",
- fillOutlineColor: "rgba(0, 0, 0, 0.84)",
- },
-};
-
-class TwoByTwo extends React.Component {
- renderMap(styleURL, layerStyle) {
- return (
- (this.map = ref)}
- style={sheet.matchParent}
- styleURL={styleURL}
- >
-
-
-
-
- );
- }
-
- render() {
- return (
-
- {this.renderMap(
- MapLibreGL.StyleURL.Default,
- layerStyles.smileyFaceDark,
- )}
- {this.renderMap(
- MapLibreGL.StyleURL.Default,
- layerStyles.smileyFaceLight,
- )}
-
- );
- }
-}
-
-export default TwoByTwo;
diff --git a/packages/examples/src/examples/Map/TwoMapViews.tsx b/packages/examples/src/examples/Map/TwoMapViews.tsx
new file mode 100755
index 000000000..a319e5894
--- /dev/null
+++ b/packages/examples/src/examples/Map/TwoMapViews.tsx
@@ -0,0 +1,39 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import type { FeatureCollection } from "geojson";
+
+import smileyFeatureCollection from "../../assets/geojson/smiley.json";
+import { sheet } from "../../styles/sheet";
+
+const layerStyles = {
+ smileyFaceLight: {
+ fillAntialias: true,
+ fillColor: "white",
+ fillOutlineColor: "rgba(255, 255, 255, 0.84)",
+ },
+ smileyFaceDark: {
+ fillAntialias: true,
+ fillColor: "black",
+ fillOutlineColor: "rgba(0, 0, 0, 0.84)",
+ },
+};
+
+export default function TwoMapViews() {
+ return (
+ <>
+ {[layerStyles.smileyFaceDark, layerStyles.smileyFaceLight].map(
+ (style) => {
+ return (
+
+
+
+
+
+ );
+ },
+ )}
+ >
+ );
+}
diff --git a/packages/examples/src/examples/SymbolCircleLayer/CustomIcon.js b/packages/examples/src/examples/SymbolCircleLayer/CustomIcon.js
index 4fa9a50a8..8bcf40ebf 100755
--- a/packages/examples/src/examples/SymbolCircleLayer/CustomIcon.js
+++ b/packages/examples/src/examples/SymbolCircleLayer/CustomIcon.js
@@ -1,16 +1,15 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
-import { featureCollection, feature } from "@turf/helpers";
+import { feature, featureCollection } from "@turf/helpers";
import React from "react";
import { Text } from "react-native";
-import exampleIcon from "../../assets/example.png";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import maplibreIcon from "../../assets/images/maplibre.png";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
const styles = {
icon: {
- iconImage: exampleIcon,
+ iconImage: maplibreIcon,
iconAllowOverlap: true,
},
};
@@ -50,17 +49,12 @@ class CustomIcon extends React.Component {
render() {
return (
-
+ <>
(this._map = c)}
onPress={this.onPress}
style={sheet.matchParent}
>
-
-
@@ -78,7 +71,7 @@ class CustomIcon extends React.Component {
Tap to add an icon
-
+ >
);
}
}
diff --git a/packages/examples/src/examples/SymbolCircleLayer/DataDrivenCircleColors.js b/packages/examples/src/examples/SymbolCircleLayer/DataDrivenCircleColors.js
index 7be06c139..b8ed769d3 100755
--- a/packages/examples/src/examples/SymbolCircleLayer/DataDrivenCircleColors.js
+++ b/packages/examples/src/examples/SymbolCircleLayer/DataDrivenCircleColors.js
@@ -1,8 +1,7 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import React from "react";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
+import { sheet } from "../../styles/sheet";
const styles = {
circles: {
@@ -34,29 +33,24 @@ const styles = {
function DataDrivenCircleColors() {
return (
-
-
-
+
+
-
-
-
-
-
+
+
+
+
);
}
diff --git a/packages/examples/src/examples/SymbolCircleLayer/EarthQuakes.tsx b/packages/examples/src/examples/SymbolCircleLayer/Earthquakes.tsx
similarity index 85%
rename from packages/examples/src/examples/SymbolCircleLayer/EarthQuakes.tsx
rename to packages/examples/src/examples/SymbolCircleLayer/Earthquakes.tsx
index 93c2e74fa..aa1da9342 100755
--- a/packages/examples/src/examples/SymbolCircleLayer/EarthQuakes.tsx
+++ b/packages/examples/src/examples/SymbolCircleLayer/Earthquakes.tsx
@@ -1,4 +1,8 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
+import MapLibreGL, {
+ type CircleLayerStyle,
+ type ShapeSourceRef,
+ type SymbolLayerStyle,
+} from "@maplibre/maplibre-react-native";
import moment from "moment";
import { useRef, useState } from "react";
import {
@@ -11,18 +15,16 @@ import {
} from "react-native";
import { SafeAreaProvider, SafeAreaView } from "react-native-safe-area-context";
-import earthQuakesJSON from "../../assets/earthquakes.json";
-import colors from "../../styles/colors";
-import sheet from "../../styles/sheet";
-import { SF_OFFICE_COORDINATE } from "../../utils";
-import Page from "../common/Page";
+import earthquakesData from "../../assets/geojson/earthquakes.json";
+import { colors } from "../../styles/colors";
+import { sheet } from "../../styles/sheet";
const layerStyles: {
- singlePoint: MapLibreGL.CircleLayerStyle;
- clusteredPoints: MapLibreGL.CircleLayerStyle;
- clusterCount: MapLibreGL.SymbolLayerStyle;
+ singleCircle: CircleLayerStyle;
+ clusteredCircle: CircleLayerStyle;
+ clusterCount: SymbolLayerStyle;
} = {
- singlePoint: {
+ singleCircle: {
circleColor: "green",
circleOpacity: 0.84,
circleStrokeWidth: 2,
@@ -31,7 +33,7 @@ const layerStyles: {
circlePitchAlignment: "map",
},
- clusteredPoints: {
+ clusteredCircle: {
circlePitchAlignment: "map",
circleColor: [
"step",
@@ -115,12 +117,12 @@ const mag3 = ["all", [">=", ["get", "mag"], 3], ["<", ["get", "mag"], 4]];
const mag4 = ["all", [">=", ["get", "mag"], 4], ["<", ["get", "mag"], 5]];
const mag5 = [">=", ["get", "mag"], 5];
-export default function EarthQuakes() {
- const shapeSource = useRef(null);
+export default function Earthquakes() {
+ const shapeSource = useRef(null);
const [cluster, setCluster] = useState();
return (
-
+ <>
-
+ <>
-
-
{
const cluster = event.features[0];
@@ -230,25 +226,25 @@ export default function EarthQuakes() {
}}
>
-
-
+ >
+ >
);
}
diff --git a/packages/examples/src/examples/SymbolCircleLayer/ShapeSourceIcon.js b/packages/examples/src/examples/SymbolCircleLayer/ShapeSourceIcon.js
deleted file mode 100755
index 00c179e2a..000000000
--- a/packages/examples/src/examples/SymbolCircleLayer/ShapeSourceIcon.js
+++ /dev/null
@@ -1,113 +0,0 @@
-import MapLibreGL from "@maplibre/maplibre-react-native";
-import React from "react";
-
-import exampleIcon from "../../assets/example.png";
-import pinIcon from "../../assets/pin.png";
-import sheet from "../../styles/sheet";
-import Page from "../common/Page";
-
-const styles = {
- icon: {
- iconImage: ["get", "icon"],
-
- iconSize: [
- "match",
- ["get", "icon"],
- "example",
- 1.2,
- "airport-15",
- 1.2,
- /* default */ 1,
- ],
- },
-};
-
-const featureCollection = {
- type: "FeatureCollection",
- features: [
- {
- type: "Feature",
- id: "9d10456e-bdda-4aa9-9269-04c1667d4552",
- properties: {
- icon: "example",
- },
- geometry: {
- type: "Point",
- coordinates: [-117.20611157485, 52.180961084261],
- },
- },
- {
- type: "Feature",
- id: "9d10456e-bdda-4aa9-9269-04c1667d4552",
- properties: {
- icon: "airport-15",
- },
- geometry: {
- type: "Point",
- coordinates: [-117.205908, 52.180843],
- },
- },
- {
- type: "Feature",
- id: "9d10456e-bdda-4aa9-9269-04c1667d4552",
- properties: {
- icon: "pin",
- },
- geometry: {
- type: "Point",
- coordinates: [-117.206562, 52.180797],
- },
- },
- {
- type: "Feature",
- id: "9d10456e-bdda-4aa9-9269-04c1667d4553",
- properties: {
- icon: "pin3",
- },
- geometry: {
- type: "Point",
- coordinates: [-117.206862, 52.180897],
- },
- },
- ],
-};
-
-class ShapeSourceIcon extends React.Component {
- state = {
- images: {
- example: exampleIcon,
- },
- };
-
- render() {
- const { images } = this.state;
-
- return (
-
-
-
-
- this.setState((prevState) => ({
- images: { ...prevState.images, [imageKey]: pinIcon },
- }))
- }
- />
-
-
-
-
-
- );
- }
-}
-
-export default ShapeSourceIcon;
diff --git a/packages/examples/src/examples/SymbolCircleLayer/ShapeSourceIcon.tsx b/packages/examples/src/examples/SymbolCircleLayer/ShapeSourceIcon.tsx
new file mode 100755
index 000000000..f942d3481
--- /dev/null
+++ b/packages/examples/src/examples/SymbolCircleLayer/ShapeSourceIcon.tsx
@@ -0,0 +1,34 @@
+import MapLibreGL from "@maplibre/maplibre-react-native";
+import { useState } from "react";
+
+import maplibreIcon from "../../assets/images/maplibre.png";
+import { FEATURE_COLLECTION } from "../../constants/GEOMETRIES";
+import { sheet } from "../../styles/sheet";
+
+export default function ShapeSourceIcon() {
+ const [images, setImages] = useState({
+ [FEATURE_COLLECTION.features[0]!.properties.name]: maplibreIcon,
+ });
+
+ return (
+
+
+ setImages((prevState) => ({
+ ...prevState,
+ [imageKey]: maplibreIcon,
+ }))
+ }
+ />
+
+
+
+
+ );
+}
diff --git a/packages/examples/src/examples/UserLocation/FollowUserLocationAlignment.tsx b/packages/examples/src/examples/UserLocation/FollowUserLocationAlignment.tsx
index 5e533f8f9..6faab15eb 100755
--- a/packages/examples/src/examples/UserLocation/FollowUserLocationAlignment.tsx
+++ b/packages/examples/src/examples/UserLocation/FollowUserLocationAlignment.tsx
@@ -1,8 +1,8 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { useState } from "react";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
enum Alignment {
Top = "TOP",
@@ -19,7 +19,7 @@ export default function FollowUserLocationAlignment() {
const [alignment, setAlignment] = useState(Alignment.Center);
return (
- ({
label: alignmentValue,
@@ -33,9 +33,9 @@ export default function FollowUserLocationAlignment() {
style={sheet.matchParent}
contentInset={INSETS[alignment]}
>
-
+
-
+
);
}
diff --git a/packages/examples/src/examples/UserLocation/FollowUserLocationRenderMode.tsx b/packages/examples/src/examples/UserLocation/FollowUserLocationRenderMode.tsx
index 2ab3b8caa..8d95c7d76 100755
--- a/packages/examples/src/examples/UserLocation/FollowUserLocationRenderMode.tsx
+++ b/packages/examples/src/examples/UserLocation/FollowUserLocationRenderMode.tsx
@@ -6,8 +6,9 @@ import { type ReactNode, useState } from "react";
import { Button, Platform, Text, View } from "react-native";
import { ButtonGroup } from "../../components/ButtonGroup";
-import { OSM_RASTER_STYLE } from "../../utils/OSM_RASTER_STYLE";
-import Page from "../common/Page";
+import MapSafeAreaView from "../../components/MapSafeAreaView";
+import { OSM_RASTER_STYLE } from "../../constants/OSM_RASTER_STYLE";
+import { sheet } from "../../styles/sheet";
const SettingsGroup = ({
children,
@@ -22,8 +23,6 @@ const SettingsGroup = ({
);
-const styles = { matchParent: { flex: 1 } };
-
function humanize(name: string): string {
const words = name.match(/[A-Za-z][a-z]*/g) || [];
@@ -56,7 +55,7 @@ export default function FollowUserLocationRenderMode() {
>("normal");
return (
-
+
+
);
}
diff --git a/packages/examples/src/examples/UserLocation/SetAndroidPreferredFramesPerSecond.tsx b/packages/examples/src/examples/UserLocation/SetAndroidPreferredFramesPerSecond.tsx
index 134782248..b316c7f9c 100644
--- a/packages/examples/src/examples/UserLocation/SetAndroidPreferredFramesPerSecond.tsx
+++ b/packages/examples/src/examples/UserLocation/SetAndroidPreferredFramesPerSecond.tsx
@@ -1,8 +1,8 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { useEffect, useState } from "react";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
const OPTIONS = [5, 10, 15].map((data) => ({ label: data + " FPS", data }));
@@ -19,7 +19,7 @@ export default function SetAndroidPreferredFramesPerSecond() {
}, []);
return (
- {
setAndroidPreferredFramesPerSecond(data);
@@ -34,6 +34,6 @@ export default function SetAndroidPreferredFramesPerSecond() {
androidPreferredFramesPerSecond={androidPreferredFramesPerSecond}
/>
-
+
);
}
diff --git a/packages/examples/src/examples/UserLocation/UserLocationDisplacement.tsx b/packages/examples/src/examples/UserLocation/UserLocationDisplacement.tsx
index 17584ecc9..3f4d9f504 100644
--- a/packages/examples/src/examples/UserLocation/UserLocationDisplacement.tsx
+++ b/packages/examples/src/examples/UserLocation/UserLocationDisplacement.tsx
@@ -1,8 +1,8 @@
import MapLibreGL from "@maplibre/maplibre-react-native";
import { useEffect, useState } from "react";
-import sheet from "../../styles/sheet";
-import TabBarPage from "../common/TabBarPage";
+import TabBarView from "../../components/TabBarView";
+import { sheet } from "../../styles/sheet";
const OPTIONS = [0, 5, 10].map((data) => ({ label: data + " Meter", data }));
@@ -18,7 +18,7 @@ export default function UserLocationDisplacement() {
}, []);
return (
- {
setMinDisplacement(data);
@@ -33,6 +33,6 @@ export default function UserLocationDisplacement() {
-
+
);
}
diff --git a/packages/examples/src/examples/UserLocation/UserLocationUpdate.tsx b/packages/examples/src/examples/UserLocation/UserLocationUpdate.tsx
index 0ec090c50..f9fe33b24 100755
--- a/packages/examples/src/examples/UserLocation/UserLocationUpdate.tsx
+++ b/packages/examples/src/examples/UserLocation/UserLocationUpdate.tsx
@@ -2,15 +2,14 @@ import MapLibreGL from "@maplibre/maplibre-react-native";
import { useState } from "react";
import { Text } from "react-native";
-import sheet from "../../styles/sheet";
-import Bubble from "../common/Bubble";
-import Page from "../common/Page";
+import Bubble from "../../components/Bubble";
+import { sheet } from "../../styles/sheet";
export default function UserLocationUpdate() {
const [location, setLocation] = useState();
return (
-
+ <>
setLocation(newLocation)}
@@ -31,6 +30,6 @@ export default function UserLocationUpdate() {
>
)}
-
+ >
);
}
diff --git a/packages/examples/src/examples/common/Page.tsx b/packages/examples/src/examples/common/Page.tsx
deleted file mode 100755
index 1f4060a1d..000000000
--- a/packages/examples/src/examples/common/Page.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import { type ReactNode } from "react";
-import { SafeAreaView } from "react-native-safe-area-context";
-
-import sheet from "../../styles/sheet";
-
-interface PageProps {
- children: ReactNode;
- safeAreaView?: boolean;
-}
-
-const Page = ({ children, safeAreaView }: PageProps) => {
- if (safeAreaView) {
- return (
-
- {children}
-
- );
- } else {
- return children;
- }
-};
-
-export default Page;
diff --git a/packages/examples/src/examples/index.ts b/packages/examples/src/examples/index.ts
index 5f6d68789..09d322e01 100644
--- a/packages/examples/src/examples/index.ts
+++ b/packages/examples/src/examples/index.ts
@@ -17,19 +17,17 @@ export { default as GetZoom } from "./Camera/GetZoom";
export { default as RestrictMapBounds } from "./Camera/RestrictMapBounds";
export { default as SetHeading } from "./Camera/SetHeading";
export { default as SetPitch } from "./Camera/SetPitch";
-export { default as SetUserTrackingMode } from "./Camera/SetUserTrackingMode";
export { default as TakeSnapshot } from "./Camera/TakeSnapshot";
export { default as TakeSnapshotWithMap } from "./Camera/TakeSnapshotWithMap";
export { default as YoYo } from "./Camera/YoYo";
// FILLRASTERLAYER
-export { default as ChoroplethLayerByZoomLevel } from "./FillRasterLayer/ChoroplethLayerByZoomLevel";
export { default as CustomVectorSource } from "./FillRasterLayer/CustomVectorSource";
export { default as GeoJSONSource } from "./FillRasterLayer/GeoJSONSource";
export { default as ImageOverlay } from "./FillRasterLayer/ImageOverlay";
export { default as IndoorBuilding } from "./FillRasterLayer/IndoorBuilding";
export { default as QueryAtPoint } from "./FillRasterLayer/QueryAtPoint";
export { default as QueryWithRect } from "./FillRasterLayer/QueryWithRect";
-export { default as WatercolorRasterTiles } from "./FillRasterLayer/WatercolorRasterTiles";
+export { default as OpenStreetMapRasterTiles } from "./FillRasterLayer/OpenStreetMapRasterTiles";
// LINE LAYER
export { default as GradientLine } from "./LineLayer/GradientLine";
// MAP
@@ -43,12 +41,12 @@ export { default as ShowMapLocalStyle } from "./Map/ShowMapLocalStyle";
export { default as ShowRegionDidChange } from "./Map/ShowRegionDidChange";
export { default as SourceLayerVisibility } from "./Map/SourceLayerVisibility";
export { default as StyleJson } from "./Map/StyleJson";
-export { default as TwoByTwo } from "./Map/TwoByTwo";
+export { default as TwoMapViews } from "./Map/TwoMapViews";
export { default as SetTintColor } from "./Map/SetTintColor";
// SYMBOLCIRCLELAYER
export { default as CustomIcon } from "./SymbolCircleLayer/CustomIcon";
export { default as DataDrivenCircleColors } from "./SymbolCircleLayer/DataDrivenCircleColors";
-export { default as EarthQuakes } from "./SymbolCircleLayer/EarthQuakes";
+export { default as Earthquakes } from "./SymbolCircleLayer/Earthquakes";
export { default as ShapeSourceIcon } from "./SymbolCircleLayer/ShapeSourceIcon";
// USERLOCATION
export { default as FollowUserLocationRenderMode } from "./UserLocation/FollowUserLocationRenderMode";
@@ -57,5 +55,5 @@ export { default as SetAndroidPreferredFramesPerSecond } from "./UserLocation/Se
export { default as UserLocationDisplacement } from "./UserLocation/UserLocationDisplacement";
export { default as UserLocationUpdate } from "./UserLocation/UserLocationUpdate";
// MISC
-export { default as BugReportPage } from "./BugReportPage";
+export { default as BugReport } from "./BugReport";
export { default as CacheManagement } from "./CacheManagement";
diff --git a/packages/examples/src/examples/mapStyles.ts b/packages/examples/src/examples/mapStyles.ts
deleted file mode 100644
index ca49c0728..000000000
--- a/packages/examples/src/examples/mapStyles.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const AMERICANA_STYLE = "https://americanamap.org/style.json";
diff --git a/packages/examples/src/styles/colors.ts b/packages/examples/src/styles/colors.ts
index 6ca538c14..2977899a3 100755
--- a/packages/examples/src/styles/colors.ts
+++ b/packages/examples/src/styles/colors.ts
@@ -1,51 +1,4 @@
-const colors = {
+export const colors = {
blue: "#285daa",
grey: "#dedede",
-
- primary: {
- blueDark: "#314ccd",
- blue: "#4264fb",
- blueLight: "#aab7ef",
- blueFaint: "#edf0fd",
- grayDark: "#273d56",
- gray: "#607d9c",
- grayLight: "#c6d2e1",
- grayFaint: "#f4f7fb",
- pinkDark: "#b43b71",
- pink: "#ee4e8b",
- pinkLight: "#f8c8da",
- pinkFaint: "#fbe5ee",
- },
-
- secondary: {
- purpleDark: "#5a3fc0",
- purple: "#7753eb",
- purpleLight: "#c5b9eb",
- purpleFaint: "#f2effa",
-
- orangeDark: "#ba7334",
- orange: "#f79640",
- orangeLight: "#fbcea6",
- orangeFaint: "#feefe2",
-
- greenDark: "#269561",
- green: "#33c377",
- greenLight: "#afdec5",
- greenFaint: "#e8f5ee",
-
- yellowDark: "#a4a62d",
- yellow: "#d9d838",
- yellowLight: "#FFF5A0",
- yellowFaint: "#FCFCDF",
-
- redDark: "#ba3b3f",
- red: "#f74e4e",
- redLight: "#f6b7b7",
- redFaint: "#fbe5e5",
-
- white: "#ffffff",
- black: "#000000",
- },
};
-
-export default colors;
diff --git a/packages/examples/src/styles/sheet.ts b/packages/examples/src/styles/sheet.ts
index 76c2f2e1b..66cddbaf6 100755
--- a/packages/examples/src/styles/sheet.ts
+++ b/packages/examples/src/styles/sheet.ts
@@ -1,6 +1,6 @@
import { StyleSheet } from "react-native";
-export default StyleSheet.create({
+export const sheet = StyleSheet.create({
matchParent: {
flex: 1,
},
diff --git a/packages/examples/src/utils/index.ts b/packages/examples/src/utils/index.ts
deleted file mode 100755
index 1a71d9474..000000000
--- a/packages/examples/src/utils/index.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { Platform } from "react-native";
-
-export const IS_ANDROID = Platform.OS === "android";
-export const DEFAULT_CENTER_COORDINATE = [-77.036086, 38.910233];
-export const SF_OFFICE_COORDINATE = [-122.400021, 37.789085];
-
-export function onSortOptions(a: { label: string }, b: { label: string }) {
- if (a.label < b.label) {
- return -1;
- }
-
- if (a.label > b.label) {
- return 1;
- }
-
- return 0;
-}
diff --git a/packages/expo-app/app.config.ts b/packages/expo-app/app.config.ts
index 3c6375798..85f45866e 100644
--- a/packages/expo-app/app.config.ts
+++ b/packages/expo-app/app.config.ts
@@ -11,8 +11,8 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
icon: "./assets/icon.png",
splash: {
image: "./assets/splash.png",
- resizeMode: "contain",
- backgroundColor: "#ffffff",
+ resizeMode: "cover",
+ backgroundColor: "#285daa",
},
ios: {
supportsTablet: true,
@@ -29,5 +29,9 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
},
package: "org.maplibre.expo.example",
},
+ androidStatusBar: {
+ backgroundColor: "#285daa",
+ translucent: false,
+ },
plugins: ["../../plugin/src/withMapLibre.ts"],
});
diff --git a/packages/react-native-app/.gitignore b/packages/react-native-app/.gitignore
index 52694ee7f..4146f124c 100644
--- a/packages/react-native-app/.gitignore
+++ b/packages/react-native-app/.gitignore
@@ -58,6 +58,7 @@ yarn-error.log
# CocoaPods
ios/Pods/
+Podfile.lock
# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*
diff --git a/packages/react-native-app/ios/Podfile.lock b/packages/react-native-app/ios/Podfile.lock
deleted file mode 100644
index a815919ad..000000000
--- a/packages/react-native-app/ios/Podfile.lock
+++ /dev/null
@@ -1,1876 +0,0 @@
-PODS:
- - boost (1.84.0)
- - DoubleConversion (1.1.6)
- - FBLazyVector (0.76.3)
- - fmt (9.1.0)
- - glog (0.3.5)
- - hermes-engine (0.76.3):
- - hermes-engine/Pre-built (= 0.76.3)
- - hermes-engine/Pre-built (0.76.3)
- - maplibre-react-native (10.0.0-beta.2):
- - maplibre-react-native/DynamicLibrary (= 10.0.0-beta.2)
- - React
- - React-Core
- - maplibre-react-native/DynamicLibrary (10.0.0-beta.2):
- - React
- - React-Core
- - RCT-Folly (2024.01.01.00):
- - boost
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - RCT-Folly/Default (= 2024.01.01.00)
- - RCT-Folly/Default (2024.01.01.00):
- - boost
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - RCT-Folly/Fabric (2024.01.01.00):
- - boost
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - RCTDeprecation (0.76.3)
- - RCTRequired (0.76.3)
- - RCTTypeSafety (0.76.3):
- - FBLazyVector (= 0.76.3)
- - RCTRequired (= 0.76.3)
- - React-Core (= 0.76.3)
- - React (0.76.3):
- - React-Core (= 0.76.3)
- - React-Core/DevSupport (= 0.76.3)
- - React-Core/RCTWebSocket (= 0.76.3)
- - React-RCTActionSheet (= 0.76.3)
- - React-RCTAnimation (= 0.76.3)
- - React-RCTBlob (= 0.76.3)
- - React-RCTImage (= 0.76.3)
- - React-RCTLinking (= 0.76.3)
- - React-RCTNetwork (= 0.76.3)
- - React-RCTSettings (= 0.76.3)
- - React-RCTText (= 0.76.3)
- - React-RCTVibration (= 0.76.3)
- - React-callinvoker (0.76.3)
- - React-Core (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default (= 0.76.3)
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/CoreModulesHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/Default (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/DevSupport (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default (= 0.76.3)
- - React-Core/RCTWebSocket (= 0.76.3)
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTActionSheetHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTAnimationHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTBlobHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTImageHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTLinkingHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTNetworkHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTSettingsHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTTextHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTVibrationHeaders (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-Core/RCTWebSocket (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTDeprecation
- - React-Core/Default (= 0.76.3)
- - React-cxxreact
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-perflogger
- - React-runtimescheduler
- - React-utils
- - SocketRocket (= 0.7.1)
- - Yoga
- - React-CoreModules (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - RCT-Folly (= 2024.01.01.00)
- - RCTTypeSafety (= 0.76.3)
- - React-Core/CoreModulesHeaders (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-jsinspector
- - React-NativeModulesApple
- - React-RCTBlob
- - React-RCTImage (= 0.76.3)
- - ReactCodegen
- - ReactCommon
- - SocketRocket (= 0.7.1)
- - React-cxxreact (0.76.3):
- - boost
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-callinvoker (= 0.76.3)
- - React-debug (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-jsinspector
- - React-logger (= 0.76.3)
- - React-perflogger (= 0.76.3)
- - React-runtimeexecutor (= 0.76.3)
- - React-timing (= 0.76.3)
- - React-debug (0.76.3)
- - React-defaultsnativemodule (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-domnativemodule
- - React-Fabric
- - React-featureflags
- - React-featureflagsnativemodule
- - React-graphics
- - React-idlecallbacksnativemodule
- - React-ImageManager
- - React-microtasksnativemodule
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - React-domnativemodule (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-FabricComponents
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - React-Fabric (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric/animations (= 0.76.3)
- - React-Fabric/attributedstring (= 0.76.3)
- - React-Fabric/componentregistry (= 0.76.3)
- - React-Fabric/componentregistrynative (= 0.76.3)
- - React-Fabric/components (= 0.76.3)
- - React-Fabric/core (= 0.76.3)
- - React-Fabric/dom (= 0.76.3)
- - React-Fabric/imagemanager (= 0.76.3)
- - React-Fabric/leakchecker (= 0.76.3)
- - React-Fabric/mounting (= 0.76.3)
- - React-Fabric/observers (= 0.76.3)
- - React-Fabric/scheduler (= 0.76.3)
- - React-Fabric/telemetry (= 0.76.3)
- - React-Fabric/templateprocessor (= 0.76.3)
- - React-Fabric/uimanager (= 0.76.3)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/animations (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/attributedstring (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/componentregistry (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/componentregistrynative (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/components (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric/components/legacyviewmanagerinterop (= 0.76.3)
- - React-Fabric/components/root (= 0.76.3)
- - React-Fabric/components/view (= 0.76.3)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/components/legacyviewmanagerinterop (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/components/root (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/components/view (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - Yoga
- - React-Fabric/core (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/dom (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/imagemanager (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/leakchecker (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/mounting (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/observers (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric/observers/events (= 0.76.3)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/observers/events (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/scheduler (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric/observers/events
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-performancetimeline
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/telemetry (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/templateprocessor (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/uimanager (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric/uimanager/consistency (= 0.76.3)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-Fabric/uimanager/consistency (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCommon/turbomodule/core
- - React-FabricComponents (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-FabricComponents/components (= 0.76.3)
- - React-FabricComponents/textlayoutmanager (= 0.76.3)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-FabricComponents/components/inputaccessory (= 0.76.3)
- - React-FabricComponents/components/iostextinput (= 0.76.3)
- - React-FabricComponents/components/modal (= 0.76.3)
- - React-FabricComponents/components/rncore (= 0.76.3)
- - React-FabricComponents/components/safeareaview (= 0.76.3)
- - React-FabricComponents/components/scrollview (= 0.76.3)
- - React-FabricComponents/components/text (= 0.76.3)
- - React-FabricComponents/components/textinput (= 0.76.3)
- - React-FabricComponents/components/unimplementedview (= 0.76.3)
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/inputaccessory (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/iostextinput (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/modal (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/rncore (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/safeareaview (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/scrollview (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/text (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/textinput (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/unimplementedview (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/textlayoutmanager (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-cxxreact
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-logger
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/core
- - Yoga
- - React-FabricImage (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - RCTRequired (= 0.76.3)
- - RCTTypeSafety (= 0.76.3)
- - React-Fabric
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-jsiexecutor (= 0.76.3)
- - React-logger
- - React-rendererdebug
- - React-utils
- - ReactCommon
- - Yoga
- - React-featureflags (0.76.3)
- - React-featureflagsnativemodule (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - React-graphics (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - React-jsi
- - React-jsiexecutor
- - React-utils
- - React-hermes (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-cxxreact (= 0.76.3)
- - React-jsi
- - React-jsiexecutor (= 0.76.3)
- - React-jsinspector
- - React-perflogger (= 0.76.3)
- - React-runtimeexecutor
- - React-idlecallbacksnativemodule (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - React-ImageManager (0.76.3):
- - glog
- - RCT-Folly/Fabric
- - React-Core/Default
- - React-debug
- - React-Fabric
- - React-graphics
- - React-rendererdebug
- - React-utils
- - React-jserrorhandler (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - React-cxxreact
- - React-debug
- - React-jsi
- - React-jsi (0.76.3):
- - boost
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-jsiexecutor (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-cxxreact (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-jsinspector
- - React-perflogger (= 0.76.3)
- - React-jsinspector (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-featureflags
- - React-jsi
- - React-perflogger (= 0.76.3)
- - React-runtimeexecutor (= 0.76.3)
- - React-jsitracing (0.76.3):
- - React-jsi
- - React-logger (0.76.3):
- - glog
- - React-Mapbuffer (0.76.3):
- - glog
- - React-debug
- - React-microtasksnativemodule (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - react-native-safe-area-context (4.14.0):
- - React-Core
- - React-nativeconfig (0.76.3)
- - React-NativeModulesApple (0.76.3):
- - glog
- - hermes-engine
- - React-callinvoker
- - React-Core
- - React-cxxreact
- - React-jsi
- - React-jsinspector
- - React-runtimeexecutor
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - React-perflogger (0.76.3):
- - DoubleConversion
- - RCT-Folly (= 2024.01.01.00)
- - React-performancetimeline (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - React-cxxreact
- - React-timing
- - React-RCTActionSheet (0.76.3):
- - React-Core/RCTActionSheetHeaders (= 0.76.3)
- - React-RCTAnimation (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - RCTTypeSafety
- - React-Core/RCTAnimationHeaders
- - React-jsi
- - React-NativeModulesApple
- - ReactCodegen
- - ReactCommon
- - React-RCTAppDelegate (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-CoreModules
- - React-debug
- - React-defaultsnativemodule
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-hermes
- - React-nativeconfig
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RCTImage
- - React-RCTNetwork
- - React-rendererdebug
- - React-RuntimeApple
- - React-RuntimeCore
- - React-RuntimeHermes
- - React-runtimescheduler
- - React-utils
- - ReactCodegen
- - ReactCommon
- - React-RCTBlob (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-Core/RCTBlobHeaders
- - React-Core/RCTWebSocket
- - React-jsi
- - React-jsinspector
- - React-NativeModulesApple
- - React-RCTNetwork
- - ReactCodegen
- - ReactCommon
- - React-RCTFabric (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - React-Core
- - React-debug
- - React-Fabric
- - React-FabricComponents
- - React-FabricImage
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-jsi
- - React-jsinspector
- - React-nativeconfig
- - React-performancetimeline
- - React-RCTImage
- - React-RCTText
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimescheduler
- - React-utils
- - Yoga
- - React-RCTImage (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - RCTTypeSafety
- - React-Core/RCTImageHeaders
- - React-jsi
- - React-NativeModulesApple
- - React-RCTNetwork
- - ReactCodegen
- - ReactCommon
- - React-RCTLinking (0.76.3):
- - React-Core/RCTLinkingHeaders (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-NativeModulesApple
- - ReactCodegen
- - ReactCommon
- - ReactCommon/turbomodule/core (= 0.76.3)
- - React-RCTNetwork (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - RCTTypeSafety
- - React-Core/RCTNetworkHeaders
- - React-jsi
- - React-NativeModulesApple
- - ReactCodegen
- - ReactCommon
- - React-RCTSettings (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - RCTTypeSafety
- - React-Core/RCTSettingsHeaders
- - React-jsi
- - React-NativeModulesApple
- - ReactCodegen
- - ReactCommon
- - React-RCTText (0.76.3):
- - React-Core/RCTTextHeaders (= 0.76.3)
- - Yoga
- - React-RCTVibration (0.76.3):
- - RCT-Folly (= 2024.01.01.00)
- - React-Core/RCTVibrationHeaders
- - React-jsi
- - React-NativeModulesApple
- - ReactCodegen
- - ReactCommon
- - React-rendererconsistency (0.76.3)
- - React-rendererdebug (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - RCT-Folly (= 2024.01.01.00)
- - React-debug
- - React-rncore (0.76.3)
- - React-RuntimeApple (0.76.3):
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - React-callinvoker
- - React-Core/Default
- - React-CoreModules
- - React-cxxreact
- - React-jserrorhandler
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-Mapbuffer
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RuntimeCore
- - React-runtimeexecutor
- - React-RuntimeHermes
- - React-runtimescheduler
- - React-utils
- - React-RuntimeCore (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - React-cxxreact
- - React-featureflags
- - React-jserrorhandler
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-performancetimeline
- - React-runtimeexecutor
- - React-runtimescheduler
- - React-utils
- - React-runtimeexecutor (0.76.3):
- - React-jsi (= 0.76.3)
- - React-RuntimeHermes (0.76.3):
- - hermes-engine
- - RCT-Folly/Fabric (= 2024.01.01.00)
- - React-featureflags
- - React-hermes
- - React-jsi
- - React-jsinspector
- - React-jsitracing
- - React-nativeconfig
- - React-RuntimeCore
- - React-utils
- - React-runtimescheduler (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-callinvoker
- - React-cxxreact
- - React-debug
- - React-featureflags
- - React-jsi
- - React-performancetimeline
- - React-rendererconsistency
- - React-rendererdebug
- - React-runtimeexecutor
- - React-timing
- - React-utils
- - React-timing (0.76.3)
- - React-utils (0.76.3):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-debug
- - React-jsi (= 0.76.3)
- - ReactCodegen (0.76.3):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-FabricImage
- - React-featureflags
- - React-graphics
- - React-jsi
- - React-jsiexecutor
- - React-NativeModulesApple
- - React-rendererdebug
- - React-utils
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - ReactCommon (0.76.3):
- - ReactCommon/turbomodule (= 0.76.3)
- - ReactCommon/turbomodule (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-callinvoker (= 0.76.3)
- - React-cxxreact (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-logger (= 0.76.3)
- - React-perflogger (= 0.76.3)
- - ReactCommon/turbomodule/bridging (= 0.76.3)
- - ReactCommon/turbomodule/core (= 0.76.3)
- - ReactCommon/turbomodule/bridging (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-callinvoker (= 0.76.3)
- - React-cxxreact (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-logger (= 0.76.3)
- - React-perflogger (= 0.76.3)
- - ReactCommon/turbomodule/core (0.76.3):
- - DoubleConversion
- - fmt (= 9.1.0)
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - React-callinvoker (= 0.76.3)
- - React-cxxreact (= 0.76.3)
- - React-debug (= 0.76.3)
- - React-featureflags (= 0.76.3)
- - React-jsi (= 0.76.3)
- - React-logger (= 0.76.3)
- - React-perflogger (= 0.76.3)
- - React-utils (= 0.76.3)
- - RNCMaskedView (0.3.2):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - RNGestureHandler (2.21.2):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - RNScreens (3.35.0):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.01.01.00)
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - React-debug
- - React-Fabric
- - React-featureflags
- - React-graphics
- - React-ImageManager
- - React-NativeModulesApple
- - React-RCTFabric
- - React-RCTImage
- - React-rendererdebug
- - React-utils
- - ReactCodegen
- - ReactCommon/turbomodule/bridging
- - ReactCommon/turbomodule/core
- - Yoga
- - SocketRocket (0.7.1)
- - Yoga (0.0.0)
-
-DEPENDENCIES:
- - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
- - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
- - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
- - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- - maplibre-react-native (from `../../../`)
- - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
- - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
- - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- - React (from `../node_modules/react-native/`)
- - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
- - React-Core (from `../node_modules/react-native/`)
- - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
- - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
- - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
- - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
- - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
- - React-Fabric (from `../node_modules/react-native/ReactCommon`)
- - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
- - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
- - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
- - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
- - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
- - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
- - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
- - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
- - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
- - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
- - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
- - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
- - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
- - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
- - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
- - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
- - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
- - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
- - React-RCTFabric (from `../node_modules/react-native/React`)
- - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
- - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
- - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
- - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
- - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
- - React-rncore (from `../node_modules/react-native/ReactCommon`)
- - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
- - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
- - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
- - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
- - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
- - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
- - ReactCodegen (from `build/generated/ios`)
- - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)"
- - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
- - RNScreens (from `../node_modules/react-native-screens`)
- - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
-
-SPEC REPOS:
- trunk:
- - SocketRocket
-
-EXTERNAL SOURCES:
- boost:
- :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
- DoubleConversion:
- :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
- FBLazyVector:
- :path: "../node_modules/react-native/Libraries/FBLazyVector"
- fmt:
- :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
- glog:
- :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
- hermes-engine:
- :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
- :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64
- maplibre-react-native:
- :path: "../../../"
- RCT-Folly:
- :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
- RCTDeprecation:
- :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
- RCTRequired:
- :path: "../node_modules/react-native/Libraries/Required"
- RCTTypeSafety:
- :path: "../node_modules/react-native/Libraries/TypeSafety"
- React:
- :path: "../node_modules/react-native/"
- React-callinvoker:
- :path: "../node_modules/react-native/ReactCommon/callinvoker"
- React-Core:
- :path: "../node_modules/react-native/"
- React-CoreModules:
- :path: "../node_modules/react-native/React/CoreModules"
- React-cxxreact:
- :path: "../node_modules/react-native/ReactCommon/cxxreact"
- React-debug:
- :path: "../node_modules/react-native/ReactCommon/react/debug"
- React-defaultsnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
- React-domnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
- React-Fabric:
- :path: "../node_modules/react-native/ReactCommon"
- React-FabricComponents:
- :path: "../node_modules/react-native/ReactCommon"
- React-FabricImage:
- :path: "../node_modules/react-native/ReactCommon"
- React-featureflags:
- :path: "../node_modules/react-native/ReactCommon/react/featureflags"
- React-featureflagsnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
- React-graphics:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
- React-hermes:
- :path: "../node_modules/react-native/ReactCommon/hermes"
- React-idlecallbacksnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
- React-ImageManager:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
- React-jserrorhandler:
- :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
- React-jsi:
- :path: "../node_modules/react-native/ReactCommon/jsi"
- React-jsiexecutor:
- :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
- React-jsinspector:
- :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
- React-jsitracing:
- :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
- React-logger:
- :path: "../node_modules/react-native/ReactCommon/logger"
- React-Mapbuffer:
- :path: "../node_modules/react-native/ReactCommon"
- React-microtasksnativemodule:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
- react-native-safe-area-context:
- :path: "../node_modules/react-native-safe-area-context"
- React-nativeconfig:
- :path: "../node_modules/react-native/ReactCommon"
- React-NativeModulesApple:
- :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
- React-perflogger:
- :path: "../node_modules/react-native/ReactCommon/reactperflogger"
- React-performancetimeline:
- :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
- React-RCTActionSheet:
- :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
- React-RCTAnimation:
- :path: "../node_modules/react-native/Libraries/NativeAnimation"
- React-RCTAppDelegate:
- :path: "../node_modules/react-native/Libraries/AppDelegate"
- React-RCTBlob:
- :path: "../node_modules/react-native/Libraries/Blob"
- React-RCTFabric:
- :path: "../node_modules/react-native/React"
- React-RCTImage:
- :path: "../node_modules/react-native/Libraries/Image"
- React-RCTLinking:
- :path: "../node_modules/react-native/Libraries/LinkingIOS"
- React-RCTNetwork:
- :path: "../node_modules/react-native/Libraries/Network"
- React-RCTSettings:
- :path: "../node_modules/react-native/Libraries/Settings"
- React-RCTText:
- :path: "../node_modules/react-native/Libraries/Text"
- React-RCTVibration:
- :path: "../node_modules/react-native/Libraries/Vibration"
- React-rendererconsistency:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
- React-rendererdebug:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
- React-rncore:
- :path: "../node_modules/react-native/ReactCommon"
- React-RuntimeApple:
- :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
- React-RuntimeCore:
- :path: "../node_modules/react-native/ReactCommon/react/runtime"
- React-runtimeexecutor:
- :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
- React-RuntimeHermes:
- :path: "../node_modules/react-native/ReactCommon/react/runtime"
- React-runtimescheduler:
- :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
- React-timing:
- :path: "../node_modules/react-native/ReactCommon/react/timing"
- React-utils:
- :path: "../node_modules/react-native/ReactCommon/react/utils"
- ReactCodegen:
- :path: build/generated/ios
- ReactCommon:
- :path: "../node_modules/react-native/ReactCommon"
- RNCMaskedView:
- :path: "../node_modules/@react-native-masked-view/masked-view"
- RNGestureHandler:
- :path: "../node_modules/react-native-gesture-handler"
- RNScreens:
- :path: "../node_modules/react-native-screens"
- Yoga:
- :path: "../node_modules/react-native/ReactCommon/yoga"
-
-SPEC CHECKSUMS:
- boost: 1dca942403ed9342f98334bf4c3621f011aa7946
- DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
- FBLazyVector: be7314029d6ec6b90f0f75ce1195b8130ed9ac4f
- fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
- glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
- hermes-engine: 0555a84ea495e8e3b4bde71b597cd87fbb382888
- maplibre-react-native: caac56b6d96c926edb82813e7c1482af60adefd6
- RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648
- RCTDeprecation: 2c5e1000b04ab70b53956aa498bf7442c3c6e497
- RCTRequired: 5f785a001cf68a551c5f5040fb4c415672dbb481
- RCTTypeSafety: 6b98db8965005d32449605c0d005ecb4fee8a0f7
- React: 8077bf7c185afb515be82518507e16f71a247a5e
- React-callinvoker: 519eee9520727805e2867a6d8dad4ebbeed543db
- React-Core: e364ceda7d086c7d14adeec0eb880a90073e3dde
- React-CoreModules: 291be650024d9db086c95fd1d7e7d9607c6de62b
- React-cxxreact: 5cf17d13ca0fc0734e1bb0ed9615d1d1fc45ef78
- React-debug: 931ca94abd6b1bcab539e356e20df788afecae8f
- React-defaultsnativemodule: fa1917ffdbb17e2a03f9a2b26e6f7342f59662c0
- React-domnativemodule: c9dcbf0a872f3d02210f005c084d0fc1fdb83f2d
- React-Fabric: e1774fe4b579e34c2c5721e9351c8ce869e7b5f0
- React-FabricComponents: 528ff9f96d150379ed404221d70cc7019ca76865
- React-FabricImage: 31680b7ddc740e040277176fbd6541fcf0fd44af
- React-featureflags: 7c7a74b65ee5a228f520b387ebfe0e8d9cecc622
- React-featureflagsnativemodule: bc298d49634a5b2e0576b9bda6a0dc337ef158f8
- React-graphics: 7f0d3e06d356e8476bd8ba95d90762fc01138ebc
- React-hermes: f83fafe6a1c845dace7abad4a5d7366cbb42ab96
- React-idlecallbacksnativemodule: 733deb5f645226868cf49a0eb798c62082a3fb34
- React-ImageManager: 2b9274ea973f43597a554a182d7ef525836172c6
- React-jserrorhandler: 3b521485275d295cfc6ec6bfa921a1d608693ecf
- React-jsi: fd23c1d759feb709784fd4c835b510b90a94dd12
- React-jsiexecutor: 74628d57accc03d4b5df53db813ef6dcd704c9ae
- React-jsinspector: 89a1e27e97c762de81bd4b9cb1314750304bba38
- React-jsitracing: 11b6646d7b2ecdc7a475f65b2cb12d3805964195
- React-logger: 26155dc23db5c9038794db915f80bd2044512c2e
- React-Mapbuffer: ad1ba0205205a16dbff11b8ade6d1b3959451658
- React-microtasksnativemodule: 36e3a415c6a3a5c4784b5c6bad38013b8ca35be4
- react-native-safe-area-context: 4532f1a0c5d34a46b9324ccaaedcb5582a302b7d
- React-nativeconfig: aeed6e2a8ac02b2df54476afcc7c663416c12bf7
- React-NativeModulesApple: c5b7813da94136f50ef084fa1ac077332dcfc658
- React-perflogger: 6afb7eebf7d9521cc70481688ccddf212970e9d3
- React-performancetimeline: 81884d35896b22d51832e7c8748c8330ec73c491
- React-RCTActionSheet: c940a35d71686941ac2b96dd07bde11ea0f0c34f
- React-RCTAnimation: e1dbb4e530d6f58437ab2fae372de3788ecdffab
- React-RCTAppDelegate: 3aa8a7b8bff5afcc00f947471c2fc93bd2093de5
- React-RCTBlob: 9cdac4721a76e2d132fb1760eafd0a8f150d1c96
- React-RCTFabric: b833ecb9bb715858731f658accae0804bd2f4a7b
- React-RCTImage: f09f5165807e1a69a2bbac6c7168a8ed57ed4e26
- React-RCTLinking: 4ea06b79cba7e15d8af4d86b1dcede6bd29a47fd
- React-RCTNetwork: 43a38148c7a4a2380e76b08f07f02ee8eaac8965
- React-RCTSettings: cc60bb6b38eed0683696b5ddf45b0a4a1441147b
- React-RCTText: fbe5e6e886beefd5d432790bc50b7aa2b6504264
- React-RCTVibration: 061dbf7a0a1e77bfc1c4672e7be6884dc12f18bf
- React-rendererconsistency: 52b471890a1946991f2db81aa6867b14d93f4ea5
- React-rendererdebug: 3f63479f704e266a3bf104c897315a885c72859b
- React-rncore: 33ea67bfd2eeaa4f4a0c9e0e8bd55e9b7ccb9faa
- React-RuntimeApple: bcd91a191637ab5895593135de74ac54bf88df5d
- React-RuntimeCore: 3a42a7f12f5f6cc4cb0e22446540165d204d7a15
- React-runtimeexecutor: db3f17084ee7b71ab84912c527d428cc3a137841
- React-RuntimeHermes: 91bcd6aeec4bab20cebd33cb8984e3825ccdc77e
- React-runtimescheduler: 92a5a092ded9a9aaac765ac940d26b52bac48901
- React-timing: 54693ad0872f64127f7cb41675b1be4fd28ea4dc
- React-utils: 2bcaf4f4dfe361344bce2fae428603d518488630
- ReactCodegen: ae99a130606068ed40d1d9c0d5f25fda142a0647
- ReactCommon: 89c87b343deacc8610b099ac764848f0ce937e3e
- RNCMaskedView: e07a0b5e9e8d6962826def06e6ff2ecdb815433f
- RNGestureHandler: aa9690789023c9be8f06aa90e10ce637ea788f4d
- RNScreens: c7ceced6a8384cb9be5e7a5e88e9e714401fd958
- SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
- Yoga: 3deb2471faa9916c8a82dda2a22d3fba2620ad37
-
-PODFILE CHECKSUM: 06b1adb009c99d5e9b6919686a41bf1656ce30c3
-
-COCOAPODS: 1.16.2
diff --git a/src/MapLibreRN.ts b/src/MapLibreRN.ts
index 9602547b7..7cbd1a9cd 100644
--- a/src/MapLibreRN.ts
+++ b/src/MapLibreRN.ts
@@ -7,7 +7,11 @@ export {
type CameraBounds,
type CameraRef,
} from "./components/Camera";
-export { default as MapView, type MapViewRef } from "./components/MapView";
+export {
+ default as MapView,
+ type MapViewRef,
+ type RegionPayload,
+} from "./components/MapView";
export { default as Light } from "./components/Light";
export { default as PointAnnotation } from "./components/PointAnnotation";
export type { PointAnnotationRef } from "./components/PointAnnotation";
@@ -33,23 +37,24 @@ export { default as CircleLayer } from "./components/CircleLayer";
export { default as SymbolLayer } from "./components/SymbolLayer";
export { default as RasterLayer } from "./components/RasterLayer";
export { default as BackgroundLayer } from "./components/BackgroundLayer";
+export { default as MarkerView } from "./components/MarkerView";
+export { default as Style } from "./components/Style";
+
export {
default as locationManager,
type Location,
} from "./modules/location/locationManager";
export { default as offlineManager } from "./modules/offline/offlineManager";
-export type {
- OfflineProgressStatus,
- OfflinePackError,
-} from "./modules/offline/offlineManager";
+export type { OfflinePackError } from "./modules/offline/offlineManager";
export type { OfflinePackStatus } from "./modules/offline/OfflinePack";
export { default as OfflinePack } from "./modules/offline/OfflinePack";
export { default as OfflineCreatePackOptions } from "./modules/offline/OfflineCreatePackOptions";
export { default as snapshotManager } from "./modules/snapshot/snapshotManager";
export type { SnapshotInputOptions } from "./modules/snapshot/SnapshotOptions";
-export { default as MarkerView } from "./components/MarkerView";
+
+export type { MapLibreRNEvent } from "./types/MapLibreRNEvent";
+
export { default as Animated } from "./utils/animated/Animated";
-export { default as Style } from "./components/Style";
export { default as Logger, type LogLevel } from "./utils/Logger";
export type {
FillLayerStyleProps as FillLayerStyle,
diff --git a/src/modules/offline/OfflinePack.ts b/src/modules/offline/OfflinePack.ts
index b680240f0..6503e883f 100644
--- a/src/modules/offline/OfflinePack.ts
+++ b/src/modules/offline/OfflinePack.ts
@@ -10,8 +10,8 @@ export type OfflinePackStatus = {
percentage: number;
completedResourceCount: number;
completedResourceSize: number;
- completedTileSize: number;
completedTileCount: number;
+ completedTileSize: number;
requiredResourceCount: number;
};
diff --git a/src/modules/offline/offlineManager.ts b/src/modules/offline/offlineManager.ts
index 0daf5ac7e..ad3723a92 100644
--- a/src/modules/offline/offlineManager.ts
+++ b/src/modules/offline/offlineManager.ts
@@ -7,7 +7,7 @@ import {
import OfflineCreatePackOptions, {
type OfflineCreatePackInputOptions,
} from "./OfflineCreatePackOptions";
-import OfflinePack from "./OfflinePack";
+import OfflinePack, { type OfflinePackStatus } from "./OfflinePack";
import { isUndefined, isFunction, isAndroid } from "../../utils";
const MapLibreRN = NativeModules.MLRNModule;
@@ -16,17 +16,6 @@ export const OfflineModuleEventEmitter = new NativeEventEmitter(
MLRNOfflineModule,
);
-export type OfflineProgressStatus = {
- name: string;
- state: number;
- percentage: number;
- completedResourceSize: number;
- completedTileCount: number;
- completedResourceCount: number;
- requiredResourceCount: number;
- completedTileSize: number;
-};
-
export type OfflinePackError = {
name: string;
message: string;
@@ -37,13 +26,10 @@ type ErrorEvent = {
};
type ProgressEvent = {
- payload: OfflineProgressStatus;
+ payload: OfflinePackStatus;
};
-type ProgressListener = (
- pack: OfflinePack,
- status: OfflineProgressStatus,
-) => void;
+type ProgressListener = (pack: OfflinePack, status: OfflinePackStatus) => void;
type ErrorListener = (pack: OfflinePack, err: OfflinePackError) => void;
/**