Skip to content

Instantly share code, notes, and snippets.

@pbogden
Last active September 2, 2015 21:31
Show Gist options
  • Save pbogden/935370a5272acff2618b to your computer and use it in GitHub Desktop.
Save pbogden/935370a5272acff2618b to your computer and use it in GitHub Desktop.
umbc

Earthquake demo for class #2

<!DOCTYPE html>
<meta charset="utf-8">
<title>umbc</title>
<style>
.line {
fill: none;
stroke: black;
stroke-width: 1px;
}
rect {
fill: none;
stroke: black;
stroke-width: 1px;
}
path.quake, circle.quake {
fill: crimson;
fill-opacity: 0.4;
}
path.counties, path.county-border {
fill: none;
stroke: #000;
stroke-opacity: .2;
}
path.state {
fill: none;
stroke: #000;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.js"></script>
<body>
<script>
var width = 960;
var height = 500;
var smallest = 2.5; // threshold magnitude
// Set the map projection centered on Oklahoma
var projection = d3.geo.albers()
.scale(7543)
.translate([702, -186]);
var path = d3.geo.path()
.pointRadius(5)
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var layer1 = svg.append("g");
var layer2 = svg.append("g");
// Read and plot the earthquake data
d3.json("quakes.json", plotQuakes)
// Read and plot the state & county boundaries
d3.json("ok.json", plotState)
function plotQuakes(error, data) {
if (error) console.log(error);
// Filter the small earthquakes
var features = data.features.filter(function(d) { return (+ d.properties.mag >= smallest) });
// Plot the earthquakes
layer2.selectAll("path.quake")
.data(features)
.enter().append("path")
.attr("class", "quake")
.attr("d", path)
}
function plotState(error, ok) {
if (error) console.log(error);
var objects = ok.objects.ok;
var all = topojson.merge(ok, objects.geometries);
layer1.append("path")
.datum(all)
.attr("class", "state")
.attr("d", path);
layer1.append("path")
.datum(topojson.mesh(ok, objects, function(a, b) { return a !== b; }))
.attr("class", "county-border")
.attr("d", path);
}
</script>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","metadata":{"generated":1440421215000,"url":"http://earthquake.usgs.gov/fdsnws/event/1/query?format=geojson&starttime=2000-01-01&minlatitude=33.0&maxlatitude=37.5&minlongitude=-103.5&maxlongitude=-94.0&minmagnitude=2.5","title":"USGS Earthquakes","status":200,"api":"1.0.17","count":4618},"features":[{"type":"Feature","properties":{"mag":2.8,"place":"19km W of Perry, Oklahoma","time":1440373188100,"updated":1440400140420,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100034dw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100034dw&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100034dw","ids":",us100034dw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.445,"rms":0.64,"gap":40,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5083,36.2777,5]},"id":"us100034dw"},
{"type":"Feature","properties":{"mag":3.5,"place":"11km SW of Stillwater, Oklahoma","time":1440346895320,"updated":1440367579420,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100034cc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100034cc&format=geojson","felt":18,"cdi":4.3,"mmi":3.13,"alert":null,"status":"reviewed","tsunami":0,"sig":196,"net":"us","code":"100034cc","ids":",us100034cc,","sources":",us,","types":",cap,dyfi,general-link,geoserve,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.267,"rms":0.24,"gap":75,"magType":"mb_lg","type":"earthquake","title":"M 3.5 - 11km SW of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1489,36.0452,4.86]},"id":"us100034cc"},
{"type":"Feature","properties":{"mag":3.1,"place":"20km W of Perry, Oklahoma","time":1440337987670,"updated":1440366944538,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100034bm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100034bm&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"100034bm","ids":",us100034bm,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.441,"rms":0.35,"gap":61,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5144,36.2778,2.98]},"id":"us100034bm"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km ESE of Alva, Oklahoma","time":1440304213440,"updated":1440351026997,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100034a6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100034a6&format=geojson","felt":6,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"100034a6","ids":",us100034a6,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.248,"rms":0.51,"gap":71,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 13km ESE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5178,36.7791,5]},"id":"us100034a6"},
{"type":"Feature","properties":{"mag":3.8,"place":"4km WNW of Medford, Oklahoma","time":1440233209450,"updated":1440311207395,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000346p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000346p&format=geojson","felt":114,"cdi":4.1,"mmi":4.48,"alert":"green","status":"reviewed","tsunami":0,"sig":269,"net":"us","code":"1000346p","ids":",us1000346p,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.068,"rms":0.6,"gap":21,"magType":"mwr","type":"earthquake","title":"M 3.8 - 4km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7837,36.8192,3.06]},"id":"us1000346p"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km SE of Caldwell, Kansas","time":1440129646910,"updated":1440365091739,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100034d3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100034d3&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100034d3","ids":",us100034d3,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.072,"rms":0.57,"gap":35,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 12km SE of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.5148,36.9471,3.66]},"id":"us100034d3"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km NE of Helena, Oklahoma","time":1440106028570,"updated":1440134987977,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033sb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033sb&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100033sb","ids":",us100033sb,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.13,"rms":0.54,"gap":58,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 21km NE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1158,36.6973,4.21]},"id":"us100033sb"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km S of Medford, Oklahoma","time":1440083440900,"updated":1440171665800,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033r5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033r5&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100033r5","ids":",us100033r5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":48,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7374,36.6704,7.014]},"id":"us100033r5"},
{"type":"Feature","properties":{"mag":3.4,"place":"15km SE of Anthony, Kansas","time":1440076674950,"updated":1440088400813,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033nu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033nu&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"100033nu","ids":",us100033nu,ismpkansas70129733,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.12,"rms":0.21,"gap":72,"magType":"ml","type":"earthquake","title":"M 3.4 - 15km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.914,37.0542,6.31]},"id":"us100033nu"},
{"type":"Feature","properties":{"mag":3.6,"place":"21km W of Perry, Oklahoma","time":1440059291410,"updated":1440372988674,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033m3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033m3&format=geojson","felt":7,"cdi":2.4,"mmi":3.65,"alert":null,"status":"reviewed","tsunami":0,"sig":201,"net":"us","code":"100033m3","ids":",us100033m3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.425,"rms":0.35,"gap":35,"magType":"mb_lg","type":"earthquake","title":"M 3.6 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5278,36.2897,1.07]},"id":"us100033m3"},
{"type":"Feature","properties":{"mag":3.5,"place":"13km NE of Cherokee, Oklahoma","time":1440031757700,"updated":1440060707134,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033jw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033jw&format=geojson","felt":null,"cdi":null,"mmi":4.08,"alert":null,"status":"reviewed","tsunami":0,"sig":188,"net":"us","code":"100033jw","ids":",us100033jw,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":191,"magType":"ml","type":"earthquake","title":"M 3.5 - 13km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2548,36.8484,3.933]},"id":"us100033jw"},
{"type":"Feature","properties":{"mag":3.9,"place":"12km ENE of Cherokee, Oklahoma","time":1440031633290,"updated":1440094347936,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033jm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033jm&format=geojson","felt":38,"cdi":3.4,"mmi":4.16,"alert":null,"status":"reviewed","tsunami":0,"sig":247,"net":"us","code":"100033jm","ids":",us100033jm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.014,"rms":0.58,"gap":93,"magType":"mb_lg","type":"earthquake","title":"M 3.9 - 12km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2284,36.8046,2.92]},"id":"us100033jm"},
{"type":"Feature","properties":{"mag":3.2,"place":"14km W of Helena, Oklahoma","time":1440026027580,"updated":1440054990915,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033j5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033j5&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"100033j5","ids":",us100033j5,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.329,"rms":0.7,"gap":83,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 14km W of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4315,36.5257,1.68]},"id":"us100033j5"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km SSW of Caldwell, Kansas","time":1440019863100,"updated":1440048814559,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100033i3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100033i3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100033i3","ids":",us100033i3,","sources":",us,","types":",cap,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":47,"magType":"ml","type":"earthquake","title":"M 2.7 - 12km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6856,36.936,5]},"id":"us100033i3"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km WSW of Stillwater, Oklahoma","time":1439920884600,"updated":1439992898320,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000338q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000338q&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"1000338q","ids":",us1000338q,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":55,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km WSW of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2017,36.0678,5.353]},"id":"us1000338q"},
{"type":"Feature","properties":{"mag":2.7,"place":"14km SSE of Alva, Oklahoma","time":1439907571500,"updated":1439936536821,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000336h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000336h&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"1000336h","ids":",us1000336h,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.7 - 14km SSE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6111,36.6868,10.012]},"id":"us1000336h"},
{"type":"Feature","properties":{"mag":2.6,"place":"4km NNE of Edmond, Oklahoma","time":1439903657000,"updated":1439929429762,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000336n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000336n&format=geojson","felt":6,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":106,"net":"us","code":"1000336n","ids":",us1000336n,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":45,"magType":"ml","type":"earthquake","title":"M 2.6 - 4km NNE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4655,35.6903,5]},"id":"us1000336n"},
{"type":"Feature","properties":{"mag":3.2,"place":"21km W of Perry, Oklahoma","time":1439872829880,"updated":1439878362788,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000332b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000332b&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"1000332b","ids":",us1000332b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.429,"rms":0.32,"gap":88,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5243,36.2869,4.77]},"id":"us1000332b"},
{"type":"Feature","properties":{"mag":2.7,"place":"23km WNW of Pawnee, Oklahoma","time":1439828871700,"updated":1440009362650,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032y7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032y7&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100032y7","ids":",us100032y7,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.29,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.7 - 23km WNW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0398,36.422,0.994]},"id":"us100032y7"},
{"type":"Feature","properties":{"mag":3.1,"place":"12km N of Seminole, Oklahoma","time":1439812436800,"updated":1439831436604,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032uf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032uf&format=geojson","felt":6,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"100032uf","ids":",us100032uf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.148,"rms":0.61,"gap":36,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 12km N of Seminole, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6818,35.3361,3.36]},"id":"us100032uf"},
{"type":"Feature","properties":{"mag":2.8,"place":"12km NNE of Medford, Oklahoma","time":1439723197010,"updated":1439906571620,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032nw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032nw&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100032nw","ids":",us100032nw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.149,"rms":0.51,"gap":28,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 12km NNE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6797,36.9109,4.98]},"id":"us100032nw"},
{"type":"Feature","properties":{"mag":3.3,"place":"7km W of Medford, Oklahoma","time":1439714990830,"updated":1439744125072,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032np","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032np&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"100032np","ids":",us100032np,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.044,"rms":0.35,"gap":48,"magType":"mb_lg","type":"earthquake","title":"M 3.3 - 7km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8203,36.8204,4.45]},"id":"us100032np"},
{"type":"Feature","properties":{"mag":3,"place":"5km W of Medford, Oklahoma","time":1439673879460,"updated":1439728769490,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032mh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032mh&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"100032mh","ids":",us100032mh,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.063,"rms":0.46,"gap":36,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 5km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7937,36.8157,1.64]},"id":"us100032mh"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km ENE of Edmond, Oklahoma","time":1439649122780,"updated":1439718544049,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032kz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032kz&format=geojson","felt":8,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":99,"net":"us","code":"100032kz","ids":",us100032kz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.101,"rms":0.39,"gap":70,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 7km ENE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3993,35.6811,7.46]},"id":"us100032kz"},
{"type":"Feature","properties":{"mag":2.8,"place":"5km NNE of Crescent, Oklahoma","time":1439642185950,"updated":1439644274738,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032ks","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032ks&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100032ks","ids":",us100032ks,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.222,"rms":0.59,"gap":31,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 5km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5671,35.9999,5]},"id":"us100032ks"},
{"type":"Feature","properties":{"mag":3.2,"place":"30km E of Mooreland, Oklahoma","time":1439609662780,"updated":1439645119527,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032jb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032jb&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"100032jb","ids":",us100032jb,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.137,"rms":1.1,"gap":75,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 30km E of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.8613,36.4581,4.3]},"id":"us100032jb"},
{"type":"Feature","properties":{"mag":4,"place":"6km WNW of Medford, Oklahoma","time":1439587541870,"updated":1440107048559,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032ei","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032ei&format=geojson","felt":149,"cdi":4.1,"mmi":4.26,"alert":"green","status":"reviewed","tsunami":0,"sig":307,"net":"us","code":"100032ei","ids":",us100032ei,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.052,"rms":0.48,"gap":28,"magType":"mb","type":"earthquake","title":"M 4.0 - 6km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8016,36.8266,2.15]},"id":"us100032ei"},
{"type":"Feature","properties":{"mag":2.9,"place":"2km ENE of Medford, Oklahoma","time":1439586370800,"updated":1439615329551,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032eq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032eq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"100032eq","ids":",us100032eq,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.9 - 2km ENE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7102,36.8195,4.591]},"id":"us100032eq"},
{"type":"Feature","properties":{"mag":2.8,"place":"22km NNE of Crescent, Oklahoma","time":1439584454800,"updated":1439654197887,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032ep","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032ep&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100032ep","ids":",us100032ep,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":96,"magType":"ml","type":"earthquake","title":"M 2.8 - 22km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5066,36.1423,5]},"id":"us100032ep"},
{"type":"Feature","properties":{"mag":3.5,"place":"15km N of Langston, Oklahoma","time":1439496130900,"updated":1439530744358,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10003239","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10003239&format=geojson","felt":30,"cdi":4.2,"mmi":3.28,"alert":null,"status":"reviewed","tsunami":0,"sig":201,"net":"us","code":"10003239","ids":",us10003239,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.338,"rms":0.59,"gap":29,"magType":"mb_lg","type":"earthquake","title":"M 3.5 - 15km N of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2392,36.0873,5]},"id":"us10003239"},
{"type":"Feature","properties":{"mag":3.2,"place":"11km W of Medford, Oklahoma","time":1439486103930,"updated":1439529240511,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10003207","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10003207&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10003207","ids":",us10003207,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.033,"rms":0.38,"gap":57,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 11km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8668,36.8187,6.11]},"id":"us10003207"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km NE of Edmond, Oklahoma","time":1439477289700,"updated":1439489868880,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031zg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031zg&format=geojson","felt":3,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"100031zg","ids":",us100031zg,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":53,"magType":"ml","type":"earthquake","title":"M 3.1 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.39,35.7455,6.15]},"id":"us100031zg"},
{"type":"Feature","properties":{"mag":3.1,"place":"10km N of Edmond, Oklahoma","time":1439474381690,"updated":1439482040226,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031xr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031xr&format=geojson","felt":23,"cdi":3.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":156,"net":"us","code":"100031xr","ids":",us100031xr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.046,"rms":0.64,"gap":25,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 10km N of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4612,35.7507,6.86]},"id":"us100031xr"},
{"type":"Feature","properties":{"mag":3.5,"place":"20km W of Perry, Oklahoma","time":1439439326170,"updated":1439480756605,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031t5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031t5&format=geojson","felt":9,"cdi":3.4,"mmi":3.16,"alert":null,"status":"reviewed","tsunami":0,"sig":192,"net":"us","code":"100031t5","ids":",us100031t5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.437,"rms":0.35,"gap":88,"magType":"mb_lg","type":"earthquake","title":"M 3.5 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5189,36.2793,2.9]},"id":"us100031t5"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km E of Medford, Oklahoma","time":1439426219600,"updated":1439455166000,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031se","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031se&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100031se","ids":",us100031se,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.202,"rms":0.34,"gap":42,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 10km E of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6186,36.7927,3.15]},"id":"us100031se"},
{"type":"Feature","properties":{"mag":2.8,"place":"23km E of Mooreland, Oklahoma","time":1439388712440,"updated":1439469807739,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031g7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031g7&format=geojson","felt":4,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100031g7","ids":",us100031g7,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.097,"rms":0.46,"gap":110,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 23km E of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9502,36.4677,5]},"id":"us100031g7"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km W of Perry, Oklahoma","time":1439387396300,"updated":1439416359814,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031gm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031gm&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100031gm","ids":",us100031gm,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.2,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5119,36.2833,7.151]},"id":"us100031gm"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km SE of Medford, Oklahoma","time":1439386619400,"updated":1439391222644,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031gd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031gd&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"100031gd","ids":",us100031gd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":103,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km SE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6336,36.7141,3.807]},"id":"us100031gd"},
{"type":"Feature","properties":{"mag":2.7,"place":"9km S of Perry, Oklahoma","time":1439328082000,"updated":1439342160876,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031aj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031aj&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100031aj","ids":",us100031aj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.7 - 9km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2865,36.2004,7.889]},"id":"us100031aj"},
{"type":"Feature","properties":{"mag":2.5,"place":"10km SSW of Stillwater, Oklahoma","time":1439325994600,"updated":1439395466899,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031ak","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031ak&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100031ak","ids":",us100031ak,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":78,"magType":"ml","type":"earthquake","title":"M 2.5 - 10km SSW of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1205,36.0307,5.502]},"id":"us100031ak"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km SW of Cherokee, Oklahoma","time":1439314850200,"updated":1439390350317,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10003180","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10003180&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10003180","ids":",us10003180,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4712,36.6188,5]},"id":"us10003180"},
{"type":"Feature","properties":{"mag":2.9,"place":"23km SSW of Medford, Oklahoma","time":1439268546790,"updated":1439308438642,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10003119","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10003119&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10003119","ids":",us10003119,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.183,"rms":0.67,"gap":25,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 23km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.792,36.6049,5]},"id":"us10003119"},
{"type":"Feature","properties":{"mag":3.1,"place":"21km SSE of Anthony, Kansas","time":1439239655640,"updated":1439314896460,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030x0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030x0&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"100030x0","ids":",us100030x0,ismpkansas70127413,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.14,"rms":0.65,"gap":86,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 21km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9464,36.9735,5]},"id":"us100030x0"},
{"type":"Feature","properties":{"mag":3.2,"place":"23km ENE of Helena, Oklahoma","time":1439228379100,"updated":1439235569461,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030ur","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030ur&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"100030ur","ids":",us100030ur,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.153,"rms":0.93,"gap":42,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 23km ENE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0502,36.656,5]},"id":"us100030ur"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km NNE of Medford, Oklahoma","time":1439171054500,"updated":1439200012927,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030p6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030p6&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100030p6","ids":",us100030p6,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.149,"rms":0.69,"gap":27,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 10km NNE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6801,36.8932,3.42]},"id":"us100030p6"},
{"type":"Feature","properties":{"mag":2.7,"place":"9km E of Cherokee, Oklahoma","time":1439137594540,"updated":1439159088244,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030kq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030kq&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"100030kq","ids":",us100030kq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.056,"rms":0.27,"gap":109,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 9km E of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2491,36.756,5]},"id":"us100030kq"},
{"type":"Feature","properties":{"mag":3.6,"place":"6km W of Medford, Oklahoma","time":1439103933730,"updated":1439160727480,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030ik","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030ik&format=geojson","felt":4,"cdi":3.1,"mmi":3.16,"alert":null,"status":"reviewed","tsunami":0,"sig":201,"net":"us","code":"100030ik","ids":",us100030ik,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.063,"rms":0.52,"gap":22,"magType":"mb_lg","type":"earthquake","title":"M 3.6 - 6km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8092,36.8022,2.48]},"id":"us100030ik"},
{"type":"Feature","properties":{"mag":2.8,"place":"10km S of Chandler, Oklahoma","time":1439090919200,"updated":1439336522144,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030tv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030tv&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100030tv","ids":",us100030tv,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":60,"magType":"ml","type":"earthquake","title":"M 2.8 - 10km S of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8886,35.6033,5.52]},"id":"us100030tv"},
{"type":"Feature","properties":{"mag":3.2,"place":"3km SE of Harrah, Oklahoma","time":1439088979040,"updated":1439496967284,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030hu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030hu&format=geojson","felt":28,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":167,"net":"us","code":"100030hu","ids":",us100030hu,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.106,"rms":0.53,"gap":32,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 3km SE of Harrah, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1329,35.4719,6.3]},"id":"us100030hu"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km NE of Crescent, Oklahoma","time":1439088801700,"updated":1439335232626,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000313n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000313n&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"1000313n","ids":",us1000313n,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5646,35.9872,5.523]},"id":"us1000313n"},
{"type":"Feature","properties":{"mag":3.1,"place":"17km SE of Anthony, Kansas","time":1439042253470,"updated":1439225890240,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030fc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030fc&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"100030fc","ids":",us100030fc,ismpkansas70126898,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.102,"rms":0.72,"gap":62,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 17km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.8931,37.038,6.61]},"id":"us100030fc"},
{"type":"Feature","properties":{"mag":2.7,"place":"11km NNW of Yale, Oklahoma","time":1438998489660,"updated":1439027449385,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030de","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030de&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100030de","ids":",us100030de,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.056,"rms":0.64,"gap":45,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 11km NNW of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7623,36.2073,4.9]},"id":"us100030de"},
{"type":"Feature","properties":{"mag":2.8,"place":"5km WSW of Perkins, Oklahoma","time":1438983783350,"updated":1438984755310,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030by","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030by&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100030by","ids":",us100030by,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.206,"rms":0.62,"gap":43,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 5km WSW of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0931,35.9553,7.66]},"id":"us100030by"},
{"type":"Feature","properties":{"mag":3,"place":"12km SSE of Alva, Oklahoma","time":1438959120110,"updated":1438988069070,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000304p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000304p&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"1000304p","ids":",us1000304p,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.328,"rms":0.91,"gap":32,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 12km SSE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6017,36.709,12.73]},"id":"us1000304p"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km S of Boley, Oklahoma","time":1438916653230,"updated":1438945603058,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10003003","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10003003&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10003003","ids":",us10003003,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.478,"rms":1.1,"gap":88,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 8km S of Boley, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.5019,35.4164,14.77]},"id":"us10003003"},
{"type":"Feature","properties":{"mag":2.6,"place":"10km SE of Caldwell, Kansas","time":1438877625200,"updated":1438967226949,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002zw4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002zw4&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002zw4","ids":",us10002zw4,ismpkansas70126603,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.6 - 10km SE of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.5087,36.9785,0.999]},"id":"us10002zw4"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km NE of Enid, Oklahoma","time":1438874554120,"updated":1438959467526,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002z7w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002z7w&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002z7w","ids":",us10002z7w,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km NE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.743,36.497,5]},"id":"us10002z7w"},
{"type":"Feature","properties":{"mag":3,"place":"13km NNE of Enid, Oklahoma","time":1438833074730,"updated":1438862021505,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002z0q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002z0q&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002z0q","ids":",us10002z0q,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.117,"rms":0.5,"gap":48,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 13km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8383,36.5114,5]},"id":"us10002z0q"},
{"type":"Feature","properties":{"mag":3.1,"place":"23km NNE of Enid, Oklahoma","time":1438816173970,"updated":1438845132388,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ybc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ybc&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002ybc","ids":",us10002ybc,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.172,"rms":0.42,"gap":51,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 23km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8084,36.6035,3.6]},"id":"us10002ybc"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km NW of Yale, Oklahoma","time":1438805459530,"updated":1438834414014,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y8v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y8v&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002y8v","ids":",us10002y8v,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.094,"rms":0.44,"gap":44,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 13km NW of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8221,36.1898,4.58]},"id":"us10002y8v"},
{"type":"Feature","properties":{"mag":3,"place":"16km S of Medford, Oklahoma","time":1438790111300,"updated":1438819073155,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y5r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y5r&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002y5r","ids":",us10002y5r,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.29,"gap":46,"magType":"ml","type":"earthquake","title":"M 3.0 - 16km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7235,36.6587,8.782]},"id":"us10002y5r"},
{"type":"Feature","properties":{"mag":3.5,"place":"22km W of Perry, Oklahoma","time":1438784628920,"updated":1438813586862,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y3s","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y3s&format=geojson","felt":null,"cdi":null,"mmi":3.59,"alert":null,"status":"reviewed","tsunami":0,"sig":188,"net":"us","code":"10002y3s","ids":",us10002y3s,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.426,"rms":0.53,"gap":61,"magType":"mb_lg","type":"earthquake","title":"M 3.5 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5335,36.2809,5]},"id":"us10002y3s"},
{"type":"Feature","properties":{"mag":3.2,"place":"7km WSW of Langston, Oklahoma","time":1438780032700,"updated":1438808986203,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y40","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y40&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002y40","ids":",us10002y40,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.2 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3349,35.9209,5.448]},"id":"us10002y40"},
{"type":"Feature","properties":{"mag":3.5,"place":"5km W of Medford, Oklahoma","time":1438776072800,"updated":1438898189822,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y38","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y38&format=geojson","felt":5,"cdi":3.1,"mmi":3.17,"alert":null,"status":"reviewed","tsunami":0,"sig":190,"net":"us","code":"10002y38","ids":",us10002y38,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.063,"rms":0.29,"gap":40,"magType":"mb_lg","type":"earthquake","title":"M 3.5 - 5km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7961,36.8138,4.39]},"id":"us10002y38"},
{"type":"Feature","properties":{"mag":3.5,"place":"25km NE of Enid, Oklahoma","time":1438760882370,"updated":1438897873947,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y1u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y1u&format=geojson","felt":12,"cdi":4.2,"mmi":3.96,"alert":null,"status":"reviewed","tsunami":0,"sig":194,"net":"us","code":"10002y1u","ids":",us10002y1u,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.239,"rms":0.49,"gap":29,"magType":"mb_lg","type":"earthquake","title":"M 3.5 - 25km NE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6968,36.567,1.36]},"id":"us10002y1u"},
{"type":"Feature","properties":{"mag":3.2,"place":"25km S of Medford, Oklahoma","time":1438759801120,"updated":1438788762385,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y1m","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y1m&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002y1m","ids":",us10002y1m,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.246,"rms":0.58,"gap":46,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 25km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6926,36.5814,1.28]},"id":"us10002y1m"},
{"type":"Feature","properties":{"mag":3,"place":"20km W of Perry, Oklahoma","time":1438746150820,"updated":1438747743795,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y0p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y0p&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002y0p","ids":",us10002y0p,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.436,"rms":0.39,"gap":88,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.513,36.2893,5.36]},"id":"us10002y0p"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km SE of Guthrie, Oklahoma","time":1438728863770,"updated":1438730176787,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002y03","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002y03&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002y03","ids":",us10002y03,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.112,"rms":0.57,"gap":36,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 12km SE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3172,35.8103,8.43]},"id":"us10002y03"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km SSW of Caldwell, Kansas","time":1438720990700,"updated":1438868105879,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002yaq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002yaq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002yaq","ids":",us10002yaq,","sources":",us,","types":",cap,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":47,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6827,36.9286,0.783]},"id":"us10002yaq"},
{"type":"Feature","properties":{"mag":3.4,"place":"7km WNW of Medford, Oklahoma","time":1438712189600,"updated":1438782101138,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xxr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xxr&format=geojson","felt":5,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"10002xxr","ids":",us10002xxr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":41,"magType":"mb_lg","type":"earthquake","title":"M 3.4 - 7km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.804,36.838,3.692]},"id":"us10002xxr"},
{"type":"Feature","properties":{"mag":2.9,"place":"16km SSE of Anthony, Kansas","time":1438705894780,"updated":1439136575948,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030kl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030kl&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"100030kl","ids":",ismpkansas70126088,us100030kl,ismpkansas70126088,","sources":",is,us,ismpkansas,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 16km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.944,37.023,2.9]},"id":"us100030kl"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km SE of Guthrie, Oklahoma","time":1438701812750,"updated":1439134806529,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100030kj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100030kj&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100030kj","ids":",us100030kj,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.29,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km SE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.315,35.789,5.7]},"id":"us100030kj"},
{"type":"Feature","properties":{"mag":3.2,"place":"10km NNE of Cherokee, Oklahoma","time":1438678689900,"updated":1440311289131,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xub","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xub&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002xub","ids":",us10002xub,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":117,"magType":"ml","type":"earthquake","title":"M 3.2 - 10km NNE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2917,36.836,4.303]},"id":"us10002xub"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km NW of Healdton, Oklahoma","time":1438656246440,"updated":1438699153999,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xsg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xsg&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002xsg","ids":",us10002xsg,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.389,"rms":1.06,"gap":116,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 8km NW of Healdton, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5499,34.2885,5]},"id":"us10002xsg"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km SSE of Alva, Oklahoma","time":1438639720900,"updated":1440113889186,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xmf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xmf&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002xmf","ids":",us10002xmf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":131,"magType":"ml","type":"earthquake","title":"M 3.1 - 13km SSE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6069,36.689,4.033]},"id":"us10002xmf"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km WNW of Healdton, Oklahoma","time":1438559153900,"updated":1439678332187,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xda","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xda&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002xda","ids":",us10002xda,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":165,"magType":"ml","type":"earthquake","title":"M 2.7 - 12km WNW of Healdton, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6031,34.2883,3.715]},"id":"us10002xda"},
{"type":"Feature","properties":{"mag":2.7,"place":"17km WSW of Cherokee, Oklahoma","time":1438528258460,"updated":1438557214616,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xay","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xay&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002xay","ids":",us10002xay,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.279,"rms":0.49,"gap":104,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 17km WSW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5222,36.6787,5]},"id":"us10002xay"},
{"type":"Feature","properties":{"mag":2.8,"place":"12km W of Cherokee, Oklahoma","time":1438526631780,"updated":1438528156298,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xav","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xav&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002xav","ids":",us10002xav,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.235,"rms":0.31,"gap":107,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 12km W of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4941,36.7454,5]},"id":"us10002xav"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km NNE of Crescent, Oklahoma","time":1438524682600,"updated":1439133253125,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xm5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xm5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002xm5","ids":",us10002xm5,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5494,36.1291,4.61]},"id":"us10002xm5"},
{"type":"Feature","properties":{"mag":2.5,"place":"12km ESE of Alva, Oklahoma","time":1438524416300,"updated":1439132489776,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xmb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xmb&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002xmb","ids":",us10002xmb,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.14,"gap":169,"magType":"ml","type":"earthquake","title":"M 2.5 - 12km ESE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5323,36.7674,6.646]},"id":"us10002xmb"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km ENE of Cherokee, Oklahoma","time":1438483804000,"updated":1440303089862,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xyv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xyv&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002xyv","ids":",us10002xyv,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2309,36.8197,6.871]},"id":"us10002xyv"},
{"type":"Feature","properties":{"mag":3.6,"place":"18km SSW of Medford, Oklahoma","time":1438460928720,"updated":1438486312665,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002x6t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002x6t&format=geojson","felt":12,"cdi":3.4,"mmi":3.7,"alert":null,"status":"reviewed","tsunami":0,"sig":203,"net":"us","code":"10002x6t","ids":",us10002x6t,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.143,"rms":0.47,"gap":24,"magType":"mb_lg","type":"earthquake","title":"M 3.6 - 18km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.843,36.6685,4.94]},"id":"us10002x6t"},
{"type":"Feature","properties":{"mag":2.6,"place":"12km N of Langston, Oklahoma","time":1438429416300,"updated":1440152294011,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xy7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xy7&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002xy7","ids":",us10002xy7,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.6 - 12km N of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2519,36.0558,2.864]},"id":"us10002xy7"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km N of Langston, Oklahoma","time":1438349215830,"updated":1438614898704,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002wug","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002wug&format=geojson","felt":9,"cdi":3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":151,"net":"us","code":"10002wug","ids":",us10002wug,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.311,"rms":0.32,"gap":60,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 13km N of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2694,36.0702,3.61]},"id":"us10002wug"},
{"type":"Feature","properties":{"mag":2.6,"place":"23km NNE of Crescent, Oklahoma","time":1438342713180,"updated":1438371672038,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002wub","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002wub&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002wub","ids":",us10002wub,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.36,"rms":0.49,"gap":34,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 23km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5167,36.1542,2.91]},"id":"us10002wub"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km NE of Edmond, Oklahoma","time":1438310612400,"updated":1440126626270,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xh6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xh6&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002xh6","ids":",us10002xh6,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.358,35.7531,5.567]},"id":"us10002xh6"},
{"type":"Feature","properties":{"mag":2.8,"place":"5km NE of Crescent, Oklahoma","time":1438308639000,"updated":1440115099702,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ws4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ws4&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002ws4","ids":",us10002ws4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.79,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 5km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.553,35.984,5.6]},"id":"us10002ws4"},
{"type":"Feature","properties":{"mag":3.3,"place":"4km NE of Crescent, Oklahoma","time":1438306761400,"updated":1440114596618,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002wlj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002wlj&format=geojson","felt":4,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"10002wlj","ids":",us10002wlj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":37,"magType":"ml","type":"earthquake","title":"M 3.3 - 4km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5559,35.9798,0.133]},"id":"us10002wlj"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km E of Perry, Oklahoma","time":1438302526300,"updated":1440220360266,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xg6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xg6&format=geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002xg6","ids":",us10002xg6,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":49,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km E of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1116,36.307,3.929]},"id":"us10002xg6"},
{"type":"Feature","properties":{"mag":2.6,"place":"10km ENE of Perkins, Oklahoma","time":1438293792800,"updated":1440221610006,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xys","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xys&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002xys","ids":",us10002xys,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":107,"magType":"ml","type":"earthquake","title":"M 2.6 - 10km ENE of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9201,35.9994,6.157]},"id":"us10002xys"},
{"type":"Feature","properties":{"mag":2.7,"place":"4km NE of Pawnee, Oklahoma","time":1438272256500,"updated":1438356856975,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002we0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002we0&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"10002we0","ids":",us10002we0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.87,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.7 - 4km NE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7684,36.3596,5]},"id":"us10002we0"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km NE of Edmond, Oklahoma","time":1438247710920,"updated":1438291450299,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002waj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002waj&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002waj","ids":",us10002waj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.075,"rms":0.58,"gap":64,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3817,35.7503,6.13]},"id":"us10002waj"},
{"type":"Feature","properties":{"mag":2.5,"place":"25km W of Medford, Oklahoma","time":1438205868000,"updated":1439958295718,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002wge","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002wge&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002wge","ids":",us10002wge,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.5 - 25km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0162,36.7983,4.495]},"id":"us10002wge"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km NNW of Medford, Oklahoma","time":1438180233000,"updated":1438199081925,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200031du","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200031du&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"200031du","ids":",us200031du,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":59,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km NNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7634,36.8435,2.749]},"id":"us200031du"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km SSW of Caldwell, Kansas","time":1438177580700,"updated":1438206526968,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200031cy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200031cy&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200031cy","ids":",us200031cy,","sources":",us,","types":",cap,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":47,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6809,36.9293,1.885]},"id":"us200031cy"},
{"type":"Feature","properties":{"mag":2.54,"place":"7km SSE of Anthony, Kansas","time":1438177131300,"updated":1438210183183,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70124813","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70124813&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":99,"net":"ismpkansas","code":"70124813","ids":",ismpkansas70124813,ismpkansas70124813,","sources":",is,ismpkansas,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":16,"dmin":0.07638,"rms":0.05,"gap":87,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0093333,37.0898333,6.68]},"id":"ismpkansas70124813"},
{"type":"Feature","properties":{"mag":2.8,"place":"5km NE of Crescent, Oklahoma","time":1438107699700,"updated":1438207112873,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030zh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030zh&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200030zh","ids":",us200030zh,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.85,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.8 - 5km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5526,35.9862,4.186]},"id":"us200030zh"},
{"type":"Feature","properties":{"mag":2.7,"place":"6km WNW of Medford, Oklahoma","time":1438097146300,"updated":1438200005311,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000311t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000311t&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"2000311t","ids":",us2000311t,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":45,"magType":"ml","type":"earthquake","title":"M 2.7 - 6km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7962,36.8276,0.076]},"id":"us2000311t"},
{"type":"Feature","properties":{"mag":3.1,"place":"6km NNE of Crescent, Oklahoma","time":1438086636990,"updated":1438139474694,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030sm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030sm&format=geojson","felt":11,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":152,"net":"us","code":"200030sm","ids":",us200030sm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.221,"rms":0.56,"gap":37,"magType":"mb_lg","type":"earthquake","title":"M 3.1 - 6km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5583,36.0017,4.75]},"id":"us200030sm"},
{"type":"Feature","properties":{"mag":3.5,"place":"20km W of Perry, Oklahoma","time":1438071117500,"updated":1439711459436,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030r9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030r9&format=geojson","felt":4,"cdi":2.2,"mmi":4.01,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"200030r9","ids":",us200030r9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":86,"magType":"ml","type":"earthquake","title":"M 3.5 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5162,36.2874,7.414]},"id":"us200030r9"},
{"type":"Feature","properties":{"mag":2.8,"place":"23km ENE of Mooreland, Oklahoma","time":1438068724300,"updated":1439708106252,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030r0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030r0&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200030r0","ids":",us200030r0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 23km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.957,36.515,0.01]},"id":"us200030r0"},
{"type":"Feature","properties":{"mag":2.7,"place":"1km NNW of Cushing, Oklahoma","time":1438052868390,"updated":1438082185961,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030q0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030q0&format=geojson","felt":20,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":120,"net":"us","code":"200030q0","ids":",us200030q0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.069,"rms":0.53,"gap":49,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 1km NNW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7708,35.9942,4.23]},"id":"us200030q0"},
{"type":"Feature","properties":{"mag":2.6,"place":"18km E of Anthony, Kansas","time":1438048398890,"updated":1438188490941,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70124653","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70124653&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"ismpkansas","code":"70124653","ids":",ismpkansas70124653,ismpkansas70124653,","sources":",is,ismpkansas,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":16,"dmin":0.05794,"rms":0.04,"gap":61,"magType":"ml","type":"earthquake","title":"M 2.6 - 18km E of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.8251667,37.1585,3.27]},"id":"ismpkansas70124653"},
{"type":"Feature","properties":{"mag":4.1,"place":"6km NNE of Crescent, Oklahoma","time":1438046307270,"updated":1438112879221,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030nt","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030nt&format=geojson","felt":318,"cdi":4.6,"mmi":4.44,"alert":"green","status":"reviewed","tsunami":0,"sig":405,"net":"us","code":"200030nt","ids":",us200030nt,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.231,"rms":0.57,"gap":23,"magType":"mwr","type":"earthquake","title":"M 4.1 - 6km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5772,36.006,5]},"id":"us200030nt"},
{"type":"Feature","properties":{"mag":3.5,"place":"4km NNE of Crescent, Oklahoma","time":1438043043400,"updated":1438666800137,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030mu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030mu&format=geojson","felt":18,"cdi":3.8,"mmi":4.01,"alert":null,"status":"reviewed","tsunami":0,"sig":195,"net":"us","code":"200030mu","ids":",us200030mu,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":71,"magType":"ml","type":"earthquake","title":"M 3.5 - 4km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5789,35.9886,4.658]},"id":"us200030mu"},
{"type":"Feature","properties":{"mag":2.6,"place":"7km NW of Pawnee, Oklahoma","time":1438040130300,"updated":1439267804901,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002xyb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002xyb&format=geojson","felt":4,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"us","code":"10002xyb","ids":",us10002xyb,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":59,"magType":"ml","type":"earthquake","title":"M 2.6 - 7km NW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8718,36.3774,0.347]},"id":"us10002xyb"},
{"type":"Feature","properties":{"mag":2.5,"place":"5km NE of Crescent, Oklahoma","time":1438038930400,"updated":1439267857225,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000315m","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000315m&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"2000315m","ids":",us2000315m,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.5 - 5km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.552,35.9882,4.717]},"id":"us2000315m"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km NNE of Fairview, Oklahoma","time":1438037337600,"updated":1438318162080,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000315a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000315a&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"2000315a","ids":",us2000315a,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":90,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km NNE of Fairview, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4248,36.4308,4.587]},"id":"us2000315a"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km NE of Edmond, Oklahoma","time":1438031958000,"updated":1439860099792,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20003153","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20003153&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20003153","ids":",us20003153,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3797,35.7424,5]},"id":"us20003153"},
{"type":"Feature","properties":{"mag":2.8,"place":"7km ENE of Crescent, Oklahoma","time":1438031266400,"updated":1439860066377,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030k1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030k1&format=geojson","felt":22,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":128,"net":"us","code":"200030k1","ids":",us200030k1,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.8 - 7km ENE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5181,35.9883,6.284]},"id":"us200030k1"},
{"type":"Feature","properties":{"mag":4.5,"place":"6km NNE of Crescent, Oklahoma","time":1438020735330,"updated":1440274468463,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030gd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030gd&format=geojson","felt":3749,"cdi":5.8,"mmi":5.73,"alert":"green","status":"reviewed","tsunami":0,"sig":892,"net":"us","code":"200030gd","ids":",us200030gd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.231,"rms":0.5,"gap":65,"magType":"mb","type":"earthquake","title":"M 4.5 - 6km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5761,36.006,3.18]},"id":"us200030gd"},
{"type":"Feature","properties":{"mag":4,"place":"6km NNE of Crescent, Oklahoma","time":1438019368000,"updated":1438094349689,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030g9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030g9&format=geojson","felt":77,"cdi":5.4,"mmi":3.92,"alert":"green","status":"reviewed","tsunami":0,"sig":288,"net":"us","code":"200030g9","ids":",us200030g9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.224,"rms":0.22,"gap":70,"magType":"mb_lg","type":"earthquake","title":"M 4.0 - 6km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5667,36.0018,5.59]},"id":"us200030g9"},
{"type":"Feature","properties":{"mag":2.5,"place":"11km E of Perry, Oklahoma","time":1438011019940,"updated":1438118443407,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000311q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000311q&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"2000311q","ids":",us2000311q,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.23,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 11km E of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.164,36.297,3.6]},"id":"us2000311q"},
{"type":"Feature","properties":{"mag":2.7,"place":"23km N of Enid, Oklahoma","time":1438010197170,"updated":1438117688842,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20003118","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20003118&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20003118","ids":",us20003118,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 23km N of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.828,36.602,5.8]},"id":"us20003118"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km NNE of Crescent, Oklahoma","time":1438000637700,"updated":1439641916451,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030d7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030d7&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200030d7","ids":",us200030d7,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5711,35.9891,5.388]},"id":"us200030d7"},
{"type":"Feature","properties":{"mag":3,"place":"5km NE of Crescent, Oklahoma","time":1438000306600,"updated":1439639540710,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030dh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030dh&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"200030dh","ids":",us200030dh,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":70,"magType":"ml","type":"earthquake","title":"M 3.0 - 5km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5602,35.9886,5.68]},"id":"us200030dh"},
{"type":"Feature","properties":{"mag":2.5,"place":"1km S of Cherokee, Oklahoma","time":1438000019400,"updated":1439632991702,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030dp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030dp&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200030dp","ids":",us200030dp,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":115,"magType":"ml","type":"earthquake","title":"M 2.5 - 1km S of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3534,36.7388,7.917]},"id":"us200030dp"},
{"type":"Feature","properties":{"mag":2.9,"place":"7km SSE of Anthony, Kansas","time":1437968622790,"updated":1439770994809,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030ah","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030ah&format=geojson","felt":5,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200030ah","ids":",us200030ah,ismpkansas70124238,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.076,"rms":0.47,"gap":87,"magType":"ml","type":"earthquake","title":"M 2.9 - 7km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0098,37.0893,7.13]},"id":"us200030ah"},
{"type":"Feature","properties":{"mag":3.2,"place":"5km NNE of Crescent, Oklahoma","time":1437917210480,"updated":1438034044045,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000307h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000307h&format=geojson","felt":5,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"2000307h","ids":",us2000307h,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.221,"rms":0.28,"gap":70,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 5km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5693,35.9983,4.27]},"id":"us2000307h"},
{"type":"Feature","properties":{"mag":2.9,"place":"28km ENE of Mooreland, Oklahoma","time":1437910248210,"updated":1439549859360,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000307c","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000307c&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"2000307c","ids":",us2000307c,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.17,"rms":0.72,"gap":22,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 28km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9024,36.5304,5]},"id":"us2000307c"},
{"type":"Feature","properties":{"mag":3.6,"place":"4km NNE of Crescent, Oklahoma","time":1437904473600,"updated":1439542432171,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20003074","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20003074&format=geojson","felt":14,"cdi":3.8,"mmi":3.73,"alert":null,"status":"reviewed","tsunami":0,"sig":205,"net":"us","code":"20003074","ids":",us20003074,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":70,"magType":"mwr","type":"earthquake","title":"M 3.6 - 4km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5694,35.989,5.468]},"id":"us20003074"},
{"type":"Feature","properties":{"mag":2.7,"place":"4km WSW of Cushing, Oklahoma","time":1437902105850,"updated":1439540255667,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20003073","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20003073&format=geojson","felt":3,"cdi":2.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"20003073","ids":",us20003073,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.022,"rms":0.72,"gap":27,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 4km WSW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8141,35.9628,5.55]},"id":"us20003073"},
{"type":"Feature","properties":{"mag":2.9,"place":"5km NNE of Crescent, Oklahoma","time":1437893984610,"updated":1437941084301,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000306s","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000306s&format=geojson","felt":4,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"2000306s","ids":",us2000306s,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.227,"rms":0.35,"gap":70,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 5km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5775,36.0016,7.13]},"id":"us2000306s"},
{"type":"Feature","properties":{"mag":3.7,"place":"4km NNE of Crescent, Oklahoma","time":1437822884100,"updated":1439536641416,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000302l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000302l&format=geojson","felt":29,"cdi":3.3,"mmi":3.91,"alert":null,"status":"reviewed","tsunami":0,"sig":220,"net":"us","code":"2000302l","ids":",us2000302l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":70,"magType":"mwr","type":"earthquake","title":"M 3.7 - 4km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5661,35.9902,4.269]},"id":"us2000302l"},
{"type":"Feature","properties":{"mag":2.6,"place":"1km S of Cherokee, Oklahoma","time":1437821040000,"updated":1440323215778,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100032dp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100032dp&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"100032dp","ids":",us100032dp,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":115,"magType":"ml","type":"earthquake","title":"M 2.6 - 1km S of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3572,36.7387,7.998]},"id":"us100032dp"},
{"type":"Feature","properties":{"mag":2.7,"place":"18km ENE of Mooreland, Oklahoma","time":1437817372300,"updated":1440157612613,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030dn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030dn&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200030dn","ids":",us200030dn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.21,"gap":194,"magType":"ml","type":"earthquake","title":"M 2.7 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0237,36.5136,0.978]},"id":"us200030dn"},
{"type":"Feature","properties":{"mag":3,"place":"1km W of Pawnee, Oklahoma","time":1437814073100,"updated":1440330339466,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20003025","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20003025&format=geojson","felt":1,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20003025","ids":",us20003025,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 1km W of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8201,36.3397,1.296]},"id":"us20003025"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km ENE of Mooreland, Oklahoma","time":1437802917400,"updated":1440309339076,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002wbp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002wbp&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002wbp","ids":",us10002wbp,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":186,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9985,36.5197,5]},"id":"us10002wbp"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km SE of Medford, Oklahoma","time":1437800870300,"updated":1440306812986,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200030yc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200030yc&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200030yc","ids":",us200030yc,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":50,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km SE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6668,36.7686,4.84]},"id":"us200030yc"},
{"type":"Feature","properties":{"mag":3,"place":"11km ENE of Stillwater, Oklahoma","time":1437799742700,"updated":1438747124244,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000301h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000301h&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"2000301h","ids":",us2000301h,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 11km ENE of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.948,36.159,4.2]},"id":"us2000301h"},
{"type":"Feature","properties":{"mag":3.2,"place":"24km SSE of Medford, Oklahoma","time":1437797433700,"updated":1438746361187,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000301d","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000301d&format=geojson","felt":6,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"2000301d","ids":",us2000301d,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":70,"magType":"ml","type":"earthquake","title":"M 3.2 - 24km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6149,36.6047,5.161]},"id":"us2000301d"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km ENE of Cherokee, Oklahoma","time":1437754883180,"updated":1437783833004,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zvw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zvw&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002zvw","ids":",us20002zvw,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.007,"rms":0.21,"gap":110,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 13km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.217,36.809,5]},"id":"us20002zvw"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km W of Perry, Oklahoma","time":1437753661500,"updated":1437754396229,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zvr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zvr&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002zvr","ids":",us20002zvr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.425,"rms":0.36,"gap":61,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5279,36.2897,5]},"id":"us20002zvr"},
{"type":"Feature","properties":{"mag":3.8,"place":"13km WNW of Helena, Oklahoma","time":1437741074340,"updated":1437973291927,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zuc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zuc&format=geojson","felt":4,"cdi":4.6,"mmi":3.9,"alert":null,"status":"reviewed","tsunami":0,"sig":224,"net":"us","code":"20002zuc","ids":",us20002zuc,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.248,"rms":0.43,"gap":90,"magType":"mb_lg","type":"earthquake","title":"M 3.8 - 13km WNW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3999,36.6066,11.35]},"id":"us20002zuc"},
{"type":"Feature","properties":{"mag":2.5,"place":"2km E of Luther, Oklahoma","time":1437706045500,"updated":1438828781989,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zry","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zry&format=geojson","felt":1,"cdi":4.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"20002zry","ids":",us20002zry,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 2km E of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.172,35.66,5]},"id":"us20002zry"},
{"type":"Feature","properties":{"mag":3,"place":"2km WNW of McLoud, Oklahoma","time":1437672799900,"updated":1437712035771,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zm7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zm7&format=geojson","felt":4,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":140,"net":"us","code":"20002zm7","ids":",us20002zm7,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":62,"magType":"ml","type":"earthquake","title":"M 3.0 - 2km WNW of McLoud, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1152,35.4476,6.039]},"id":"us20002zm7"},
{"type":"Feature","properties":{"mag":3.3,"place":"2km WNW of Pawnee, Oklahoma","time":1437658137810,"updated":1438026406723,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ziw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ziw&format=geojson","felt":9,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":171,"net":"us","code":"20002ziw","ids":",us20002ziw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.2,"rms":0.42,"gap":63,"magType":"mb_lg","type":"earthquake","title":"M 3.3 - 2km WNW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8257,36.3481,5]},"id":"us20002ziw"},
{"type":"Feature","properties":{"mag":3.2,"place":"0km WNW of Pawnee, Oklahoma","time":1437654055980,"updated":1437687883762,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zi2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zi2&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002zi2","ids":",us20002zi2,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.187,"rms":0.84,"gap":46,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 0km WNW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.81,36.3403,5]},"id":"us20002zi2"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km SSW of Medford, Oklahoma","time":1437614471400,"updated":1440380431040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ze7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ze7&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002ze7","ids":",us20002ze7,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.9 - 21km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8116,36.6224,5]},"id":"us20002ze7"},
{"type":"Feature","properties":{"mag":2.8,"place":"14km NE of Cherokee, Oklahoma","time":1437604625800,"updated":1439441317984,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zja","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zja&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002zja","ids":",us20002zja,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":185,"magType":"ml","type":"earthquake","title":"M 2.8 - 14km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2501,36.8506,3.549]},"id":"us20002zja"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km E of Enid, Oklahoma","time":1437603659900,"updated":1439442189172,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zdd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zdd&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002zdd","ids":",us20002zdd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km E of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.652,36.391,5.164]},"id":"us20002zdd"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km SSE of Anthony, Kansas","time":1437585706620,"updated":1440112816944,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z9k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z9k&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002z9k","ids":",us20002z9k,ismpkansas70123003,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.096,"rms":0.24,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9363,37.0268,6.39]},"id":"us20002z9k"},
{"type":"Feature","properties":{"mag":2.7,"place":"5km WSW of Perry, Oklahoma","time":1437582598000,"updated":1440377966040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z94","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z94&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002z94","ids":",us20002z94,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 5km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3458,36.2672,7.043]},"id":"us20002z94"},
{"type":"Feature","properties":{"mag":2.9,"place":"20km W of Perry, Oklahoma","time":1437564348000,"updated":1440142266334,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z6k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z6k&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002z6k","ids":",us20002z6k,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":111,"magType":"ml","type":"earthquake","title":"M 2.9 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5125,36.2852,7.761]},"id":"us20002z6k"},
{"type":"Feature","properties":{"mag":2.7,"place":"14km NE of Cherokee, Oklahoma","time":1437564200300,"updated":1440141471668,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z8i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z8i&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002z8i","ids":",us20002z8i,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":114,"magType":"ml","type":"earthquake","title":"M 2.7 - 14km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2421,36.8475,4.634]},"id":"us20002z8i"},
{"type":"Feature","properties":{"mag":3.2,"place":"23km S of Medford, Oklahoma","time":1437562107300,"updated":1440140597892,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z6i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z6i&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002z6i","ids":",us20002z6i,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":69,"magType":"ml","type":"earthquake","title":"M 3.2 - 23km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6848,36.6004,6.216]},"id":"us20002z6i"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km NE of Cherokee, Oklahoma","time":1437558009000,"updated":1440137142965,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zxx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zxx&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002zxx","ids":",us20002zxx,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":184,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2357,36.8457,4.496]},"id":"us20002zxx"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NE of Cherokee, Oklahoma","time":1437539328000,"updated":1440130478906,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z4u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z4u&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002z4u","ids":",us20002z4u,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":115,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2617,36.8439,4.465]},"id":"us20002z4u"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km NE of Cherokee, Oklahoma","time":1437536426300,"updated":1440129156040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zuw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zuw&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002zuw","ids":",us20002zuw,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":150,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2479,36.8384,4.67]},"id":"us20002zuw"},
{"type":"Feature","properties":{"mag":2.9,"place":"16km SSE of Anthony, Kansas","time":1437535060930,"updated":1440125137161,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z4p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z4p&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002z4p","ids":",us20002z4p,ismpkansas70122788,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.098,"rms":0.35,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.9 - 16km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9388,37.0258,6.29]},"id":"us20002z4p"},
{"type":"Feature","properties":{"mag":3.2,"place":"15km NE of Cherokee, Oklahoma","time":1437527970800,"updated":1439357922824,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z4e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z4e&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002z4e","ids":",us20002z4e,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":157,"magType":"ml","type":"earthquake","title":"M 3.2 - 15km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2284,36.8464,0.149]},"id":"us20002z4e"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km NE of Edmond, Oklahoma","time":1437522227570,"updated":1439333900324,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z8n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z8n&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002z8n","ids":",us20002z8n,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.355,35.745,6.4]},"id":"us20002z8n"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km SE of Anthony, Kansas","time":1437515893840,"updated":1439439601918,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031k9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031k9&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100031k9","ids":",ismpkansas70122743,us100031k9,ismpkansas70122743,","sources":",is,us,ismpkansas,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.07,"rms":0.47,"gap":75,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9263,37.0538,5.47]},"id":"us100031k9"},
{"type":"Feature","properties":{"mag":2.8,"place":"22km E of Waukomis, Oklahoma","time":1437509222000,"updated":1440022292416,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yzr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yzr&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002yzr","ids":",us20002yzr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":90,"magType":"ml","type":"earthquake","title":"M 2.8 - 22km E of Waukomis, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6473,36.2819,3.989]},"id":"us20002yzr"},
{"type":"Feature","properties":{"mag":2.7,"place":"6km SW of Pawnee, Oklahoma","time":1437507363800,"updated":1440021774339,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z0j","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z0j&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002z0j","ids":",us20002z0j,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":90,"magType":"ml","type":"earthquake","title":"M 2.7 - 6km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8523,36.2898,4.465]},"id":"us20002z0j"},
{"type":"Feature","properties":{"mag":3.3,"place":"17km ENE of Cherokee, Oklahoma","time":1437503049320,"updated":1440021196596,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yz5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yz5&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"20002yz5","ids":",us20002yz5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.03,"rms":0.82,"gap":20,"magType":"mb_lg","type":"earthquake","title":"M 3.3 - 17km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1844,36.8257,9.96]},"id":"us20002yz5"},
{"type":"Feature","properties":{"mag":2.9,"place":"22km E of Waukomis, Oklahoma","time":1437484253850,"updated":1437513234153,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yvv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yvv&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002yvv","ids":",us20002yvv,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.353,"rms":0.32,"gap":64,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 22km E of Waukomis, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6425,36.2829,5]},"id":"us20002yvv"},
{"type":"Feature","properties":{"mag":3.4,"place":"11km NE of Cherokee, Oklahoma","time":1437477374210,"updated":1437481102239,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yvl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yvl&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"20002yvl","ids":",us20002yvl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.035,"rms":0.43,"gap":94,"magType":"mb_lg","type":"earthquake","title":"M 3.4 - 11km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2519,36.8171,5]},"id":"us20002yvl"},
{"type":"Feature","properties":{"mag":3.2,"place":"12km ENE of Cherokee, Oklahoma","time":1437469722210,"updated":1437498683816,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yum","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yum&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002yum","ids":",us20002yum,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.018,"rms":0.57,"gap":39,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 12km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2315,36.811,5]},"id":"us20002yum"},
{"type":"Feature","properties":{"mag":3.4,"place":"22km E of Waukomis, Oklahoma","time":1437468414100,"updated":1439277162168,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yud","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yud&format=geojson","felt":2,"cdi":2.9,"mmi":3.34,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"20002yud","ids":",us20002yud,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.4 - 22km E of Waukomis, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6428,36.2821,2.959]},"id":"us20002yud"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km NW of Cushing, Oklahoma","time":1437466051000,"updated":1439190310014,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002z1q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002z1q&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002z1q","ids":",us20002z1q,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km NW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.877,36.0741,5]},"id":"us20002z1q"},
{"type":"Feature","properties":{"mag":3,"place":"15km W of Perry, Oklahoma","time":1437464308900,"updated":1439185487332,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yu5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yu5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002yu5","ids":",us20002yu5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.0 - 15km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4588,36.2807,1.106]},"id":"us20002yu5"},
{"type":"Feature","properties":{"mag":3,"place":"25km S of Medford, Oklahoma","time":1437454924700,"updated":1437462209829,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yti","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yti&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002yti","ids":",us20002yti,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.243,"rms":0.6,"gap":47,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 25km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6955,36.5778,5]},"id":"us20002yti"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NE of Cherokee, Oklahoma","time":1437444621400,"updated":1440122470040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ysx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ysx&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"20002ysx","ids":",us20002ysx,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":115,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2588,36.8477,3.909]},"id":"us20002ysx"},
{"type":"Feature","properties":{"mag":2.6,"place":"14km NE of Cherokee, Oklahoma","time":1437441740000,"updated":1440120721040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yzs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yzs&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002yzs","ids":",us20002yzs,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":145,"magType":"ml","type":"earthquake","title":"M 2.6 - 14km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2259,36.8324,3.401]},"id":"us20002yzs"},
{"type":"Feature","properties":{"mag":2.7,"place":"20km W of Perry, Oklahoma","time":1437437919600,"updated":1438402123871,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zcv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zcv&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002zcv","ids":",us20002zcv,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":114,"magType":"ml","type":"earthquake","title":"M 2.7 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5218,36.2888,7.544]},"id":"us20002zcv"},
{"type":"Feature","properties":{"mag":3.7,"place":"16km ENE of Cherokee, Oklahoma","time":1437425672670,"updated":1437448110040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yqj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yqj&format=geojson","felt":44,"cdi":3.1,"mmi":4.23,"alert":"green","status":"reviewed","tsunami":0,"sig":224,"net":"us","code":"20002yqj","ids":",us20002yqj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.029,"rms":0.51,"gap":92,"magType":"mwr","type":"earthquake","title":"M 3.7 - 16km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2046,36.8328,5]},"id":"us20002yqj"},
{"type":"Feature","properties":{"mag":3.2,"place":"8km WNW of Pawnee, Oklahoma","time":1437425416560,"updated":1438022437827,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yqi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yqi&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002yqi","ids":",us20002yqi,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.251,"rms":0.66,"gap":47,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 8km WNW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.892,36.375,5]},"id":"us20002yqi"},
{"type":"Feature","properties":{"mag":4.4,"place":"15km ENE of Cherokee, Oklahoma","time":1437423544290,"updated":1440003646040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yq7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yq7&format=geojson","felt":1492,"cdi":5.4,"mmi":4.66,"alert":"green","status":"reviewed","tsunami":0,"sig":838,"net":"us","code":"20002yq7","ids":",us20002yq7,","sources":",us,","types":",cap,dyfi,general-link,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.011,"rms":0.6,"gap":65,"magType":"mwr","type":"earthquake","title":"M 4.4 - 15km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1974,36.8073,5]},"id":"us20002yq7"},
{"type":"Feature","properties":{"mag":2.77,"place":"16km ESE of Anthony, Kansas","time":1437378979390,"updated":1438381032907,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70122278","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70122278&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":118,"net":"ismpkansas","code":"70122278","ids":",ismpkansas70122278,ismpkansas70122278,","sources":",is,ismpkansas,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":16,"dmin":0.01974,"rms":0.06,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km ESE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.862,37.0906667,3.21]},"id":"ismpkansas70122278"},
{"type":"Feature","properties":{"mag":3.1,"place":"16km WNW of Medford, Oklahoma","time":1437363204000,"updated":1439256136927,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ylf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ylf&format=geojson","felt":1,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002ylf","ids":",us20002ylf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":86,"magType":"ml","type":"earthquake","title":"M 3.1 - 16km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.895,36.8713,3.961]},"id":"us20002ylf"},
{"type":"Feature","properties":{"mag":2.8,"place":"15km S of Medford, Oklahoma","time":1437341371300,"updated":1440113369040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yke","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yke&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002yke","ids":",us20002yke,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":53,"magType":"ml","type":"earthquake","title":"M 2.8 - 15km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7317,36.6717,5]},"id":"us20002yke"},
{"type":"Feature","properties":{"mag":2.5,"place":"3km SSW of Cushing, Oklahoma","time":1437332015000,"updated":1440275625040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ykp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ykp&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"20002ykp","ids":",us20002ykp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 3km SSW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7818,35.9514,4.087]},"id":"us20002ykp"},
{"type":"Feature","properties":{"mag":2.8,"place":"15km WNW of Harper, Kansas","time":1437295998480,"updated":1440056627040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yhm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yhm&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002yhm","ids":",us20002yhm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.161,"rms":0.42,"gap":46,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 15km WNW of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-98.1989,37.3214,5.36]},"id":"us20002yhm"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km SW of Medford, Oklahoma","time":1437280936300,"updated":1438825440655,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ygq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ygq&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002ygq","ids":",us20002ygq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km SW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.849,36.6895,5]},"id":"us20002ygq"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km NE of Edmond, Oklahoma","time":1437249834900,"updated":1439336886807,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zke","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zke&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002zke","ids":",us20002zke,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3752,35.7508,1.806]},"id":"us20002zke"},
{"type":"Feature","properties":{"mag":2.8,"place":"0km NNW of McLoud, Oklahoma","time":1437202595700,"updated":1439637504213,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ybl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ybl&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002ybl","ids":",us20002ybl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 0km NNW of McLoud, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0969,35.4427,5.939]},"id":"us20002ybl"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km ESE of Medford, Oklahoma","time":1437184427500,"updated":1438754129209,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002yp3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002yp3&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002yp3","ids":",us20002yp3,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5699,36.7603,6.64]},"id":"us20002yp3"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km ESE of Medford, Oklahoma","time":1437161442300,"updated":1440000191040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y84","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y84&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002y84","ids":",us20002y84,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5702,36.7435,1.418]},"id":"us20002y84"},
{"type":"Feature","properties":{"mag":2.5,"place":"9km ENE of Cherokee, Oklahoma","time":1437154689400,"updated":1439924365040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y6l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y6l&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002y6l","ids":",us20002y6l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":283,"magType":"ml","type":"earthquake","title":"M 2.5 - 9km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2688,36.7972,4.81]},"id":"us20002y6l"},
{"type":"Feature","properties":{"mag":2.8,"place":"23km SW of Perry, Oklahoma","time":1437141878500,"updated":1440346751040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y6k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y6k&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002y6k","ids":",us20002y6k,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":118,"magType":"ml","type":"earthquake","title":"M 2.8 - 23km SW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4635,36.134,5.84]},"id":"us20002y6k"},
{"type":"Feature","properties":{"mag":3.8,"place":"16km WSW of Helena, Oklahoma","time":1437136238210,"updated":1437158572635,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y4p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y4p&format=geojson","felt":5,"cdi":4.4,"mmi":4.23,"alert":null,"status":"reviewed","tsunami":0,"sig":224,"net":"us","code":"20002y4p","ids":",us20002y4p,","sources":",us,","types":",cap,dyfi,general-link,geoserve,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.352,"rms":0.54,"gap":57,"magType":"mb_lg","type":"earthquake","title":"M 3.8 - 16km WSW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4412,36.5041,3.42]},"id":"us20002y4p"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km W of Perry, Oklahoma","time":1437135216900,"updated":1440412415040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y67","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y67&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002y67","ids":",us20002y67,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5157,36.286,7.433]},"id":"us20002y67"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km NE of Crescent, Oklahoma","time":1437089489000,"updated":1438318277217,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y57","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y57&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002y57","ids":",us20002y57,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4407,36.0724,4.593]},"id":"us20002y57"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km WNW of Medford, Oklahoma","time":1437089003900,"updated":1438316657980,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y55","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y55&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002y55","ids":",us20002y55,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8912,36.8704,3.673]},"id":"us20002y55"},
{"type":"Feature","properties":{"mag":2.8,"place":"19km N of Stillwater, Oklahoma","time":1437084821000,"updated":1438318411785,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y1b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y1b&format=geojson","felt":3,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":122,"net":"us","code":"20002y1b","ids":",us20002y1b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 19km N of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0735,36.2937,5]},"id":"us20002y1b"},
{"type":"Feature","properties":{"mag":2.6,"place":"17km WSW of Perry, Oklahoma","time":1437058343200,"updated":1440340558040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xx8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xx8&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002xx8","ids":",us20002xx8,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.6 - 17km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4788,36.2562,7.647]},"id":"us20002xx8"},
{"type":"Feature","properties":{"mag":2.6,"place":"23km SW of Perry, Oklahoma","time":1437034865200,"updated":1438762947952,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xwq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xwq&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002xwq","ids":",us20002xwq,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":87,"magType":"ml","type":"earthquake","title":"M 2.6 - 23km SW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.462,36.1342,4.539]},"id":"us20002xwq"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km SSE of Perry, Oklahoma","time":1437029582900,"updated":1439704814040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xza","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xza&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002xza","ids":",us20002xza,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":87,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km SSE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2415,36.1726,5]},"id":"us20002xza"},
{"type":"Feature","properties":{"mag":2.8,"place":"7km NNE of Pawnee, Oklahoma","time":1436975670700,"updated":1439520791482,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xp8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xp8&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002xp8","ids":",us20002xp8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.82,"gap":147,"magType":"ml","type":"earthquake","title":"M 2.8 - 7km NNE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7668,36.3962,5]},"id":"us20002xp8"},
{"type":"Feature","properties":{"mag":2.8,"place":"5km NE of Crescent, Oklahoma","time":1436951167200,"updated":1439452258271,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xsm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xsm&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002xsm","ids":",us20002xsm,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.8 - 5km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5596,35.9874,5.176]},"id":"us20002xsm"},
{"type":"Feature","properties":{"mag":3.4,"place":"4km NE of Crescent, Oklahoma","time":1436950635900,"updated":1440071348040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xl4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xl4&format=geojson","felt":13,"cdi":4.5,"mmi":3.96,"alert":null,"status":"reviewed","tsunami":0,"sig":184,"net":"us","code":"20002xl4","ids":",us20002xl4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":70,"magType":"mwr","type":"earthquake","title":"M 3.4 - 4km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5652,35.9874,4.136]},"id":"us20002xl4"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km S of Medford, Oklahoma","time":1436928786600,"updated":1437095757822,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xs4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xs4&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002xs4","ids":",us20002xs4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":49,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7513,36.6893,5.107]},"id":"us20002xs4"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km W of Perry, Oklahoma","time":1436892098300,"updated":1436921053629,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xg3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xg3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002xg3","ids":",us20002xg3,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.24,"gap":111,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5099,36.2814,6.589]},"id":"us20002xg3"},
{"type":"Feature","properties":{"mag":2.6,"place":"16km SE of Anthony, Kansas","time":1436888005750,"updated":1440004801040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xe4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xe4&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002xe4","ids":",us20002xe4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.079,"rms":0.17,"gap":68,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 16km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9142,37.0367,5]},"id":"us20002xe4"},
{"type":"Feature","properties":{"mag":2.5,"place":"23km W of Perry, Oklahoma","time":1436884979700,"updated":1440004671040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xg6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xg6&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002xg6","ids":",us20002xg6,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":116,"magType":"ml","type":"earthquake","title":"M 2.5 - 23km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5469,36.2982,8.118]},"id":"us20002xg6"},
{"type":"Feature","properties":{"mag":3.2,"place":"7km SSW of Guthrie, Oklahoma","time":1436871531900,"updated":1440058498040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xdd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xdd&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"20002xdd","ids":",us20002xdd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":102,"magType":"ml","type":"earthquake","title":"M 3.2 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4461,35.8174,4.783]},"id":"us20002xdd"},
{"type":"Feature","properties":{"mag":2.5,"place":"16km S of Blanchard, Oklahoma","time":1436862490400,"updated":1437903730000,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xdz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xdz&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002xdz","ids":",us20002xdz,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":169,"magType":"ml","type":"earthquake","title":"M 2.5 - 16km S of Blanchard, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6915,34.9921,3.108]},"id":"us20002xdz"},
{"type":"Feature","properties":{"mag":3.2,"place":"17km S of Blanchard, Oklahoma","time":1436862135000,"updated":1438041750991,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xd1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xd1&format=geojson","felt":13,"cdi":3.8,"mmi":3.3,"alert":null,"status":"reviewed","tsunami":0,"sig":162,"net":"us","code":"20002xd1","ids":",us20002xd1,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":155,"magType":"mwr","type":"earthquake","title":"M 3.2 - 17km S of Blanchard, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6798,34.9775,4.776]},"id":"us20002xd1"},
{"type":"Feature","properties":{"mag":2.9,"place":"10km E of Luther, Oklahoma","time":1436851224000,"updated":1440073254040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xcl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xcl&format=geojson","felt":5,"cdi":3.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":131,"net":"us","code":"20002xcl","ids":",us20002xcl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 10km E of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0855,35.674,5.455]},"id":"us20002xcl"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NW of Edmond, Oklahoma","time":1436837638700,"updated":1439173171891,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xbz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xbz&format=geojson","felt":40,"cdi":3.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":193,"net":"us","code":"20002xbz","ids":",us20002xbz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":74,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NW of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5763,35.7419,6.169]},"id":"us20002xbz"},
{"type":"Feature","properties":{"mag":2.5,"place":"5km NW of Helena, Oklahoma","time":1436814017500,"updated":1439935008040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xh4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xh4&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002xh4","ids":",us20002xh4,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":130,"magType":"ml","type":"earthquake","title":"M 2.5 - 5km NW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3122,36.5833,5.745]},"id":"us20002xh4"},
{"type":"Feature","properties":{"mag":2.7,"place":"1km NNE of Crescent, Oklahoma","time":1436806396700,"updated":1440004193040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002x9t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002x9t&format=geojson","felt":5,"cdi":2.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":114,"net":"us","code":"20002x9t","ids":",us20002x9t,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.7 - 1km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5892,35.9687,4.231]},"id":"us20002x9t"},
{"type":"Feature","properties":{"mag":2.5,"place":"10km NE of Cherokee, Oklahoma","time":1436793756500,"updated":1437067271894,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xa0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xa0&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002xa0","ids":",us20002xa0,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.29,"gap":246,"magType":"ml","type":"earthquake","title":"M 2.5 - 10km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2636,36.818,5.611]},"id":"us20002xa0"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km WSW of Perry, Oklahoma","time":1436782188900,"updated":1440073588040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xdr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xdr&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002xdr","ids":",us20002xdr,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.86,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5047,36.2297,16.039]},"id":"us20002xdr"},
{"type":"Feature","properties":{"mag":2.7,"place":"23km NE of Enid, Oklahoma","time":1436756735800,"updated":1437095386220,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xwy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xwy&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002xwy","ids":",us20002xwy,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.7 - 23km NE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7107,36.5541,2.748]},"id":"us20002xwy"},
{"type":"Feature","properties":{"mag":2.7,"place":"6km SSW of Harper, Kansas","time":1436755449730,"updated":1438559092315,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002x1g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002x1g&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"20002x1g","ids":",us20002x1g,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.065,"rms":0.75,"gap":49,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 6km SSW of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0523,37.2306,5.54]},"id":"us20002x1g"},
{"type":"Feature","properties":{"mag":3.1,"place":"25km WNW of Medford, Oklahoma","time":1436740641700,"updated":1439169312214,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002x0k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002x0k&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002x0k","ids":",us20002x0k,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":92,"magType":"ml","type":"earthquake","title":"M 3.1 - 25km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0086,36.8682,5.425]},"id":"us20002x0k"},
{"type":"Feature","properties":{"mag":2.7,"place":"20km W of Perry, Oklahoma","time":1436703890500,"updated":1437818424503,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y5c","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y5c&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002y5c","ids":",us20002y5c,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":61,"magType":"ml","type":"earthquake","title":"M 2.7 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5133,36.2899,12.062]},"id":"us20002y5c"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km SE of Anthony, Kansas","time":1436664502810,"updated":1438395728799,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002x0g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002x0g&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002x0g","ids":",us20002x0g,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.066,"rms":0.52,"gap":40,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 15km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9157,37.0514,5]},"id":"us20002x0g"},
{"type":"Feature","properties":{"mag":3.1,"place":"17km W of Helena, Oklahoma","time":1436651529100,"updated":1438314675670,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y6w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y6w&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002y6w","ids":",us20002y6w,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":103,"magType":"ml","type":"earthquake","title":"M 3.1 - 17km W of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4653,36.5264,5]},"id":"us20002y6w"},
{"type":"Feature","properties":{"mag":2.5,"place":"1km NNE of Cushing, Oklahoma","time":1436611824500,"updated":1439034619513,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y83","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y83&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002y83","ids":",us20002y83,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":197,"magType":"ml","type":"earthquake","title":"M 2.5 - 1km NNE of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7556,35.9992,0.875]},"id":"us20002y83"},
{"type":"Feature","properties":{"mag":3.7,"place":"8km NW of Perkins, Oklahoma","time":1436606615300,"updated":1439360295038,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wrz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wrz&format=geojson","felt":42,"cdi":5,"mmi":4.01,"alert":null,"status":"reviewed","tsunami":0,"sig":232,"net":"us","code":"20002wrz","ids":",us20002wrz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":67,"magType":"mwr","type":"earthquake","title":"M 3.7 - 8km NW of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1049,36.0247,3.855]},"id":"us20002wrz"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km NE of Edmond, Oklahoma","time":1436596842800,"updated":1438508511597,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wrd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wrd&format=geojson","felt":4,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":131,"net":"us","code":"20002wrd","ids":",us20002wrd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.78,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3825,35.7471,3.061]},"id":"us20002wrd"},
{"type":"Feature","properties":{"mag":2.7,"place":"5km ENE of Medford, Oklahoma","time":1436593944800,"updated":1438493931261,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y93","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y93&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002y93","ids":",us20002y93,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":43,"magType":"ml","type":"earthquake","title":"M 2.7 - 5km ENE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6774,36.8349,4.984]},"id":"us20002y93"},
{"type":"Feature","properties":{"mag":2.6,"place":"10km N of Langston, Oklahoma","time":1436588555600,"updated":1438321620615,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xb3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xb3&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002xb3","ids":",us20002xb3,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":84,"magType":"ml","type":"earthquake","title":"M 2.6 - 10km N of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2517,36.0395,6.11]},"id":"us20002xb3"},
{"type":"Feature","properties":{"mag":2.9,"place":"0km WNW of McLoud, Oklahoma","time":1436581327400,"updated":1438302230444,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002x08","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002x08&format=geojson","felt":4,"cdi":3.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":131,"net":"us","code":"20002x08","ids":",us20002x08,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.9 - 0km WNW of McLoud, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0987,35.4379,6.579]},"id":"us20002x08"},
{"type":"Feature","properties":{"mag":3.1,"place":"21km W of Perry, Oklahoma","time":1436577679700,"updated":1438143980908,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wqa","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wqa&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002wqa","ids":",us20002wqa,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.89,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.523,36.294,7.2]},"id":"us20002wqa"},
{"type":"Feature","properties":{"mag":3.6,"place":"20km W of Perry, Oklahoma","time":1436576213000,"updated":1437868394601,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wq4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wq4&format=geojson","felt":8,"cdi":3.8,"mmi":4.13,"alert":null,"status":"reviewed","tsunami":0,"sig":202,"net":"us","code":"20002wq4","ids":",us20002wq4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.6 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5168,36.2891,7.44]},"id":"us20002wq4"},
{"type":"Feature","properties":{"mag":3.7,"place":"12km SSE of Cherokee, Oklahoma","time":1436569756700,"updated":1437797935612,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wp9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wp9&format=geojson","felt":67,"cdi":3.3,"mmi":4.3,"alert":"green","status":"reviewed","tsunami":0,"sig":233,"net":"us","code":"20002wp9","ids":",us20002wp9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":134,"magType":"mwr","type":"earthquake","title":"M 3.7 - 12km SSE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2852,36.662,5.426]},"id":"us20002wp9"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km NNE of Enid, Oklahoma","time":1436566742400,"updated":1437879268412,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002y7l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002y7l&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002y7l","ids":",us20002y7l,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8429,36.5342,5.978]},"id":"us20002y7l"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km W of Perry, Oklahoma","time":1436566456300,"updated":1437879199323,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002xsh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002xsh&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002xsh","ids":",us20002xsh,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5033,36.2779,2.109]},"id":"us20002xsh"},
{"type":"Feature","properties":{"mag":2.7,"place":"5km NNE of Langston, Oklahoma","time":1436531733000,"updated":1440059521040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wjr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wjr&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002wjr","ids":",us20002wjr,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.7 - 5km NNE of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.224,35.9907,5.309]},"id":"us20002wjr"},
{"type":"Feature","properties":{"mag":3.5,"place":"17km W of Helena, Oklahoma","time":1436522336700,"updated":1440058671802,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wiu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wiu&format=geojson","felt":5,"cdi":3.1,"mmi":4.02,"alert":null,"status":"reviewed","tsunami":0,"sig":190,"net":"us","code":"20002wiu","ids":",us20002wiu,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":134,"magType":"ml","type":"earthquake","title":"M 3.5 - 17km W of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4682,36.5222,4.243]},"id":"us20002wiu"},
{"type":"Feature","properties":{"mag":2.6,"place":"4km SW of Guthrie, Oklahoma","time":1436478215660,"updated":1437796492889,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wf8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wf8&format=geojson","felt":4,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"us","code":"20002wf8","ids":",us20002wf8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.051,"rms":0.35,"gap":33,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 4km SW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4613,35.8479,3.8]},"id":"us20002wf8"},
{"type":"Feature","properties":{"mag":2.5,"place":"1km ENE of Cushing, Oklahoma","time":1436471426500,"updated":1440073550040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002web","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002web&format=geojson","felt":9,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":99,"net":"us","code":"20002web","ids":",us20002web,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.5 - 1km ENE of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7478,35.991,3.648]},"id":"us20002web"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km E of Luther, Oklahoma","time":1436450355500,"updated":1438445823261,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wb8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wb8&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002wb8","ids":",us20002wb8,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.89,"gap":94,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km E of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0824,35.6713,4.204]},"id":"us20002wb8"},
{"type":"Feature","properties":{"mag":2.5,"place":"12km SSW of Perry, Oklahoma","time":1436447195900,"updated":1440269767040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wep","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wep&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002wep","ids":",us20002wep,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":44,"magType":"ml","type":"earthquake","title":"M 2.5 - 12km SSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.359,36.188,4.594]},"id":"us20002wep"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km S of Fritch, Texas","time":1436439669650,"updated":1440074628040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w9b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w9b&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002w9b","ids":",us20002w9b,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.68,"rms":0.85,"gap":43,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 8km S of Fritch, Texas"},"geometry":{"type":"Point","coordinates":[-101.595,35.5624,7.16]},"id":"us20002w9b"},
{"type":"Feature","properties":{"mag":2.5,"place":"9km E of Luther, Oklahoma","time":1436424595900,"updated":1438930925933,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002zzh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002zzh&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002zzh","ids":",us20002zzh,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":60,"magType":"ml","type":"earthquake","title":"M 2.5 - 9km E of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0953,35.672,4.329]},"id":"us20002zzh"},
{"type":"Feature","properties":{"mag":3,"place":"9km E of Luther, Oklahoma","time":1436424319600,"updated":1438931576090,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w8e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w8e&format=geojson","felt":3,"cdi":2.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002w8e","ids":",us20002w8e,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":89,"magType":"ml","type":"earthquake","title":"M 3.0 - 9km E of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0947,35.6663,5]},"id":"us20002w8e"},
{"type":"Feature","properties":{"mag":2.6,"place":"30km S of Coldwater, Kansas","time":1436421607300,"updated":1438936540577,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w89","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w89&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002w89","ids":",us20002w89,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.658,"rms":0.2,"gap":179,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 30km S of Coldwater, Kansas"},"geometry":{"type":"Point","coordinates":[-99.2764,37.0008,5]},"id":"us20002w89"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km ESE of Medford, Oklahoma","time":1436398878260,"updated":1437888304101,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002wm4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002wm4&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002wm4","ids":",us20002wm4,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.25,"rms":0.35,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5857,36.7305,1.34]},"id":"us20002wm4"},
{"type":"Feature","properties":{"mag":2.7,"place":"29km SSE of Coldwater, Kansas","time":1436397008580,"updated":1437802764224,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w7b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w7b&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002w7b","ids":",us20002w7b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.659,"rms":0.25,"gap":137,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 29km SSE of Coldwater, Kansas"},"geometry":{"type":"Point","coordinates":[-99.2459,37.0101,5]},"id":"us20002w7b"},
{"type":"Feature","properties":{"mag":2.6,"place":"28km SSE of Coldwater, Kansas","time":1436396903300,"updated":1437802744238,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w7a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w7a&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002w7a","ids":",us20002w7a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.676,"rms":0.65,"gap":55,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 28km SSE of Coldwater, Kansas"},"geometry":{"type":"Point","coordinates":[-99.1813,37.0421,5]},"id":"us20002w7a"},
{"type":"Feature","properties":{"mag":2.9,"place":"6km NE of Cherokee, Oklahoma","time":1436394105500,"updated":1437801637727,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w6p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w6p&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002w6p","ids":",us20002w6p,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":116,"magType":"ml","type":"earthquake","title":"M 2.9 - 6km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3055,36.8002,4.4]},"id":"us20002w6p"},
{"type":"Feature","properties":{"mag":2.7,"place":"14km SW of Cherokee, Oklahoma","time":1436385742900,"updated":1438813682833,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w63","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w63&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002w63","ids":",us20002w63,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":118,"magType":"ml","type":"earthquake","title":"M 2.7 - 14km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4817,36.667,6.95]},"id":"us20002w63"},
{"type":"Feature","properties":{"mag":2.8,"place":"14km E of Cherokee, Oklahoma","time":1436377972490,"updated":1436406920760,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w3b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w3b&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002w3b","ids":",us20002w3b,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.034,"rms":0.38,"gap":44,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 14km E of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2002,36.7699,5]},"id":"us20002w3b"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NE of Edmond, Oklahoma","time":1436373208700,"updated":1438301540798,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w1z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w1z&format=geojson","felt":13,"cdi":4.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":184,"net":"us","code":"20002w1z","ids":",us20002w1z,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":51,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3835,35.7412,6.21]},"id":"us20002w1z"},
{"type":"Feature","properties":{"mag":2.8,"place":"14km ESE of Medford, Oklahoma","time":1436349203500,"updated":1438853974979,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vze","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vze&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002vze","ids":",us20002vze,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.8 - 14km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5899,36.7504,6.746]},"id":"us20002vze"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km SW of Pawnee, Oklahoma","time":1436327895900,"updated":1438818832146,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w28","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w28&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002w28","ids":",us20002w28,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":61,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8566,36.2888,5.124]},"id":"us20002w28"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km WSW of Cherokee, Oklahoma","time":1436320103600,"updated":1438299959075,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w1v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w1v&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002w1v","ids":",us20002w1v,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":121,"magType":"ml","type":"earthquake","title":"M 2.8 - 8km WSW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4432,36.7328,4.397]},"id":"us20002w1v"},
{"type":"Feature","properties":{"mag":3,"place":"13km WNW of Medford, Oklahoma","time":1436318000500,"updated":1438299560240,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vzj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vzj&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002vzj","ids":",us20002vzj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":67,"magType":"ml","type":"earthquake","title":"M 3.0 - 13km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8828,36.8427,5.499]},"id":"us20002vzj"},
{"type":"Feature","properties":{"mag":2.9,"place":"14km ESE of Medford, Oklahoma","time":1436307040600,"updated":1437800872812,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w2g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w2g&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002w2g","ids":",us20002w2g,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":61,"magType":"ml","type":"earthquake","title":"M 2.9 - 14km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.585,36.7495,6.331]},"id":"us20002w2g"},
{"type":"Feature","properties":{"mag":2.6,"place":"1km SSE of Medford, Oklahoma","time":1436303696500,"updated":1437799283686,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w5n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w5n&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002w5n","ids":",us20002w5n,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.6 - 1km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7278,36.7927,7.053]},"id":"us20002w5n"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NE of Edmond, Oklahoma","time":1436288992500,"updated":1439327529040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vsh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vsh&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002vsh","ids":",us20002vsh,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3759,35.7453,5.795]},"id":"us20002vsh"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km E of Waukomis, Oklahoma","time":1436280419100,"updated":1439408217040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vrr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vrr&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002vrr","ids":",us20002vrr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":91,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km E of Waukomis, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6788,36.2625,5.089]},"id":"us20002vrr"},
{"type":"Feature","properties":{"mag":2.8,"place":"21km ENE of Mooreland, Oklahoma","time":1436276597800,"updated":1439408065040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vs3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vs3&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002vs3","ids":",us20002vs3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":225,"magType":"ml","type":"earthquake","title":"M 2.8 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9869,36.5173,5]},"id":"us20002vs3"},
{"type":"Feature","properties":{"mag":2.5,"place":"10km NNW of Yale, Oklahoma","time":1436276389300,"updated":1436305344238,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vse","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vse&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002vse","ids":",us20002vse,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":96,"magType":"ml","type":"earthquake","title":"M 2.5 - 10km NNW of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7372,36.1991,4.337]},"id":"us20002vse"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km ENE of Mooreland, Oklahoma","time":1436268457000,"updated":1439471299040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002w1y","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002w1y&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002w1y","ids":",us20002w1y,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":278,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9872,36.5248,5]},"id":"us20002w1y"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km NE of Edmond, Oklahoma","time":1436266881500,"updated":1439470999040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vs0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vs0&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002vs0","ids":",us20002vs0,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.8 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3767,35.7442,5.732]},"id":"us20002vs0"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km NE of Edmond, Oklahoma","time":1436266392300,"updated":1439302336040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vq0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vq0&format=geojson","felt":14,"cdi":4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":153,"net":"us","code":"20002vq0","ids":",us20002vq0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":63,"magType":"ml","type":"earthquake","title":"M 3.1 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3747,35.7443,5]},"id":"us20002vq0"},
{"type":"Feature","properties":{"mag":3.3,"place":"13km NE of Edmond, Oklahoma","time":1436163639700,"updated":1439386482040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nlw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nlw&format=geojson","felt":10,"cdi":4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":172,"net":"us","code":"10002nlw","ids":",us10002nlw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":51,"magType":"ml","type":"earthquake","title":"M 3.3 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3762,35.7446,5.581]},"id":"us10002nlw"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km W of Perry, Oklahoma","time":1436120576100,"updated":1440267137040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nnl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nnl&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002nnl","ids":",us10002nnl,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5209,36.288,6.403]},"id":"us10002nnl"},
{"type":"Feature","properties":{"mag":2.9,"place":"17km ESE of Medford, Oklahoma","time":1436113670600,"updated":1436212598214,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nnp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nnp&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002nnp","ids":",us10002nnp,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.9 - 17km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5495,36.7572,7.113]},"id":"us10002nnp"},
{"type":"Feature","properties":{"mag":2.51,"place":"15km SSE of Conway Springs, Kansas","time":1436104453020,"updated":1437592884580,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70118633","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70118633&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"ismpkansas","code":"70118633","ids":",ismpkansas70118633,","sources":",ismpkansas,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":16,"dmin":0.04542,"rms":0.05,"gap":95,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km SSE of Conway Springs, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6023333,37.2541667,5.01]},"id":"ismpkansas70118633"},
{"type":"Feature","properties":{"mag":2.9,"place":"6km NE of Choctaw, Oklahoma","time":1436102019400,"updated":1439407189040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nii","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nii&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002nii","ids":",us10002nii,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":124,"magType":"ml","type":"earthquake","title":"M 2.9 - 6km NE of Choctaw, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2261,35.5445,6.597]},"id":"us10002nii"},
{"type":"Feature","properties":{"mag":2.8,"place":"6km NE of Choctaw, Oklahoma","time":1436099063200,"updated":1437201802744,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002npk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002npk&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002npk","ids":",us10002npk,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":124,"magType":"ml","type":"earthquake","title":"M 2.8 - 6km NE of Choctaw, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2252,35.5438,6.189]},"id":"us10002npk"},
{"type":"Feature","properties":{"mag":2.8,"place":"7km SW of Pawnee, Oklahoma","time":1436058088100,"updated":1438129533929,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vj5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vj5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002vj5","ids":",us20002vj5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":108,"magType":"ml","type":"earthquake","title":"M 2.8 - 7km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8654,36.2893,3.976]},"id":"us20002vj5"},
{"type":"Feature","properties":{"mag":3.6,"place":"18km W of Helena, Oklahoma","time":1436043627700,"updated":1437786678597,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nfr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nfr&format=geojson","felt":3,"cdi":3.4,"mmi":4.17,"alert":null,"status":"reviewed","tsunami":0,"sig":200,"net":"us","code":"10002nfr","ids":",us10002nfr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":103,"magType":"ml","type":"earthquake","title":"M 3.6 - 18km W of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4749,36.52,3.151]},"id":"us10002nfr"},
{"type":"Feature","properties":{"mag":3.1,"place":"16km ESE of Medford, Oklahoma","time":1436013231500,"updated":1437128236002,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ne9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ne9&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002ne9","ids":",us10002ne9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":88,"magType":"ml","type":"earthquake","title":"M 3.1 - 16km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5569,36.7615,5]},"id":"us10002ne9"},
{"type":"Feature","properties":{"mag":3.3,"place":"20km W of Perry, Oklahoma","time":1436011076600,"updated":1437126442572,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ne3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ne3&format=geojson","felt":2,"cdi":2.2,"mmi":3.37,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"10002ne3","ids":",us10002ne3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.3 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.516,36.281,5.7]},"id":"us10002ne3"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km SE of Harper, Kansas","time":1435990210270,"updated":1439960200040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100031j4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100031j4&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"100031j4","ids":",ismpkansas70118203,us100031j4,","sources":",ismpkansas,us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.008,"rms":0.37,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km SE of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9607,37.2263,3.42]},"id":"us100031j4"},
{"type":"Feature","properties":{"mag":2.8,"place":"18km NE of Crescent, Oklahoma","time":1435975138200,"updated":1438123978521,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ncz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ncz&format=geojson","felt":5,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":122,"net":"us","code":"10002ncz","ids":",us10002ncz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 18km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.445,36.068,5]},"id":"us10002ncz"},
{"type":"Feature","properties":{"mag":3.4,"place":"7km SW of Pawnee, Oklahoma","time":1435971922700,"updated":1440019845713,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ncr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ncr&format=geojson","felt":26,"cdi":4.4,"mmi":4.16,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"10002ncr","ids":",us10002ncr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.4 - 7km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.861,36.293,3.8]},"id":"us10002ncr"},
{"type":"Feature","properties":{"mag":2.9,"place":"7km ESE of Harper, Kansas","time":1435953558990,"updated":1438967244040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nbe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nbe&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002nbe","ids":",us10002nbe,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.027,"rms":0.67,"gap":38,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 7km ESE of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9521,37.2497,7.17]},"id":"us10002nbe"},
{"type":"Feature","properties":{"mag":3,"place":"16km ESE of Medford, Oklahoma","time":1435920234500,"updated":1439446131040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n8a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n8a&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002n8a","ids":",us10002n8a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 16km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.565,36.757,6.445]},"id":"us10002n8a"},
{"type":"Feature","properties":{"mag":3.5,"place":"20km W of Perry, Oklahoma","time":1435900771600,"updated":1437825963105,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n6g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n6g&format=geojson","felt":10,"cdi":3.6,"mmi":3.86,"alert":null,"status":"reviewed","tsunami":0,"sig":192,"net":"us","code":"10002n6g","ids":",us10002n6g,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.5 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5192,36.2812,5]},"id":"us10002n6g"},
{"type":"Feature","properties":{"mag":2.6,"place":"18km SE of Anthony, Kansas","time":1435877136680,"updated":1436761294214,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ng6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ng6&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002ng6","ids":",us10002ng6,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.056,"rms":0.41,"gap":62,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 18km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.8583,37.0529,5]},"id":"us10002ng6"},
{"type":"Feature","properties":{"mag":3.1,"place":"2km NNE of Medford, Oklahoma","time":1435876835000,"updated":1439858878040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n4d","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n4d&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002n4d","ids":",us10002n4d,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 2km NNE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7204,36.8242,4.914]},"id":"us10002n4d"},
{"type":"Feature","properties":{"mag":2.8,"place":"25km ENE of Mooreland, Oklahoma","time":1435869808400,"updated":1439409959040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002we1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002we1&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002we1","ids":",us20002we1,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.95,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.8 - 25km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.937,36.5228,0.069]},"id":"us20002we1"},
{"type":"Feature","properties":{"mag":3.2,"place":"15km NNW of Perry, Oklahoma","time":1435868917200,"updated":1438889096040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n3k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n3k&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002n3k","ids":",us10002n3k,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":43,"magType":"ml","type":"earthquake","title":"M 3.2 - 15km NNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3336,36.4207,5]},"id":"us10002n3k"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km NE of Edmond, Oklahoma","time":1435842042000,"updated":1440268366040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002nfw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002nfw&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002nfw","ids":",us10002nfw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3742,35.7423,5.136]},"id":"us10002nfw"},
{"type":"Feature","properties":{"mag":3.3,"place":"19km NE of Crescent, Oklahoma","time":1435787993800,"updated":1437284597676,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mx3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mx3&format=geojson","felt":4,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"10002mx3","ids":",us10002mx3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":67,"magType":"ml","type":"earthquake","title":"M 3.3 - 19km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.437,36.0707,5.508]},"id":"us10002mx3"},
{"type":"Feature","properties":{"mag":3.5,"place":"4km SW of Stillwater, Oklahoma","time":1435770947900,"updated":1438784242364,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mv7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mv7&format=geojson","felt":159,"cdi":5.1,"mmi":4.12,"alert":null,"status":"reviewed","tsunami":0,"sig":270,"net":"us","code":"10002mv7","ids":",us10002mv7,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.5 - 4km SW of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1003,36.0912,3.848]},"id":"us10002mv7"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km NE of Edmond, Oklahoma","time":1435729981800,"updated":1439992725040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mqz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mqz&format=geojson","felt":4,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":122,"net":"us","code":"10002mqz","ids":",us10002mqz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.8 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3785,35.7444,5.506]},"id":"us10002mqz"},
{"type":"Feature","properties":{"mag":2.5,"place":"22km W of Perry, Oklahoma","time":1435719017800,"updated":1437024815765,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mwd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mwd&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002mwd","ids":",us10002mwd,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.5 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5377,36.2967,6.314]},"id":"us10002mwd"},
{"type":"Feature","properties":{"mag":2.5,"place":"1km WSW of Stillwater, Oklahoma","time":1435718091900,"updated":1437024284479,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mpw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mpw&format=geojson","felt":4,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":98,"net":"us","code":"10002mpw","ids":",us10002mpw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.82,"gap":49,"magType":"ml","type":"earthquake","title":"M 2.5 - 1km WSW of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0716,36.1088,4.211]},"id":"us10002mpw"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km ESE of Medford, Oklahoma","time":1435715337900,"updated":1437023239912,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mwx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mwx&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002mwx","ids":",us10002mwx,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5888,36.7511,8.047]},"id":"us10002mwx"},
{"type":"Feature","properties":{"mag":2.7,"place":"5km SW of Langston, Oklahoma","time":1435708115700,"updated":1436830680573,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mti","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mti&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002mti","ids":",us10002mti,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.7 - 5km SW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3102,35.9149,5]},"id":"us10002mti"},
{"type":"Feature","properties":{"mag":2.6,"place":"6km SSW of Boley, Oklahoma","time":1435707581600,"updated":1436830585064,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mtj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mtj&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002mtj","ids":",us10002mtj,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.6 - 6km SSW of Boley, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.5129,35.4383,6.886]},"id":"us10002mtj"},
{"type":"Feature","properties":{"mag":3.2,"place":"6km WSW of Langston, Oklahoma","time":1435700520300,"updated":1437282727248,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mnf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mnf&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002mnf","ids":",us10002mnf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3133,35.9159,5.079]},"id":"us10002mnf"},
{"type":"Feature","properties":{"mag":2.9,"place":"10km E of Alva, Oklahoma","time":1435699767700,"updated":1437282204303,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mp0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mp0&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002mp0","ids":",us10002mp0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":135,"magType":"ml","type":"earthquake","title":"M 2.9 - 10km E of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5466,36.8069,7.121]},"id":"us10002mp0"},
{"type":"Feature","properties":{"mag":2.6,"place":"4km ESE of Cherokee, Oklahoma","time":1435680343000,"updated":1435709302025,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mmg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mmg&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002mmg","ids":",us10002mmg,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.31,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.6 - 4km ESE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3131,36.7315,5.567]},"id":"us10002mmg"},
{"type":"Feature","properties":{"mag":2.8,"place":"6km SSW of Guthrie, Oklahoma","time":1435672010820,"updated":1438791302040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002vgy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002vgy&format=geojson","felt":2,"cdi":2.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002vgy","ids":",us20002vgy,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 6km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.441,35.819,4.8]},"id":"us20002vgy"},
{"type":"Feature","properties":{"mag":3.3,"place":"7km N of Spencer, Oklahoma","time":1435663207600,"updated":1438851758040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mjl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mjl&format=geojson","felt":31,"cdi":4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":180,"net":"us","code":"10002mjl","ids":",us10002mjl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.3 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.373,35.594,4.3]},"id":"us10002mjl"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km NNW of Crescent, Oklahoma","time":1435657085300,"updated":1438866174040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n2h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n2h&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002n2h","ids":",us10002n2h,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km NNW of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6349,36.1155,2.504]},"id":"us10002n2h"},
{"type":"Feature","properties":{"mag":2.6,"place":"7km N of Spencer, Oklahoma","time":1435656885300,"updated":1438865835040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n1t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n1t&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002n1t","ids":",us10002n1t,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.6 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3818,35.5882,6.497]},"id":"us10002n1t"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km N of Spencer, Oklahoma","time":1435656131500,"updated":1438866550040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002n2s","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002n2s&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002n2s","ids":",us10002n2s,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3775,35.5888,5.899]},"id":"us10002n2s"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km NE of Edmond, Oklahoma","time":1435651343400,"updated":1436778297773,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mij","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mij&format=geojson","felt":5,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":131,"net":"us","code":"10002mij","ids":",us10002mij,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3776,35.7443,5]},"id":"us10002mij"},
{"type":"Feature","properties":{"mag":2.9,"place":"11km E of Alva, Oklahoma","time":1435642478300,"updated":1439991090040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mhy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mhy&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002mhy","ids":",us10002mhy,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":134,"magType":"ml","type":"earthquake","title":"M 2.9 - 11km E of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5399,36.8073,6.248]},"id":"us10002mhy"},
{"type":"Feature","properties":{"mag":2.6,"place":"7km N of Spencer, Oklahoma","time":1435626421000,"updated":1438643567040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mhe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mhe&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002mhe","ids":",us10002mhe,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.6 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3863,35.59,6.395]},"id":"us10002mhe"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km SW of Cherokee, Oklahoma","time":1435588643500,"updated":1438633792040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mtp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mtp&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002mtp","ids":",us10002mtp,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":165,"magType":"ml","type":"earthquake","title":"M 2.7 - 12km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4464,36.6624,4.575]},"id":"us10002mtp"},
{"type":"Feature","properties":{"mag":2.6,"place":"8km SW of Caldwell, Kansas","time":1435574957200,"updated":1438863884040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mmb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mmb&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002mmb","ids":",ismpkansas70116908,us10002mmb,","sources":",ismpkansas,us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.6 - 8km SW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6792,36.984,4.787]},"id":"us10002mmb"},
{"type":"Feature","properties":{"mag":3.5,"place":"17km NW of Medford, Oklahoma","time":1435551157400,"updated":1439156185986,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m9z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m9z&format=geojson","felt":2,"cdi":2,"mmi":4.02,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"10002m9z","ids":",us10002m9z,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":70,"magType":"ml","type":"earthquake","title":"M 3.5 - 17km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8632,36.9196,0.165]},"id":"us10002m9z"},
{"type":"Feature","properties":{"mag":3.1,"place":"11km SW of Caldwell, Kansas","time":1435545967900,"updated":1436748665532,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m9i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m9i&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002m9i","ids":",us10002m9i,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":68,"magType":"ml","type":"earthquake","title":"M 3.1 - 11km SW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6913,36.9507,5]},"id":"us10002m9i"},
{"type":"Feature","properties":{"mag":2.8,"place":"19km W of Perry, Oklahoma","time":1435532207700,"updated":1438643042040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mf3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mf3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002mf3","ids":",us10002mf3,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":74,"magType":"ml","type":"earthquake","title":"M 2.8 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5044,36.2771,6.681]},"id":"us10002mf3"},
{"type":"Feature","properties":{"mag":3.1,"place":"2km SW of Pawnee, Oklahoma","time":1435531105400,"updated":1438641487040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mei","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mei&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002mei","ids":",us10002mei,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":93,"magType":"ml","type":"earthquake","title":"M 3.1 - 2km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8228,36.3203,3.41]},"id":"us10002mei"},
{"type":"Feature","properties":{"mag":3.1,"place":"14km N of Crescent, Oklahoma","time":1435505810700,"updated":1435772723427,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mej","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mej&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002mej","ids":",us10002mej,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":84,"magType":"ml","type":"earthquake","title":"M 3.1 - 14km N of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5853,36.0789,5.642]},"id":"us10002mej"},
{"type":"Feature","properties":{"mag":3.3,"place":"20km W of Perry, Oklahoma","time":1435502235400,"updated":1438790505040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m7g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m7g&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"10002m7g","ids":",us10002m7g,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":78,"magType":"ml","type":"earthquake","title":"M 3.3 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5203,36.2889,6.481]},"id":"us10002m7g"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km W of Perry, Oklahoma","time":1435496125200,"updated":1436708963950,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mem","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mem&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002mem","ids":",us10002mem,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.9 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5238,36.2891,6.812]},"id":"us10002mem"},
{"type":"Feature","properties":{"mag":3.4,"place":"17km NNE of Helena, Oklahoma","time":1435455319700,"updated":1438983267037,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m68","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m68&format=geojson","felt":2,"cdi":2,"mmi":3.29,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"10002m68","ids":",us10002m68,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":219,"magType":"mwr","type":"earthquake","title":"M 3.4 - 17km NNE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1617,36.6779,5]},"id":"us10002m68"},
{"type":"Feature","properties":{"mag":2.9,"place":"14km SE of Helena, Oklahoma","time":1435453478700,"updated":1437260877147,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m65","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m65&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002m65","ids":",us10002m65,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":198,"magType":"ml","type":"earthquake","title":"M 2.9 - 14km SE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1441,36.4714,6.197]},"id":"us10002m65"},
{"type":"Feature","properties":{"mag":2.9,"place":"15km NE of Edmond, Oklahoma","time":1435450680000,"updated":1437281408203,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m5w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m5w&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002m5w","ids":",us10002m5w,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.9 - 15km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3599,35.7541,6.191]},"id":"us10002m5w"},
{"type":"Feature","properties":{"mag":3.1,"place":"24km WSW of Tonkawa, Oklahoma","time":1435445346800,"updated":1437277115523,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m5e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m5e&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002m5e","ids":",us10002m5e,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 24km WSW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5649,36.5909,5.961]},"id":"us10002m5e"},
{"type":"Feature","properties":{"mag":3,"place":"9km SSW of Caldwell, Kansas","time":1435435756400,"updated":1438980712040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m4a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m4a&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002m4a","ids":",us10002m4a,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":49,"magType":"ml","type":"earthquake","title":"M 3.0 - 9km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6328,36.9449,5.357]},"id":"us10002m4a"},
{"type":"Feature","properties":{"mag":3,"place":"20km NE of Enid, Oklahoma","time":1435410183200,"updated":1437162346747,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m2t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m2t&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002m2t","ids":",us10002m2t,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":85,"magType":"ml","type":"earthquake","title":"M 3.0 - 20km NE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7295,36.5373,4.994]},"id":"us10002m2t"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km NE of Edmond, Oklahoma","time":1435398252300,"updated":1438148325040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m8i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m8i&format=geojson","felt":7,"cdi":4.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":99,"net":"us","code":"10002m8i","ids":",us10002m8i,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3627,35.7501,5]},"id":"us10002m8i"},
{"type":"Feature","properties":{"mag":2.8,"place":"19km W of Perry, Oklahoma","time":1435379511200,"updated":1437260098572,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m1m","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m1m&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002m1m","ids":",us10002m1m,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.51,36.279,6.1]},"id":"us10002m1m"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km W of Perry, Oklahoma","time":1435377219000,"updated":1437196470276,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m1k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m1k&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002m1k","ids":",us10002m1k,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.505,36.278,6.1]},"id":"us10002m1k"},
{"type":"Feature","properties":{"mag":3.5,"place":"11km E of Cherokee, Oklahoma","time":1435375888200,"updated":1437185155083,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m1j","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m1j&format=geojson","felt":3,"cdi":3.1,"mmi":4.15,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"10002m1j","ids":",us10002m1j,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":107,"magType":"mwr","type":"earthquake","title":"M 3.5 - 11km E of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2238,36.7458,4.61]},"id":"us10002m1j"},
{"type":"Feature","properties":{"mag":3,"place":"10km S of Perkins, Oklahoma","time":1435372691700,"updated":1437184040125,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m8e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m8e&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002m8e","ids":",us10002m8e,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.0 - 10km S of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0439,35.8769,5]},"id":"us10002m8e"},
{"type":"Feature","properties":{"mag":3.2,"place":"5km NNE of Medford, Oklahoma","time":1435366603000,"updated":1439865486040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m1d","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m1d&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002m1d","ids":",us10002m1d,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 5km NNE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6976,36.8519,6.76]},"id":"us10002m1d"},
{"type":"Feature","properties":{"mag":2.8,"place":"17km SSW of Helena, Oklahoma","time":1435348446400,"updated":1438449708040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m0t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m0t&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002m0t","ids":",us10002m0t,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":184,"magType":"ml","type":"earthquake","title":"M 2.8 - 17km SSW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3535,36.4083,5.064]},"id":"us10002m0t"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km NE of Edmond, Oklahoma","time":1435333629500,"updated":1435362590548,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lwp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lwp&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002lwp","ids":",us10002lwp,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.7 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3844,35.7355,0.838]},"id":"us10002lwp"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NE of Edmond, Oklahoma","time":1435315798800,"updated":1438784635040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002luq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002luq&format=geojson","felt":6,"cdi":4.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":181,"net":"us","code":"10002luq","ids":",us10002luq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.379,35.74,4.8]},"id":"us10002luq"},
{"type":"Feature","properties":{"mag":3.1,"place":"19km NNW of Langston, Oklahoma","time":1435313915700,"updated":1438783687040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002luk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002luk&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002luk","ids":",us10002luk,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 19km NNW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.344,36.101,5]},"id":"us10002luk"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km NE of Edmond, Oklahoma","time":1435313024300,"updated":1438865259040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lwq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lwq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002lwq","ids":",us10002lwq,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3767,35.7411,5.466]},"id":"us10002lwq"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km NE of Edmond, Oklahoma","time":1435304893200,"updated":1437220215232,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ltj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ltj&format=geojson","felt":6,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":131,"net":"us","code":"10002ltj","ids":",us10002ltj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3762,35.7436,5.248]},"id":"us10002ltj"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NE of Edmond, Oklahoma","time":1435299563200,"updated":1437220054779,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lse","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lse&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"10002lse","ids":",us10002lse,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3771,35.7436,5.752]},"id":"us10002lse"},
{"type":"Feature","properties":{"mag":3.7,"place":"13km NE of Edmond, Oklahoma","time":1435298043800,"updated":1439007731698,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ls3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ls3&format=geojson","felt":49,"cdi":5.7,"mmi":3.83,"alert":null,"status":"reviewed","tsunami":0,"sig":239,"net":"us","code":"10002ls3","ids":",us10002ls3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":66,"magType":"mwr","type":"earthquake","title":"M 3.7 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3796,35.7417,5]},"id":"us10002ls3"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km NE of Edmond, Oklahoma","time":1435295901200,"updated":1437215583894,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lsi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lsi&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002lsi","ids":",us10002lsi,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3761,35.7448,6.088]},"id":"us10002lsi"},
{"type":"Feature","properties":{"mag":3.5,"place":"12km NE of Edmond, Oklahoma","time":1435293356300,"updated":1438981974759,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lrn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lrn&format=geojson","felt":24,"cdi":4.6,"mmi":3.56,"alert":null,"status":"reviewed","tsunami":0,"sig":200,"net":"us","code":"10002lrn","ids":",us10002lrn,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.5 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.388,35.739,4.9]},"id":"us10002lrn"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NE of Edmond, Oklahoma","time":1435291973100,"updated":1437019873179,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m0e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m0e&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002m0e","ids":",us10002m0e,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3813,35.7401,5.788]},"id":"us10002m0e"},
{"type":"Feature","properties":{"mag":2.8,"place":"14km ESE of Luther, Oklahoma","time":1435291878900,"updated":1437019055624,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002m06","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002m06&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002m06","ids":",us10002m06,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":111,"magType":"ml","type":"earthquake","title":"M 2.8 - 14km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0518,35.6002,5.586]},"id":"us10002m06"},
{"type":"Feature","properties":{"mag":2.5,"place":"12km NE of Edmond, Oklahoma","time":1435291225400,"updated":1437006437116,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lwr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lwr&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002lwr","ids":",us10002lwr,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.5 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3823,35.7358,5]},"id":"us10002lwr"},
{"type":"Feature","properties":{"mag":2.9,"place":"12km NE of Edmond, Oklahoma","time":1435290959500,"updated":1438981813040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lwf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lwf&format=geojson","felt":9,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":132,"net":"us","code":"10002lwf","ids":",us10002lwf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.9 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3846,35.738,5.743]},"id":"us10002lwf"},
{"type":"Feature","properties":{"mag":2.7,"place":"4km WSW of Perkins, Oklahoma","time":1435251560100,"updated":1438289657040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lp2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lp2&format=geojson","felt":6,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":114,"net":"us","code":"10002lp2","ids":",us10002lp2,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 4km WSW of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0844,35.9653,4.053]},"id":"us10002lp2"},
{"type":"Feature","properties":{"mag":2.56,"place":"Kansas","time":1435242170630,"updated":1437348339360,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70116013","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70116013&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":101,"net":"ismpkansas","code":"70116013","ids":",ismpkansas70116013,","sources":",ismpkansas,","types":",origin,phase-data,","nst":15,"dmin":0.1021,"rms":0.05,"gap":73,"magType":"ml","type":"earthquake","title":"M 2.6 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.9163333,37.052,6.94]},"id":"ismpkansas70116013"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km N of Langston, Oklahoma","time":1435241428100,"updated":1437161551549,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lk5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lk5&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002lk5","ids":",us10002lk5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km N of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2456,36.0158,6.538]},"id":"us10002lk5"},
{"type":"Feature","properties":{"mag":3,"place":"6km S of Guthrie, Oklahoma","time":1435236865000,"updated":1439979226040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lje","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lje&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002lje","ids":",us10002lje,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 6km S of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4388,35.8185,4.04]},"id":"us10002lje"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km NE of Edmond, Oklahoma","time":1435234571100,"updated":1439979463040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002llr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002llr&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"10002llr","ids":",us10002llr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.7 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3797,35.738,5]},"id":"us10002llr"},
{"type":"Feature","properties":{"mag":2.9,"place":"20km W of Perry, Oklahoma","time":1435215486800,"updated":1437887188040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lia","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lia&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002lia","ids":",us10002lia,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5128,36.2783,6.33]},"id":"us10002lia"},
{"type":"Feature","properties":{"mag":3.1,"place":"4km SE of Cherokee, Oklahoma","time":1435212186800,"updated":1437886171040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002li3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002li3&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002li3","ids":",us10002li3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 4km SE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3156,36.7312,5.73]},"id":"us10002li3"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km W of Perry, Oklahoma","time":1435164977400,"updated":1436501634125,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ley","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ley&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002ley","ids":",us10002ley,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5092,36.2777,6.582]},"id":"us10002ley"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km SSW of Caldwell, Kansas","time":1435149244900,"updated":1437813399040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lcr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lcr&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002lcr","ids":",us10002lcr,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":47,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.639,36.9394,5.599]},"id":"us10002lcr"},
{"type":"Feature","properties":{"mag":2.5,"place":"19km NNW of Langston, Oklahoma","time":1435139395900,"updated":1437812727040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002len","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002len&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002len","ids":",us10002len,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.5 - 19km NNW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3473,36.102,5.476]},"id":"us10002len"},
{"type":"Feature","properties":{"mag":2.5,"place":"11km SW of Caldwell, Kansas","time":1435132341000,"updated":1438258913040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lf5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lf5&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002lf5","ids":",us10002lf5,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.5 - 11km SW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6901,36.9491,5]},"id":"us10002lf5"},
{"type":"Feature","properties":{"mag":2.9,"place":"22km WSW of Medford, Oklahoma","time":1435081136760,"updated":1438203362040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l7l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l7l&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002l7l","ids":",us10002l7l,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.211,"rms":0.41,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.9 - 22km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9627,36.7312,5]},"id":"us10002l7l"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km SSE of Alva, Oklahoma","time":1435081075400,"updated":1438190026040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l7e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l7e&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"10002l7e","ids":",us10002l7e,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":132,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km SSE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6114,36.688,4.526]},"id":"us10002l7e"},
{"type":"Feature","properties":{"mag":2.5,"place":"1km S of Cherokee, Oklahoma","time":1435071965800,"updated":1435100925914,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l7q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l7q&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002l7q","ids":",us10002l7q,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.22,"gap":153,"magType":"ml","type":"earthquake","title":"M 2.5 - 1km S of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3538,36.7408,7.543]},"id":"us10002l7q"},
{"type":"Feature","properties":{"mag":2.5,"place":"22km SSE of Anthony, Kansas","time":1435050337500,"updated":1438180696040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l7y","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l7y&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002l7y","ids":",us10002l7y,ismpkansas70115603,","sources":",us,ismpkansas,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.5 - 22km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9521,36.9603,5]},"id":"us10002l7y"},
{"type":"Feature","properties":{"mag":2.5,"place":"26km W of Medford, Oklahoma","time":1435025323000,"updated":1438146744040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l92","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l92&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002l92","ids":",us10002l92,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":106,"magType":"ml","type":"earthquake","title":"M 2.5 - 26km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.03,36.7817,7.109]},"id":"us10002l92"},
{"type":"Feature","properties":{"mag":3.9,"place":"12km NE of Edmond, Oklahoma","time":1435011380800,"updated":1436483314687,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l0a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l0a&format=geojson","felt":146,"cdi":4.7,"mmi":4.11,"alert":"green","status":"reviewed","tsunami":0,"sig":303,"net":"us","code":"10002l0a","ids":",us10002l0a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":52,"magType":"mwr","type":"earthquake","title":"M 3.9 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3876,35.743,5.534]},"id":"us10002l0a"},
{"type":"Feature","properties":{"mag":3.5,"place":"12km NNE of Edmond, Oklahoma","time":1435007367900,"updated":1436479050190,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l9b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l9b&format=geojson","felt":0,"cdi":1,"mmi":4.03,"alert":null,"status":"reviewed","tsunami":0,"sig":188,"net":"us","code":"10002l9b","ids":",us10002l9b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.5 - 12km NNE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4005,35.7499,5]},"id":"us10002l9b"},
{"type":"Feature","properties":{"mag":3.6,"place":"12km NE of Edmond, Oklahoma","time":1435007190100,"updated":1436478436791,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kyx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kyx&format=geojson","felt":69,"cdi":4.6,"mmi":3.62,"alert":null,"status":"reviewed","tsunami":0,"sig":231,"net":"us","code":"10002kyx","ids":",us10002kyx,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.6 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3989,35.7477,5.854]},"id":"us10002kyx"},
{"type":"Feature","properties":{"mag":3.4,"place":"7km SSW of Guthrie, Oklahoma","time":1435002446900,"updated":1438210422040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ky4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ky4&format=geojson","felt":4,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"10002ky4","ids":",us10002ky4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":102,"magType":"ml","type":"earthquake","title":"M 3.4 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4468,35.8169,5.454]},"id":"us10002ky4"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km SSE of Medford, Oklahoma","time":1434980652000,"updated":1435009611065,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kwa","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kwa&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002kwa","ids":",us10002kwa,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":73,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6318,36.6647,5.721]},"id":"us10002kwa"},
{"type":"Feature","properties":{"mag":2.5,"place":"2km SE of Pawnee, Oklahoma","time":1434977646700,"updated":1436262779413,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ky0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ky0&format=geojson","felt":5,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"10002ky0","ids":",us10002ky0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.5 - 2km SE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7812,36.3247,3.679]},"id":"us10002ky0"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km SSW of Tonkawa, Oklahoma","time":1434975140300,"updated":1436186988087,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ky2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ky2&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002ky2","ids":",us10002ky2,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":53,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km SSW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3854,36.576,7.726]},"id":"us10002ky2"},
{"type":"Feature","properties":{"mag":2.9,"place":"17km SSE of Medford, Oklahoma","time":1434964129700,"updated":1438257388040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l5k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l5k&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002l5k","ids":",us10002l5k,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":55,"magType":"ml","type":"earthquake","title":"M 2.9 - 17km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6286,36.669,5.495]},"id":"us10002l5k"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km NE of Edmond, Oklahoma","time":1434955415000,"updated":1438092330040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l1a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l1a&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002l1a","ids":",us10002l1a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.8 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3843,35.7439,6.208]},"id":"us10002l1a"},
{"type":"Feature","properties":{"mag":3.4,"place":"25km WSW of Perry, Oklahoma","time":1434948852600,"updated":1438549730482,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kt2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kt2&format=geojson","felt":33,"cdi":3.8,"mmi":4.15,"alert":null,"status":"reviewed","tsunami":0,"sig":190,"net":"us","code":"10002kt2","ids":",us10002kt2,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":1.04,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.4 - 25km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5616,36.2134,5.625]},"id":"us10002kt2"},
{"type":"Feature","properties":{"mag":3,"place":"12km NE of Edmond, Oklahoma","time":1434945943100,"updated":1435194110144,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l7x","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l7x&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002l7x","ids":",us10002l7x,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":53,"magType":"ml","type":"earthquake","title":"M 3.0 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.394,35.7429,5.278]},"id":"us10002l7x"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km NE of Edmond, Oklahoma","time":1434945634600,"updated":1438549659175,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kst","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kst&format=geojson","felt":56,"cdi":4.1,"mmi":3.54,"alert":null,"status":"reviewed","tsunami":0,"sig":180,"net":"us","code":"10002kst","ids":",us10002kst,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":52,"magType":"mwr","type":"earthquake","title":"M 3.2 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3836,35.7437,6.181]},"id":"us10002kst"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km NE of Edmond, Oklahoma","time":1434939815000,"updated":1436403627509,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lf8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lf8&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002lf8","ids":",us10002lf8,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3832,35.7423,6.056]},"id":"us10002lf8"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km WSW of Medford, Oklahoma","time":1434927352100,"updated":1438145564040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l8i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l8i&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002l8i","ids":",us10002l8i,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":104,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9367,36.702,6.186]},"id":"us10002l8i"},
{"type":"Feature","properties":{"mag":2.6,"place":"2km ESE of Pawnee, Oklahoma","time":1434925482900,"updated":1438144966040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lcz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lcz&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002lcz","ids":",us10002lcz,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.6 - 2km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7788,36.3306,5.246]},"id":"us10002lcz"},
{"type":"Feature","properties":{"mag":2.5,"place":"2km SE of Pawnee, Oklahoma","time":1434922982300,"updated":1438144580040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002le6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002le6&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002le6","ids":",us10002le6,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.5 - 2km SE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7842,36.325,3.274]},"id":"us10002le6"},
{"type":"Feature","properties":{"mag":3.3,"place":"20km W of Perry, Oklahoma","time":1434913092000,"updated":1436711168409,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kqn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kqn&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"10002kqn","ids":",us10002kqn,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.3 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.52,36.2855,6.33]},"id":"us10002kqn"},
{"type":"Feature","properties":{"mag":3.4,"place":"7km SW of Pawnee, Oklahoma","time":1434909098000,"updated":1436710935050,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kqc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kqc&format=geojson","felt":3,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"10002kqc","ids":",us10002kqc,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.85,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.4 - 7km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8601,36.2917,5]},"id":"us10002kqc"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km SSW of Tonkawa, Oklahoma","time":1434907020600,"updated":1436734627426,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lfs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lfs&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002lfs","ids":",us10002lfs,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":53,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km SSW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3859,36.5731,5]},"id":"us10002lfs"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km N of Crescent, Oklahoma","time":1434903010390,"updated":1435159981336,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002le1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002le1&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002le1","ids":",us10002le1,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km N of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.557,36.123,5.5]},"id":"us10002le1"},
{"type":"Feature","properties":{"mag":3.1,"place":"17km SE of Tonkawa, Oklahoma","time":1434889500000,"updated":1438497588040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kp4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kp4&format=geojson","felt":2,"cdi":4.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"10002kp4","ids":",us10002kp4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":63,"magType":"ml","type":"earthquake","title":"M 3.1 - 17km SE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1898,36.5534,6.12]},"id":"us10002kp4"},
{"type":"Feature","properties":{"mag":3.4,"place":"12km NNE of Edmond, Oklahoma","time":1434848336000,"updated":1437105620808,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kls","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kls&format=geojson","felt":9,"cdi":4.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":182,"net":"us","code":"10002kls","ids":",us10002kls,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":54,"magType":"ml","type":"earthquake","title":"M 3.4 - 12km NNE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4006,35.7475,5.882]},"id":"us10002kls"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NE of Edmond, Oklahoma","time":1434835353700,"updated":1437095835406,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mwq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mwq&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002mwq","ids":",us10002mwq,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3825,35.742,6.001]},"id":"us10002mwq"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km NE of Edmond, Oklahoma","time":1434834422400,"updated":1437095432846,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kkk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kkk&format=geojson","felt":13,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":152,"net":"us","code":"10002kkk","ids":",us10002kkk,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":51,"magType":"ml","type":"earthquake","title":"M 3.1 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3843,35.7428,6.149]},"id":"us10002kkk"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km W of Perry, Oklahoma","time":1434832387500,"updated":1437085217624,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kyb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kyb&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002kyb","ids":",us10002kyb,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5282,36.2944,2.191]},"id":"us10002kyb"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km NE of Edmond, Oklahoma","time":1434828220600,"updated":1437019553132,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002mwa","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002mwa&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002mwa","ids":",us10002mwa,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":50,"magType":"ml","type":"earthquake","title":"M 2.8 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3817,35.74,5]},"id":"us10002mwa"},
{"type":"Feature","properties":{"mag":3,"place":"22km W of Perry, Oklahoma","time":1434815437400,"updated":1436733786388,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ki9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ki9&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002ki9","ids":",us10002ki9,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":56,"magType":"ml","type":"earthquake","title":"M 3.0 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5363,36.2938,6.006]},"id":"us10002ki9"},
{"type":"Feature","properties":{"mag":3.3,"place":"7km SW of Pawnee, Oklahoma","time":1434801561400,"updated":1436164453459,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ky5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ky5&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"10002ky5","ids":",us10002ky5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":200,"magType":"ml","type":"earthquake","title":"M 3.3 - 7km SW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8624,36.2884,5]},"id":"us10002ky5"},
{"type":"Feature","properties":{"mag":3.4,"place":"12km NE of Edmond, Oklahoma","time":1434799276000,"updated":1438497407807,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kh9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kh9&format=geojson","felt":69,"cdi":4.8,"mmi":3.65,"alert":null,"status":"reviewed","tsunami":0,"sig":211,"net":"us","code":"10002kh9","ids":",us10002kh9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":51,"magType":"mwr","type":"earthquake","title":"M 3.4 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3839,35.739,5.35]},"id":"us10002kh9"},
{"type":"Feature","properties":{"mag":3.3,"place":"12km NE of Edmond, Oklahoma","time":1434797763200,"updated":1438407249568,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kgz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kgz&format=geojson","felt":23,"cdi":4.5,"mmi":3.79,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"10002kgz","ids":",us10002kgz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":54,"magType":"mwr","type":"earthquake","title":"M 3.3 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3998,35.7469,5.589]},"id":"us10002kgz"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km ESE of Cherokee, Oklahoma","time":1434790877900,"updated":1438407062040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l5h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l5h&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002l5h","ids":",us10002l5h,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":157,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km ESE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1182,36.7121,6.944]},"id":"us10002l5h"},
{"type":"Feature","properties":{"mag":2.7,"place":"22km S of Medford, Oklahoma","time":1434786146400,"updated":1437037019489,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l89","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l89&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002l89","ids":",us10002l89,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":82,"magType":"ml","type":"earthquake","title":"M 2.7 - 22km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6927,36.6089,2.555]},"id":"us10002l89"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km W of Perry, Oklahoma","time":1434785670900,"updated":1436706313329,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l85","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l85&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002l85","ids":",us10002l85,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.32,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5239,36.2883,6.862]},"id":"us10002l85"},
{"type":"Feature","properties":{"mag":3,"place":"12km NE of Edmond, Oklahoma","time":1434782765600,"updated":1436703905332,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kft","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kft&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002kft","ids":",us10002kft,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":51,"magType":"ml","type":"earthquake","title":"M 3.0 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3866,35.7417,5]},"id":"us10002kft"},
{"type":"Feature","properties":{"mag":3.1,"place":"4km S of Langston, Oklahoma","time":1434781561200,"updated":1436703809583,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kfr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kfr&format=geojson","felt":5,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"10002kfr","ids":",us10002kfr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":65,"magType":"ml","type":"earthquake","title":"M 3.1 - 4km S of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2608,35.9022,4.929]},"id":"us10002kfr"},
{"type":"Feature","properties":{"mag":3.4,"place":"12km NE of Edmond, Oklahoma","time":1434777781500,"updated":1436703532103,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kfd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kfd&format=geojson","felt":7,"cdi":3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":180,"net":"us","code":"10002kfd","ids":",us10002kfd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":54,"magType":"ml","type":"earthquake","title":"M 3.4 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3989,35.746,5.376]},"id":"us10002kfd"},
{"type":"Feature","properties":{"mag":4,"place":"12km NE of Edmond, Oklahoma","time":1434777054900,"updated":1438406285109,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kf3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kf3&format=geojson","felt":462,"cdi":4.7,"mmi":4.4,"alert":"green","status":"reviewed","tsunami":0,"sig":463,"net":"us","code":"10002kf3","ids":",us10002kf3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"mwr","type":"earthquake","title":"M 4.0 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3865,35.7392,3]},"id":"us10002kf3"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km NE of Edmond, Oklahoma","time":1434776935700,"updated":1438404751040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kvu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kvu&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002kvu","ids":",us10002kvu,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.7 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3908,35.742,5]},"id":"us10002kvu"},
{"type":"Feature","properties":{"mag":3.5,"place":"12km NE of Edmond, Oklahoma","time":1434774965600,"updated":1436675835644,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kex","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kex&format=geojson","felt":5,"cdi":2.7,"mmi":3.93,"alert":null,"status":"reviewed","tsunami":0,"sig":190,"net":"us","code":"10002kex","ids":",us10002kex,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":53,"magType":"ml","type":"earthquake","title":"M 3.5 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3924,35.7446,5.667]},"id":"us10002kex"},
{"type":"Feature","properties":{"mag":3.6,"place":"12km NE of Edmond, Oklahoma","time":1434774543600,"updated":1436675315969,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kev","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kev&format=geojson","felt":174,"cdi":4.9,"mmi":3.56,"alert":null,"status":"reviewed","tsunami":0,"sig":285,"net":"us","code":"10002kev","ids":",us10002kev,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":53,"magType":"ml","type":"earthquake","title":"M 3.6 - 12km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3919,35.7447,5.649]},"id":"us10002kev"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km NE of Edmond, Oklahoma","time":1434772520900,"updated":1436674930923,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kjz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kjz&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002kjz","ids":",us10002kjz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3909,35.7466,5]},"id":"us10002kjz"},
{"type":"Feature","properties":{"mag":2.6,"place":"4km S of Langston, Oklahoma","time":1434772195700,"updated":1436674762876,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kk0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kk0&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002kk0","ids":",us10002kk0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.6 - 4km S of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.261,35.9026,5]},"id":"us10002kk0"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km N of Helena, Oklahoma","time":1434762647800,"updated":1436672803429,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l84","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l84&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002l84","ids":",us10002l84,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":216,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km N of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2763,36.5869,5.99]},"id":"us10002l84"},
{"type":"Feature","properties":{"mag":2.6,"place":"18km SSE of Tonkawa, Oklahoma","time":1434751199300,"updated":1435554789649,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kzd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kzd&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002kzd","ids":",us10002kzd,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.37,"gap":189,"magType":"ml","type":"earthquake","title":"M 2.6 - 18km SSE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2633,36.5116,7.988]},"id":"us10002kzd"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km NNE of Cherokee, Oklahoma","time":1434750964800,"updated":1435532146225,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kcm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kcm&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002kcm","ids":",us10002kcm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":116,"magType":"ml","type":"earthquake","title":"M 3.2 - 13km NNE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.276,36.8521,5.774]},"id":"us10002kcm"},
{"type":"Feature","properties":{"mag":2.7,"place":"22km W of Perry, Oklahoma","time":1434736208900,"updated":1437587965040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kyv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kyv&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002kyv","ids":",us10002kyv,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.7 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5383,36.2919,6.454]},"id":"us10002kyv"},
{"type":"Feature","properties":{"mag":3,"place":"18km S of Perry, Oklahoma","time":1434731028000,"updated":1436710072421,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kym","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kym&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002kym","ids":",us10002kym,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":69,"magType":"ml","type":"earthquake","title":"M 3.0 - 18km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2797,36.1248,3.542]},"id":"us10002kym"},
{"type":"Feature","properties":{"mag":3.1,"place":"22km W of Perry, Oklahoma","time":1434719767700,"updated":1436709839570,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k7v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k7v&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002k7v","ids":",us10002k7v,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":56,"magType":"ml","type":"earthquake","title":"M 3.1 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5337,36.2957,6.339]},"id":"us10002k7v"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km W of Perry, Oklahoma","time":1434689879400,"updated":1436658893655,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002kyi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002kyi&format=geojson","felt":3,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002kyi","ids":",us10002kyi,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.9 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5227,36.2856,6.324]},"id":"us10002kyi"},
{"type":"Feature","properties":{"mag":3,"place":"22km W of Perry, Oklahoma","time":1434683246400,"updated":1436571704914,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k5v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k5v&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002k5v","ids":",us10002k5v,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.81,"gap":56,"magType":"ml","type":"earthquake","title":"M 3.0 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5346,36.2954,5.16]},"id":"us10002k5v"},
{"type":"Feature","properties":{"mag":3.5,"place":"12km SSW of Guthrie, Oklahoma","time":1434669017000,"updated":1435468687054,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k40","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k40&format=geojson","felt":28,"cdi":4.3,"mmi":2.8,"alert":null,"status":"reviewed","tsunami":0,"sig":201,"net":"us","code":"10002k40","ids":",us10002k40,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.5 - 12km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4843,35.7735,6.87]},"id":"us10002k40"},
{"type":"Feature","properties":{"mag":3,"place":"12km SSW of Guthrie, Oklahoma","time":1434668578000,"updated":1438380186040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k3z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k3z&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002k3z","ids":",us10002k3z,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 12km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4822,35.7719,7.019]},"id":"us10002k3z"},
{"type":"Feature","properties":{"mag":3,"place":"12km ESE of Pawnee, Oklahoma","time":1434666554000,"updated":1435545013193,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k9u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k9u&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002k9u","ids":",us10002k9u,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":106,"magType":"ml","type":"earthquake","title":"M 3.0 - 12km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6757,36.3035,5.015]},"id":"us10002k9u"},
{"type":"Feature","properties":{"mag":2.9,"place":"12km N of Edmond, Oklahoma","time":1434663652700,"updated":1435545508132,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ka3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ka3&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002ka3","ids":",us10002ka3,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":74,"magType":"ml","type":"earthquake","title":"M 2.9 - 12km N of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4829,35.7694,6.016]},"id":"us10002ka3"},
{"type":"Feature","properties":{"mag":2.8,"place":"22km W of Helena, Oklahoma","time":1434649576900,"updated":1438038892040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k2z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k2z&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002k2z","ids":",us10002k2z,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":145,"magType":"ml","type":"earthquake","title":"M 2.8 - 22km W of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5179,36.5549,4.966]},"id":"us10002k2z"},
{"type":"Feature","properties":{"mag":2.5,"place":"9km W of Pawnee, Oklahoma","time":1434633056900,"updated":1436717845117,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jza","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jza&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002jza","ids":",us10002jza,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.5 - 9km W of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9147,36.3333,3.268]},"id":"us10002jza"},
{"type":"Feature","properties":{"mag":2.6,"place":"22km W of Perry, Oklahoma","time":1434584730100,"updated":1440031442040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jzc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jzc&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002jzc","ids":",us10002jzc,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.6 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.542,36.2893,6.408]},"id":"us10002jzc"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km SSE of Alva, Oklahoma","time":1434583398100,"updated":1440031442040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jzb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jzb&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002jzb","ids":",us10002jzb,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":178,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km SSE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6112,36.6918,4.269]},"id":"us10002jzb"},
{"type":"Feature","properties":{"mag":3.1,"place":"22km W of Perry, Oklahoma","time":1434568872200,"updated":1440031442040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jzw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jzw&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002jzw","ids":",us10002jzw,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":83,"magType":"ml","type":"earthquake","title":"M 3.1 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5408,36.2904,6.433]},"id":"us10002jzw"},
{"type":"Feature","properties":{"mag":4.3,"place":"21km W of Perry, Oklahoma","time":1434568628700,"updated":1440031442040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jrl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jrl&format=geojson","felt":288,"cdi":5.4,"mmi":4.36,"alert":"green","status":"reviewed","tsunami":0,"sig":440,"net":"us","code":"10002jrl","ids":",us10002jrl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.24,"gap":69,"magType":"mwr","type":"earthquake","title":"M 4.3 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.523,36.285,6.008]},"id":"us10002jrl"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km SW of Cherokee, Oklahoma","time":1434492678000,"updated":1440031440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jqm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jqm&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002jqm","ids":",us10002jqm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":116,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4592,36.6633,7.294]},"id":"us10002jqm"},
{"type":"Feature","properties":{"mag":3.1,"place":"18km S of Tonkawa, Oklahoma","time":1434468957600,"updated":1440031440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qbk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qbk&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"20002qbk","ids":",us20002qbk,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":104,"magType":"ml","type":"earthquake","title":"M 3.1 - 18km S of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2814,36.5158,4.871]},"id":"us20002qbk"},
{"type":"Feature","properties":{"mag":2.5,"place":"30km S of Alva, Oklahoma","time":1434459839900,"updated":1440031440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jub","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jub&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002jub","ids":",us10002jub,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.27,"gap":160,"magType":"ml","type":"earthquake","title":"M 2.5 - 30km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6055,36.5302,5]},"id":"us10002jub"},
{"type":"Feature","properties":{"mag":2.8,"place":"15km WNW of Medford, Oklahoma","time":1434458604700,"updated":1440031440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jrp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jrp&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002jrp","ids":",us10002jrp,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.8 - 15km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.897,36.8628,4.111]},"id":"us10002jrp"},
{"type":"Feature","properties":{"mag":2.8,"place":"22km SSW of McCord, Oklahoma","time":1434431517200,"updated":1440031439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jzg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jzg&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002jzg","ids":",us10002jzg,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.8 - 22km SSW of McCord, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1491,36.4997,6.002]},"id":"us10002jzg"},
{"type":"Feature","properties":{"mag":3.1,"place":"32km S of Alva, Oklahoma","time":1434427155520,"updated":1440031439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q6c","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q6c&format=geojson","felt":3,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"20002q6c","ids":",us20002q6c,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 32km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.706,36.511,5]},"id":"us20002q6c"},
{"type":"Feature","properties":{"mag":2.8,"place":"9km SW of Caldwell, Kansas","time":1434423107300,"updated":1440031439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l5l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l5l&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002l5l","ids":",us10002l5l,ismpkansas70113413,","sources":",us,ismpkansas,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":90,"magType":"ml","type":"earthquake","title":"M 2.8 - 9km SW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6701,36.9661,6.234]},"id":"us10002l5l"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km ESE of Pawnee, Oklahoma","time":1434421236900,"updated":1440031439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q56","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q56&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002q56","ids":",us20002q56,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":158,"magType":"ml","type":"earthquake","title":"M 3.2 - 13km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6614,36.3028,4.651]},"id":"us20002q56"},
{"type":"Feature","properties":{"mag":3.4,"place":"18km SE of Anthony, Kansas","time":1434397746560,"updated":1440031439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q1i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q1i&format=geojson","felt":7,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":181,"net":"us","code":"20002q1i","ids":",us20002q1i,ismpkansas70113298,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.074,"rms":0.6,"gap":69,"magType":"mb_lg","type":"earthquake","title":"M 3.4 - 18km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9107,37.0179,5]},"id":"us20002q1i"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km WNW of Medford, Oklahoma","time":1434396946200,"updated":1440031439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q24","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q24&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002q24","ids":",us20002q24,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.8 - 13km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8803,36.8469,5]},"id":"us20002q24"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km W of Perry, Oklahoma","time":1434396838700,"updated":1440031438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q1d","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q1d&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002q1d","ids":",us20002q1d,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.9 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5262,36.2925,6.676]},"id":"us20002q1d"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km WSW of Medford, Oklahoma","time":1434386683000,"updated":1440031438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q28","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q28&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002q28","ids":",us20002q28,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":165,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9369,36.7069,6.331]},"id":"us20002q28"},
{"type":"Feature","properties":{"mag":2.9,"place":"7km SE of Helena, Oklahoma","time":1434363945000,"updated":1440031438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002px7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002px7&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002px7","ids":",us20002px7,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.78,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 7km SE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2153,36.4984,7.077]},"id":"us20002px7"},
{"type":"Feature","properties":{"mag":2.8,"place":"0km NW of Pawnee, Oklahoma","time":1434363284400,"updated":1440031438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q58","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q58&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002q58","ids":",us20002q58,","sources":",us,","types":",cap,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":95,"magType":"ml","type":"earthquake","title":"M 2.8 - 0km NW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.807,36.3411,3.269]},"id":"us20002q58"},
{"type":"Feature","properties":{"mag":2.8,"place":"27km NE of Helena, Oklahoma","time":1434351936900,"updated":1440031438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qc8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qc8&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002qc8","ids":",us20002qc8,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.8 - 27km NE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0288,36.6943,6.947]},"id":"us20002qc8"},
{"type":"Feature","properties":{"mag":2.9,"place":"22km W of Perry, Oklahoma","time":1434309318100,"updated":1440031437040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l5t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l5t&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002l5t","ids":",us10002l5t,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.9 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5348,36.2953,6.815]},"id":"us10002l5t"},
{"type":"Feature","properties":{"mag":3.3,"place":"21km W of Perry, Oklahoma","time":1434309044000,"updated":1440031437040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002prz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002prz&format=geojson","felt":7,"cdi":4,"mmi":3.26,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"us","code":"20002prz","ids":",us20002prz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.3 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5306,36.2924,6.02]},"id":"us20002prz"},
{"type":"Feature","properties":{"mag":4,"place":"20km W of Perry, Oklahoma","time":1434305829000,"updated":1440031437040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002prt","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002prt&format=geojson","felt":37,"cdi":5,"mmi":4.15,"alert":"green","status":"reviewed","tsunami":0,"sig":265,"net":"us","code":"20002prt","ids":",us20002prt,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.85,"gap":52,"magType":"mwr","type":"earthquake","title":"M 4.0 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5217,36.286,6.278]},"id":"us20002prt"},
{"type":"Feature","properties":{"mag":2.9,"place":"14km WNW of Cherokee, Oklahoma","time":1434303302200,"updated":1440031437040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l6u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l6u&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002l6u","ids":",us10002l6u,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":131,"magType":"ml","type":"earthquake","title":"M 2.9 - 14km WNW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4943,36.8158,7.855]},"id":"us10002l6u"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km ESE of Pawnee, Oklahoma","time":1434278267700,"updated":1440031437040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pqs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pqs&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002pqs","ids":",us20002pqs,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":108,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6612,36.3038,1.551]},"id":"us20002pqs"},
{"type":"Feature","properties":{"mag":3.2,"place":"21km W of Perry, Oklahoma","time":1434261444800,"updated":1440031437040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ppv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ppv&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002ppv","ids":",us20002ppv,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":79,"magType":"ml","type":"earthquake","title":"M 3.2 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5251,36.2884,6.462]},"id":"us20002ppv"},
{"type":"Feature","properties":{"mag":3.3,"place":"9km WSW of Perry, Oklahoma","time":1434228882600,"updated":1440031436040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pnl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pnl&format=geojson","felt":3,"cdi":3.9,"mmi":3.68,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"20002pnl","ids":",us20002pnl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.3 - 9km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3864,36.2676,7.12]},"id":"us20002pnl"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km ESE of Pawnee, Oklahoma","time":1434217148800,"updated":1440031436040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002l74","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002l74&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002l74","ids":",us10002l74,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":107,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6639,36.3003,2.473]},"id":"us10002l74"},
{"type":"Feature","properties":{"mag":2.9,"place":"9km E of Edmond, Oklahoma","time":1434199845000,"updated":1440031436040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q4b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q4b&format=geojson","felt":9,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":133,"net":"us","code":"20002q4b","ids":",us20002q4b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 9km E of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.369,35.645,6.6]},"id":"us20002q4b"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km WNW of Perry, Oklahoma","time":1434192996400,"updated":1440031436040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pm9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pm9&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002pm9","ids":",us20002pm9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.9 - 21km WNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5176,36.3337,6.35]},"id":"us20002pm9"},
{"type":"Feature","properties":{"mag":3,"place":"21km SSW of McCord, Oklahoma","time":1434180814200,"updated":1440031436040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pls","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pls&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002pls","ids":",us20002pls,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":130,"magType":"ml","type":"earthquake","title":"M 3.0 - 21km SSW of McCord, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1454,36.5033,5.776]},"id":"us20002pls"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km ESE of Pawnee, Oklahoma","time":1434177612200,"updated":1440031436040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002plj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002plj&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002plj","ids":",us20002plj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":155,"magType":"ml","type":"earthquake","title":"M 3.1 - 13km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6676,36.2972,5]},"id":"us20002plj"},
{"type":"Feature","properties":{"mag":2.9,"place":"14km ESE of Pawnee, Oklahoma","time":1434153026900,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qfh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qfh&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002qfh","ids":",us20002qfh,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.82,"gap":122,"magType":"ml","type":"earthquake","title":"M 2.9 - 14km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6537,36.2953,5.005]},"id":"us20002qfh"},
{"type":"Feature","properties":{"mag":3.4,"place":"12km ESE of Pawnee, Oklahoma","time":1434151203600,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pj8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pj8&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"20002pj8","ids":",us20002pj8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":161,"magType":"ml","type":"earthquake","title":"M 3.4 - 12km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6732,36.296,0.978]},"id":"us20002pj8"},
{"type":"Feature","properties":{"mag":2.6,"place":"1km SE of Cherokee, Oklahoma","time":1434149512400,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qg1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qg1&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002qg1","ids":",us20002qg1,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":198,"magType":"ml","type":"earthquake","title":"M 2.6 - 1km SE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3425,36.7434,5]},"id":"us20002qg1"},
{"type":"Feature","properties":{"mag":3.7,"place":"12km ESE of Pawnee, Oklahoma","time":1434148943900,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pis","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pis&format=geojson","felt":8,"cdi":3.8,"mmi":4.01,"alert":null,"status":"reviewed","tsunami":0,"sig":214,"net":"us","code":"20002pis","ids":",us20002pis,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":122,"magType":"mwr","type":"earthquake","title":"M 3.7 - 12km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.674,36.3009,0.355]},"id":"us20002pis"},
{"type":"Feature","properties":{"mag":3.5,"place":"8km NNE of Harrah, Oklahoma","time":1434148538800,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pip","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pip&format=geojson","felt":3,"cdi":2,"mmi":3.1,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"20002pip","ids":",us20002pip,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":130,"magType":"ml","type":"earthquake","title":"M 3.5 - 8km NNE of Harrah, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1252,35.5581,6.527]},"id":"us20002pip"},
{"type":"Feature","properties":{"mag":2.9,"place":"12km NW of Edmond, Oklahoma","time":1434141872400,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q43","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q43&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002q43","ids":",us20002q43,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 12km NW of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5755,35.7369,6.798]},"id":"us20002q43"},
{"type":"Feature","properties":{"mag":2.5,"place":"12km ESE of Pawnee, Oklahoma","time":1434134314400,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pgp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pgp&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002pgp","ids":",us20002pgp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":156,"magType":"ml","type":"earthquake","title":"M 2.5 - 12km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6724,36.2933,5.215]},"id":"us20002pgp"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km W of Perry, Oklahoma","time":1434130434600,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pfv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pfv&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002pfv","ids":",us20002pfv,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5162,36.2855,5]},"id":"us20002pfv"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km W of Perry, Oklahoma","time":1434116302700,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pg2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pg2&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002pg2","ids":",us20002pg2,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":53,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.527,36.2868,6.603]},"id":"us20002pg2"},
{"type":"Feature","properties":{"mag":2.7,"place":"15km S of Blanchard, Oklahoma","time":1434109116200,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002phe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002phe&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002phe","ids":",us20002phe,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":124,"magType":"ml","type":"earthquake","title":"M 2.7 - 15km S of Blanchard, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6734,35.0029,3.446]},"id":"us20002phe"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km SE of Helena, Oklahoma","time":1434105724100,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002phw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002phw&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002phw","ids":",us20002phw,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":197,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km SE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1424,36.4765,5.981]},"id":"us20002phw"},
{"type":"Feature","properties":{"mag":2.8,"place":"22km W of Perry, Oklahoma","time":1434103794100,"updated":1440031435040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q3v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q3v&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002q3v","ids":",us20002q3v,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.534,36.294,6.457]},"id":"us20002q3v"},
{"type":"Feature","properties":{"mag":3.6,"place":"22km W of Perry, Oklahoma","time":1434083906500,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p8p","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p8p&format=geojson","felt":14,"cdi":4.9,"mmi":3.87,"alert":null,"status":"reviewed","tsunami":0,"sig":206,"net":"us","code":"20002p8p","ids":",us20002p8p,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.6 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.534,36.292,6.1]},"id":"us20002p8p"},
{"type":"Feature","properties":{"mag":2.8,"place":"21km W of Perry, Oklahoma","time":1434078685100,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qg6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qg6&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002qg6","ids":",us20002qg6,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":55,"magType":"ml","type":"earthquake","title":"M 2.8 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5297,36.2927,6.177]},"id":"us20002qg6"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km N of Perry, Oklahoma","time":1434078171900,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002k34","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002k34&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002k34","ids":",us10002k34,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km N of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2855,36.4381,5.329]},"id":"us10002k34"},
{"type":"Feature","properties":{"mag":2.9,"place":"20km W of Perry, Oklahoma","time":1434071635100,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p85","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p85&format=geojson","felt":3,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002p85","ids":",us20002p85,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.516,36.281,6.1]},"id":"us20002p85"},
{"type":"Feature","properties":{"mag":3.7,"place":"20km W of Perry, Oklahoma","time":1434065497900,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pbp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pbp&format=geojson","felt":7,"cdi":3.8,"mmi":3.71,"alert":null,"status":"reviewed","tsunami":0,"sig":213,"net":"us","code":"20002pbp","ids":",us20002pbp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":51,"magType":"mwr","type":"earthquake","title":"M 3.7 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5185,36.2829,5.651]},"id":"us20002pbp"},
{"type":"Feature","properties":{"mag":3.5,"place":"21km W of Perry, Oklahoma","time":1434065339600,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p7h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p7h&format=geojson","felt":3,"cdi":2.2,"mmi":3.51,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"20002p7h","ids":",us20002p7h,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":78,"magType":"mwr","type":"earthquake","title":"M 3.5 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5236,36.286,5.555]},"id":"us20002p7h"},
{"type":"Feature","properties":{"mag":3,"place":"16km WNW of Alva, Oklahoma","time":1434063355900,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p79","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p79&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002p79","ids":",us20002p79,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":185,"magType":"ml","type":"earthquake","title":"M 3.0 - 16km WNW of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.8326,36.8722,2.518]},"id":"us20002p79"},
{"type":"Feature","properties":{"mag":2.7,"place":"23km W of Perry, Oklahoma","time":1434061972800,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qda","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qda&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002qda","ids":",us20002qda,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":85,"magType":"ml","type":"earthquake","title":"M 2.7 - 23km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5497,36.2949,7.379]},"id":"us20002qda"},
{"type":"Feature","properties":{"mag":2.5,"place":"22km W of Perry, Oklahoma","time":1434061945700,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002qct","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002qct&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002qct","ids":",us20002qct,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.5 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5404,36.3075,5.874]},"id":"us20002qct"},
{"type":"Feature","properties":{"mag":2.8,"place":"23km W of Perry, Oklahoma","time":1434061518300,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002q19","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002q19&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002q19","ids":",us20002q19,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":84,"magType":"ml","type":"earthquake","title":"M 2.8 - 23km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5467,36.2973,6.962]},"id":"us20002q19"},
{"type":"Feature","properties":{"mag":2.5,"place":"9km NNE of Guthrie, Oklahoma","time":1434057145700,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p70","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p70&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"20002p70","ids":",us20002p70,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.5 - 9km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.402,35.9603,6.274]},"id":"us20002p70"},
{"type":"Feature","properties":{"mag":2.7,"place":"22km W of Perry, Oklahoma","time":1434045629000,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p51","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p51&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002p51","ids":",us20002p51,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.7 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5338,36.2942,6.318]},"id":"us20002p51"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km W of Perry, Oklahoma","time":1434044497200,"updated":1440031434040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p44","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p44&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002p44","ids":",us20002p44,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5265,36.2916,6.443]},"id":"us20002p44"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km W of Perry, Oklahoma","time":1434031590100,"updated":1440031433040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p0r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p0r&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002p0r","ids":",us20002p0r,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.21,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5282,36.2914,5.817]},"id":"us20002p0r"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km W of Perry, Oklahoma","time":1434018516000,"updated":1440031433040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nye","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nye&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002nye","ids":",us20002nye,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5155,36.2834,5]},"id":"us20002nye"},
{"type":"Feature","properties":{"mag":3.2,"place":"21km W of Perry, Oklahoma","time":1434017898000,"updated":1440031433040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ny8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ny8&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002ny8","ids":",us20002ny8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5259,36.2932,5.658]},"id":"us20002ny8"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km W of Perry, Oklahoma","time":1434016733000,"updated":1440031433040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pvx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pvx&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002pvx","ids":",us20002pvx,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":1.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5271,36.2939,56.21]},"id":"us20002pvx"},
{"type":"Feature","properties":{"mag":3,"place":"21km SSE of Medford, Oklahoma","time":1433989513400,"updated":1440031433040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nzi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nzi&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002nzi","ids":",us20002nzi,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":104,"magType":"ml","type":"earthquake","title":"M 3.0 - 21km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.667,36.6241,5]},"id":"us20002nzi"},
{"type":"Feature","properties":{"mag":2.6,"place":"25km NE of Cherokee, Oklahoma","time":1433971620700,"updated":1439212109040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p12","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p12&format=geojson","felt":1,"cdi":2.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002p12","ids":",us20002p12,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":297,"magType":"ml","type":"earthquake","title":"M 2.6 - 25km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1348,36.8959,3.686]},"id":"us20002p12"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km W of Perry, Oklahoma","time":1433965666200,"updated":1439212109040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nrz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nrz&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002nrz","ids":",us20002nrz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5171,36.2861,8.244]},"id":"us20002nrz"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km W of Perry, Oklahoma","time":1433958871700,"updated":1439212109040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002npz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002npz&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002npz","ids":",us20002npz,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5217,36.29,8.185]},"id":"us20002npz"},
{"type":"Feature","properties":{"mag":2.6,"place":"8km NNE of Harrah, Oklahoma","time":1433958075200,"updated":1439212109040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002npx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002npx&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002npx","ids":",us20002npx,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.6 - 8km NNE of Harrah, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1279,35.5636,7.201]},"id":"us20002npx"},
{"type":"Feature","properties":{"mag":3.4,"place":"20km W of Perry, Oklahoma","time":1433941508940,"updated":1439212108040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nk3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nk3&format=geojson","felt":8,"cdi":3.1,"mmi":3.92,"alert":null,"status":"reviewed","tsunami":0,"sig":180,"net":"us","code":"20002nk3","ids":",us20002nk3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.4 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.518,36.288,8]},"id":"us20002nk3"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km W of Perry, Oklahoma","time":1433908712300,"updated":1439212108040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nmn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nmn&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002nmn","ids":",us20002nmn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.31,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5296,36.2853,6.268]},"id":"us20002nmn"},
{"type":"Feature","properties":{"mag":2.5,"place":"22km W of Perry, Oklahoma","time":1433901304200,"updated":1439212108040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nng","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nng&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002nng","ids":",us20002nng,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.5 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5332,36.2934,5.903]},"id":"us20002nng"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km W of Perry, Oklahoma","time":1433900694100,"updated":1439212108040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ngl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ngl&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002ngl","ids":",us20002ngl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5061,36.2782,6.969]},"id":"us20002ngl"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km SE of Cherokee, Oklahoma","time":1433886359100,"updated":1439212107040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nqr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nqr&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002nqr","ids":",us20002nqr,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km SE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3182,36.7292,5]},"id":"us20002nqr"},
{"type":"Feature","properties":{"mag":3.3,"place":"11km E of Cherokee, Oklahoma","time":1433879276600,"updated":1439212107040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nca","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nca&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"20002nca","ids":",us20002nca,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.82,"gap":107,"magType":"ml","type":"earthquake","title":"M 3.3 - 11km E of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2235,36.7434,4.753]},"id":"us20002nca"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km S of Guthrie, Oklahoma","time":1433879070800,"updated":1439212107040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ne8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ne8&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002ne8","ids":",us20002ne8,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.84,"gap":102,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km S of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4427,35.7985,5.098]},"id":"us20002ne8"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km W of Perry, Oklahoma","time":1433817896900,"updated":1439212106040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002nc1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002nc1&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002nc1","ids":",us20002nc1,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.32,"gap":55,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5312,36.2902,6.069]},"id":"us20002nc1"},
{"type":"Feature","properties":{"mag":3.7,"place":"21km W of Perry, Oklahoma","time":1433813211400,"updated":1439212106040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002n57","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002n57&format=geojson","felt":11,"cdi":2.7,"mmi":4.01,"alert":"green","status":"reviewed","tsunami":0,"sig":214,"net":"us","code":"20002n57","ids":",us20002n57,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":54,"magType":"mwr","type":"earthquake","title":"M 3.7 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5312,36.286,6.171]},"id":"us20002n57"},
{"type":"Feature","properties":{"mag":2.8,"place":"10km ESE of Medford, Oklahoma","time":1433810805800,"updated":1439212106040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ne3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ne3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002ne3","ids":",us20002ne3,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":53,"magType":"ml","type":"earthquake","title":"M 2.8 - 10km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6347,36.7595,5.593]},"id":"us20002ne3"},
{"type":"Feature","properties":{"mag":3.9,"place":"21km W of Perry, Oklahoma","time":1433799418500,"updated":1439212106040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002n3y","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002n3y&format=geojson","felt":6,"cdi":4.5,"mmi":4.13,"alert":null,"status":"reviewed","tsunami":0,"sig":237,"net":"us","code":"20002n3y","ids":",us20002n3y,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":1.13,"gap":78,"magType":"mwr","type":"earthquake","title":"M 3.9 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5219,36.2852,2.959]},"id":"us20002n3y"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km ENE of Edmond, Oklahoma","time":1433788993800,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002n1z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002n1z&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002n1z","ids":",us20002n1z,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km ENE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3954,35.676,5]},"id":"us20002n1z"},
{"type":"Feature","properties":{"mag":2.8,"place":"7km ENE of Edmond, Oklahoma","time":1433787804800,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002n1a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002n1a&format=geojson","felt":14,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":125,"net":"us","code":"20002n1a","ids":",us20002n1a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.8 - 7km ENE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3957,35.6716,6.602]},"id":"us20002n1a"},
{"type":"Feature","properties":{"mag":2.7,"place":"12km NNW of Edmond, Oklahoma","time":1433776343850,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002pv9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002pv9&format=geojson","felt":6,"cdi":3.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":114,"net":"us","code":"20002pv9","ids":",us20002pv9,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.065,"rms":0.52,"gap":106,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 12km NNW of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5183,35.757,5]},"id":"us20002pv9"},
{"type":"Feature","properties":{"mag":2.5,"place":"9km ENE of Enid, Oklahoma","time":1433776107200,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mzw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mzw&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002mzw","ids":",us20002mzw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.26,"gap":98,"magType":"ml","type":"earthquake","title":"M 2.5 - 9km ENE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7738,36.4233,6.263]},"id":"us20002mzw"},
{"type":"Feature","properties":{"mag":2.8,"place":"9km ENE of Enid, Oklahoma","time":1433774883300,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002myq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002myq&format=geojson","felt":5,"cdi":3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":122,"net":"us","code":"20002myq","ids":",us20002myq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.27,"gap":126,"magType":"ml","type":"earthquake","title":"M 2.8 - 9km ENE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.774,36.4222,5.552]},"id":"us20002myq"},
{"type":"Feature","properties":{"mag":3.9,"place":"21km NW of Fairview, Oklahoma","time":1433769616000,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mx0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mx0&format=geojson","felt":9,"cdi":3.4,"mmi":3.71,"alert":null,"status":"reviewed","tsunami":0,"sig":237,"net":"us","code":"20002mx0","ids":",us20002mx0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":130,"magType":"ml","type":"earthquake","title":"M 3.9 - 21km NW of Fairview, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6607,36.3916,4.027]},"id":"us20002mx0"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km N of Crescent, Oklahoma","time":1433766973400,"updated":1439212105040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002n1c","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002n1c&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002n1c","ids":",us20002n1c,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":95,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km N of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5722,36.1275,5.787]},"id":"us20002n1c"},
{"type":"Feature","properties":{"mag":2.6,"place":"11km SW of Perry, Oklahoma","time":1433744312000,"updated":1439212104040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002p1a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002p1a&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002p1a","ids":",us20002p1a,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.6 - 11km SW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.373,36.2097,5]},"id":"us20002p1a"},
{"type":"Feature","properties":{"mag":3.4,"place":"8km SE of Harper, Kansas","time":1433737696240,"updated":1439212104040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mv8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mv8&format=geojson","felt":9,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":181,"net":"us","code":"20002mv8","ids":",us20002mv8,ismpkansas70111148,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.011,"rms":0.6,"gap":20,"magType":"mb_lg","type":"earthquake","title":"M 3.4 - 8km SE of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9583,37.232,5.66]},"id":"us20002mv8"},
{"type":"Feature","properties":{"mag":3.3,"place":"4km NNW of Medford, Oklahoma","time":1433708425860,"updated":1439212104040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mtp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mtp&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"20002mtp","ids":",us20002mtp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.078,"rms":0.4,"gap":75,"magType":"mb_lg","type":"earthquake","title":"M 3.3 - 4km NNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7617,36.844,5]},"id":"us20002mtp"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km WNW of Medford, Oklahoma","time":1433708410430,"updated":1439212104040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002n4l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002n4l&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002n4l","ids":",us20002n4l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.035,"rms":0.3,"gap":46,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8171,36.8414,5.55]},"id":"us20002n4l"},
{"type":"Feature","properties":{"mag":3.5,"place":"7km ENE of Edmond, Oklahoma","time":1433697321000,"updated":1439212103040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ms9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ms9&format=geojson","felt":79,"cdi":4.6,"mmi":3.92,"alert":null,"status":"reviewed","tsunami":0,"sig":225,"net":"us","code":"20002ms9","ids":",us20002ms9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.5 - 7km ENE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3974,35.6767,5]},"id":"us20002ms9"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km S of Perry, Oklahoma","time":1433695015100,"updated":1439212103040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mrx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mrx&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002mrx","ids":",us20002mrx,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":61,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3089,36.2031,5.629]},"id":"us20002mrx"},
{"type":"Feature","properties":{"mag":3.1,"place":"10km SSW of Caldwell, Kansas","time":1433681766900,"updated":1439212103040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mqr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mqr&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002mqr","ids":",us20002mqr,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.1 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6353,36.944,6.509]},"id":"us20002mqr"},
{"type":"Feature","properties":{"mag":2.7,"place":"Kansas","time":1433663747460,"updated":1437348079600,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70110828","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70110828&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"ismpkansas","code":"70110828","ids":",ismpkansas70110828,","sources":",ismpkansas,","types":",origin,phase-data,","nst":14,"dmin":null,"rms":0.06,"gap":155,"magType":"ml","type":"earthquake","title":"M 2.7 - Kansas"},"geometry":{"type":"Point","coordinates":[-98.0343333,37.2443333,4.58]},"id":"ismpkansas70110828"},
{"type":"Feature","properties":{"mag":3,"place":"22km W of Perry, Oklahoma","time":1433606126000,"updated":1439212102040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mkf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mkf&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002mkf","ids":",us20002mkf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":61,"magType":"ml","type":"earthquake","title":"M 3.0 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5339,36.2515,6.668]},"id":"us20002mkf"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km N of Yale, Oklahoma","time":1433595665400,"updated":1439212102040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mjs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mjs&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002mjs","ids":",us20002mjs,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.92,"gap":99,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km N of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7177,36.2319,5.357]},"id":"us20002mjs"},
{"type":"Feature","properties":{"mag":4.1,"place":"9km ESE of Harper, Kansas","time":1433545967450,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mgp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mgp&format=geojson","felt":42,"cdi":4.2,"mmi":4.29,"alert":"green","status":"reviewed","tsunami":0,"sig":276,"net":"us","code":"20002mgp","ids":",us20002mgp,ismpkansas70110343,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.054,"rms":1,"gap":17,"magType":"mwr","type":"earthquake","title":"M 4.1 - 9km ESE of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9213,37.2648,2.35]},"id":"us20002mgp"},
{"type":"Feature","properties":{"mag":3.6,"place":"9km NE of Anthony, Kansas","time":1433545961270,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mgn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mgn&format=geojson","felt":0,"cdi":1,"mmi":4.15,"alert":"green","status":"reviewed","tsunami":0,"sig":199,"net":"us","code":"20002mgn","ids":",us20002mgn,ismpkansas70110313,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.007,"rms":0.59,"gap":22,"magType":"mb","type":"earthquake","title":"M 3.6 - 9km NE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9677,37.2194,5.11]},"id":"us20002mgn"},
{"type":"Feature","properties":{"mag":2.63,"place":"Kansas","time":1433545509770,"updated":1437348009330,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70110308","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70110308&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":106,"net":"ismpkansas","code":"70110308","ids":",ismpkansas70110308,","sources":",ismpkansas,","types":",origin,phase-data,","nst":13,"dmin":0.009742,"rms":0.06,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.6 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.9621667,37.2335,5.31]},"id":"ismpkansas70110308"},
{"type":"Feature","properties":{"mag":3.2,"place":"9km SE of Harper, Kansas","time":1433544785140,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mgd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mgd&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002mgd","ids":",us20002mgd,ismpkansas70110328,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.015,"rms":0.65,"gap":39,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 9km SE of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9528,37.2214,7.36]},"id":"us20002mgd"},
{"type":"Feature","properties":{"mag":2.67,"place":"Kansas","time":1433544746410,"updated":1437347997080,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70110288","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70110288&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":110,"net":"ismpkansas","code":"70110288","ids":",ismpkansas70110288,","sources":",ismpkansas,","types":",origin,phase-data,","nst":12,"dmin":0.008973,"rms":0.05,"gap":103,"magType":"ml","type":"earthquake","title":"M 2.7 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.9633333,37.2333333,5.45]},"id":"ismpkansas70110288"},
{"type":"Feature","properties":{"mag":2.8,"place":"6km ESE of Harper, Kansas","time":1433544746090,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002jwe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002jwe&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002jwe","ids":",us10002jwe,ismpkansas70110318,","sources":",us,ismpkansas,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.041,"rms":0.38,"gap":132,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 6km ESE of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9611,37.2676,7.53]},"id":"us10002jwe"},
{"type":"Feature","properties":{"mag":2.7,"place":"15km S of Perry, Oklahoma","time":1433543109740,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ptb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ptb&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002ptb","ids":",us20002ptb,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.372,"rms":0.45,"gap":59,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 15km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2979,36.1476,3.59]},"id":"us20002ptb"},
{"type":"Feature","properties":{"mag":3.2,"place":"8km NE of Stillwater, Oklahoma","time":1433529095200,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mem","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mem&format=geojson","felt":34,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"us","code":"20002mem","ids":",us20002mem,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":62,"magType":"ml","type":"earthquake","title":"M 3.2 - 8km NE of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9835,36.1659,5.237]},"id":"us20002mem"},
{"type":"Feature","properties":{"mag":3.3,"place":"11km SSE of Cherokee, Oklahoma","time":1433527068300,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002meg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002meg&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"20002meg","ids":",us20002meg,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.84,"gap":106,"magType":"ml","type":"earthquake","title":"M 3.3 - 11km SSE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2951,36.6636,4.632]},"id":"us20002meg"},
{"type":"Feature","properties":{"mag":3,"place":"20km W of Perry, Oklahoma","time":1433510897100,"updated":1439212101040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mb9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mb9&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002mb9","ids":",us20002mb9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":56,"magType":"ml","type":"earthquake","title":"M 3.0 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5191,36.3187,6.92]},"id":"us20002mb9"},
{"type":"Feature","properties":{"mag":2.9,"place":"12km SE of Alva, Oklahoma","time":1433486373500,"updated":1439212100040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m8c","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m8c&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002m8c","ids":",us20002m8c,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.32,"gap":131,"magType":"ml","type":"earthquake","title":"M 2.9 - 12km SE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5811,36.7117,4.954]},"id":"us20002m8c"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km ESE of Medford, Oklahoma","time":1433482213500,"updated":1439212100040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mf5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mf5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002mf5","ids":",us20002mf5,ismpkansas70110153,","sources":",us,ismpkansas,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":108,"magType":"ml","type":"earthquake","title":"M 2.8 - 8km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6463,36.7791,5]},"id":"us20002mf5"},
{"type":"Feature","properties":{"mag":2.6,"place":"22km NE of Mooreland, Oklahoma","time":1433451094800,"updated":1439212100040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m59","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m59&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002m59","ids":",us20002m59,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":248,"magType":"ml","type":"earthquake","title":"M 2.6 - 22km NE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0018,36.5513,5]},"id":"us20002m59"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NW of Chandler, Oklahoma","time":1433440923400,"updated":1439212100040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m32","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m32&format=geojson","felt":3,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"20002m32","ids":",us20002m32,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":58,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9885,35.7864,6.06]},"id":"us20002m32"},
{"type":"Feature","properties":{"mag":3.2,"place":"18km SSE of Tonkawa, Oklahoma","time":1433414943000,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lze","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lze&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002lze","ids":",us20002lze,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 18km SSE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2556,36.5145,6.23]},"id":"us20002lze"},
{"type":"Feature","properties":{"mag":2.5,"place":"10km NNW of Yale, Oklahoma","time":1433414032900,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m22","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m22&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002m22","ids":",us20002m22,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":94,"magType":"ml","type":"earthquake","title":"M 2.5 - 10km NNW of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7606,36.1999,5.475]},"id":"us20002m22"},
{"type":"Feature","properties":{"mag":2.5,"place":"10km ENE of Perkins, Oklahoma","time":1433413354600,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m0q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m0q&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002m0q","ids":",us20002m0q,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.5 - 10km ENE of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9323,36.0267,6.035]},"id":"us20002m0q"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km WSW of Perry, Oklahoma","time":1433405238400,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m0b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m0b&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002m0b","ids":",us20002m0b,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":50,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4486,36.2368,7.117]},"id":"us20002m0b"},
{"type":"Feature","properties":{"mag":2.5,"place":"8km S of Guthrie, Oklahoma","time":1433398818300,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m0a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m0a&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002m0a","ids":",us20002m0a,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":91,"magType":"ml","type":"earthquake","title":"M 2.5 - 8km S of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4394,35.8049,6.357]},"id":"us20002m0a"},
{"type":"Feature","properties":{"mag":2.9,"place":"24km WNW of Pawnee, Oklahoma","time":1433394443400,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002m05","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002m05&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002m05","ids":",us20002m05,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":76,"magType":"ml","type":"earthquake","title":"M 2.9 - 24km WNW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0395,36.4442,3.864]},"id":"us20002m05"},
{"type":"Feature","properties":{"mag":3.2,"place":"11km E of Alva, Oklahoma","time":1433377072200,"updated":1439212099040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lwi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lwi&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002lwi","ids":",us20002lwi,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":134,"magType":"ml","type":"earthquake","title":"M 3.2 - 11km E of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5401,36.8023,5]},"id":"us20002lwi"},
{"type":"Feature","properties":{"mag":2.5,"place":"17km SSW of Medford, Oklahoma","time":1433349976300,"updated":1438995016040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lrn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lrn&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002lrn","ids":",us20002lrn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":91,"magType":"ml","type":"earthquake","title":"M 2.5 - 17km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8267,36.6647,5.692]},"id":"us20002lrn"},
{"type":"Feature","properties":{"mag":3,"place":"13km NW of Chandler, Oklahoma","time":1433310939900,"updated":1438995010040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lmn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lmn&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002lmn","ids":",us20002lmn,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":54,"magType":"ml","type":"earthquake","title":"M 3.0 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9896,35.7885,6.854]},"id":"us20002lmn"},
{"type":"Feature","properties":{"mag":2.5,"place":"25km ENE of Cherokee, Oklahoma","time":1433309656200,"updated":1438995010040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lp4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lp4&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002lp4","ids":",us20002lp4,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":178,"magType":"ml","type":"earthquake","title":"M 2.5 - 25km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1071,36.8713,4.585]},"id":"us20002lp4"},
{"type":"Feature","properties":{"mag":3.6,"place":"13km NW of Chandler, Oklahoma","time":1433309308000,"updated":1438995010040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lja","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lja&format=geojson","felt":12,"cdi":4,"mmi":3.57,"alert":null,"status":"reviewed","tsunami":0,"sig":204,"net":"us","code":"20002lja","ids":",us20002lja,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.6 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9874,35.7866,6.113]},"id":"us20002lja"},
{"type":"Feature","properties":{"mag":2.8,"place":"27km E of Cherokee, Oklahoma","time":1433299187800,"updated":1438995009040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lq6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lq6&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002lq6","ids":",us20002lq6,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":121,"magType":"ml","type":"earthquake","title":"M 2.8 - 27km E of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0515,36.7597,6.084]},"id":"us20002lq6"},
{"type":"Feature","properties":{"mag":2.5,"place":"22km ENE of Mooreland, Oklahoma","time":1433294604700,"updated":1438995008040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lr4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lr4&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002lr4","ids":",us20002lr4,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":281,"magType":"ml","type":"earthquake","title":"M 2.5 - 22km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9776,36.5297,3.089]},"id":"us20002lr4"},
{"type":"Feature","properties":{"mag":3.7,"place":"13km NW of Chandler, Oklahoma","time":1433280896200,"updated":1438995005040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lg2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lg2&format=geojson","felt":6,"cdi":4.5,"mmi":3.42,"alert":null,"status":"reviewed","tsunami":0,"sig":213,"net":"us","code":"20002lg2","ids":",us20002lg2,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":58,"magType":"ml","type":"earthquake","title":"M 3.7 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9885,35.7877,5.758]},"id":"us20002lg2"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km W of Perry, Oklahoma","time":1433275985490,"updated":1438995004040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lea","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lea&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002lea","ids":",us20002lea,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.512,36.285,8.4]},"id":"us20002lea"},
{"type":"Feature","properties":{"mag":2.8,"place":"9km WSW of Perry, Oklahoma","time":1433268583300,"updated":1438995004040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lmh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lmh&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002lmh","ids":",us20002lmh,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":77,"magType":"ml","type":"earthquake","title":"M 2.8 - 9km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3879,36.2657,6.683]},"id":"us20002lmh"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km SW of Tonkawa, Oklahoma","time":1433265576300,"updated":1438995003040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ldj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ldj&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002ldj","ids":",us20002ldj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km SW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4225,36.5748,8.12]},"id":"us20002ldj"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km WSW of Perry, Oklahoma","time":1433263336300,"updated":1438995003040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lds","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lds&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002lds","ids":",us20002lds,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":46,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3847,36.2652,6.898]},"id":"us20002lds"},
{"type":"Feature","properties":{"mag":2.8,"place":"10km S of Alva, Oklahoma","time":1433240323800,"updated":1438995000040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l8v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l8v&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002l8v","ids":",us20002l8v,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":138,"magType":"ml","type":"earthquake","title":"M 2.8 - 10km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6559,36.7121,4.973]},"id":"us20002l8v"},
{"type":"Feature","properties":{"mag":2.9,"place":"23km SSW of Medford, Oklahoma","time":1433235031500,"updated":1438994999040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lat","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lat&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002lat","ids":",us20002lat,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.9 - 23km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8154,36.6077,7.032]},"id":"us20002lat"},
{"type":"Feature","properties":{"mag":2.9,"place":"10km SSW of Caldwell, Kansas","time":1433232679000,"updated":1438994998040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lp0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lp0&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002lp0","ids":",us20002lp0,","sources":",us,","types":",dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.9 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6324,36.9426,5]},"id":"us20002lp0"},
{"type":"Feature","properties":{"mag":3.6,"place":"8km S of Caldwell, Kansas","time":1433231751200,"updated":1438994998040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l6t","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l6t&format=geojson","felt":7,"cdi":3.1,"mmi":3.75,"alert":null,"status":"reviewed","tsunami":0,"sig":202,"net":"us","code":"20002l6t","ids":",us20002l6t,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.6 - 8km S of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.618,36.952,7.6]},"id":"us20002l6t"},
{"type":"Feature","properties":{"mag":3,"place":"9km S of Caldwell, Kansas","time":1433227522400,"updated":1438994997040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lr3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lr3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002lr3","ids":",us20002lr3,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":59,"magType":"ml","type":"earthquake","title":"M 3.0 - 9km S of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6187,36.9443,5]},"id":"us20002lr3"},
{"type":"Feature","properties":{"mag":3,"place":"5km W of Fairview, Oklahoma","time":1433221099700,"updated":1438994996040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lfi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lfi&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002lfi","ids":",us20002lfi,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":99,"magType":"ml","type":"earthquake","title":"M 3.0 - 5km W of Fairview, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5366,36.2674,8.433]},"id":"us20002lfi"},
{"type":"Feature","properties":{"mag":3,"place":"9km WSW of Perry, Oklahoma","time":1433218738100,"updated":1438994996040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002lpk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002lpk&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002lpk","ids":",us20002lpk,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":46,"magType":"ml","type":"earthquake","title":"M 3.0 - 9km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3869,36.2626,7.077]},"id":"us20002lpk"},
{"type":"Feature","properties":{"mag":3,"place":"17km SE of Anthony, Kansas","time":1433206689260,"updated":1438994993040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l54","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l54&format=geojson","felt":3,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002l54","ids":",us20002l54,ismpkansas70109628,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.166,"rms":0.63,"gap":39,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 17km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9035,37.0317,5.35]},"id":"us20002l54"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NW of Chandler, Oklahoma","time":1433195881700,"updated":1438994991040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l8q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l8q&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002l8q","ids":",us20002l8q,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9895,35.7874,5]},"id":"us20002l8q"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km SSW of Medford, Oklahoma","time":1433195851500,"updated":1438994991040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l8h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l8h&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002l8h","ids":",us20002l8h,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":234,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8219,36.63,8.211]},"id":"us20002l8h"},
{"type":"Feature","properties":{"mag":3.3,"place":"13km NW of Chandler, Oklahoma","time":1433194316500,"updated":1438994990040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l4i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l4i&format=geojson","felt":6,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"us","code":"20002l4i","ids":",us20002l4i,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":113,"magType":"ml","type":"earthquake","title":"M 3.3 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9874,35.7859,6.55]},"id":"us20002l4i"},
{"type":"Feature","properties":{"mag":2.5,"place":"11km W of Helena, Oklahoma","time":1433192564900,"updated":1438994990040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l8s","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l8s&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002l8s","ids":",us20002l8s,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":137,"magType":"ml","type":"earthquake","title":"M 2.5 - 11km W of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.401,36.5359,4.189]},"id":"us20002l8s"},
{"type":"Feature","properties":{"mag":3.5,"place":"13km NW of Chandler, Oklahoma","time":1433186383800,"updated":1438994989040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l39","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l39&format=geojson","felt":6,"cdi":4.3,"mmi":3.09,"alert":null,"status":"reviewed","tsunami":0,"sig":191,"net":"us","code":"20002l39","ids":",us20002l39,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":58,"magType":"ml","type":"earthquake","title":"M 3.5 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9872,35.788,6.269]},"id":"us20002l39"},
{"type":"Feature","properties":{"mag":3.5,"place":"13km NW of Chandler, Oklahoma","time":1433180134000,"updated":1438994988040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l2q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l2q&format=geojson","felt":15,"cdi":4.3,"mmi":3.87,"alert":null,"status":"reviewed","tsunami":0,"sig":195,"net":"us","code":"20002l2q","ids":",us20002l2q,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":58,"magType":"mwr","type":"earthquake","title":"M 3.5 - 13km NW of Chandler, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9871,35.7887,6.167]},"id":"us20002l2q"},
{"type":"Feature","properties":{"mag":3.1,"place":"7km WSW of Langston, Oklahoma","time":1433171996100,"updated":1438994987040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l1l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l1l&format=geojson","felt":3,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"20002l1l","ids":",us20002l1l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.31,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.1 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3367,35.9226,5.973]},"id":"us20002l1l"},
{"type":"Feature","properties":{"mag":2.9,"place":"14km WNW of Helena, Oklahoma","time":1433168330300,"updated":1438994986040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l1g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l1g&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002l1g","ids":",us20002l1g,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":143,"magType":"ml","type":"earthquake","title":"M 2.9 - 14km WNW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4113,36.6156,4.333]},"id":"us20002l1g"},
{"type":"Feature","properties":{"mag":2.69,"place":"Kansas","time":1433163181400,"updated":1437347927800,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70109513","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70109513&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":111,"net":"ismpkansas","code":"70109513","ids":",ismpkansas70109513,","sources":",ismpkansas,","types":",origin,phase-data,","nst":12,"dmin":0.1504,"rms":0.06,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.7 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.9183333,37.0553333,7.41]},"id":"ismpkansas70109513"},
{"type":"Feature","properties":{"mag":2.7,"place":"11km E of Alva, Oklahoma","time":1433162446200,"updated":1438994984040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l1a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l1a&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002l1a","ids":",us20002l1a,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":134,"magType":"ml","type":"earthquake","title":"M 2.7 - 11km E of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5377,36.8036,6.464]},"id":"us20002l1a"},
{"type":"Feature","properties":{"mag":2.5,"place":"5km SW of Langston, Oklahoma","time":1433123041300,"updated":1438994977040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l1i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l1i&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002l1i","ids":",us20002l1i,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.5 - 5km SW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3094,35.9146,5.08]},"id":"us20002l1i"},
{"type":"Feature","properties":{"mag":3.1,"place":"10km S of Alva, Oklahoma","time":1433103502000,"updated":1438994973040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002l14","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002l14&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002l14","ids":",us20002l14,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":138,"magType":"ml","type":"earthquake","title":"M 3.1 - 10km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6523,36.7083,4.869]},"id":"us20002l14"},
{"type":"Feature","properties":{"mag":3.2,"place":"14km SE of Anthony, Kansas","time":1433020224080,"updated":1438994963040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002kqk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002kqk&format=geojson","felt":4,"cdi":3.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"20002kqk","ids":",us20002kqk,ismpkansas70108273,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.15,"rms":0.31,"gap":65,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 14km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9219,37.0506,5.19]},"id":"us20002kqk"},
{"type":"Feature","properties":{"mag":2.7,"place":"16km NE of Mooreland, Oklahoma","time":1432996428360,"updated":1438994957040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002kns","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002kns&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002kns","ids":",us20002kns,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.156,"rms":0.82,"gap":49,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 16km NE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0628,36.5284,5]},"id":"us20002kns"},
{"type":"Feature","properties":{"mag":3.6,"place":"16km SE of Anthony, Kansas","time":1432984900050,"updated":1438994954040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ki2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ki2&format=geojson","felt":14,"cdi":5.3,"mmi":3.71,"alert":null,"status":"reviewed","tsunami":0,"sig":207,"net":"us","code":"20002ki2","ids":",us20002ki2,ismpkansas70108178,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.157,"rms":0.48,"gap":17,"magType":"mwr","type":"earthquake","title":"M 3.6 - 16km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9047,37.0411,5]},"id":"us20002ki2"},
{"type":"Feature","properties":{"mag":2.7,"place":"2km WNW of Cushing, Oklahoma","time":1432897720500,"updated":1438994942040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002kdf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002kdf&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002kdf","ids":",us20002kdf,","sources":",us,","types":",cap,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":74,"magType":"ml","type":"earthquake","title":"M 2.7 - 2km WNW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7949,35.9901,4.857]},"id":"us20002kdf"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km NW of Perkins, Oklahoma","time":1432860541000,"updated":1438994936040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k7l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k7l&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"20002k7l","ids":",us20002k7l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km NW of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0616,36.005,4.565]},"id":"us20002k7l"},
{"type":"Feature","properties":{"mag":2.7,"place":"9km S of Boley, Oklahoma","time":1432847080700,"updated":1438994933040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002kd4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002kd4&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002kd4","ids":",us20002kd4,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.7 - 9km S of Boley, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.4925,35.4052,5]},"id":"us20002kd4"},
{"type":"Feature","properties":{"mag":2.5,"place":"3km WSW of Medford, Oklahoma","time":1432833197300,"updated":1438994932040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k5j","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k5j&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002k5j","ids":",us20002k5j,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":39,"magType":"ml","type":"earthquake","title":"M 2.5 - 3km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.765,36.7932,5.126]},"id":"us20002k5j"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km WNW of Tonkawa, Oklahoma","time":1432832540400,"updated":1438994932040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k62","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k62&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002k62","ids":",us20002k62,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":79,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km WNW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4672,36.7452,5.583]},"id":"us20002k62"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km ESE of Anthony, Kansas","time":1432831472360,"updated":1438994931040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k69","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k69&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"20002k69","ids":",us20002k69,ismpkansas70107783,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.104,"rms":0.32,"gap":55,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 18km ESE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.8496,37.0775,5]},"id":"us20002k69"},
{"type":"Feature","properties":{"mag":2.5,"place":"25km SSE of Helena, Oklahoma","time":1432824523000,"updated":1438994931040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k0s","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k0s&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002k0s","ids":",us20002k0s,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.22,"gap":167,"magType":"ml","type":"earthquake","title":"M 2.5 - 25km SSE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1937,36.3212,6.708]},"id":"us20002k0s"},
{"type":"Feature","properties":{"mag":2.7,"place":"14km ESE of Pawnee, Oklahoma","time":1432818040900,"updated":1438994930040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k0k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k0k&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002k0k","ids":",us20002k0k,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.95,"gap":160,"magType":"ml","type":"earthquake","title":"M 2.7 - 14km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.658,36.2924,4.563]},"id":"us20002k0k"},
{"type":"Feature","properties":{"mag":3.5,"place":"17km S of Perry, Oklahoma","time":1432814427000,"updated":1438994929040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002jz4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002jz4&format=geojson","felt":37,"cdi":4.2,"mmi":3.85,"alert":null,"status":"reviewed","tsunami":0,"sig":204,"net":"us","code":"20002jz4","ids":",us20002jz4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.5 - 17km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2794,36.1356,5.664]},"id":"us20002jz4"},
{"type":"Feature","properties":{"mag":3,"place":"13km NE of Edmond, Oklahoma","time":1432773501200,"updated":1438994924040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002jx0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002jx0&format=geojson","felt":9,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":142,"net":"us","code":"20002jx0","ids":",us20002jx0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3888,35.7458,5.778]},"id":"us20002jx0"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km S of Medford, Oklahoma","time":1432757854400,"updated":1438133749040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002k5u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002k5u&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002k5u","ids":",us20002k5u,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.71,36.6162,6.479]},"id":"us20002k5u"},
{"type":"Feature","properties":{"mag":3.1,"place":"13km ESE of Pawnee, Oklahoma","time":1432754003000,"updated":1438133749040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002cp3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002cp3&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002cp3","ids":",us10002cp3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":108,"magType":"ml","type":"earthquake","title":"M 3.1 - 13km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6613,36.3055,5.58]},"id":"us10002cp3"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km S of Medford, Oklahoma","time":1432733578500,"updated":1438133748040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002cjn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002cjn&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002cjn","ids":",us10002cjn,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7082,36.6157,6.113]},"id":"us10002cjn"},
{"type":"Feature","properties":{"mag":2.5,"place":"2km E of Choctaw, Oklahoma","time":1432697047300,"updated":1438133748040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002cez","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002cez&format=geojson","felt":11,"cdi":3.6,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":100,"net":"us","code":"10002cez","ids":",us10002cez,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":108,"magType":"ml","type":"earthquake","title":"M 2.5 - 2km E of Choctaw, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2438,35.4941,6.487]},"id":"us10002cez"},
{"type":"Feature","properties":{"mag":3.1,"place":"8km NE of Guthrie, Oklahoma","time":1432683039100,"updated":1438133747040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002cca","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002cca&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"10002cca","ids":",us10002cca,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.1 - 8km NE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3447,35.9247,5.752]},"id":"us10002cca"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km WSW of Langston, Oklahoma","time":1432682983600,"updated":1438133747040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002cev","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002cev&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002cev","ids":",us10002cev,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3392,35.9232,4.214]},"id":"us10002cev"},
{"type":"Feature","properties":{"mag":3,"place":"19km ENE of Mooreland, Oklahoma","time":1432679265600,"updated":1438133747040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002cjs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002cjs&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002cjs","ids":",us10002cjs,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":228,"magType":"ml","type":"earthquake","title":"M 3.0 - 19km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0078,36.5212,7.24]},"id":"us10002cjs"},
{"type":"Feature","properties":{"mag":3,"place":"22km WSW of Perry, Oklahoma","time":1432661444700,"updated":1438133746040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c9a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c9a&format=geojson","felt":4,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":140,"net":"us","code":"10002c9a","ids":",us10002c9a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":48,"magType":"ml","type":"earthquake","title":"M 3.0 - 22km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5317,36.2471,6.973]},"id":"us10002c9a"},
{"type":"Feature","properties":{"mag":2.5,"place":"24km W of Perry, Oklahoma","time":1432656242300,"updated":1438133745040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c8h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c8h&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002c8h","ids":",us10002c8h,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.22,"gap":61,"magType":"ml","type":"earthquake","title":"M 2.5 - 24km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5614,36.2965,6.817]},"id":"us10002c8h"},
{"type":"Feature","properties":{"mag":3,"place":"24km W of Perry, Oklahoma","time":1432656007900,"updated":1438133745040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c8g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c8g&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002c8g","ids":",us10002c8g,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.32,"gap":61,"magType":"ml","type":"earthquake","title":"M 3.0 - 24km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5599,36.2981,6.915]},"id":"us10002c8g"},
{"type":"Feature","properties":{"mag":3,"place":"24km W of Perry, Oklahoma","time":1432650986700,"updated":1438133745040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c7r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c7r&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002c7r","ids":",us10002c7r,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.31,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.0 - 24km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5555,36.2963,7.26]},"id":"us10002c7r"},
{"type":"Feature","properties":{"mag":2.6,"place":"24km W of Perry, Oklahoma","time":1432649779000,"updated":1438133745040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c95","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c95&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002c95","ids":",us10002c95,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.29,"gap":60,"magType":"ml","type":"earthquake","title":"M 2.6 - 24km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5561,36.2956,7.07]},"id":"us10002c95"},
{"type":"Feature","properties":{"mag":3,"place":"24km W of Perry, Oklahoma","time":1432648215300,"updated":1438133745040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c7l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c7l&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"10002c7l","ids":",us10002c7l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.0 - 24km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5585,36.2974,7.221]},"id":"us10002c7l"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km ESE of Luther, Oklahoma","time":1432557480800,"updated":1438133743040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c0h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c0h&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"10002c0h","ids":",us10002c0h,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 13km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.065,35.597,5.9]},"id":"us10002c0h"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km ENE of Edmond, Oklahoma","time":1432540030700,"updated":1438133742040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002c4a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002c4a&format=geojson","felt":9,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":115,"net":"us","code":"10002c4a","ids":",us10002c4a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km ENE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3933,35.6777,4.791]},"id":"us10002c4a"},
{"type":"Feature","properties":{"mag":2.89,"place":"Kansas","time":1432530651220,"updated":1437347818760,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70107078","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70107078&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":128,"net":"ismpkansas","code":"70107078","ids":",ismpkansas70107078,","sources":",ismpkansas,","types":",origin,phase-data,","nst":17,"dmin":0.0226,"rms":0.06,"gap":76,"magType":"ml","type":"earthquake","title":"M 2.9 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.6465,37.138,5.45]},"id":"ismpkansas70107078"},
{"type":"Feature","properties":{"mag":3.4,"place":"12km NNW of Caldwell, Kansas","time":1432504187910,"updated":1438133741040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002byf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002byf&format=geojson","felt":15,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":183,"net":"us","code":"10002byf","ids":",us10002byf,ismpkansas70106943,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.026,"rms":0.33,"gap":57,"magType":"mb_lg","type":"earthquake","title":"M 3.4 - 12km NNW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6502,37.142,6.41]},"id":"us10002byf"},
{"type":"Feature","properties":{"mag":2.7,"place":"5km NE of Edmond, Oklahoma","time":1432450494830,"updated":1438133739040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bw8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bw8&format=geojson","felt":16,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":118,"net":"us","code":"10002bw8","ids":",us10002bw8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.107,"rms":0.44,"gap":42,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 5km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4346,35.6902,6.77]},"id":"us10002bw8"},
{"type":"Feature","properties":{"mag":4,"place":"30km SW of Pratt, Kansas","time":1432406668360,"updated":1438133736040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bup","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bup&format=geojson","felt":273,"cdi":5.4,"mmi":4.13,"alert":"green","status":"reviewed","tsunami":0,"sig":394,"net":"us","code":"10002bup","ids":",us10002bup,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.737,"rms":1.21,"gap":15,"magType":"mwr","type":"earthquake","title":"M 4.0 - 30km SW of Pratt, Kansas"},"geometry":{"type":"Point","coordinates":[-98.9535,37.4294,5]},"id":"us10002bup"},
{"type":"Feature","properties":{"mag":3.3,"place":"29km SW of Pratt, Kansas","time":1432393900300,"updated":1438133736040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bu6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bu6&format=geojson","felt":3,"cdi":4.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"10002bu6","ids":",us10002bu6,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.74,"rms":0.57,"gap":189,"magType":"mb_lg","type":"earthquake","title":"M 3.3 - 29km SW of Pratt, Kansas"},"geometry":{"type":"Point","coordinates":[-98.9522,37.4447,5]},"id":"us10002bu6"},
{"type":"Feature","properties":{"mag":3.2,"place":"5km NE of Medford, Oklahoma","time":1432378002300,"updated":1438133736040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bta","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bta&format=geojson","felt":4,"cdi":4.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"10002bta","ids":",us10002bta,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":40,"magType":"mwr","type":"earthquake","title":"M 3.2 - 5km NE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6975,36.8495,7.128]},"id":"us10002bta"},
{"type":"Feature","properties":{"mag":2.9,"place":"18km ENE of Mooreland, Oklahoma","time":1432327910500,"updated":1438133733040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bn9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bn9&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002bn9","ids":",us10002bn9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":280,"magType":"ml","type":"earthquake","title":"M 2.9 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.02,36.5135,5]},"id":"us10002bn9"},
{"type":"Feature","properties":{"mag":2.5,"place":"6km WSW of Langston, Oklahoma","time":1432305197800,"updated":1438133733040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bhm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bhm&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002bhm","ids":",us10002bhm,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.5 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.316,35.9183,5]},"id":"us10002bhm"},
{"type":"Feature","properties":{"mag":2.9,"place":"14km WNW of Helena, Oklahoma","time":1432296557700,"updated":1438133733040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bd1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bd1&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002bd1","ids":",us10002bd1,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 14km WNW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.404,36.613,5]},"id":"us10002bd1"},
{"type":"Feature","properties":{"mag":3.5,"place":"14km WNW of Helena, Oklahoma","time":1432292249700,"updated":1438133733040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bcm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bcm&format=geojson","felt":5,"cdi":4.5,"mmi":4.01,"alert":null,"status":"reviewed","tsunami":0,"sig":191,"net":"us","code":"10002bcm","ids":",us10002bcm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":143,"magType":"mwr","type":"earthquake","title":"M 3.5 - 14km WNW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4082,36.6184,2.412]},"id":"us10002bcm"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km SW of Tonkawa, Oklahoma","time":1432290050000,"updated":1438133733040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bel","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bel&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002bel","ids":",us10002bel,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":55,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km SW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4248,36.5747,7.977]},"id":"us10002bel"},
{"type":"Feature","properties":{"mag":3,"place":"18km ENE of Mooreland, Oklahoma","time":1432279035100,"updated":1438133732040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bbi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bbi&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002bbi","ids":",us10002bbi,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":232,"magType":"ml","type":"earthquake","title":"M 3.0 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0189,36.5145,5.876]},"id":"us10002bbi"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km ENE of Mooreland, Oklahoma","time":1432262375300,"updated":1438133732040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bmw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bmw&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002bmw","ids":",us10002bmw,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":230,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0023,36.5151,5]},"id":"us10002bmw"},
{"type":"Feature","properties":{"mag":2.6,"place":"11km SW of Cherokee, Oklahoma","time":1432249188800,"updated":1438133732040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bhk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bhk&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002bhk","ids":",us10002bhk,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":119,"magType":"ml","type":"earthquake","title":"M 2.6 - 11km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4569,36.6967,7.013]},"id":"us10002bhk"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km SW of Cherokee, Oklahoma","time":1432241690000,"updated":1438133732040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bhl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bhl&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002bhl","ids":",us10002bhl,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.26,"gap":116,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4694,36.6521,6.84]},"id":"us10002bhl"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km S of Medford, Oklahoma","time":1432235885600,"updated":1438133731040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b8y","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b8y&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002b8y","ids":",us10002b8y,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":84,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6984,36.6197,5.765]},"id":"us10002b8y"},
{"type":"Feature","properties":{"mag":3.3,"place":"5km NNE of Langston, Oklahoma","time":1432206195700,"updated":1438133730040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b4j","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b4j&format=geojson","felt":5,"cdi":2.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"10002b4j","ids":",us10002b4j,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.3 - 5km NNE of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2263,35.9936,4.498]},"id":"us10002b4j"},
{"type":"Feature","properties":{"mag":2.97,"place":"Kansas","time":1432189164180,"updated":1437347743380,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70105678","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70105678&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":136,"net":"ismpkansas","code":"70105678","ids":",ismpkansas70105678,","sources":",ismpkansas,","types":",origin,phase-data,","nst":16,"dmin":0.02692,"rms":0.05,"gap":77,"magType":"ml","type":"earthquake","title":"M 3.0 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.652,37.1368333,5.53]},"id":"ismpkansas70105678"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km NW of Helena, Oklahoma","time":1432181522500,"updated":1438133730040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b1f","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b1f&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002b1f","ids":",us10002b1f,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":132,"magType":"ml","type":"earthquake","title":"M 2.8 - 8km NW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3428,36.5924,5]},"id":"us10002b1f"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km ESE of Cherokee, Oklahoma","time":1432175462100,"updated":1438133730040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b4u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b4u&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002b4u","ids":",us10002b4u,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":187,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km ESE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.177,36.7151,6.009]},"id":"us10002b4u"},
{"type":"Feature","properties":{"mag":3,"place":"18km NNW of Langston, Oklahoma","time":1432175353300,"updated":1438133729040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b6l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b6l&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002b6l","ids":",us10002b6l,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":66,"magType":"ml","type":"earthquake","title":"M 3.0 - 18km NNW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3114,36.1086,5.283]},"id":"us10002b6l"},
{"type":"Feature","properties":{"mag":2.9,"place":"20km ENE of Mooreland, Oklahoma","time":1432132070700,"updated":1437613453040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002aw9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002aw9&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002aw9","ids":",us10002aw9,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.32,"gap":228,"magType":"ml","type":"earthquake","title":"M 2.9 - 20km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9993,36.5139,5]},"id":"us10002aw9"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km E of Guthrie, Oklahoma","time":1432130634100,"updated":1437613453040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002axu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002axu&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002axu","ids":",us10002axu,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":55,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km E of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3148,35.8754,6.396]},"id":"us10002axu"},
{"type":"Feature","properties":{"mag":3.3,"place":"19km ENE of Mooreland, Oklahoma","time":1432118680600,"updated":1437613453040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002awq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002awq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"10002awq","ids":",us10002awq,","sources":",us,","types":",cap,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":228,"magType":"ml","type":"earthquake","title":"M 3.3 - 19km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0086,36.5144,6.243]},"id":"us10002awq"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km ENE of Mooreland, Oklahoma","time":1432118551500,"updated":1437613453040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002aw7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002aw7&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002aw7","ids":",us10002aw7,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":230,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0134,36.5136,6.754]},"id":"us10002aw7"},
{"type":"Feature","properties":{"mag":2.9,"place":"22km ENE of Mooreland, Oklahoma","time":1432091910500,"updated":1437613452040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002aq4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002aq4&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"10002aq4","ids":",us10002aq4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":216,"magType":"ml","type":"earthquake","title":"M 2.9 - 22km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9746,36.5199,5]},"id":"us10002aq4"},
{"type":"Feature","properties":{"mag":2.7,"place":"3km NNE of Yale, Oklahoma","time":1432077800800,"updated":1437613452040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b3z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b3z&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002b3z","ids":",us10002b3z,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.7 - 3km NNE of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6756,36.1442,3.759]},"id":"us10002b3z"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km NW of Perkins, Oklahoma","time":1432072736000,"updated":1437613452040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002amq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002amq&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002amq","ids":",us10002amq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km NW of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1038,36.0259,4.745]},"id":"us10002amq"},
{"type":"Feature","properties":{"mag":2.8,"place":"22km W of Perry, Oklahoma","time":1432065396600,"updated":1437613452040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b7r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b7r&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002b7r","ids":",us10002b7r,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":101,"magType":"ml","type":"earthquake","title":"M 2.8 - 22km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.534,36.2515,8.423]},"id":"us10002b7r"},
{"type":"Feature","properties":{"mag":2.6,"place":"17km S of Perry, Oklahoma","time":1432062662100,"updated":1437613452040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ay1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ay1&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002ay1","ids":",us10002ay1,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":74,"magType":"ml","type":"earthquake","title":"M 2.6 - 17km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2662,36.1333,3.683]},"id":"us10002ay1"},
{"type":"Feature","properties":{"mag":2.7,"place":"20km W of Perry, Oklahoma","time":1432052046200,"updated":1437613452040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002axg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002axg&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"10002axg","ids":",us10002axg,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.23,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.7 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5139,36.2766,6.248]},"id":"us10002axg"},
{"type":"Feature","properties":{"mag":3,"place":"22km S of Alva, Oklahoma","time":1432047281800,"updated":1437613451040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002awk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002awk&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002awk","ids":",us10002awk,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":127,"magType":"ml","type":"earthquake","title":"M 3.0 - 22km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6603,36.599,5]},"id":"us10002awk"},
{"type":"Feature","properties":{"mag":2.6,"place":"23km S of Alva, Oklahoma","time":1432037352300,"updated":1437613450040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002b8m","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002b8m&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002b8m","ids":",us10002b8m,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":185,"magType":"ml","type":"earthquake","title":"M 2.6 - 23km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6623,36.5928,5]},"id":"us10002b8m"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km SSE of Medford, Oklahoma","time":1432024933900,"updated":1437613450040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ay5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ay5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002ay5","ids":",us10002ay5,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6566,36.6301,5.285]},"id":"us10002ay5"},
{"type":"Feature","properties":{"mag":2.9,"place":"23km NNE of Enid, Oklahoma","time":1432017895500,"updated":1437613450040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002aiu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002aiu&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002aiu","ids":",us10002aiu,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.9 - 23km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8189,36.6057,6.784]},"id":"us10002aiu"},
{"type":"Feature","properties":{"mag":2.9,"place":"16km WSW of Perry, Oklahoma","time":1432008425400,"updated":1437613449040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002afx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002afx&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002afx","ids":",us10002afx,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.9 - 16km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4523,36.2297,5.892]},"id":"us10002afx"},
{"type":"Feature","properties":{"mag":2.9,"place":"22km S of Alva, Oklahoma","time":1432007445400,"updated":1437613449040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002bmx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002bmx&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002bmx","ids":",us10002bmx,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":170,"magType":"ml","type":"earthquake","title":"M 2.9 - 22km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6622,36.6034,3.371]},"id":"us10002bmx"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km NNE of Stillwater, Oklahoma","time":1431998320300,"updated":1437613449040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002afw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002afw&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"us","code":"10002afw","ids":",us10002afw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km NNE of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.017,36.1931,4.389]},"id":"us10002afw"},
{"type":"Feature","properties":{"mag":2.9,"place":"18km SE of Tonkawa, Oklahoma","time":1431995066200,"updated":1437613449040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002aen","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002aen&format=geojson","felt":5,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":131,"net":"us","code":"10002aen","ids":",us10002aen,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.9 - 18km SE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1819,36.5502,6.837]},"id":"us10002aen"},
{"type":"Feature","properties":{"mag":3,"place":"10km SSW of Caldwell, Kansas","time":1431985513100,"updated":1437613449040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ayf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ayf&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002ayf","ids":",us10002ayf,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":58,"magType":"ml","type":"earthquake","title":"M 3.0 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6341,36.9407,4.659]},"id":"us10002ayf"},
{"type":"Feature","properties":{"mag":3,"place":"13km SSE of Langston, Oklahoma","time":1431967610000,"updated":1437613448040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a86","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a86&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002a86","ids":",us10002a86,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":68,"magType":"ml","type":"earthquake","title":"M 3.0 - 13km SSE of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2238,35.8265,6.318]},"id":"us10002a86"},
{"type":"Feature","properties":{"mag":2.8,"place":"15km ENE of Mooreland, Oklahoma","time":1431957137340,"updated":1437613447040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002awe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002awe&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002awe","ids":",us10002awe,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 15km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.052,36.508,8.6]},"id":"us10002awe"},
{"type":"Feature","properties":{"mag":2.5,"place":"23km NNE of Enid, Oklahoma","time":1431944797300,"updated":1437613447040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a8c","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a8c&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002a8c","ids":",us10002a8c,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.5 - 23km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8226,36.6058,6.767]},"id":"us10002a8c"},
{"type":"Feature","properties":{"mag":2.5,"place":"23km NNE of Enid, Oklahoma","time":1431943662600,"updated":1437613447040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a9k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a9k&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002a9k","ids":",us10002a9k,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":95,"magType":"ml","type":"earthquake","title":"M 2.5 - 23km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8238,36.6055,7.067]},"id":"us10002a9k"},
{"type":"Feature","properties":{"mag":3.4,"place":"22km S of Alva, Oklahoma","time":1431933272400,"updated":1437613447040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a4s","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a4s&format=geojson","felt":2,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"10002a4s","ids":",us10002a4s,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":1.1,"gap":178,"magType":"ml","type":"earthquake","title":"M 3.4 - 22km S of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.6922,36.607,13.73]},"id":"us10002a4s"},
{"type":"Feature","properties":{"mag":3.5,"place":"8km SSW of Guthrie, Oklahoma","time":1431917570200,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a3i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a3i&format=geojson","felt":56,"cdi":4.1,"mmi":3.57,"alert":null,"status":"reviewed","tsunami":0,"sig":211,"net":"us","code":"10002a3i","ids":",us10002a3i,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.87,"gap":102,"magType":"mwr","type":"earthquake","title":"M 3.5 - 8km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4452,35.8082,5.398]},"id":"us10002a3i"},
{"type":"Feature","properties":{"mag":2.8,"place":"7km SSW of Guthrie, Oklahoma","time":1431915973400,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ayl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ayl&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002ayl","ids":",us10002ayl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":108,"magType":"ml","type":"earthquake","title":"M 2.8 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4472,35.8134,4.582]},"id":"us10002ayl"},
{"type":"Feature","properties":{"mag":2.8,"place":"7km SSW of Guthrie, Oklahoma","time":1431914762300,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ayv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ayv&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"10002ayv","ids":",us10002ayv,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":102,"magType":"ml","type":"earthquake","title":"M 2.8 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4512,35.8105,6.202]},"id":"us10002ayv"},
{"type":"Feature","properties":{"mag":3,"place":"7km SSW of Guthrie, Oklahoma","time":1431914489500,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a2w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a2w&format=geojson","felt":18,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":144,"net":"us","code":"10002a2w","ids":",us10002a2w,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":69,"magType":"ml","type":"earthquake","title":"M 3.0 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4517,35.8142,5.227]},"id":"us10002a2w"},
{"type":"Feature","properties":{"mag":2.6,"place":"14km WNW of Pawnee, Oklahoma","time":1431907154700,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a8b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a8b&format=geojson","felt":1,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002a8b","ids":",us10002a8b,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":82,"magType":"ml","type":"earthquake","title":"M 2.6 - 14km WNW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9637,36.3703,3.393]},"id":"us10002a8b"},
{"type":"Feature","properties":{"mag":3.1,"place":"8km S of Caldwell, Kansas","time":1431895104500,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002aai","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002aai&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"10002aai","ids":",us10002aai,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.27,"gap":103,"magType":"ml","type":"earthquake","title":"M 3.1 - 8km S of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.5921,36.9597,4.78]},"id":"us10002aai"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km SE of Tonkawa, Oklahoma","time":1431895052500,"updated":1437613446040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002ac4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002ac4&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"10002ac4","ids":",us10002ac4,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.21,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km SE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1805,36.549,6.561]},"id":"us10002ac4"},
{"type":"Feature","properties":{"mag":2.9,"place":"17km SE of Tonkawa, Oklahoma","time":1431889061900,"updated":1437613445040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a0e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a0e&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"10002a0e","ids":",us10002a0e,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.9 - 17km SE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1842,36.5533,5.828]},"id":"us10002a0e"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km SSE of Langston, Oklahoma","time":1431887782200,"updated":1437613445040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002a0a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002a0a&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"10002a0a","ids":",us10002a0a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":68,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km SSE of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2249,35.826,6.466]},"id":"us10002a0a"},
{"type":"Feature","properties":{"mag":3.2,"place":"17km SE of Tonkawa, Oklahoma","time":1431876023200,"updated":1437613445040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029zb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029zb&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"100029zb","ids":",us100029zb,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.2 - 17km SE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.182,36.554,8]},"id":"us100029zb"},
{"type":"Feature","properties":{"mag":2.6,"place":"17km ENE of Mooreland, Oklahoma","time":1431815037800,"updated":1437613443040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002akn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002akn&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"10002akn","ids":",us10002akn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":173,"magType":"ml","type":"earthquake","title":"M 2.6 - 17km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0244,36.5008,0.201]},"id":"us10002akn"},
{"type":"Feature","properties":{"mag":3,"place":"13km ESE of Luther, Oklahoma","time":1431786317830,"updated":1437613443040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029sg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029sg&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"100029sg","ids":",us100029sg,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.043,"rms":0.36,"gap":82,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 13km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.071,35.6035,5]},"id":"us100029sg"},
{"type":"Feature","properties":{"mag":3.3,"place":"13km ESE of Luther, Oklahoma","time":1431777800200,"updated":1437613443040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029rq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029rq&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"100029rq","ids":",us100029rq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.37,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.3 - 13km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0601,35.6076,3.7]},"id":"us100029rq"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km S of Medford, Oklahoma","time":1431721716300,"updated":1437613441040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029lg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029lg&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100029lg","ids":",us100029lg,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":71,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7076,36.6266,4.396]},"id":"us100029lg"},
{"type":"Feature","properties":{"mag":2.5,"place":"24km SSW of Medford, Oklahoma","time":1431716123700,"updated":1437613441040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029jc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029jc&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100029jc","ids":",us100029jc,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":52,"magType":"ml","type":"earthquake","title":"M 2.5 - 24km SSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8772,36.6232,5.99]},"id":"us100029jc"},
{"type":"Feature","properties":{"mag":2.8,"place":"27km SSE of Medford, Oklahoma","time":1431712928900,"updated":1437613441040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029j5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029j5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100029j5","ids":",us100029j5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.8 - 27km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.601,36.5813,3.874]},"id":"us100029j5"},
{"type":"Feature","properties":{"mag":2.8,"place":"18km SE of Tonkawa, Oklahoma","time":1431700680100,"updated":1437613441040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029ch","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029ch&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100029ch","ids":",us100029ch,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.29,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.8 - 18km SE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.186,36.5494,6.154]},"id":"us100029ch"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km ENE of Mooreland, Oklahoma","time":1431674515500,"updated":1437613440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000297b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000297b&format=geojson","felt":4,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"1000297b","ids":",us1000297b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":227,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0039,36.5157,7.659]},"id":"us1000297b"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km ENE of Harrah, Oklahoma","time":1431673008400,"updated":1437613440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100029fe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100029fe&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100029fe","ids":",us100029fe,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":158,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km ENE of Harrah, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1164,35.4997,3.603]},"id":"us100029fe"},
{"type":"Feature","properties":{"mag":3.1,"place":"1km WSW of Pawnee, Oklahoma","time":1431667794800,"updated":1437613440040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000296h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000296h&format=geojson","felt":6,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":150,"net":"us","code":"1000296h","ids":",us1000296h,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":189,"magType":"ml","type":"earthquake","title":"M 3.1 - 1km WSW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8174,36.3348,5]},"id":"us1000296h"},
{"type":"Feature","properties":{"mag":3.2,"place":"10km W of Luther, Oklahoma","time":1431628756300,"updated":1437613439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us1000291k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000291k&format=geojson","felt":4,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"1000291k","ids":",us1000291k,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":52,"magType":"ml","type":"earthquake","title":"M 3.2 - 10km W of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3154,35.6682,3.727]},"id":"us1000291k"},
{"type":"Feature","properties":{"mag":3.3,"place":"17km SE of Anthony, Kansas","time":1431597872710,"updated":1437613439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028xh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028xh&format=geojson","felt":6,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":169,"net":"us","code":"100028xh","ids":",us100028xh,ismpkansas70103808,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.086,"rms":0.75,"gap":24,"magType":"mb_lg","type":"earthquake","title":"M 3.3 - 17km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9074,37.0308,5]},"id":"us100028xh"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km ENE of Mooreland, Oklahoma","time":1431594161200,"updated":1437613439040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028yl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028yl&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100028yl","ids":",us100028yl,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":230,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0138,36.5121,5]},"id":"us100028yl"},
{"type":"Feature","properties":{"mag":3.1,"place":"17km NW of Medford, Oklahoma","time":1431576525900,"updated":1437613438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028yz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028yz&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"100028yz","ids":",us100028yz,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.26,"gap":53,"magType":"ml","type":"earthquake","title":"M 3.1 - 17km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8487,36.9396,5]},"id":"us100028yz"},
{"type":"Feature","properties":{"mag":2.5,"place":"8km SSE of Helena, Oklahoma","time":1431572383400,"updated":1437613438040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028z1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028z1&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100028z1","ids":",us100028z1,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.5 - 8km SSE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2222,36.4792,6.208]},"id":"us100028z1"},
{"type":"Feature","properties":{"mag":2.6,"place":"16km SW of Perry, Oklahoma","time":1431560535900,"updated":1437116775040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028vp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028vp&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"us","code":"100028vp","ids":",us100028vp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 16km SW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4273,36.1895,5.555]},"id":"us100028vp"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km SSE of Medford, Oklahoma","time":1431554151500,"updated":1437116775040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028yy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028yy&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100028yy","ids":",us100028yy,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.39,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6838,36.6152,3.243]},"id":"us100028yy"},
{"type":"Feature","properties":{"mag":2.7,"place":"16km NW of Medford, Oklahoma","time":1431551853600,"updated":1437116775040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028yu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028yu&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"100028yu","ids":",us100028yu,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.7 - 16km NW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8874,36.8897,3.616]},"id":"us100028yu"},
{"type":"Feature","properties":{"mag":2.8,"place":"21km ENE of Mooreland, Oklahoma","time":1431519433500,"updated":1437116775040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028rg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028rg&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"100028rg","ids":",us100028rg,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":283,"magType":"ml","type":"earthquake","title":"M 2.8 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9924,36.5296,6.451]},"id":"us100028rg"},
{"type":"Feature","properties":{"mag":2.5,"place":"19km SSE of Tonkawa, Oklahoma","time":1431474365400,"updated":1437116774040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002f0f","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002f0f&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002f0f","ids":",us20002f0f,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.5 - 19km SSE of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2238,36.5157,8.03]},"id":"us20002f0f"},
{"type":"Feature","properties":{"mag":3.2,"place":"19km ENE of Perry, Oklahoma","time":1431466262600,"updated":1437116774040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ett","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ett&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002ett","ids":",us20002ett,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":74,"magType":"ml","type":"earthquake","title":"M 3.2 - 19km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0811,36.3508,3.888]},"id":"us20002ett"},
{"type":"Feature","properties":{"mag":2.6,"place":"22km SSW of McCord, Oklahoma","time":1431459311600,"updated":1437116773040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002esq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002esq&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002esq","ids":",us20002esq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":128,"magType":"ml","type":"earthquake","title":"M 2.6 - 22km SSW of McCord, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1528,36.5008,5.898]},"id":"us20002esq"},
{"type":"Feature","properties":{"mag":2.5,"place":"17km NNE of Stillwater, Oklahoma","time":1431457880800,"updated":1437116772040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002esr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002esr&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"20002esr","ids":",us20002esr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.5 - 17km NNE of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9842,36.2656,3.742]},"id":"us20002esr"},
{"type":"Feature","properties":{"mag":3.1,"place":"23km ENE of Mooreland, Oklahoma","time":1431446346600,"updated":1437116772040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002eqd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002eqd&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002eqd","ids":",us20002eqd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":277,"magType":"ml","type":"earthquake","title":"M 3.1 - 23km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9653,36.5175,3.522]},"id":"us20002eqd"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km S of Medford, Oklahoma","time":1431409555700,"updated":1437116769040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002epe","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002epe&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002epe","ids":",us20002epe,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6927,36.6238,6.614]},"id":"us20002epe"},
{"type":"Feature","properties":{"mag":2.5,"place":"17km SW of Medford, Oklahoma","time":1431404347300,"updated":1437116769040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002epn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002epn&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002epn","ids":",us20002epn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":149,"magType":"ml","type":"earthquake","title":"M 2.5 - 17km SW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8972,36.7181,5]},"id":"us20002epn"},
{"type":"Feature","properties":{"mag":2.6,"place":"17km NE of Helena, Oklahoma","time":1431390640900,"updated":1437116769040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002erc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002erc&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002erc","ids":",us20002erc,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":95,"magType":"ml","type":"earthquake","title":"M 2.6 - 17km NE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1569,36.6769,6.332]},"id":"us20002erc"},
{"type":"Feature","properties":{"mag":2.6,"place":"16km WSW of Medford, Oklahoma","time":1431371796700,"updated":1437116769040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002efb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002efb&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002efb","ids":",us20002efb,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":53,"magType":"ml","type":"earthquake","title":"M 2.6 - 16km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8932,36.7387,6.42]},"id":"us20002efb"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km ENE of Mooreland, Oklahoma","time":1431369142400,"updated":1437116769040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ef1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ef1&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002ef1","ids":",us20002ef1,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":234,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0441,36.51,8.701]},"id":"us20002ef1"},
{"type":"Feature","properties":{"mag":2.5,"place":"8km ENE of Guthrie, Oklahoma","time":1431365319700,"updated":1437116769040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ee8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ee8&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002ee8","ids":",us20002ee8,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.84,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.5 - 8km ENE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3419,35.9202,5]},"id":"us20002ee8"},
{"type":"Feature","properties":{"mag":2.6,"place":"26km WSW of Medford, Oklahoma","time":1431331287700,"updated":1437116767040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ecy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ecy&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002ecy","ids":",us20002ecy,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.6 - 26km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.017,36.7457,6.352]},"id":"us20002ecy"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km ESE of Medford, Oklahoma","time":1431295312700,"updated":1437116767040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002edb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002edb&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002edb","ids":",us20002edb,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5702,36.7591,4.157]},"id":"us20002edb"},
{"type":"Feature","properties":{"mag":3.3,"place":"4km SSW of Alva, Oklahoma","time":1431292523130,"updated":1437116766040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002e94","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002e94&format=geojson","felt":8,"cdi":3.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"us","code":"20002e94","ids":",us20002e94,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.3 - 4km SSW of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.688,36.764,8.2]},"id":"us20002e94"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km SSW of Caldwell, Kansas","time":1431280798000,"updated":1437116765040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002eek","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002eek&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002eek","ids":",us20002eek,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":87,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6319,36.9426,5.724]},"id":"us20002eek"},
{"type":"Feature","properties":{"mag":2.6,"place":"15km ESE of Medford, Oklahoma","time":1431279947700,"updated":1437116765040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002eel","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002eel&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002eel","ids":",us20002eel,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.6 - 15km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5736,36.7626,5.409]},"id":"us20002eel"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km WSW of Perry, Oklahoma","time":1431275415100,"updated":1437116765040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002eev","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002eev&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002eev","ids":",us20002eev,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":60,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.496,36.1967,6.66]},"id":"us20002eev"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km ESE of Medford, Oklahoma","time":1431265539840,"updated":1437116765040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028t1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028t1&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100028t1","ids":",us100028t1,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.573,36.768,6.1]},"id":"us100028t1"},
{"type":"Feature","properties":{"mag":3.3,"place":"20km S of Medford, Oklahoma","time":1431231085300,"updated":1437116765040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002e5n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002e5n&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"20002e5n","ids":",us20002e5n,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":63,"magType":"ml","type":"earthquake","title":"M 3.3 - 20km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6898,36.6239,6.368]},"id":"us20002e5n"},
{"type":"Feature","properties":{"mag":3,"place":"18km NE of Crescent, Oklahoma","time":1431226633600,"updated":1437116764040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002enq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002enq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002enq","ids":",us20002enq,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.78,"gap":65,"magType":"ml","type":"earthquake","title":"M 3.0 - 18km NE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4515,36.0765,4.137]},"id":"us20002enq"},
{"type":"Feature","properties":{"mag":3.1,"place":"2km NE of Medford, Oklahoma","time":1431221605900,"updated":1437116764040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ep9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ep9&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002ep9","ids":",us20002ep9,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":39,"magType":"ml","type":"earthquake","title":"M 3.1 - 2km NE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7165,36.8195,6.627]},"id":"us20002ep9"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km SSE of Medford, Oklahoma","time":1431219790100,"updated":1437116764040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002epf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002epf&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002epf","ids":",us20002epf,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6762,36.623,5.037]},"id":"us20002epf"},
{"type":"Feature","properties":{"mag":3,"place":"8km SSE of Caldwell, Kansas","time":1431196900600,"updated":1437938964910,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002edx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002edx&format=geojson","felt":5,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":140,"net":"us","code":"20002edx","ids":",us20002edx,ismpkansas70102558,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":67,"magType":"ml","type":"earthquake","title":"M 3.0 - 8km SSE of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.5881,36.9602,5.037]},"id":"us20002edx"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km WSW of Cherokee, Oklahoma","time":1431153882200,"updated":1437116761040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002epv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002epv&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002epv","ids":",us20002epv,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.41,"gap":120,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km WSW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4344,36.7354,7.998]},"id":"us20002epv"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km W of Perry, Oklahoma","time":1431151125200,"updated":1437116761040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us100028sw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us100028sw&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"100028sw","ids":",us100028sw,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":77,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5186,36.2805,7]},"id":"us100028sw"},
{"type":"Feature","properties":{"mag":2.9,"place":"8km WSW of Perry, Oklahoma","time":1431149758900,"updated":1437116761040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002e0j","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002e0j&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002e0j","ids":",us20002e0j,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":78,"magType":"ml","type":"earthquake","title":"M 2.9 - 8km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3811,36.2677,6.709]},"id":"us20002e0j"},
{"type":"Feature","properties":{"mag":3.1,"place":"11km SSW of Caldwell, Kansas","time":1431143387100,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002eq0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002eq0&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002eq0","ids":",us20002eq0,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":54,"magType":"ml","type":"earthquake","title":"M 3.1 - 11km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6407,36.935,1.888]},"id":"us20002eq0"},
{"type":"Feature","properties":{"mag":3,"place":"10km SSW of Caldwell, Kansas","time":1431140482100,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002eqz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002eqz&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002eqz","ids":",us20002eqz,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":57,"magType":"ml","type":"earthquake","title":"M 3.0 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6373,36.9432,5.644]},"id":"us20002eqz"},
{"type":"Feature","properties":{"mag":2.5,"place":"10km SSW of Caldwell, Kansas","time":1431140029400,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ecz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ecz&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002ecz","ids":",us20002ecz,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.31,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.5 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6366,36.9405,4.919]},"id":"us20002ecz"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km NE of Edmond, Oklahoma","time":1431131487400,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ecu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ecu&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002ecu","ids":",us20002ecu,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":54,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3539,35.7496,4.1]},"id":"us20002ecu"},
{"type":"Feature","properties":{"mag":3.2,"place":"8km NW of Perkins, Oklahoma","time":1431127144800,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dzb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dzb&format=geojson","felt":12,"cdi":3.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":162,"net":"us","code":"20002dzb","ids":",us20002dzb,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":68,"magType":"ml","type":"earthquake","title":"M 3.2 - 8km NW of Perkins, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1076,36.0256,5.081]},"id":"us20002dzb"},
{"type":"Feature","properties":{"mag":3.1,"place":"18km ENE of Mooreland, Oklahoma","time":1431126301000,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dz8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dz8&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002dz8","ids":",us20002dz8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.9,"gap":281,"magType":"ml","type":"earthquake","title":"M 3.1 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.015,36.5151,7.567]},"id":"us20002dz8"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km NE of Guthrie, Oklahoma","time":1431125116800,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ecs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ecs&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002ecs","ids":",us20002ecs,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.8 - 8km NE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3426,35.9242,4.072]},"id":"us20002ecs"},
{"type":"Feature","properties":{"mag":3.2,"place":"14km S of Langston, Oklahoma","time":1431103433300,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dvm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dvm&format=geojson","felt":4,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":159,"net":"us","code":"20002dvm","ids":",us20002dvm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":65,"magType":"ml","type":"earthquake","title":"M 3.2 - 14km S of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2418,35.8186,2.432]},"id":"us20002dvm"},
{"type":"Feature","properties":{"mag":3.5,"place":"23km NNE of Enid, Oklahoma","time":1431094203100,"updated":1437116760040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ds6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ds6&format=geojson","felt":2,"cdi":2,"mmi":4.05,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"20002ds6","ids":",us20002ds6,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":63,"magType":"ml","type":"earthquake","title":"M 3.5 - 23km NNE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8236,36.6033,5.762]},"id":"us20002ds6"},
{"type":"Feature","properties":{"mag":2.6,"place":"8km WSW of Perry, Oklahoma","time":1431082077300,"updated":1437116759040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ds2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ds2&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002ds2","ids":",us20002ds2,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":99,"magType":"ml","type":"earthquake","title":"M 2.6 - 8km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3821,36.2661,6.398]},"id":"us20002ds2"},
{"type":"Feature","properties":{"mag":2.5,"place":"14km ENE of Mooreland, Oklahoma","time":1431074578500,"updated":1437116759040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dsd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dsd&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002dsd","ids":",us20002dsd,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.86,"gap":300,"magType":"ml","type":"earthquake","title":"M 2.5 - 14km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0505,36.4904,5]},"id":"us20002dsd"},
{"type":"Feature","properties":{"mag":3.2,"place":"16km ENE of Mooreland, Oklahoma","time":1431047163900,"updated":1437116757040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dna","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dna&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002dna","ids":",us20002dna,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":288,"magType":"ml","type":"earthquake","title":"M 3.2 - 16km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0494,36.5129,14.442]},"id":"us20002dna"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km ENE of Mooreland, Oklahoma","time":1431034670100,"updated":1437116757040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dsg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dsg&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002dsg","ids":",us20002dsg,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":219,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9847,36.5135,5]},"id":"us20002dsg"},
{"type":"Feature","properties":{"mag":3.3,"place":"14km ENE of Mooreland, Oklahoma","time":1431034266200,"updated":1437116757040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dl0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dl0&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"20002dl0","ids":",us20002dl0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":238,"magType":"ml","type":"earthquake","title":"M 3.3 - 14km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0681,36.5085,7.986]},"id":"us20002dl0"},
{"type":"Feature","properties":{"mag":3,"place":"5km N of Anthony, Kansas","time":1431028884290,"updated":1437347579350,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dlh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dlh&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002dlh","ids":",us20002dlh,ismpkansas70101908,","sources":",us,ismpkansas,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.032,"rms":0.19,"gap":103,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 5km N of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0355,37.203,8.53]},"id":"us20002dlh"},
{"type":"Feature","properties":{"mag":2.9,"place":"22km ESE of Cherokee, Oklahoma","time":1431028021700,"updated":1437116757040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dxk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dxk&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002dxk","ids":",us20002dxk,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":204,"magType":"ml","type":"earthquake","title":"M 2.9 - 22km ESE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1168,36.7083,5.625]},"id":"us20002dxk"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km WNW of Waukomis, Oklahoma","time":1431026774300,"updated":1437116756040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dsb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dsb&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002dsb","ids":",us20002dsb,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.37,"gap":227,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km WNW of Waukomis, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.126,36.3222,7.478]},"id":"us20002dsb"},
{"type":"Feature","properties":{"mag":2.6,"place":"3km S of Cushing, Oklahoma","time":1431016130900,"updated":1437116756040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dif","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dif&format=geojson","felt":5,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":106,"net":"us","code":"20002dif","ids":",us20002dif,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":119,"magType":"ml","type":"earthquake","title":"M 2.6 - 3km S of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7644,35.9496,4.409]},"id":"us20002dif"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km NE of Cherokee, Oklahoma","time":1431006233200,"updated":1437116756040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002deb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002deb&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002deb","ids":",us20002deb,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1548,36.8676,7.01]},"id":"us20002deb"},
{"type":"Feature","properties":{"mag":3.1,"place":"8km WSW of Pawnee, Oklahoma","time":1431002918000,"updated":1437116756040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dd8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dd8&format=geojson","felt":3,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"20002dd8","ids":",us20002dd8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":143,"magType":"ml","type":"earthquake","title":"M 3.1 - 8km WSW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8807,36.2982,5]},"id":"us20002dd8"},
{"type":"Feature","properties":{"mag":2.61,"place":"Kansas","time":1430979617950,"updated":1437347564180,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70101768","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70101768&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":105,"net":"ismpkansas","code":"70101768","ids":",ismpkansas70101768,","sources":",ismpkansas,","types":",origin,phase-data,","nst":17,"dmin":0.06014,"rms":0.05,"gap":91,"magType":"ml","type":"earthquake","title":"M 2.6 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.9593333,37.017,5.59]},"id":"ismpkansas70101768"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km ESE of Luther, Oklahoma","time":1430968415800,"updated":1437116754040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002di5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002di5&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002di5","ids":",us20002di5,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0542,35.612,3.328]},"id":"us20002di5"},
{"type":"Feature","properties":{"mag":3,"place":"14km ESE of Luther, Oklahoma","time":1430966930000,"updated":1437116753040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002d8n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002d8n&format=geojson","felt":2,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002d8n","ids":",us20002d8n,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":60,"magType":"ml","type":"earthquake","title":"M 3.0 - 14km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0542,35.6071,4.28]},"id":"us20002d8n"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km ESE of Luther, Oklahoma","time":1430964428700,"updated":1437116753040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002did","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002did&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002did","ids":",us20002did,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":105,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0628,35.607,4.084]},"id":"us20002did"},
{"type":"Feature","properties":{"mag":3,"place":"18km N of Crescent, Oklahoma","time":1430960321100,"updated":1437116753040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dhq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dhq&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002dhq","ids":",us20002dhq,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":135,"magType":"ml","type":"earthquake","title":"M 3.0 - 18km N of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5764,36.1202,3.332]},"id":"us20002dhq"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km NE of Cherokee, Oklahoma","time":1430957611500,"updated":1437116753040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002diu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002diu&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002diu","ids":",us20002diu,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1576,36.8658,6.879]},"id":"us20002diu"},
{"type":"Feature","properties":{"mag":3.1,"place":"5km ESE of Pawnee, Oklahoma","time":1430932299400,"updated":1436479215040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002cbj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002cbj&format=geojson","felt":3,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"20002cbj","ids":",us20002cbj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":165,"magType":"ml","type":"earthquake","title":"M 3.1 - 5km ESE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7527,36.3196,1.137]},"id":"us20002cbj"},
{"type":"Feature","properties":{"mag":2.7,"place":"1km NNE of Anthony, Kansas","time":1430926690910,"updated":1437347519950,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c8l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c8l&format=geojson","felt":5,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":114,"net":"us","code":"20002c8l","ids":",us20002c8l,ismpkansas70101648,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.068,"rms":0.68,"gap":87,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 1km NNE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0201,37.167,4.79]},"id":"us20002c8l"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km WSW of Helena, Oklahoma","time":1430922917800,"updated":1436479215040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c8a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c8a&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002c8a","ids":",us20002c8a,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.23,"gap":137,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km WSW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4947,36.4875,5]},"id":"us20002c8a"},
{"type":"Feature","properties":{"mag":3.5,"place":"21km NE of Cherokee, Oklahoma","time":1430921407200,"updated":1436479215040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c7x","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c7x&format=geojson","felt":4,"cdi":2,"mmi":3.65,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"20002c7x","ids":",us20002c7x,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":110,"magType":"ml","type":"earthquake","title":"M 3.5 - 21km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1615,36.8752,3.276]},"id":"us20002c7x"},
{"type":"Feature","properties":{"mag":3.1,"place":"8km NE of Guthrie, Oklahoma","time":1430912001300,"updated":1436479215040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002mqw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002mqw&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002mqw","ids":",us20002mqw,","sources":",us,","types":",general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 8km NE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.345,35.926,4.9]},"id":"us20002mqw"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km W of Langston, Oklahoma","time":1430911996100,"updated":1436479215040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c7l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c7l&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002c7l","ids":",us20002c7l,","sources":",us,","types":",cap,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.178,"rms":0.25,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km W of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3481,35.9526,6.34]},"id":"us20002c7l"},
{"type":"Feature","properties":{"mag":3.4,"place":"8km ENE of Guthrie, Oklahoma","time":1430910368300,"updated":1436479214040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c7d","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c7d&format=geojson","felt":9,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":181,"net":"us","code":"20002c7d","ids":",us20002c7d,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.4 - 8km ENE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.342,35.9228,3.747]},"id":"us20002c7d"},
{"type":"Feature","properties":{"mag":3.2,"place":"2km SW of Harper, Kansas","time":1430906707380,"updated":1437347484750,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c76","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c76&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"20002c76","ids":",us20002c76,ismpkansas70101558,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.043,"rms":0.23,"gap":114,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 2km SW of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0421,37.2721,7.29]},"id":"us20002c76"},
{"type":"Feature","properties":{"mag":3.1,"place":"22km NE of Cherokee, Oklahoma","time":1430904552800,"updated":1436479214040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c6w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c6w&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002c6w","ids":",us20002c6w,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":110,"magType":"ml","type":"earthquake","title":"M 3.1 - 22km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1544,36.8714,6.744]},"id":"us20002c6w"},
{"type":"Feature","properties":{"mag":3,"place":"9km SW of Harper, Kansas","time":1430903537570,"updated":1437347530690,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c72","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c72&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002c72","ids":",us20002c72,ismpkansas70101668,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.031,"rms":0.45,"gap":85,"magType":"mb_lg","type":"earthquake","title":"M 3.0 - 9km SW of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-98.1041,37.224,3.37]},"id":"us20002c72"},
{"type":"Feature","properties":{"mag":2.5,"place":"3km WSW of Harper, Kansas","time":1430903529710,"updated":1437347474930,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c6q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c6q&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002c6q","ids":",us20002c6q,ismpkansas70101528,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.048,"rms":0.23,"gap":99,"magType":"ml","type":"earthquake","title":"M 2.5 - 3km WSW of Harper, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0567,37.2736,6.81]},"id":"us20002c6q"},
{"type":"Feature","properties":{"mag":2.6,"place":"4km NNE of Pawnee, Oklahoma","time":1430882313000,"updated":1436479214040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002cbs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002cbs&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002cbs","ids":",us20002cbs,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":98,"magType":"ml","type":"earthquake","title":"M 2.6 - 4km NNE of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7866,36.377,4.561]},"id":"us20002cbs"},
{"type":"Feature","properties":{"mag":2.9,"place":"17km ENE of Mooreland, Oklahoma","time":1430863401700,"updated":1436479214040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c2f","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c2f&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002c2f","ids":",us20002c2f,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":235,"magType":"ml","type":"earthquake","title":"M 2.9 - 17km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0278,36.5155,6.396]},"id":"us20002c2f"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km ENE of Mooreland, Oklahoma","time":1430840782960,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c8e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c8e&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002c8e","ids":",us20002c8e,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.34,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.027,36.518,5.6]},"id":"us20002c8e"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km ESE of Cherokee, Oklahoma","time":1430840216810,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c88","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c88&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002c88","ids":",us20002c88,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.36,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km ESE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.124,36.707,6.7]},"id":"us20002c88"},
{"type":"Feature","properties":{"mag":2.6,"place":"6km NNE of Guthrie, Oklahoma","time":1430837959000,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bxk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bxk&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002bxk","ids":",us20002bxk,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.6 - 6km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3941,35.9331,5.104]},"id":"us20002bxk"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km NW of Perry, Oklahoma","time":1430832643700,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bv0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bv0&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"20002bv0","ids":",us20002bv0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.37,"gap":84,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km NW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3641,36.3601,7.033]},"id":"us20002bv0"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km ENE of Mooreland, Oklahoma","time":1430829758000,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bv1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bv1&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002bv1","ids":",us20002bv1,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":1.06,"gap":237,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0569,36.5059,11.172]},"id":"us20002bv1"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km S of Caldwell, Kansas","time":1430827662300,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bt6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bt6&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002bt6","ids":",us20002bt6,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":123,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km S of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.621,36.9589,8.349]},"id":"us20002bt6"},
{"type":"Feature","properties":{"mag":2.7,"place":"2km ESE of Harrah, Oklahoma","time":1430824073800,"updated":1436479213040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bvd","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bvd&format=geojson","felt":2,"cdi":2.5,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"20002bvd","ids":",us20002bvd,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.7 - 2km ESE of Harrah, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1361,35.481,3.24]},"id":"us20002bvd"},
{"type":"Feature","properties":{"mag":2.5,"place":"23km ENE of Mooreland, Oklahoma","time":1430812399200,"updated":1436479212040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bx8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bx8&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002bx8","ids":",us20002bx8,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":268,"magType":"ml","type":"earthquake","title":"M 2.5 - 23km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.968,36.526,5]},"id":"us20002bx8"},
{"type":"Feature","properties":{"mag":3.2,"place":"14km ESE of Luther, Oklahoma","time":1430783992200,"updated":1436479211040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bmm","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bmm&format=geojson","felt":10,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":162,"net":"us","code":"20002bmm","ids":",us20002bmm,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":77,"magType":"ml","type":"earthquake","title":"M 3.2 - 14km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0543,35.6001,4.775]},"id":"us20002bmm"},
{"type":"Feature","properties":{"mag":2.8,"place":"27km NE of Helena, Oklahoma","time":1430783018800,"updated":1436479211040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bux","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bux&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002bux","ids":",us20002bux,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.8 - 27km NE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0292,36.6978,6.975]},"id":"us20002bux"},
{"type":"Feature","properties":{"mag":3,"place":"15km W of Stillwater, Oklahoma","time":1430770411600,"updated":1436479211040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bes","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bes&format=geojson","felt":5,"cdi":4.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":141,"net":"us","code":"20002bes","ids":",us20002bes,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":67,"magType":"ml","type":"earthquake","title":"M 3.0 - 15km W of Stillwater, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2316,36.1157,5.06]},"id":"us20002bes"},
{"type":"Feature","properties":{"mag":2.5,"place":"24km WSW of Perry, Oklahoma","time":1430764299100,"updated":1436479211040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bep","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bep&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002bep","ids":",us20002bep,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":103,"magType":"ml","type":"earthquake","title":"M 2.5 - 24km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5293,36.1872,4.202]},"id":"us20002bep"},
{"type":"Feature","properties":{"mag":2.8,"place":"14km S of Langston, Oklahoma","time":1430761894600,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002beh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002beh&format=geojson","felt":8,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":122,"net":"us","code":"20002beh","ids":",us20002beh,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.8 - 14km S of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2383,35.8133,5.662]},"id":"us20002beh"},
{"type":"Feature","properties":{"mag":2.66,"place":"Kansas","time":1430756628640,"updated":1437347418470,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70101183","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70101183&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":109,"net":"ismpkansas","code":"70101183","ids":",ismpkansas70101183,","sources":",ismpkansas,","types":",origin,phase-data,","nst":14,"dmin":0.01657,"rms":0.05,"gap":105,"magType":"ml","type":"earthquake","title":"M 2.7 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.9645,37.2425,2.15]},"id":"ismpkansas70101183"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km W of Perry, Oklahoma","time":1430754596260,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c7v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c7v&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002c7v","ids":",us20002c7v,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.502,36.28,6.5]},"id":"us20002c7v"},
{"type":"Feature","properties":{"mag":2.9,"place":"19km W of Perry, Oklahoma","time":1430751025000,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b70","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b70&format=geojson","felt":19,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":135,"net":"us","code":"20002b70","ids":",us20002b70,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":1.05,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.9 - 19km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5048,36.2796,6.832]},"id":"us20002b70"},
{"type":"Feature","properties":{"mag":2.6,"place":"27km NE of Helena, Oklahoma","time":1430741249300,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002be9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002be9&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002be9","ids":",us20002be9,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.6 - 27km NE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0284,36.6971,7.175]},"id":"us20002be9"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km SW of Medford, Oklahoma","time":1430738667200,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bec","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bec&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002bec","ids":",us20002bec,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.9,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km SW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8505,36.7304,5.203]},"id":"us20002bec"},
{"type":"Feature","properties":{"mag":3,"place":"12km W of Pawnee, Oklahoma","time":1430737480400,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b5h","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b5h&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":140,"net":"us","code":"20002b5h","ids":",us20002b5h,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":122,"magType":"ml","type":"earthquake","title":"M 3.0 - 12km W of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.946,36.3285,2.523]},"id":"us20002b5h"},
{"type":"Feature","properties":{"mag":2.8,"place":"18km W of Perry, Oklahoma","time":1430731949600,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bd7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bd7&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002bd7","ids":",us20002bd7,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":85,"magType":"ml","type":"earthquake","title":"M 2.8 - 18km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4971,36.2859,5.733]},"id":"us20002bd7"},
{"type":"Feature","properties":{"mag":2.6,"place":"13km NE of Edmond, Oklahoma","time":1430731932500,"updated":1436479210040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bcz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bcz&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002bcz","ids":",us20002bcz,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.6 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3872,35.7467,5]},"id":"us20002bcz"},
{"type":"Feature","properties":{"mag":3,"place":"10km SSW of Caldwell, Kansas","time":1430727301300,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b4r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b4r&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002b4r","ids":",us20002b4r,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.639,36.945,5.377]},"id":"us20002b4r"},
{"type":"Feature","properties":{"mag":2.9,"place":"7km S of Anthony, Kansas","time":1430724950000,"updated":1437347414490,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b49","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b49&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002b49","ids":",us20002b49,ismpkansas70101078,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.054,"rms":0.64,"gap":45,"magType":"mb_lg","type":"earthquake","title":"M 2.9 - 7km S of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-98.0453,37.0864,6.92]},"id":"us20002b49"},
{"type":"Feature","properties":{"mag":2.8,"place":"9km SSW of Caldwell, Kansas","time":1430724420200,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002beg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002beg&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002beg","ids":",us20002beg,","sources":",us,","types":",general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.8 - 9km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6322,36.9456,5.05]},"id":"us20002beg"},
{"type":"Feature","properties":{"mag":2.5,"place":"19km ENE of Mooreland, Oklahoma","time":1430706505400,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ber","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ber&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002ber","ids":",us20002ber,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":228,"magType":"ml","type":"earthquake","title":"M 2.5 - 19km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0083,36.5192,5.739]},"id":"us20002ber"},
{"type":"Feature","properties":{"mag":2.5,"place":"19km ENE of Mooreland, Oklahoma","time":1430705817100,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bet","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bet&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002bet","ids":",us20002bet,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":286,"magType":"ml","type":"earthquake","title":"M 2.5 - 19km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0217,36.5336,6.763]},"id":"us20002bet"},
{"type":"Feature","properties":{"mag":3,"place":"21km ENE of Mooreland, Oklahoma","time":1430705419000,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bva","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bva&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"20002bva","ids":",us20002bva,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":218,"magType":"ml","type":"earthquake","title":"M 3.0 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9824,36.513,5.398]},"id":"us20002bva"},
{"type":"Feature","properties":{"mag":3.5,"place":"18km WSW of Medford, Oklahoma","time":1430703006500,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b32","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b32&format=geojson","felt":11,"cdi":3.3,"mmi":3.4,"alert":null,"status":"reviewed","tsunami":0,"sig":192,"net":"us","code":"20002b32","ids":",us20002b32,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":1,"gap":78,"magType":"ml","type":"earthquake","title":"M 3.5 - 18km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9166,36.7264,4.12]},"id":"us20002b32"},
{"type":"Feature","properties":{"mag":2.8,"place":"13km NE of Edmond, Oklahoma","time":1430698109600,"updated":1436479209040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b2r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b2r&format=geojson","felt":5,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":122,"net":"us","code":"20002b2r","ids":",us20002b2r,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.79,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.8 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3848,35.7471,3.534]},"id":"us20002b2r"},
{"type":"Feature","properties":{"mag":2.8,"place":"18km SSE of Helena, Oklahoma","time":1430693237200,"updated":1436479208040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bwz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bwz&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002bwz","ids":",us20002bwz,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":85,"magType":"ml","type":"earthquake","title":"M 2.8 - 18km SSE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1536,36.4037,7.983]},"id":"us20002bwz"},
{"type":"Feature","properties":{"mag":2.8,"place":"21km ENE of Mooreland, Oklahoma","time":1430676582100,"updated":1436479208040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002byt","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002byt&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002byt","ids":",us20002byt,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.73,"gap":241,"magType":"ml","type":"earthquake","title":"M 2.8 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9878,36.5217,5]},"id":"us20002byt"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km ENE of Mooreland, Oklahoma","time":1430656259500,"updated":1436479207040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c04","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c04&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002c04","ids":",us20002c04,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":223,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9954,36.5024,5]},"id":"us20002c04"},
{"type":"Feature","properties":{"mag":2.7,"place":"22km ENE of Helena, Oklahoma","time":1430606901700,"updated":1436479206040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c8b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c8b&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002c8b","ids":",us20002c8b,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.7 - 22km ENE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0429,36.64,6.277]},"id":"us20002c8b"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km SSW of Caldwell, Kansas","time":1430604519600,"updated":1436479206040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002c8q","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002c8q&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002c8q","ids":",us20002c8q,","sources":",us,","types":",dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6396,36.943,5]},"id":"us20002c8q"},
{"type":"Feature","properties":{"mag":2.7,"place":"16km W of Medford, Oklahoma","time":1430590335500,"updated":1436479206040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bxr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bxr&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002bxr","ids":",us20002bxr,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.78,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.7 - 16km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9123,36.7849,5.376]},"id":"us20002bxr"},
{"type":"Feature","properties":{"mag":3,"place":"14km W of Yale, Oklahoma","time":1430586321100,"updated":1436479206040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bxf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bxf&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002bxf","ids":",us20002bxf,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":59,"magType":"ml","type":"earthquake","title":"M 3.0 - 14km W of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8551,36.1381,5.007]},"id":"us20002bxf"},
{"type":"Feature","properties":{"mag":2.7,"place":"4km SSE of Anthony, Kansas","time":1430555435460,"updated":1437347369910,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b22","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b22&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002b22","ids":",us20002b22,ismpkansas70100333,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.064,"rms":0.51,"gap":62,"magType":"mb_lg","type":"earthquake","title":"M 2.7 - 4km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-98.015,37.1174,7.24]},"id":"us20002b22"},
{"type":"Feature","properties":{"mag":2.8,"place":"15km E of Helena, Oklahoma","time":1430539830700,"updated":1436479206040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002de8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002de8&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002de8","ids":",us20002de8,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.8 - 15km E of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0978,36.5189,6.548]},"id":"us20002de8"},
{"type":"Feature","properties":{"mag":2.8,"place":"19km SSE of Medford, Oklahoma","time":1430529237500,"updated":1436479205040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002dxx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002dxx&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002dxx","ids":",us20002dxx,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":76,"magType":"ml","type":"earthquake","title":"M 2.8 - 19km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6427,36.6426,5.703]},"id":"us20002dxx"},
{"type":"Feature","properties":{"mag":2.8,"place":"10km SSW of Caldwell, Kansas","time":1430507787300,"updated":1436479205040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002be5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002be5&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002be5","ids":",us20002be5,","sources":",us,","types":",dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.8 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6363,36.9412,4.784]},"id":"us20002be5"},
{"type":"Feature","properties":{"mag":2.9,"place":"21km ENE of Mooreland, Oklahoma","time":1430489045600,"updated":1436479205040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002be0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002be0&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"20002be0","ids":",us20002be0,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":221,"magType":"ml","type":"earthquake","title":"M 2.9 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9808,36.511,5]},"id":"us20002be0"},
{"type":"Feature","properties":{"mag":2.9,"place":"12km NW of Cushing, Oklahoma","time":1430487604700,"updated":1436479205040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002b1b","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002b1b&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002b1b","ids":",us20002b1b,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.9 - 12km NW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8775,36.0506,4.627]},"id":"us20002b1b"},
{"type":"Feature","properties":{"mag":2.5,"place":"21km ENE of Mooreland, Oklahoma","time":1430468253300,"updated":1436479204040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002be2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002be2&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002be2","ids":",us20002be2,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":230,"magType":"ml","type":"earthquake","title":"M 2.5 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9883,36.5207,5]},"id":"us20002be2"},
{"type":"Feature","properties":{"mag":3.8,"place":"21km ENE of Mooreland, Oklahoma","time":1430465574900,"updated":1436479204040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002am2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002am2&format=geojson","felt":12,"cdi":2.7,"mmi":4,"alert":null,"status":"reviewed","tsunami":0,"sig":225,"net":"us","code":"20002am2","ids":",us20002am2,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.84,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.8 - 21km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.991,36.5224,4.2]},"id":"us20002am2"},
{"type":"Feature","properties":{"mag":3.1,"place":"14km S of Langston, Oklahoma","time":1430465189400,"updated":1436479204040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002am1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002am1&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002am1","ids":",us20002am1,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":65,"magType":"ml","type":"earthquake","title":"M 3.1 - 14km S of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2417,35.8126,4.186]},"id":"us20002am1"},
{"type":"Feature","properties":{"mag":2.5,"place":"16km E of Helena, Oklahoma","time":1430440079100,"updated":1436479204040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bdz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bdz&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002bdz","ids":",us20002bdz,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":96,"magType":"ml","type":"earthquake","title":"M 2.5 - 16km E of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0897,36.5248,5.89]},"id":"us20002bdz"},
{"type":"Feature","properties":{"mag":2.9,"place":"7km SSW of Guthrie, Oklahoma","time":1430417083000,"updated":1436479204040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ak4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ak4&format=geojson","felt":5,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"20002ak4","ids":",us20002ak4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.78,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.9 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4497,35.8186,4.512]},"id":"us20002ak4"},
{"type":"Feature","properties":{"mag":2.6,"place":"10km E of Helena, Oklahoma","time":1430373425200,"updated":1436479203040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002aec","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002aec&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002aec","ids":",us20002aec,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.93,"gap":94,"magType":"ml","type":"earthquake","title":"M 2.6 - 10km E of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1497,36.5591,6.036]},"id":"us20002aec"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km NW of Perry, Oklahoma","time":1430365153400,"updated":1436479203040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ae2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ae2&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002ae2","ids":",us20002ae2,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":76,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km NW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.372,36.3593,7.657]},"id":"us20002ae2"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NE of Edmond, Oklahoma","time":1430364204600,"updated":1436479203040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002ady","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002ady&format=geojson","felt":7,"cdi":2.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":114,"net":"us","code":"20002ady","ids":",us20002ady,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3811,35.7461,5]},"id":"us20002ady"},
{"type":"Feature","properties":{"mag":3,"place":"20km W of Perry, Oklahoma","time":1430339458000,"updated":1435883027040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002aa7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002aa7&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"20002aa7","ids":",us20002aa7,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":113,"magType":"ml","type":"earthquake","title":"M 3.0 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5163,36.2845,8.843]},"id":"us20002aa7"},
{"type":"Feature","properties":{"mag":2.8,"place":"20km ENE of Perry, Oklahoma","time":1430327428900,"updated":1435883027040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a8v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a8v&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002a8v","ids":",us20002a8v,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.8 - 20km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0749,36.347,5]},"id":"us20002a8v"},
{"type":"Feature","properties":{"mag":3.8,"place":"20km W of Perry, Oklahoma","time":1430325746600,"updated":1435883027040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a7w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a7w&format=geojson","felt":19,"cdi":4.7,"mmi":4.15,"alert":"green","status":"reviewed","tsunami":0,"sig":231,"net":"us","code":"20002a7w","ids":",us20002a7w,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":88,"magType":"mwr","type":"earthquake","title":"M 3.8 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5182,36.2841,5.661]},"id":"us20002a7w"},
{"type":"Feature","properties":{"mag":3.1,"place":"12km SSW of Perry, Oklahoma","time":1430319975100,"updated":1435883027040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a78","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a78&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":148,"net":"us","code":"20002a78","ids":",us20002a78,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":82,"magType":"ml","type":"earthquake","title":"M 3.1 - 12km SSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3258,36.1825,4.439]},"id":"us20002a78"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km SSE of Anthony, Kansas","time":1430290913000,"updated":1437347309500,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002aaw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002aaw&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002aaw","ids":",us20002aaw,ismpkansas70099083,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.065,"rms":0.53,"gap":74,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 18km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9176,37.0114,5.75]},"id":"us20002aaw"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km NE of Edmond, Oklahoma","time":1430285153200,"updated":1435883027040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a1y","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a1y&format=geojson","felt":37,"cdi":4.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":173,"net":"us","code":"20002a1y","ids":",us20002a1y,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":52,"magType":"ml","type":"earthquake","title":"M 3.2 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3829,35.7442,5.696]},"id":"us20002a1y"},
{"type":"Feature","properties":{"mag":2.6,"place":"6km W of Medford, Oklahoma","time":1430270502200,"updated":1435883026040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a14","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a14&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002a14","ids":",us20002a14,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.6 - 6km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.8075,36.8175,5]},"id":"us20002a14"},
{"type":"Feature","properties":{"mag":3.6,"place":"18km SE of Anthony, Kansas","time":1430259534480,"updated":1437347277470,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a09","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a09&format=geojson","felt":52,"cdi":4.6,"mmi":4.17,"alert":null,"status":"reviewed","tsunami":0,"sig":223,"net":"us","code":"20002a09","ids":",us20002a09,ismpkansas70098923,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.083,"rms":0.79,"gap":16,"magType":"mwr","type":"earthquake","title":"M 3.6 - 18km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.896,37.0208,7.74]},"id":"us20002a09"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km NNW of Crescent, Oklahoma","time":1430255005500,"updated":1435883026040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a7v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a7v&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002a7v","ids":",us20002a7v,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":111,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km NNW of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6357,36.027,2.03]},"id":"us20002a7v"},
{"type":"Feature","properties":{"mag":3.3,"place":"20km W of Perry, Oklahoma","time":1430254787300,"updated":1435883026040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029zi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029zi&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"200029zi","ids":",us200029zi,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":126,"magType":"ml","type":"earthquake","title":"M 3.3 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5113,36.2827,5.673]},"id":"us200029zi"},
{"type":"Feature","properties":{"mag":2.5,"place":"15km SW of Tonkawa, Oklahoma","time":1430239201100,"updated":1435883026040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029yr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029yr&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200029yr","ids":",us200029yr,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.19,"gap":73,"magType":"ml","type":"earthquake","title":"M 2.5 - 15km SW of Tonkawa, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4298,36.5751,7.999]},"id":"us200029yr"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km ENE of Enid, Oklahoma","time":1430233471900,"updated":1435883025040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029x2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029x2&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200029x2","ids":",us200029x2,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":98,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km ENE of Enid, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7763,36.423,7.959]},"id":"us200029x2"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km WSW of Langston, Oklahoma","time":1430182695800,"updated":1435883025040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029rv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029rv&format=geojson","felt":4,"cdi":3.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"200029rv","ids":",us200029rv,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.78,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3384,35.9219,5]},"id":"us200029rv"},
{"type":"Feature","properties":{"mag":3,"place":"10km E of Helena, Oklahoma","time":1430180425500,"updated":1435883025040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029rs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029rs&format=geojson","felt":0,"cdi":0,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"200029rs","ids":",us200029rs,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":94,"magType":"ml","type":"earthquake","title":"M 3.0 - 10km E of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1517,36.558,6.617]},"id":"us200029rs"},
{"type":"Feature","properties":{"mag":2.8,"place":"8km WSW of Langston, Oklahoma","time":1430174007400,"updated":1435883025040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029wb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029wb&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200029wb","ids":",us200029wb,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":99,"magType":"ml","type":"earthquake","title":"M 2.8 - 8km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3398,35.9211,5.247]},"id":"us200029wb"},
{"type":"Feature","properties":{"mag":4.1,"place":"7km WSW of Langston, Oklahoma","time":1430173337900,"updated":1435883025040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029pp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029pp&format=geojson","felt":158,"cdi":5,"mmi":3.85,"alert":"green","status":"reviewed","tsunami":0,"sig":338,"net":"us","code":"200029pp","ids":",us200029pp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":1.22,"gap":null,"magType":"mwr","type":"earthquake","title":"M 4.1 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3256,35.918,5.279]},"id":"us200029pp"},
{"type":"Feature","properties":{"mag":2.7,"place":"8km ENE of Cherokee, Oklahoma","time":1430169737200,"updated":1435883024040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029xg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029xg&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200029xg","ids":",us200029xg,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.7 - 8km ENE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2752,36.7933,5]},"id":"us200029xg"},
{"type":"Feature","properties":{"mag":2.5,"place":"20km SSE of Medford, Oklahoma","time":1430144706200,"updated":1435883024040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029l3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029l3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200029l3","ids":",us200029l3,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.5 - 20km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.646,36.6366,4.766]},"id":"us200029l3"},
{"type":"Feature","properties":{"mag":3.1,"place":"20km W of Perry, Oklahoma","time":1430115792800,"updated":1435883023040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029j4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029j4&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"200029j4","ids":",us200029j4,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":88,"magType":"ml","type":"earthquake","title":"M 3.1 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5114,36.2804,6.789]},"id":"us200029j4"},
{"type":"Feature","properties":{"mag":2.8,"place":"6km NNE of Guthrie, Oklahoma","time":1430094186300,"updated":1435883023040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029h9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029h9&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200029h9","ids":",us200029h9,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.74,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.8 - 6km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.395,35.932,5.587]},"id":"us200029h9"},
{"type":"Feature","properties":{"mag":2.8,"place":"14km SE of Medford, Oklahoma","time":1430087707800,"updated":1435883023040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029na","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029na&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200029na","ids":",us200029na,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.8 - 14km SE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6348,36.705,5.538]},"id":"us200029na"},
{"type":"Feature","properties":{"mag":2.7,"place":"2km S of Perry, Oklahoma","time":1430084483800,"updated":1435883023040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029p6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029p6&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200029p6","ids":",us200029p6,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.7 - 2km S of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2915,36.2682,5.802]},"id":"us200029p6"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km S of Medford, Oklahoma","time":1430078599800,"updated":1435883023040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029yq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029yq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200029yq","ids":",us200029yq,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.75,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7105,36.6178,6.806]},"id":"us200029yq"},
{"type":"Feature","properties":{"mag":3.3,"place":"20km W of Perry, Oklahoma","time":1430075245800,"updated":1435883023040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029ex","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029ex&format=geojson","felt":3,"cdi":2.2,"mmi":3.16,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"200029ex","ids":",us200029ex,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":88,"magType":"mwr","type":"earthquake","title":"M 3.3 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5131,36.2833,4.953]},"id":"us200029ex"},
{"type":"Feature","properties":{"mag":3.1,"place":"10km NNE of Guthrie, Oklahoma","time":1430056419210,"updated":1435883022040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029dg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029dg&format=geojson","felt":3,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":149,"net":"us","code":"200029dg","ids":",us200029dg,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.86,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.1 - 10km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.38,35.967,6.1]},"id":"us200029dg"},
{"type":"Feature","properties":{"mag":2.6,"place":"7km N of Spencer, Oklahoma","time":1430047353400,"updated":1435883022040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029gt","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029gt&format=geojson","felt":5,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":106,"net":"us","code":"200029gt","ids":",us200029gt,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.375,35.59,6.5]},"id":"us200029gt"},
{"type":"Feature","properties":{"mag":2.9,"place":"13km ESE of Luther, Oklahoma","time":1430041241100,"updated":1435883022040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029gs","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029gs&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200029gs","ids":",us200029gs,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.9 - 13km ESE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0583,35.605,5]},"id":"us200029gs"},
{"type":"Feature","properties":{"mag":3,"place":"14km WSW of Pawnee, Oklahoma","time":1430016196300,"updated":1435883021040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029gj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029gj&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"200029gj","ids":",us200029gj,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":65,"magType":"ml","type":"earthquake","title":"M 3.0 - 14km WSW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9406,36.2732,4.877]},"id":"us200029gj"},
{"type":"Feature","properties":{"mag":3,"place":"10km NNE of Guthrie, Oklahoma","time":1430015361600,"updated":1435883021040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029ay","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029ay&format=geojson","felt":3,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"200029ay","ids":",us200029ay,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 10km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.382,35.971,4.7]},"id":"us200029ay"},
{"type":"Feature","properties":{"mag":3,"place":"11km WSW of Pawnee, Oklahoma","time":1430012638800,"updated":1435883021040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029l2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029l2&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":139,"net":"us","code":"200029l2","ids":",us200029l2,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.76,"gap":67,"magType":"ml","type":"earthquake","title":"M 3.0 - 11km WSW of Pawnee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.91,36.2821,5.015]},"id":"us200029l2"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km NNW of Perry, Oklahoma","time":1430003584300,"updated":1435883021040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029n2","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029n2&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"200029n2","ids":",us200029n2,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":73,"magType":"ml","type":"earthquake","title":"M 3.4 - 13km NNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3326,36.4033,7.512]},"id":"us200029n2"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km SSE of Medford, Oklahoma","time":1429985072100,"updated":1435883020040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029n9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029n9&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200029n9","ids":",us200029n9,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":68,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6584,36.6221,8.892]},"id":"us200029n9"},
{"type":"Feature","properties":{"mag":2.7,"place":"13km NE of Edmond, Oklahoma","time":1429931864700,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029g3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029g3&format=geojson","felt":4,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"200029g3","ids":",us200029g3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.7 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3797,35.7411,6.169]},"id":"us200029g3"},
{"type":"Feature","properties":{"mag":2.7,"place":"6km SSW of Guthrie, Oklahoma","time":1429925115900,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200029fq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200029fq&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"200029fq","ids":",us200029fq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.84,"gap":69,"magType":"ml","type":"earthquake","title":"M 2.7 - 6km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4421,35.8184,4.524]},"id":"us200029fq"},
{"type":"Feature","properties":{"mag":3.2,"place":"13km NE of Edmond, Oklahoma","time":1429914222700,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000290f","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000290f&format=geojson","felt":33,"cdi":4.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":172,"net":"us","code":"2000290f","ids":",us2000290f,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":52,"magType":"ml","type":"earthquake","title":"M 3.2 - 13km NE of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3799,35.7474,5.461]},"id":"us2000290f"},
{"type":"Feature","properties":{"mag":3.6,"place":"6km N of Spencer, Oklahoma","time":1429878777900,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028tf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028tf&format=geojson","felt":53,"cdi":3.8,"mmi":4.11,"alert":null,"status":"reviewed","tsunami":0,"sig":220,"net":"us","code":"200028tf","ids":",us200028tf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":101,"magType":"ml","type":"earthquake","title":"M 3.6 - 6km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3725,35.585,6.588]},"id":"us200028tf"},
{"type":"Feature","properties":{"mag":3,"place":"18km N of Crescent, Oklahoma","time":1429876869700,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028t8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028t8&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"200028t8","ids":",us200028t8,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 18km N of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.58,36.116,3.134]},"id":"us200028t8"},
{"type":"Feature","properties":{"mag":2.7,"place":"18km ENE of Mooreland, Oklahoma","time":1429866126900,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002bdx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002bdx&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002bdx","ids":",us20002bdx,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":273,"magType":"ml","type":"earthquake","title":"M 2.7 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0178,36.5125,5]},"id":"us20002bdx"},
{"type":"Feature","properties":{"mag":3,"place":"15km W of Perry, Oklahoma","time":1429856206600,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us10002lrq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us10002lrq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"10002lrq","ids":",us10002lrq,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.18,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.0 - 15km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.463,36.274,5.3]},"id":"us10002lrq"},
{"type":"Feature","properties":{"mag":3.2,"place":"15km ESE of Medford, Oklahoma","time":1429856150200,"updated":1435883018040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028rl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028rl&format=geojson","felt":1,"cdi":2.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"200028rl","ids":",us200028rl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.253,"rms":0.41,"gap":28,"magType":"mb_lg","type":"earthquake","title":"M 3.2 - 15km ESE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5768,36.7392,3.53]},"id":"us200028rl"},
{"type":"Feature","properties":{"mag":2.8,"place":"18km ENE of Perry, Oklahoma","time":1429853339600,"updated":1435883017040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028rh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028rh&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200028rh","ids":",us200028rh,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":56,"magType":"ml","type":"earthquake","title":"M 2.8 - 18km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1009,36.3545,5.424]},"id":"us200028rh"},
{"type":"Feature","properties":{"mag":2.7,"place":"20km N of Perry, Oklahoma","time":1429852264800,"updated":1435883017040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028re","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028re&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028re","ids":",us200028re,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.7 - 20km N of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3225,36.4683,6.791]},"id":"us200028re"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km ESE of Cherokee, Oklahoma","time":1429836460900,"updated":1435883017040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028zh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028zh&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028zh","ids":",us200028zh,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":86,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km ESE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1482,36.7146,5.822]},"id":"us200028zh"},
{"type":"Feature","properties":{"mag":2.5,"place":"26km WSW of Medford, Oklahoma","time":1429791873500,"updated":1435883017040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028kk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028kk&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028kk","ids":",us200028kk,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.5 - 26km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0174,36.7485,5.659]},"id":"us200028kk"},
{"type":"Feature","properties":{"mag":3.7,"place":"21km SSE of Medford, Oklahoma","time":1429770040500,"updated":1435883016040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028ih","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028ih&format=geojson","felt":26,"cdi":3.4,"mmi":3.97,"alert":"green","status":"reviewed","tsunami":0,"sig":219,"net":"us","code":"200028ih","ids":",us200028ih,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.87,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.7 - 21km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6568,36.624,5.85]},"id":"us200028ih"},
{"type":"Feature","properties":{"mag":3.4,"place":"20km SSE of Medford, Oklahoma","time":1429766491600,"updated":1435883016040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002a68","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002a68&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"20002a68","ids":",us20002a68,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.4 - 20km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.654,36.629,6.5]},"id":"us20002a68"},
{"type":"Feature","properties":{"mag":3,"place":"21km SSE of Medford, Oklahoma","time":1429766401400,"updated":1435883016040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028i7","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028i7&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"200028i7","ids":",us200028i7,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":61,"magType":"ml","type":"earthquake","title":"M 3.0 - 21km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6575,36.6236,7.098]},"id":"us200028i7"},
{"type":"Feature","properties":{"mag":2.9,"place":"18km SSE of Medford, Oklahoma","time":1429755702190,"updated":1435883016040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028hl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028hl&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200028hl","ids":",us200028hl,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 18km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6794,36.6439,6.45]},"id":"us200028hl"},
{"type":"Feature","properties":{"mag":2.6,"place":"19km WSW of Medford, Oklahoma","time":1429752870660,"updated":1435883016040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028hp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028hp&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200028hp","ids":",us200028hp,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.6 - 19km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.921,36.7251,5]},"id":"us200028hp"},
{"type":"Feature","properties":{"mag":2.5,"place":"19km WSW of Medford, Oklahoma","time":1429741948700,"updated":1435360562040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028ng","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028ng&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028ng","ids":",us200028ng,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.33,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.5 - 19km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9275,36.7201,5.568]},"id":"us200028ng"},
{"type":"Feature","properties":{"mag":3.4,"place":"10km SSW of Caldwell, Kansas","time":1429736224900,"updated":1435360562040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028f9","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028f9&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":178,"net":"us","code":"200028f9","ids":",us200028f9,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 3.4 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6334,36.9428,6.4]},"id":"us200028f9"},
{"type":"Feature","properties":{"mag":2.9,"place":"12km SE of Alva, Oklahoma","time":1429734009900,"updated":1435360562040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028eq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028eq&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"200028eq","ids":",us200028eq,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.48,"gap":131,"magType":"ml","type":"earthquake","title":"M 2.9 - 12km SE of Alva, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.5813,36.719,5]},"id":"us200028eq"},
{"type":"Feature","properties":{"mag":2.8,"place":"15km SE of Anthony, Kansas","time":1429710490820,"updated":1437347120580,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028fi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028fi&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200028fi","ids":",us200028fi,ismpkansas70096498,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.073,"rms":0.39,"gap":65,"magType":"mb_lg","type":"earthquake","title":"M 2.8 - 15km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9226,37.0468,5]},"id":"us200028fi"},
{"type":"Feature","properties":{"mag":2.5,"place":"24km W of Medford, Oklahoma","time":1429698784700,"updated":1435360562040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028bz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028bz&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028bz","ids":",us200028bz,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.51,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.5 - 24km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9989,36.7699,5.978]},"id":"us200028bz"},
{"type":"Feature","properties":{"mag":2.7,"place":"20km ENE of Mooreland, Oklahoma","time":1429696387800,"updated":1435360562040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028at","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028at&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028at","ids":",us200028at,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.7 - 20km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9998,36.5219,5]},"id":"us200028at"},
{"type":"Feature","properties":{"mag":2.6,"place":"12km SSE of Medford, Oklahoma","time":1429686518400,"updated":1435360562040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028c0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028c0&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200028c0","ids":",us200028c0,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":1.03,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.6 - 12km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6828,36.7008,6.116]},"id":"us200028c0"},
{"type":"Feature","properties":{"mag":2.5,"place":"17km NE of Cherokee, Oklahoma","time":1429663874800,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028cb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028cb&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028cb","ids":",us200028cb,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.5 - 17km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2073,36.862,5]},"id":"us200028cb"},
{"type":"Feature","properties":{"mag":2.8,"place":"11km NW of Perry, Oklahoma","time":1429650200200,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028ee","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028ee&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200028ee","ids":",us200028ee,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":89,"magType":"ml","type":"earthquake","title":"M 2.8 - 11km NW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3885,36.3471,5.824]},"id":"us200028ee"},
{"type":"Feature","properties":{"mag":2.6,"place":"21km ENE of Perry, Oklahoma","time":1429645451600,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000288i","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000288i&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"2000288i","ids":",us2000288i,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.6 - 21km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0588,36.3409,3.192]},"id":"us2000288i"},
{"type":"Feature","properties":{"mag":2.8,"place":"16km ENE of Mooreland, Oklahoma","time":1429643239000,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002879","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002879&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002879","ids":",us20002879,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.82,"gap":238,"magType":"ml","type":"earthquake","title":"M 2.8 - 16km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0476,36.5097,10.5]},"id":"us20002879"},
{"type":"Feature","properties":{"mag":2.8,"place":"21km W of Perry, Oklahoma","time":1429642259700,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002872","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002872&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"20002872","ids":",us20002872,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":58,"magType":"ml","type":"earthquake","title":"M 2.8 - 21km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5284,36.3275,6.923]},"id":"us20002872"},
{"type":"Feature","properties":{"mag":2.9,"place":"25km SSE of Medford, Oklahoma","time":1429641722300,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000286f","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000286f&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"2000286f","ids":",us2000286f,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.44,"gap":65,"magType":"ml","type":"earthquake","title":"M 2.9 - 25km SSE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.6202,36.5999,5.416]},"id":"us2000286f"},
{"type":"Feature","properties":{"mag":2.5,"place":"8km N of Meeker, Oklahoma","time":1429628010700,"updated":1435360561040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002850","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002850&format=geojson","felt":1,"cdi":3.3,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002850","ids":",us20002850,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.3,"gap":163,"magType":"ml","type":"earthquake","title":"M 2.5 - 8km N of Meeker, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.9,35.5779,5.559]},"id":"us20002850"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km S of Hennessey, Oklahoma","time":1429617562000,"updated":1435360560040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000281r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000281r&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"2000281r","ids":",us2000281r,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":83,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km S of Hennessey, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.91,36.0275,3.458]},"id":"us2000281r"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km WNW of Perry, Oklahoma","time":1429605298100,"updated":1435360560040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002830","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002830&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"20002830","ids":",us20002830,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km WNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5204,36.3314,6.561]},"id":"us20002830"},
{"type":"Feature","properties":{"mag":2.7,"place":"21km WNW of Perry, Oklahoma","time":1429592477600,"updated":1435360560040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000281n","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000281n&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"2000281n","ids":",us2000281n,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":57,"magType":"ml","type":"earthquake","title":"M 2.7 - 21km WNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5175,36.3313,6.962]},"id":"us2000281n"},
{"type":"Feature","properties":{"mag":2.7,"place":"19km ENE of Perry, Oklahoma","time":1429583936700,"updated":1435360560040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000286g","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000286g&format=geojson","felt":2,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"2000286g","ids":",us2000286g,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.54,"gap":110,"magType":"ml","type":"earthquake","title":"M 2.7 - 19km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0808,36.3446,3.322]},"id":"us2000286g"},
{"type":"Feature","properties":{"mag":2.52,"place":"Kansas","time":1429570867230,"updated":1437347057110,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70095813","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70095813&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":98,"net":"ismpkansas","code":"70095813","ids":",ismpkansas70095813,","sources":",ismpkansas,","types":",origin,phase-data,","nst":19,"dmin":0.07028,"rms":0.08,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.5 - Kansas"},"geometry":{"type":"Point","coordinates":[-97.8141667,37.0558333,3.02]},"id":"ismpkansas70095813"},
{"type":"Feature","properties":{"mag":2.7,"place":"10km S of Caldwell, Kansas","time":1429564977300,"updated":1435360559040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028k4","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028k4&format=geojson","felt":1,"cdi":2.9,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028k4","ids":",us200028k4,","sources":",us,","types":",dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.42,"gap":48,"magType":"ml","type":"earthquake","title":"M 2.7 - 10km S of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6275,36.9428,5]},"id":"us200028k4"},
{"type":"Feature","properties":{"mag":2.7,"place":"2km WNW of Medford, Oklahoma","time":1429563628700,"updated":1435360559040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028kg","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028kg&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028kg","ids":",us200028kg,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":37,"magType":"ml","type":"earthquake","title":"M 2.7 - 2km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7616,36.8153,5.485]},"id":"us200028kg"},
{"type":"Feature","properties":{"mag":2.5,"place":"12km SW of Cushing, Oklahoma","time":1429559128700,"updated":1435360559040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028kb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028kb&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028kb","ids":",us200028kb,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":114,"magType":"ml","type":"earthquake","title":"M 2.5 - 12km SW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.8756,35.9121,5.407]},"id":"us200028kb"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km WNW of Medford, Oklahoma","time":1429555851000,"updated":1435360559040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027uw","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027uw&format=geojson","felt":2,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"200027uw","ids":",us200027uw,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.66,"gap":67,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.878,36.8445,4.67]},"id":"us200027uw"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km WSW of Perry, Oklahoma","time":1429548472400,"updated":1435360559040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027uq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027uq&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200027uq","ids":",us200027uq,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.25,"gap":97,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3625,36.2649,7.699]},"id":"us200027uq"},
{"type":"Feature","properties":{"mag":2.5,"place":"3km ESE of Helena, Oklahoma","time":1429547744790,"updated":1435360559040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000285e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000285e&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"2000285e","ids":",us2000285e,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.37,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.5 - 3km ESE of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.234,36.53,5.7]},"id":"us2000285e"},
{"type":"Feature","properties":{"mag":2.5,"place":"6km SSE of Guthrie, Oklahoma","time":1429540710600,"updated":1435360558040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027z1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027z1&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200027z1","ids":",us200027z1,","sources":",us,","types":",cap,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.67,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.5 - 6km SSE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4088,35.8259,5]},"id":"us200027z1"},
{"type":"Feature","properties":{"mag":3.4,"place":"13km WNW of Medford, Oklahoma","time":1429531711400,"updated":1435360558040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027s8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027s8&format=geojson","felt":5,"cdi":3.1,"mmi":3.65,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"200027s8","ids":",us200027s8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":null,"magType":"mwr","type":"earthquake","title":"M 3.4 - 13km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.88,36.849,5.3]},"id":"us200027s8"},
{"type":"Feature","properties":{"mag":2.7,"place":"25km SSE of Anthony, Kansas","time":1429492910600,"updated":1435360557040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028us","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028us&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028us","ids":",us200028us,","sources":",us,","types":",dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":96,"magType":"ml","type":"earthquake","title":"M 2.7 - 25km SSE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9734,36.9319,3.959]},"id":"us200028us"},
{"type":"Feature","properties":{"mag":2.6,"place":"14km SE of Anthony, Kansas","time":1429482836050,"updated":1437347016950,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027pc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027pc&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200027pc","ids":",us200027pc,ismpkansas70095403,","sources":",us,ismpkansas,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.07,"rms":0.16,"gap":65,"magType":"mb_lg","type":"earthquake","title":"M 2.6 - 14km SE of Anthony, Kansas"},"geometry":{"type":"Point","coordinates":[-97.9308,37.0559,8.72]},"id":"us200027pc"},
{"type":"Feature","properties":{"mag":2.5,"place":"4km NNE of Yale, Oklahoma","time":1429479583400,"updated":1435360557040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028w0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028w0&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028w0","ids":",us200028w0,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.5 - 4km NNE of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.6815,36.1486,3.647]},"id":"us200028w0"},
{"type":"Feature","properties":{"mag":2.5,"place":"11km SW of Perry, Oklahoma","time":1429473375100,"updated":1435360557040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028nc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028nc&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028nc","ids":",us200028nc,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":158,"magType":"ml","type":"earthquake","title":"M 2.5 - 11km SW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3714,36.2116,4.124]},"id":"us200028nc"},
{"type":"Feature","properties":{"mag":2.6,"place":"6km WSW of Langston, Oklahoma","time":1429442659600,"updated":1435360557040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028lx","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028lx&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200028lx","ids":",us200028lx,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.64,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.6 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.318,35.917,4.459]},"id":"us200028lx"},
{"type":"Feature","properties":{"mag":3.5,"place":"6km WSW of Langston, Oklahoma","time":1429424894400,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027m0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027m0&format=geojson","felt":42,"cdi":4.3,"mmi":4.35,"alert":null,"status":"reviewed","tsunami":0,"sig":207,"net":"us","code":"200027m0","ids":",us200027m0,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.97,"gap":63,"magType":"mwr","type":"earthquake","title":"M 3.5 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3241,35.9188,5.631]},"id":"us200027m0"},
{"type":"Feature","properties":{"mag":2.6,"place":"6km WSW of Langston, Oklahoma","time":1429422764000,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028wl","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028wl&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200028wl","ids":",us200028wl,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.77,"gap":66,"magType":"ml","type":"earthquake","title":"M 2.6 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3141,35.9193,3.727]},"id":"us200028wl"},
{"type":"Feature","properties":{"mag":4.2,"place":"6km W of Langston, Oklahoma","time":1429421234800,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027lp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027lp&format=geojson","felt":370,"cdi":6.2,"mmi":4.69,"alert":"green","status":"reviewed","tsunami":0,"sig":501,"net":"us","code":"200027lp","ids":",us200027lp,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,losspager,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.185,"rms":0.61,"gap":19,"magType":"mwr","type":"earthquake","title":"M 4.2 - 6km W of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3318,35.953,3.16]},"id":"us200027lp"},
{"type":"Feature","properties":{"mag":2.9,"place":"10km SSW of Caldwell, Kansas","time":1429382176700,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027ke","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027ke&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"200027ke","ids":",us200027ke,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 10km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6316,36.9419,5]},"id":"us200027ke"},
{"type":"Feature","properties":{"mag":3.4,"place":"9km SSW of Caldwell, Kansas","time":1429382044800,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027ka","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027ka&format=geojson","felt":3,"cdi":4.2,"mmi":3.11,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"200027ka","ids":",us200027ka,","sources":",us,","types":",cap,dyfi,general-link,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":49,"magType":"mwr","type":"earthquake","title":"M 3.4 - 9km SSW of Caldwell, Kansas"},"geometry":{"type":"Point","coordinates":[-97.6311,36.9446,5]},"id":"us200027ka"},
{"type":"Feature","properties":{"mag":2.9,"place":"11km NW of Edmond, Oklahoma","time":1429370593300,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027xr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027xr&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200027xr","ids":",us200027xr,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.71,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.9 - 11km NW of Edmond, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5498,35.7368,5.012]},"id":"us200027xr"},
{"type":"Feature","properties":{"mag":2.5,"place":"12km NNE of Guthrie, Oklahoma","time":1429353623110,"updated":1435360556040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027xf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027xf&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200027xf","ids":",us200027xf,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":0.194,"rms":0.33,"gap":75,"magType":"mb_lg","type":"earthquake","title":"M 2.5 - 12km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3931,35.9846,8.06]},"id":"us200027xf"},
{"type":"Feature","properties":{"mag":2.9,"place":"6km WSW of Langston, Oklahoma","time":1429340919900,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027ii","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027ii&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200027ii","ids":",us200027ii,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.9 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3252,35.9204,4.69]},"id":"us200027ii"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km WSW of Langston, Oklahoma","time":1429336747500,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027sn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027sn&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200027sn","ids":",us200027sn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.83,"gap":64,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3302,35.9225,4.401]},"id":"us200027sn"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km WSW of Langston, Oklahoma","time":1429316138600,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027se","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027se&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200027se","ids":",us200027se,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.8,"gap":80,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3261,35.9188,3.232]},"id":"us200027se"},
{"type":"Feature","properties":{"mag":2.7,"place":"18km NNE of Crescent, Oklahoma","time":1429304933000,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028xp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028xp&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200028xp","ids":",us200028xp,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.7 - 18km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5432,36.1137,4.815]},"id":"us200028xp"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km SW of Cherokee, Oklahoma","time":1429304505100,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200028xy","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200028xy&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200028xy","ids":",us200028xy,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":245,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km SW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4653,36.6763,1.965]},"id":"us200028xy"},
{"type":"Feature","properties":{"mag":2.8,"place":"17km ENE of Perry, Oklahoma","time":1429298139400,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027g8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027g8&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200027g8","ids":",us200027g8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.59,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.8 - 17km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1083,36.3558,4.284]},"id":"us200027g8"},
{"type":"Feature","properties":{"mag":3.4,"place":"7km WSW of Langston, Oklahoma","time":1429289296300,"updated":1435360555040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027d8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027d8&format=geojson","felt":5,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":179,"net":"us","code":"200027d8","ids":",us200027d8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.4 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3268,35.9196,5.433]},"id":"us200027d8"},
{"type":"Feature","properties":{"mag":2.8,"place":"21km WNW of Perry, Oklahoma","time":1429267614000,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027bp","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027bp&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200027bp","ids":",us200027bp,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.28,"gap":73,"magType":"ml","type":"earthquake","title":"M 2.8 - 21km WNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5237,36.3289,6.955]},"id":"us200027bp"},
{"type":"Feature","properties":{"mag":3.1,"place":"4km NNE of Guthrie, Oklahoma","time":1429267344000,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027a1","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027a1&format=geojson","felt":5,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":150,"net":"us","code":"200027a1","ids":",us200027a1,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":66,"magType":"ml","type":"earthquake","title":"M 3.1 - 4km NNE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4096,35.9148,5.977]},"id":"us200027a1"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km WSW of Langston, Oklahoma","time":1429266363800,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027d0","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027d0&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200027d0","ids":",us200027d0,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3326,35.916,4.889]},"id":"us200027d0"},
{"type":"Feature","properties":{"mag":3.3,"place":"6km WSW of Langston, Oklahoma","time":1429263422600,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000278w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000278w&format=geojson","felt":3,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"2000278w","ids":",us2000278w,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.87,"gap":64,"magType":"ml","type":"earthquake","title":"M 3.3 - 6km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3258,35.919,5.134]},"id":"us2000278w"},
{"type":"Feature","properties":{"mag":3.8,"place":"7km WSW of Langston, Oklahoma","time":1429261685800,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000278k","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000278k&format=geojson","felt":28,"cdi":3.9,"mmi":3.81,"alert":null,"status":"reviewed","tsunami":0,"sig":233,"net":"us","code":"2000278k","ids":",us2000278k,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.93,"gap":64,"magType":"mwr","type":"earthquake","title":"M 3.8 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3308,35.9226,3.089]},"id":"us2000278k"},
{"type":"Feature","properties":{"mag":3.6,"place":"7km WSW of Langston, Oklahoma","time":1429259831200,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000278a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000278a&format=geojson","felt":15,"cdi":4.6,"mmi":3.45,"alert":null,"status":"reviewed","tsunami":0,"sig":206,"net":"us","code":"2000278a","ids":",us2000278a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,moment-tensor,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.56,"gap":73,"magType":"mwr","type":"earthquake","title":"M 3.6 - 7km WSW of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.33,35.9211,4.359]},"id":"us2000278a"},
{"type":"Feature","properties":{"mag":2.9,"place":"18km ENE of Mooreland, Oklahoma","time":1429252672400,"updated":1435360554040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000277z","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000277z&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"2000277z","ids":",us2000277z,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.9,"gap":232,"magType":"ml","type":"earthquake","title":"M 2.9 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0181,36.519,8.291]},"id":"us2000277z"},
{"type":"Feature","properties":{"mag":2.6,"place":"14km N of Langston, Oklahoma","time":1429202637300,"updated":1435360553040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000272r","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000272r&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"2000272r","ids":",us2000272r,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":76,"magType":"ml","type":"earthquake","title":"M 2.6 - 14km N of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2235,36.0776,4.251]},"id":"us2000272r"},
{"type":"Feature","properties":{"mag":3.5,"place":"25km ENE of Mooreland, Oklahoma","time":1429199385820,"updated":1435360553040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000270a","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000270a&format=geojson","felt":4,"cdi":2.5,"mmi":3.67,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"2000270a","ids":",us2000270a,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":0.155,"rms":0.93,"gap":27,"magType":"ml","type":"earthquake","title":"M 3.5 - 25km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.9408,36.5274,8.8]},"id":"us2000270a"},
{"type":"Feature","properties":{"mag":2.6,"place":"18km ENE of Perry, Oklahoma","time":1429172687800,"updated":1435360553040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026zi","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026zi&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200026zi","ids":",us200026zi,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.35,"gap":81,"magType":"ml","type":"earthquake","title":"M 2.6 - 18km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.0974,36.3622,4.123]},"id":"us200026zi"},
{"type":"Feature","properties":{"mag":2.5,"place":"8km ENE of Perry, Oklahoma","time":1429159219600,"updated":1435360553040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000271e","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000271e&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"2000271e","ids":",us2000271e,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":51,"magType":"ml","type":"earthquake","title":"M 2.5 - 8km ENE of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2029,36.3283,6.173]},"id":"us2000271e"},
{"type":"Feature","properties":{"mag":2.6,"place":"10km SSE of Guthrie, Oklahoma","time":1429158105000,"updated":1435360553040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000271l","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000271l&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"2000271l","ids":",us2000271l,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.88,"gap":143,"magType":"ml","type":"earthquake","title":"M 2.6 - 10km SSE of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3991,35.7907,3.596]},"id":"us2000271l"},
{"type":"Feature","properties":{"mag":3.3,"place":"21km WNW of Perry, Oklahoma","time":1429125156800,"updated":1435015143040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026s8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026s8&format=geojson","felt":2,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":168,"net":"us","code":"200026s8","ids":",us200026s8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.53,"gap":57,"magType":"ml","type":"earthquake","title":"M 3.3 - 21km WNW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5229,36.3294,6.978]},"id":"us200026s8"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km S of Medford, Oklahoma","time":1429098811500,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026s6","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026s6&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200026s6","ids":",us200026s6,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":63,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km S of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7763,36.6257,5]},"id":"us200026s6"},
{"type":"Feature","properties":{"mag":2.8,"place":"17km ENE of Mooreland, Oklahoma","time":1429074296700,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026zu","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026zu&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200026zu","ids":",us200026zu,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.7,"gap":237,"magType":"ml","type":"earthquake","title":"M 2.8 - 17km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0317,36.5103,9.204]},"id":"us200026zu"},
{"type":"Feature","properties":{"mag":3,"place":"20km W of Perry, Oklahoma","time":1429068309600,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026zn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026zn&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":138,"net":"us","code":"200026zn","ids":",us200026zn,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":55,"magType":"ml","type":"earthquake","title":"M 3.0 - 20km W of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5153,36.3138,6.438]},"id":"us200026zn"},
{"type":"Feature","properties":{"mag":2.9,"place":"2km NNE of Medford, Oklahoma","time":1429062179500,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026zj","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026zj&format=geojson","felt":1,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200026zj","ids":",us200026zj,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":38,"magType":"ml","type":"earthquake","title":"M 2.9 - 2km NNE of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.7219,36.8225,5]},"id":"us200026zj"},
{"type":"Feature","properties":{"mag":2.7,"place":"7km N of Spencer, Oklahoma","time":1429055002300,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026l5","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026l5&format=geojson","felt":4,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":113,"net":"us","code":"200026l5","ids":",us200026l5,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.72,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.7 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3716,35.5884,6.169]},"id":"us200026l5"},
{"type":"Feature","properties":{"mag":2.9,"place":"8km WSW of Perry, Oklahoma","time":1429051017000,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026kt","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026kt&format=geojson","felt":4,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200026kt","ids":",us200026kt,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.63,"gap":46,"magType":"ml","type":"earthquake","title":"M 2.9 - 8km WSW of Perry, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3703,36.2606,6.712]},"id":"us200026kt"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km N of Spencer, Oklahoma","time":1429050476100,"updated":1435015142040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026l8","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026l8&format=geojson","felt":3,"cdi":2.7,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"200026l8","ids":",us200026l8,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.58,"gap":72,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km N of Spencer, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.3745,35.589,6.578]},"id":"us200026l8"},
{"type":"Feature","properties":{"mag":2.6,"place":"5km ENE of Crescent, Oklahoma","time":1429031324400,"updated":1435015141040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026qh","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026qh&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200026qh","ids":",us200026qh,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.6 - 5km ENE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5459,35.9757,4.614]},"id":"us200026qh"},
{"type":"Feature","properties":{"mag":2.6,"place":"5km ENE of Crescent, Oklahoma","time":1429031220400,"updated":1435015141040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026qc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026qc&format=geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200026qc","ids":",us200026qc,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.69,"gap":70,"magType":"ml","type":"earthquake","title":"M 2.6 - 5km ENE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5468,35.9764,4.837]},"id":"us200026qc"},
{"type":"Feature","properties":{"mag":2.8,"place":"4km WNW of Prague, Oklahoma","time":1429021926800,"updated":1435015141040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026gb","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026gb&format=geojson","felt":2,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200026gb","ids":",us200026gb,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":185,"magType":"ml","type":"earthquake","title":"M 2.8 - 4km WNW of Prague, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7376,35.4953,5]},"id":"us200026gb"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km ENE of Mooreland, Oklahoma","time":1429009144300,"updated":1435015141040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026em","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026em&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200026em","ids":",us200026em,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.65,"gap":232,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0231,36.5115,15.581]},"id":"us200026em"},
{"type":"Feature","properties":{"mag":2.8,"place":"9km SE of Luther, Oklahoma","time":1428988009100,"updated":1435015141040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026c3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026c3&format=geojson","felt":2,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"200026c3","ids":",us200026c3,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.55,"gap":85,"magType":"ml","type":"earthquake","title":"M 2.8 - 9km SE of Luther, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.1258,35.602,6.195]},"id":"us200026c3"},
{"type":"Feature","properties":{"mag":2.9,"place":"16km ENE of Mooreland, Oklahoma","time":1428985417700,"updated":1435015141040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026by","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026by&format=geojson","felt":1,"cdi":3.4,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":130,"net":"us","code":"200026by","ids":",us200026by,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":237,"magType":"ml","type":"earthquake","title":"M 2.9 - 16km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.041,36.5087,7.735]},"id":"us200026by"},
{"type":"Feature","properties":{"mag":2.7,"place":"20km NE of Cherokee, Oklahoma","time":1428971617800,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026qr","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026qr&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":112,"net":"us","code":"200026qr","ids":",us200026qr,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.61,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.7 - 20km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.2003,36.8893,4.596]},"id":"us200026qr"},
{"type":"Feature","properties":{"mag":2.5,"place":"13km NE of Mooreland, Oklahoma","time":1428941217800,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026f3","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026f3&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200026f3","ids":",us200026f3,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.05,"gap":266,"magType":"ml","type":"earthquake","title":"M 2.5 - 13km NE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0906,36.5226,7.727]},"id":"us200026f3"},
{"type":"Feature","properties":{"mag":2.8,"place":"26km WSW of Medford, Oklahoma","time":1428939466570,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000264u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000264u&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":121,"net":"us","code":"2000264u","ids":",us2000264u,","sources":",us,","types":",cap,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.8 - 26km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.018,36.75,6.4]},"id":"us2000264u"},
{"type":"Feature","properties":{"mag":3.5,"place":"15km ENE of Mooreland, Oklahoma","time":1428934206100,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000263w","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000263w&format=geojson","felt":1,"cdi":1,"mmi":3.97,"alert":null,"status":"reviewed","tsunami":0,"sig":189,"net":"us","code":"2000263w","ids":",us2000263w,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.49,"gap":234,"magType":"ml","type":"earthquake","title":"M 3.5 - 15km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0534,36.5068,9.177]},"id":"us2000263w"},
{"type":"Feature","properties":{"mag":2.5,"place":"7km SSW of Guthrie, Oklahoma","time":1428930831800,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002649","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002649&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"20002649","ids":",us20002649,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":103,"magType":"ml","type":"earthquake","title":"M 2.5 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4519,35.811,5.243]},"id":"us20002649"},
{"type":"Feature","properties":{"mag":2.6,"place":"7km SSW of Guthrie, Oklahoma","time":1428929798700,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002642","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002642&format=geojson","felt":1,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"20002642","ids":",us20002642,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.57,"gap":102,"magType":"ml","type":"earthquake","title":"M 2.6 - 7km SSW of Guthrie, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.4482,35.8101,4.833]},"id":"us20002642"},
{"type":"Feature","properties":{"mag":3.3,"place":"14km NNE of Crescent, Oklahoma","time":1428928739700,"updated":1435015140040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000263f","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000263f&format=geojson","felt":9,"cdi":3.1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":170,"net":"us","code":"2000263f","ids":",us2000263f,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.68,"gap":68,"magType":"ml","type":"earthquake","title":"M 3.3 - 14km NNE of Crescent, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.5578,36.077,5.06]},"id":"us2000263f"},
{"type":"Feature","properties":{"mag":2.5,"place":"8km WSW of Helena, Oklahoma","time":1428911281700,"updated":1435015139040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000268v","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000268v&format=geojson","felt":null,"cdi":null,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"2000268v","ids":",us2000268v,","sources":",us,","types":",general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.47,"gap":126,"magType":"ml","type":"earthquake","title":"M 2.5 - 8km WSW of Helena, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.3613,36.5314,6.189]},"id":"us2000268v"},
{"type":"Feature","properties":{"mag":2.5,"place":"11km NW of Yale, Oklahoma","time":1428893501300,"updated":1435015139040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026gc","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026gc&format=geojson","felt":1,"cdi":2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200026gc","ids":",us200026gc,","sources":",us,","types":",dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.62,"gap":93,"magType":"ml","type":"earthquake","title":"M 2.5 - 11km NW of Yale, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.7745,36.1959,4.971]},"id":"us200026gc"},
{"type":"Feature","properties":{"mag":2.5,"place":"24km WNW of Medford, Oklahoma","time":1428891871600,"updated":1435015139040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026gf","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026gf&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200026gf","ids":",us200026gf,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.52,"gap":92,"magType":"ml","type":"earthquake","title":"M 2.5 - 24km WNW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9988,36.8593,5]},"id":"us200026gf"},
{"type":"Feature","properties":{"mag":2.5,"place":"3km SSW of Cushing, Oklahoma","time":1428880310700,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us2000260u","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000260u&format=geojson","felt":1,"cdi":3.8,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":97,"net":"us","code":"2000260u","ids":",us2000260u,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.5,"gap":78,"magType":"ml","type":"earthquake","title":"M 2.5 - 3km SSW of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.777,35.9547,3.943]},"id":"us2000260u"},
{"type":"Feature","properties":{"mag":3.5,"place":"4km S of Cushing, Oklahoma","time":1428879356100,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us20002606","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us20002606&format=geojson","felt":27,"cdi":3.6,"mmi":3.74,"alert":null,"status":"reviewed","tsunami":0,"sig":198,"net":"us","code":"20002606","ids":",us20002606,","sources":",us,","types":",cap,dyfi,general-link,geoserve,impact-text,nearby-cities,origin,phase-data,shakemap,tectonic-summary,","nst":null,"dmin":null,"rms":0.4,"gap":79,"magType":"ml","type":"earthquake","title":"M 3.5 - 4km S of Cushing, Oklahoma"},"geometry":{"type":"Point","coordinates":[-96.775,35.949,4.45]},"id":"us20002606"},
{"type":"Feature","properties":{"mag":2.5,"place":"18km ENE of Mooreland, Oklahoma","time":1428877689000,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027bz","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027bz&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200027bz","ids":",us200027bz,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.31,"gap":239,"magType":"ml","type":"earthquake","title":"M 2.5 - 18km ENE of Mooreland, Oklahoma"},"geometry":{"type":"Point","coordinates":[-99.0259,36.513,5]},"id":"us200027bz"},
{"type":"Feature","properties":{"mag":2.6,"place":"20km NE of Cherokee, Oklahoma","time":1428876330000,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027bv","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027bv&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200027bv","ids":",us200027bv,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.45,"gap":113,"magType":"ml","type":"earthquake","title":"M 2.6 - 20km NE of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.1934,36.886,3.055]},"id":"us200027bv"},
{"type":"Feature","properties":{"mag":2.6,"place":"26km W of Medford, Oklahoma","time":1428873156500,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200027by","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200027by&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200027by","ids":",us200027by,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.6,"gap":112,"magType":"ml","type":"earthquake","title":"M 2.6 - 26km W of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.0333,36.7785,5.688]},"id":"us200027by"},
{"type":"Feature","properties":{"mag":2.5,"place":"5km NNE of Langston, Oklahoma","time":1428856868000,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026hk","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026hk&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":96,"net":"us","code":"200026hk","ids":",us200026hk,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.38,"gap":62,"magType":"ml","type":"earthquake","title":"M 2.5 - 5km NNE of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.2252,35.992,5.927]},"id":"us200026hk"},
{"type":"Feature","properties":{"mag":2.9,"place":"6km NNE of Langston, Oklahoma","time":1428856754380,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026se","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026se&format=geojson","felt":0,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":129,"net":"us","code":"200026se","ids":",us200026se,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.46,"gap":null,"magType":"ml","type":"earthquake","title":"M 2.9 - 6km NNE of Langston, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.222,35.992,6.1]},"id":"us200026se"},
{"type":"Feature","properties":{"mag":2.6,"place":"9km WSW of Cherokee, Oklahoma","time":1428848760600,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200026hq","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200026hq&format=geojson","felt":1,"cdi":2.2,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":104,"net":"us","code":"200026hq","ids":",us200026hq,","sources":",us,","types":",dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.24,"gap":121,"magType":"ml","type":"earthquake","title":"M 2.6 - 9km WSW of Cherokee, Oklahoma"},"geometry":{"type":"Point","coordinates":[-98.4573,36.7163,6.564]},"id":"us200026hq"},
{"type":"Feature","properties":{"mag":3.2,"place":"20km WSW of Medford, Oklahoma","time":1428840635500,"updated":1435015138040,"tz":-300,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/us200025xn","detail":"http://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us200025xn&format=geojson","felt":1,"cdi":1,"mmi":null,"alert":null,"status":"reviewed","tsunami":0,"sig":158,"net":"us","code":"200025xn","ids":",us200025xn,","sources":",us,","types":",cap,dyfi,general-link,geoserve,nearby-cities,origin,phase-data,tectonic-summary,","nst":null,"dmin":null,"rms":0.43,"gap":120,"magType":"ml","type":"earthquake","title":"M 3.2 - 20km WSW of Medford, Oklahoma"},"geometry":{"type":"Point","coordinates":[-97.9331,36.7214,6.885]},"id":"us200025xn"},
{"type":"Feature","properties":{"mag":2.9,"place":"Kansas","time":1428827876760,"updated":1437592863400,"tz":null,"url":"http://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70092998","detail":"http://earthquake.usgs.gov/fd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment