Graded = 10/10
In [35]:
#!pip install pandas
In [19]:
import pandas as pd
In [20]:
df = pd.read_csv("http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/1.0_month.csv")
df.head()
Out[20]:
time
latitude
longitude
depth
mag
magType
nst
gap
dmin
rms
...
updated
place
type
horizontalError
depthError
magError
magNst
status
locationSource
magSource
0
2016-07-12T01:27:13.940Z
34.106167
-118.219330
-0.47
1.87
ml
20.0
172.0
0.07096
0.40
...
2016-07-12T01:29:32.537Z
2km SW of Highland Park, California
earthquake
0.98
2.13
0.522
28.0
automatic
ci
ci
1
2016-07-12T01:27:03.640Z
34.201668
-117.842163
-0.35
1.27
ml
21.0
127.0
0.15660
0.42
...
2016-07-12T01:29:10.725Z
8km NNE of Glendora, California
earthquake
1.14
2.73
0.315
10.0
automatic
ci
ci
2
2016-07-12T01:05:42.000Z
61.645600
-150.098000
37.10
2.00
ml
NaN
NaN
NaN
0.47
...
2016-07-12T01:18:07.873Z
11km SSW of Willow, Alaska
earthquake
0.30
0.90
NaN
NaN
automatic
ak
ak
3
2016-07-12T01:01:13.000Z
61.302300
-152.501700
0.00
1.80
ml
NaN
NaN
NaN
0.62
...
2016-07-12T01:18:09.062Z
91km N of Redoubt Volcano, Alaska
earthquake
0.20
0.30
NaN
NaN
automatic
ak
ak
4
2016-07-12T00:57:57.000Z
61.307900
-152.598600
0.00
2.30
ml
NaN
NaN
NaN
0.72
...
2016-07-12T01:18:08.447Z
91km N of Redoubt Volcano, Alaska
earthquake
0.20
0.20
NaN
NaN
automatic
ak
ak
5 rows × 22 columns
In [21]:
earthquakes_df = pd.read_csv("http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/1.0_month.csv")
earthquakes = earthquakes_df.to_dict('records')
In [22]:
earthquakes
Out[22]:
[{'depth': -0.47,
'depthError': 2.13,
'dmin': 0.07096000000000001,
'gap': 172.0,
'horizontalError': 0.98,
'id': 'ci37412831',
'latitude': 34.1061668,
'locationSource': 'ci',
'longitude': -118.2193298,
'mag': 1.87,
'magError': 0.522,
'magNst': 28.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 20.0,
'place': '2km SW of Highland Park, California',
'rms': 0.4,
'status': 'automatic',
'time': '2016-07-12T01:27:13.940Z',
'type': 'earthquake',
'updated': '2016-07-12T01:29:32.537Z'},
{'depth': -0.35,
'depthError': 2.73,
'dmin': 0.1566,
'gap': 127.0,
'horizontalError': 1.14,
'id': 'ci37412823',
'latitude': 34.201667799999996,
'locationSource': 'ci',
'longitude': -117.84216310000001,
'mag': 1.27,
'magError': 0.315,
'magNst': 10.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 21.0,
'place': '8km NNE of Glendora, California',
'rms': 0.42,
'status': 'automatic',
'time': '2016-07-12T01:27:03.640Z',
'type': 'earthquake',
'updated': '2016-07-12T01:29:10.725Z'},
{'depth': 37.1,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13752519',
'latitude': 61.6456,
'locationSource': 'ak',
'longitude': -150.09799999999998,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '11km SSW of Willow, Alaska',
'rms': 0.47,
'status': 'automatic',
'time': '2016-07-12T01:05:42.000Z',
'type': 'earthquake',
'updated': '2016-07-12T01:18:07.873Z'},
{'depth': 0.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13752516',
'latitude': 61.3023,
'locationSource': 'ak',
'longitude': -152.5017,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-12T01:01:13.000Z',
'type': 'earthquake',
'updated': '2016-07-12T01:18:09.062Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13752512',
'latitude': 61.3079,
'locationSource': 'ak',
'longitude': -152.5986,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.72,
'status': 'automatic',
'time': '2016-07-12T00:57:57.000Z',
'type': 'earthquake',
'updated': '2016-07-12T01:18:08.447Z'},
{'depth': 86.3,
'depthError': 2.9,
'dmin': nan,
'gap': nan,
'horizontalError': 1.7,
'id': 'ak13752264',
'latitude': 59.7916,
'locationSource': 'ak',
'longitude': -152.779,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '53km W of Anchor Point, Alaska',
'rms': 0.86,
'status': 'automatic',
'time': '2016-07-12T00:42:44.000Z',
'type': 'earthquake',
'updated': '2016-07-12T00:59:47.063Z'},
{'depth': 2.64,
'depthError': 0.41,
'dmin': 0.08611,
'gap': 48.0,
'horizontalError': 0.2,
'id': 'ci37412799',
'latitude': 34.9351667,
'locationSource': 'ci',
'longitude': -116.92133329999999,
'mag': 1.88,
'magError': 0.19399999999999998,
'magNst': 25.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 28.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.16,
'status': 'automatic',
'time': '2016-07-12T00:42:21.370Z',
'type': 'earthquake',
'updated': '2016-07-12T00:46:18.417Z'},
{'depth': 37.42,
'depthError': 0.92,
'dmin': 0.09672,
'gap': 245.0,
'horizontalError': 0.71,
'id': 'hv61334751',
'latitude': 18.946167000000003,
'locationSource': 'hv',
'longitude': -155.57183840000002,
'mag': 2.21,
'magError': 0.01,
'magNst': 5.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 37.0,
'place': '24km SE of Hawaiian Ocean View, Hawaii',
'rms': 0.14,
'status': 'automatic',
'time': '2016-07-12T00:18:04.960Z',
'type': 'earthquake',
'updated': '2016-07-12T00:21:32.520Z'},
{'depth': 3.5,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13752261',
'latitude': 66.0903,
'locationSource': 'ak',
'longitude': -150.0772,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '124km NNE of Manley Hot Springs, Alaska',
'rms': 0.35,
'status': 'automatic',
'time': '2016-07-12T00:15:35.000Z',
'type': 'earthquake',
'updated': '2016-07-12T00:42:14.269Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 3.63,
'gap': 54.0,
'horizontalError': 5.5,
'id': 'us100062sq',
'latitude': 81.6259,
'locationSource': 'us',
'longitude': -2.3148,
'mag': 4.7,
'magError': 0.033,
'magNst': 279.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '249km E of Nord, Greenland',
'rms': 1.14,
'status': 'reviewed',
'time': '2016-07-12T00:15:24.100Z',
'type': 'earthquake',
'updated': '2016-07-12T00:44:40.431Z'},
{'depth': 0.23,
'depthError': 31.61,
'dmin': 0.07849,
'gap': 47.0,
'horizontalError': 0.2,
'id': 'ci37412767',
'latitude': 34.93,
'locationSource': 'ci',
'longitude': -116.92816670000002,
'mag': 2.19,
'magError': 0.179,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 33.0,
'place': '9km ENE of Barstow, CA',
'rms': 0.18,
'status': 'automatic',
'time': '2016-07-11T23:51:08.690Z',
'type': 'earthquake',
'updated': '2016-07-12T00:01:33.230Z'},
{'depth': 5.0,
'depthError': 2.0,
'dmin': 0.16699999999999998,
'gap': 56.0,
'horizontalError': 1.0,
'id': 'us100062sa',
'latitude': 35.8197,
'locationSource': 'us',
'longitude': -97.2508,
'mag': 2.6,
'magError': 0.295,
'magNst': 3.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '13km S of Langston, Oklahoma',
'rms': 0.56,
'status': 'reviewed',
'time': '2016-07-11T23:48:45.180Z',
'type': 'earthquake',
'updated': '2016-07-12T00:04:26.604Z'},
{'depth': 6.03,
'depthError': 0.57,
'dmin': 0.081,
'gap': 44.0,
'horizontalError': 0.21,
'id': 'ci37412775',
'latitude': 34.932333299999996,
'locationSource': 'ci',
'longitude': -116.92666670000001,
'mag': 1.74,
'magError': 0.11699999999999999,
'magNst': 30.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 21.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-11T23:48:14.090Z',
'type': 'earthquake',
'updated': '2016-07-12T00:49:44.490Z'},
{'depth': -0.74,
'depthError': 1.59,
'dmin': 0.02028,
'gap': 77.0,
'horizontalError': 0.42,
'id': 'nc72660576',
'latitude': 38.8168335,
'locationSource': 'nc',
'longitude': -122.81866459999999,
'mag': 1.93,
'magError': 0.27,
'magNst': 16.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 16.0,
'place': '6km NW of The Geysers, California',
'rms': 0.14,
'status': 'automatic',
'time': '2016-07-11T23:47:13.200Z',
'type': 'earthquake',
'updated': '2016-07-12T00:32:02.513Z'},
{'depth': 81.6,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13752257',
'latitude': 60.1037,
'locationSource': 'ak',
'longitude': -151.5737,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '33km SSW of Cohoe, Alaska',
'rms': 0.51,
'status': 'automatic',
'time': '2016-07-11T23:42:58.000Z',
'type': 'earthquake',
'updated': '2016-07-12T00:01:03.911Z'},
{'depth': 0.0,
'depthError': 30.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13752254',
'latitude': 64.9644,
'locationSource': 'ak',
'longitude': -147.3355,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '20km NNE of Badger, Alaska',
'rms': 0.47,
'status': 'automatic',
'time': '2016-07-11T23:33:36.000Z',
'type': 'earthquake',
'updated': '2016-07-12T00:01:03.335Z'},
{'depth': 5.98,
'depthError': 0.49,
'dmin': 0.0806,
'gap': 48.0,
'horizontalError': 0.11,
'id': 'ci37412727',
'latitude': 34.9313333,
'locationSource': 'ci',
'longitude': -116.92616670000001,
'mag': 2.51,
'magError': 0.131,
'magNst': 139.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 39.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-11T23:33:15.260Z',
'type': 'earthquake',
'updated': '2016-07-11T23:54:12.500Z'},
{'depth': -0.92,
'depthError': 31.61,
'dmin': 0.06715,
'gap': 234.0,
'horizontalError': 1.59,
'id': 'uw61179966',
'latitude': 49.042,
'locationSource': 'uw',
'longitude': -122.00366670000001,
'mag': 1.1,
'magError': 0.078,
'magNst': 3.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 4.0,
'place': '15km SSW of Chilliwack, Canada',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-11T23:15:07.220Z',
'type': 'explosion',
'updated': '2016-07-11T23:41:41.920Z'},
{'depth': 6.14,
'depthError': 0.49,
'dmin': 0.08287,
'gap': 48.0,
'horizontalError': 0.16,
'id': 'ci37412703',
'latitude': 34.9333333,
'locationSource': 'ci',
'longitude': -116.92466670000002,
'mag': 1.68,
'magError': 0.09699999999999999,
'magNst': 48.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 24.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-11T23:11:35.570Z',
'type': 'earthquake',
'updated': '2016-07-12T00:22:04.464Z'},
{'depth': 3.0,
'depthError': 0.39,
'dmin': 0.037110000000000004,
'gap': 41.0,
'horizontalError': 0.19,
'id': 'ci37412695',
'latitude': 34.2443333,
'locationSource': 'ci',
'longitude': -117.49566670000002,
'mag': 1.54,
'magError': 0.1,
'magNst': 20.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 36.0,
'place': '2km S of Lytle Creek, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-11T23:09:50.390Z',
'type': 'earthquake',
'updated': '2016-07-12T01:06:05.220Z'},
{'depth': 14.68,
'depthError': 0.57,
'dmin': 0.08286,
'gap': 187.0,
'horizontalError': 0.31,
'id': 'ci37412687',
'latitude': 33.2526667,
'locationSource': 'ci',
'longitude': -117.45283329999998,
'mag': 1.41,
'magError': 0.195,
'magNst': 21.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 30.0,
'place': '7km WNW of Camp Pendleton South, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-11T23:07:52.610Z',
'type': 'earthquake',
'updated': '2016-07-12T00:59:16.186Z'},
{'depth': 6.37,
'depthError': 0.46,
'dmin': 0.08152000000000001,
'gap': 48.0,
'horizontalError': 0.12,
'id': 'ci37412679',
'latitude': 34.9326667,
'locationSource': 'ci',
'longitude': -116.92616670000001,
'mag': 2.47,
'magError': 0.129,
'magNst': 131.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 36.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-11T23:05:06.360Z',
'type': 'earthquake',
'updated': '2016-07-12T00:05:20.940Z'},
{'depth': 10.1,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13752251',
'latitude': 62.7984,
'locationSource': 'ak',
'longitude': -143.5147,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '65km SSW of Tok, Alaska',
'rms': 0.32,
'status': 'automatic',
'time': '2016-07-11T23:01:10.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:02.172Z'},
{'depth': 52.0,
'depthError': 0.8,
'dmin': 0.14193381,
'gap': 219.6,
'horizontalError': 0.8,
'id': 'pr16193007',
'latitude': 17.8878,
'locationSource': 'pr',
'longitude': -66.2328,
'mag': 2.0,
'magError': 0.0,
'magNst': 5.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 7.0,
'place': '7km S of Central Aguirre, Puerto Rico',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-11T22:57:07.100Z',
'type': 'earthquake',
'updated': '2016-07-11T23:25:14.264Z'},
{'depth': 40.4,
'depthError': 1.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13751875',
'latitude': 60.4484,
'locationSource': 'ak',
'longitude': -151.299,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '3km N of Kalifornsky, Alaska',
'rms': 0.67,
'status': 'automatic',
'time': '2016-07-11T22:45:31.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:25.737Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.494,
'gap': 92.0,
'horizontalError': 8.6,
'id': 'us100062rh',
'latitude': 33.414,
'locationSource': 'us',
'longitude': 139.3424,
'mag': 4.6,
'magError': 0.071,
'magNst': 59.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '56km NW of Hachijo-jima, Japan',
'rms': 0.9,
'status': 'reviewed',
'time': '2016-07-11T22:34:01.340Z',
'type': 'earthquake',
'updated': '2016-07-11T22:59:24.531Z'},
{'depth': 4.38,
'depthError': 0.42,
'dmin': 0.015880000000000002,
'gap': 58.0,
'horizontalError': 0.14,
'id': 'ci37412655',
'latitude': 34.109,
'locationSource': 'ci',
'longitude': -116.9405,
'mag': 1.28,
'magError': 0.13,
'magNst': 19.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 46.0,
'place': '13km NE of Yucaipa, CA',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-11T22:25:40.390Z',
'type': 'earthquake',
'updated': '2016-07-12T00:55:55.330Z'},
{'depth': -0.92,
'depthError': 31.61,
'dmin': 0.05001,
'gap': 294.0,
'horizontalError': 3.31,
'id': 'uw61179946',
'latitude': 49.013999999999996,
'locationSource': 'uw',
'longitude': -122.1765,
'mag': 1.04,
'magError': 0.054000000000000006,
'magNst': 3.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 4.0,
'place': '6km ENE of Sumas, Washington',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-11T22:23:15.050Z',
'type': 'explosion',
'updated': '2016-07-11T23:39:59.250Z'},
{'depth': 6.11,
'depthError': 0.47,
'dmin': 0.08201,
'gap': 48.0,
'horizontalError': 0.13,
'id': 'ci37412647',
'latitude': 34.9326667,
'locationSource': 'ci',
'longitude': -116.92533329999999,
'mag': 1.96,
'magError': 0.14,
'magNst': 71.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 31.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-11T22:22:25.770Z',
'type': 'earthquake',
'updated': '2016-07-12T00:42:18.939Z'},
{'depth': 5.5,
'depthError': 0.62,
'dmin': 0.08267000000000001,
'gap': 48.0,
'horizontalError': 0.14,
'id': 'ci37412639',
'latitude': 34.932333299999996,
'locationSource': 'ci',
'longitude': -116.92383329999998,
'mag': 2.78,
'magError': 0.2,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 36.0,
'place': '10km ENE of Barstow, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-11T22:12:41.340Z',
'type': 'earthquake',
'updated': '2016-07-12T00:42:38.760Z'},
{'depth': 16.01,
'depthError': 0.23,
'dmin': 0.02525,
'gap': 57.0,
'horizontalError': 0.16,
'id': 'ci37412631',
'latitude': 33.6893333,
'locationSource': 'ci',
'longitude': -116.69883329999999,
'mag': 1.08,
'magError': 0.12,
'magNst': 23.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 38.0,
'place': '6km SSE of Idyllwild, CA',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-11T22:07:01.790Z',
'type': 'earthquake',
'updated': '2016-07-12T00:35:31.570Z'},
{'depth': 21.8,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13751867',
'latitude': 60.746,
'locationSource': 'ak',
'longitude': -149.0686,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '21km W of Whittier, Alaska',
'rms': 0.96,
'status': 'automatic',
'time': '2016-07-11T21:58:42.000Z',
'type': 'earthquake',
'updated': '2016-07-11T22:17:42.980Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.429,
'gap': 74.0,
'horizontalError': 9.2,
'id': 'us100062qg',
'latitude': 33.3698,
'locationSource': 'us',
'longitude': 139.4005,
'mag': 4.6,
'magError': 0.071,
'magNst': 58.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '48km NW of Hachijo-jima, Japan',
'rms': 0.93,
'status': 'reviewed',
'time': '2016-07-11T21:56:49.680Z',
'type': 'earthquake',
'updated': '2016-07-11T22:26:25.562Z'},
{'depth': 0.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13751865',
'latitude': 60.1175,
'locationSource': 'ak',
'longitude': -141.251,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '65km E of Cape Yakataga, Alaska',
'rms': 0.52,
'status': 'automatic',
'time': '2016-07-11T21:54:28.000Z',
'type': 'earthquake',
'updated': '2016-07-11T22:17:42.392Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 1.85,
'gap': 150.0,
'horizontalError': 8.9,
'id': 'us100062qe',
'latitude': -56.5829,
'locationSource': 'us',
'longitude': -69.0947,
'mag': 4.7,
'magError': 0.1,
'magNst': 30.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '204km SSW of Ushuaia, Argentina',
'rms': 0.95,
'status': 'reviewed',
'time': '2016-07-11T21:48:38.040Z',
'type': 'earthquake',
'updated': '2016-07-11T22:09:52.590Z'},
{'depth': 87.4,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13751623',
'latitude': 62.391000000000005,
'locationSource': 'ak',
'longitude': -151.2584,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '59km W of Talkeetna, Alaska',
'rms': 0.57,
'status': 'automatic',
'time': '2016-07-11T21:21:39.000Z',
'type': 'earthquake',
'updated': '2016-07-11T21:33:16.814Z'},
{'depth': 2.89,
'depthError': 4.1,
'dmin': 0.04833,
'gap': 191.0,
'horizontalError': 2.99,
'id': 'nc72660526',
'latitude': 40.417333299999996,
'locationSource': 'nc',
'longitude': -121.50233329999999,
'mag': 2.6,
'magError': nan,
'magNst': 0.0,
'magSource': 'nc',
'magType': 'mh',
'net': 'nc',
'nst': 4.0,
'place': '26km WNW of Chester, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-11T21:15:23.370Z',
'type': 'earthquake',
'updated': '2016-07-12T00:25:03.086Z'},
{'depth': 133.6,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13751614',
'latitude': 63.0752,
'locationSource': 'ak',
'longitude': -150.988,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '95km NNW of Talkeetna, Alaska',
'rms': 0.28,
'status': 'automatic',
'time': '2016-07-11T21:09:16.000Z',
'type': 'earthquake',
'updated': '2016-07-11T21:34:50.298Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.449,
'gap': 80.0,
'horizontalError': 6.2,
'id': 'us100062px',
'latitude': 33.4019,
'locationSource': 'us',
'longitude': 139.4005,
'mag': 4.8,
'magError': 0.057999999999999996,
'magNst': 90.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '51km NW of Hachijo-jima, Japan',
'rms': 1.0,
'status': 'reviewed',
'time': '2016-07-11T20:54:19.540Z',
'type': 'earthquake',
'updated': '2016-07-11T21:47:43.516Z'},
{'depth': -0.21,
'depthError': 31.61,
'dmin': 0.06417,
'gap': 188.0,
'horizontalError': 1.32,
'id': 'ci37412567',
'latitude': 32.590166700000005,
'locationSource': 'ci',
'longitude': -117.00333329999998,
'mag': 1.5,
'magError': 0.154,
'magNst': 19.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '6km NE of San Ysidro, CA',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-11T20:48:12.180Z',
'type': 'quarry blast',
'updated': '2016-07-11T22:27:32.784Z'},
{'depth': 0.38,
'depthError': 0.34,
'dmin': 0.0123,
'gap': 81.0,
'horizontalError': 0.18,
'id': 'nc72660521',
'latitude': 38.808998100000004,
'locationSource': 'nc',
'longitude': -122.810997,
'mag': 2.09,
'magError': 0.12,
'magNst': 11.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 27.0,
'place': '5km NW of The Geysers, California',
'rms': 0.05,
'status': 'automatic',
'time': '2016-07-11T20:46:31.460Z',
'type': 'earthquake',
'updated': '2016-07-11T23:57:04.182Z'},
{'depth': 3.96,
'depthError': 6.4,
'dmin': 0.21,
'gap': 62.0,
'horizontalError': 1.4,
'id': 'us100062pl',
'latitude': 35.9835,
'locationSource': 'us',
'longitude': -97.1863,
'mag': 2.6,
'magError': 0.106,
'magNst': 23.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '7km NE of Langston, Oklahoma',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-11T20:28:58.410Z',
'type': 'earthquake',
'updated': '2016-07-11T21:53:58.354Z'},
{'depth': 73.8,
'depthError': 5.9,
'dmin': 0.701,
'gap': 82.0,
'horizontalError': 7.6,
'id': 'us100062pp',
'latitude': -4.5526,
'locationSource': 'us',
'longitude': 102.2784,
'mag': 5.3,
'magError': 0.066,
'magNst': 79.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '83km S of Bengkulu, Indonesia',
'rms': 1.02,
'status': 'reviewed',
'time': '2016-07-11T20:28:42.430Z',
'type': 'earthquake',
'updated': '2016-07-11T20:44:41.583Z'},
{'depth': 12.61,
'depthError': 5.2,
'dmin': 1.705,
'gap': 149.0,
'horizontalError': 10.2,
'id': 'us100062pq',
'latitude': 28.7121,
'locationSource': 'us',
'longitude': 142.8191,
'mag': 4.6,
'magError': 0.11199999999999999,
'magNst': 24.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '189km NNE of Chichi-shima, Japan',
'rms': 0.54,
'status': 'reviewed',
'time': '2016-07-11T20:22:26.720Z',
'type': 'earthquake',
'updated': '2016-07-11T22:21:38.718Z'},
{'depth': 35.0,
'depthError': 4.1,
'dmin': 0.21290072,
'gap': 219.6,
'horizontalError': 5.0,
'id': 'pr16193006',
'latitude': 18.5601,
'locationSource': 'pr',
'longitude': -65.00399999999999,
'mag': 2.7,
'magError': 0.0,
'magNst': 8.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 8.0,
'place': '25km NNW of Charlotte Amalie, U.S. Virgin Islands',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-11T20:10:46.400Z',
'type': 'earthquake',
'updated': '2016-07-11T20:23:24.058Z'},
{'depth': 1.87,
'depthError': 0.86,
'dmin': 0.037860000000000005,
'gap': 82.0,
'horizontalError': 0.39,
'id': 'nc72660506',
'latitude': 38.819000200000005,
'locationSource': 'nc',
'longitude': -122.8416672,
'mag': 1.81,
'magError': 0.14,
'magNst': 12.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 10.0,
'place': '8km WNW of The Geysers, California',
'rms': 0.06,
'status': 'automatic',
'time': '2016-07-11T20:09:42.260Z',
'type': 'earthquake',
'updated': '2016-07-11T23:42:03.134Z'},
{'depth': 122.6,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13751349',
'latitude': 63.8039,
'locationSource': 'ak',
'longitude': -149.2378,
'mag': 4.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '14km WSW of Healy, Alaska',
'rms': 0.59,
'status': 'reviewed',
'time': '2016-07-11T20:05:57.000Z',
'type': 'earthquake',
'updated': '2016-07-11T21:56:17.040Z'},
{'depth': 35.0,
'depthError': 62.3,
'dmin': nan,
'gap': nan,
'horizontalError': 3.8,
'id': 'ak13751347',
'latitude': 57.5787,
'locationSource': 'ak',
'longitude': -142.8451,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '278km S of Cape Yakataga, Alaska',
'rms': 0.4,
'status': 'automatic',
'time': '2016-07-11T20:02:46.000Z',
'type': 'earthquake',
'updated': '2016-07-11T20:19:21.904Z'},
{'depth': -1.01,
'depthError': 31.61,
'dmin': 0.06792999999999999,
'gap': 44.0,
'horizontalError': 0.23,
'id': 'ci37412535',
'latitude': 35.0586667,
'locationSource': 'ci',
'longitude': -118.33933329999999,
'mag': 1.1,
'magError': 0.064,
'magNst': 14.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 21.0,
'place': '13km SE of Tehachapi, CA',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-11T19:55:42.630Z',
'type': 'quarry blast',
'updated': '2016-07-11T22:30:50.183Z'},
{'depth': -2.0,
'depthError': 31.61,
'dmin': 0.184,
'gap': 152.0,
'horizontalError': 0.97,
'id': 'mb80161534',
'latitude': 46.0056667,
'locationSource': 'mb',
'longitude': -112.4641667,
'mag': 2.27,
'magError': 0.341,
'magNst': 9.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 7.0,
'place': '5km E of Butte, Montana',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-11T19:45:00.300Z',
'type': 'quarry blast',
'updated': '2016-07-11T20:01:35.620Z'},
{'depth': 2.9,
'depthError': 7.8,
'dmin': 0.28800000000000003,
'gap': 138.81,
'horizontalError': nan,
'id': 'nn00551404',
'latitude': 38.3607,
'locationSource': 'nn',
'longitude': -115.9518,
'mag': 1.9,
'magError': 0.21,
'magNst': 2.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 6.0,
'place': '41km ENE of Warm Springs, Nevada',
'rms': 0.0387,
'status': 'reviewed',
'time': '2016-07-11T19:44:14.539Z',
'type': 'earthquake',
'updated': '2016-07-11T22:12:15.227Z'},
{'depth': -0.83,
'depthError': 31.61,
'dmin': 0.1206,
'gap': 52.0,
'horizontalError': 0.42,
'id': 'ci37412503',
'latitude': 34.9986667,
'locationSource': 'ci',
'longitude': -118.195,
'mag': 1.06,
'magError': 0.09,
'magNst': 15.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '6km SSW of Mojave, CA',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-11T19:14:00.150Z',
'type': 'quarry blast',
'updated': '2016-07-11T22:33:22.474Z'},
{'depth': 14.95,
'depthError': 0.57,
'dmin': 0.09711,
'gap': 104.0,
'horizontalError': 0.33,
'id': 'uw61179846',
'latitude': 47.9951667,
'locationSource': 'uw',
'longitude': -121.9,
'mag': 1.8,
'magError': 0.11,
'magNst': 24.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 15.0,
'place': '10km NE of Three Lakes, Washington',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-11T19:01:47.740Z',
'type': 'earthquake',
'updated': '2016-07-12T01:11:20.360Z'},
{'depth': 13.7,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13751113',
'latitude': 60.2407,
'locationSource': 'ak',
'longitude': -141.6943,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km ENE of Cape Yakataga, Alaska',
'rms': 0.49,
'status': 'automatic',
'time': '2016-07-11T18:48:12.000Z',
'type': 'earthquake',
'updated': '2016-07-11T19:07:17.191Z'},
{'depth': 6.56,
'depthError': 0.39,
'dmin': 0.0495,
'gap': 84.0,
'horizontalError': 0.22,
'id': 'ci37412463',
'latitude': 33.698666700000004,
'locationSource': 'ci',
'longitude': -117.42816670000002,
'mag': 1.12,
'magError': 0.114,
'magNst': 17.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 32.0,
'place': '10km WNW of Lake Elsinore, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-11T18:46:07.300Z',
'type': 'earthquake',
'updated': '2016-07-12T00:08:26.393Z'},
{'depth': 95.3,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13751111',
'latitude': 60.6685,
'locationSource': 'ak',
'longitude': -152.2512,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '33km NE of Redoubt Volcano, Alaska',
'rms': 0.23,
'status': 'automatic',
'time': '2016-07-11T18:41:17.000Z',
'type': 'earthquake',
'updated': '2016-07-11T19:07:15.724Z'},
{'depth': 4.7,
'depthError': 2.5,
'dmin': nan,
'gap': nan,
'horizontalError': 1.1,
'id': 'ak13751108',
'latitude': 61.2994,
'locationSource': 'ak',
'longitude': -152.4977,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-11T18:32:19.000Z',
'type': 'earthquake',
'updated': '2016-07-11T21:19:22.026Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13751100',
'latitude': 61.2845,
'locationSource': 'ak',
'longitude': -152.5106,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km N of Redoubt Volcano, Alaska',
'rms': 0.56,
'status': 'automatic',
'time': '2016-07-11T18:29:45.000Z',
'type': 'earthquake',
'updated': '2016-07-11T18:55:57.177Z'},
{'depth': 26.4,
'depthError': 29.3,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13751097',
'latitude': 51.2978,
'locationSource': 'ak',
'longitude': -177.6838,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '72km SSE of Tanaga Volcano, Alaska',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-11T18:26:38.000Z',
'type': 'earthquake',
'updated': '2016-07-11T21:19:20.357Z'},
{'depth': 52.5,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 1.3,
'id': 'ak13751096',
'latitude': 61.4573,
'locationSource': 'ak',
'longitude': -149.846,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '9km SE of Big Lake, Alaska',
'rms': 0.38,
'status': 'automatic',
'time': '2016-07-11T18:02:27.000Z',
'type': 'earthquake',
'updated': '2016-07-11T18:21:24.696Z'},
{'depth': 3.94,
'depthError': 0.91,
'dmin': 0.03804,
'gap': 164.0,
'horizontalError': 0.79,
'id': 'nc72660456',
'latitude': 40.4318333,
'locationSource': 'nc',
'longitude': -121.48783329999999,
'mag': 1.45,
'magError': 0.141,
'magNst': 5.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 5.0,
'place': '25km WNW of Chester, California',
'rms': 0.02,
'status': 'reviewed',
'time': '2016-07-11T17:55:48.650Z',
'type': 'earthquake',
'updated': '2016-07-11T23:16:01.794Z'},
{'depth': 21.83,
'depthError': 0.69,
'dmin': 0.08803,
'gap': 106.0,
'horizontalError': 0.38,
'id': 'uw61179816',
'latitude': 47.2841667,
'locationSource': 'uw',
'longitude': -122.28666670000001,
'mag': 1.68,
'magError': 0.155,
'magNst': 27.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 20.0,
'place': '0km NNW of Lakeland South, Washington',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-11T17:42:43.350Z',
'type': 'earthquake',
'updated': '2016-07-12T00:08:35.280Z'},
{'depth': 0.25,
'depthError': 31.61,
'dmin': 0.1915,
'gap': 186.0,
'horizontalError': 0.65,
'id': 'uw61164652',
'latitude': 46.568999999999996,
'locationSource': 'uw',
'longitude': -121.7215,
'mag': 1.27,
'magError': 0.13699999999999998,
'magNst': 16.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 21.0,
'place': '5km SW of Packwood, Washington',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-11T17:07:43.930Z',
'type': 'earthquake',
'updated': '2016-07-12T01:16:21.280Z'},
{'depth': 2.93,
'depthError': 1.2,
'dmin': 0.042230000000000004,
'gap': 90.0,
'horizontalError': 0.6,
'id': 'nc72660411',
'latitude': 40.4268333,
'locationSource': 'nc',
'longitude': -121.49216670000001,
'mag': 2.07,
'magError': 0.13699999999999998,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 10.0,
'place': '25km WNW of Chester, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-11T16:59:27.140Z',
'type': 'earthquake',
'updated': '2016-07-11T19:56:02.946Z'},
{'depth': 29.75,
'depthError': 5.1,
'dmin': 1.52,
'gap': 134.0,
'horizontalError': 6.2,
'id': 'us100062mq',
'latitude': 36.7864,
'locationSource': 'us',
'longitude': 142.1313,
'mag': 4.7,
'magError': 0.063,
'magNst': 75.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '114km ESE of Iwaki, Japan',
'rms': 0.69,
'status': 'reviewed',
'time': '2016-07-11T16:54:45.260Z',
'type': 'earthquake',
'updated': '2016-07-11T19:09:56.623Z'},
{'depth': 2.5,
'depthError': 0.19,
'dmin': 0.018269999999999998,
'gap': 27.0,
'horizontalError': 0.12,
'id': 'ci37412415',
'latitude': 34.0178333,
'locationSource': 'ci',
'longitude': -117.11833329999999,
'mag': 1.79,
'magError': 0.155,
'magNst': 98.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 73.0,
'place': '6km SSE of Mentone, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-11T16:51:07.410Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:55.240Z'},
{'depth': -0.97,
'depthError': 31.61,
'dmin': 0.1216,
'gap': 310.0,
'horizontalError': 12.55,
'id': 'uw61164627',
'latitude': 45.820666700000004,
'locationSource': 'uw',
'longitude': -122.4875,
'mag': 1.35,
'magError': 0.384,
'magNst': 5.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 8.0,
'place': '3km ENE of Lewisville, Washington',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-11T16:30:07.410Z',
'type': 'explosion',
'updated': '2016-07-12T01:18:27.630Z'},
{'depth': 4.13,
'depthError': 0.48,
'dmin': 0.03758,
'gap': 103.0,
'horizontalError': 0.75,
'id': 'nc72660391',
'latitude': 40.431999999999995,
'locationSource': 'nc',
'longitude': -121.48700000000001,
'mag': 1.15,
'magError': 0.08199999999999999,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 7.0,
'place': '25km WNW of Chester, California',
'rms': 0.02,
'status': 'reviewed',
'time': '2016-07-11T16:29:32.450Z',
'type': 'earthquake',
'updated': '2016-07-11T19:53:01.832Z'},
{'depth': 8.12,
'depthError': 3.5,
'dmin': 0.763,
'gap': 90.0,
'horizontalError': 4.8,
'id': 'us100062me',
'latitude': -29.8645,
'locationSource': 'us',
'longitude': -72.1156,
'mag': 4.7,
'magError': nan,
'magNst': nan,
'magSource': 'guc',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '75km W of Coquimbo, Chile',
'rms': 1.07,
'status': 'reviewed',
'time': '2016-07-11T16:15:58.660Z',
'type': 'earthquake',
'updated': '2016-07-11T16:58:37.470Z'},
{'depth': 8.8,
'depthError': 7.9,
'dmin': 0.21899999999999997,
'gap': 154.96,
'horizontalError': nan,
'id': 'nn00551383',
'latitude': 38.6555,
'locationSource': 'nn',
'longitude': -118.7999,
'mag': 1.0,
'magError': 0.32,
'magNst': 2.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 8.0,
'place': '21km NW of Hawthorne, Nevada',
'rms': 0.1189,
'status': 'reviewed',
'time': '2016-07-11T15:59:09.305Z',
'type': 'earthquake',
'updated': '2016-07-11T16:18:00.126Z'},
{'depth': 2.0,
'depthError': 31.61,
'dmin': 0.06616,
'gap': 241.0,
'horizontalError': 0.82,
'id': 'nc72660386',
'latitude': 38.991833299999996,
'locationSource': 'nc',
'longitude': -123.4895,
'mag': 1.24,
'magError': 0.136,
'magNst': 4.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 5.0,
'place': '10km W of Boonville, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-11T15:56:53.230Z',
'type': 'earthquake',
'updated': '2016-07-12T01:05:04.012Z'},
{'depth': 5.54,
'depthError': 1.02,
'dmin': 0.05674,
'gap': 74.0,
'horizontalError': 0.29,
'id': 'ci37412375',
'latitude': 33.2475,
'locationSource': 'ci',
'longitude': -116.23583329999998,
'mag': 1.21,
'magError': 0.166,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 43.0,
'place': '13km E of Borrego Springs, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-11T15:48:04.210Z',
'type': 'earthquake',
'updated': '2016-07-11T16:49:06.040Z'},
{'depth': 6.072,
'depthError': 1.11,
'dmin': 0.046169999999999996,
'gap': 142.0,
'horizontalError': 0.44,
'id': 'hv61333911',
'latitude': 19.3318333,
'locationSource': 'hv',
'longitude': -155.1223333,
'mag': 1.5,
'magError': 0.083,
'magNst': 17.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 41.0,
'place': '16km SE of Volcano, Hawaii',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-11T15:47:55.640Z',
'type': 'earthquake',
'updated': '2016-07-11T18:39:26.180Z'},
{'depth': 8.3,
'depthError': 6.9,
'dmin': 0.213,
'gap': 139.61,
'horizontalError': nan,
'id': 'nn00551381',
'latitude': 38.6597,
'locationSource': 'nn',
'longitude': -118.7923,
'mag': 1.0,
'magError': 0.38,
'magNst': 3.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 10.0,
'place': '20km NW of Hawthorne, Nevada',
'rms': 0.1215,
'status': 'reviewed',
'time': '2016-07-11T15:44:26.821Z',
'type': 'earthquake',
'updated': '2016-07-11T16:08:39.212Z'},
{'depth': 3.1,
'depthError': 1.03,
'dmin': 0.28800000000000003,
'gap': 52.0,
'horizontalError': 0.22,
'id': 'ci37412335',
'latitude': 35.6116667,
'locationSource': 'ci',
'longitude': -116.29866670000001,
'mag': 3.0,
'magError': 0.13699999999999998,
'magNst': 163.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 25.0,
'place': '27km SSW of Tecopa, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-11T15:16:09.030Z',
'type': 'earthquake',
'updated': '2016-07-11T16:10:53.393Z'},
{'depth': 10.62,
'depthError': 0.52,
'dmin': 0.1046,
'gap': 77.0,
'horizontalError': 0.31,
'id': 'ci37412319',
'latitude': 33.3718333,
'locationSource': 'ci',
'longitude': -116.39816670000002,
'mag': 1.04,
'magError': 0.12300000000000001,
'magNst': 28.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 34.0,
'place': '13km N of Borrego Springs, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-11T15:06:12.250Z',
'type': 'earthquake',
'updated': '2016-07-11T16:50:20.000Z'},
{'depth': 72.01,
'depthError': 4.2,
'dmin': 1.594,
'gap': 77.0,
'horizontalError': 7.4,
'id': 'us100062mb',
'latitude': -8.1599,
'locationSource': 'us',
'longitude': 108.9327,
'mag': 4.5,
'magError': 0.106,
'magNst': 26.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '51km SSW of Karangbadar Kidul, Indonesia',
'rms': 0.97,
'status': 'reviewed',
'time': '2016-07-11T14:52:23.680Z',
'type': 'earthquake',
'updated': '2016-07-11T16:28:28.471Z'},
{'depth': 8.49,
'depthError': 0.61,
'dmin': 0.07514,
'gap': 107.0,
'horizontalError': 0.22,
'id': 'ci37412311',
'latitude': 33.124333299999996,
'locationSource': 'ci',
'longitude': -116.29166670000001,
'mag': 1.02,
'magError': 0.138,
'magNst': 14.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 21.0,
'place': '15km W of Ocotillo Wells, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-11T14:42:19.850Z',
'type': 'earthquake',
'updated': '2016-07-11T23:55:27.870Z'},
{'depth': 7.245,
'depthError': 0.56,
'dmin': 0.0487,
'gap': 62.0,
'horizontalError': 0.28,
'id': 'hv61333846',
'latitude': 19.4913333,
'locationSource': 'hv',
'longitude': -155.64833330000002,
'mag': 2.17,
'magError': 0.131,
'magNst': 6.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 37.0,
'place': '23km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-11T14:37:18.160Z',
'type': 'earthquake',
'updated': '2016-07-11T21:42:46.450Z'},
{'depth': 16.4,
'depthError': 2.9,
'dmin': 0.268,
'gap': 115.51,
'horizontalError': nan,
'id': 'nn00551371',
'latitude': 38.2526,
'locationSource': 'nn',
'longitude': -119.4069,
'mag': 1.0,
'magError': 0.24,
'magNst': 4.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 8.0,
'place': '15km W of Bridgeport, California',
'rms': 0.1872,
'status': 'reviewed',
'time': '2016-07-11T14:30:24.509Z',
'type': 'earthquake',
'updated': '2016-07-11T15:09:26.426Z'},
{'depth': 54.7,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13750632',
'latitude': 61.4516,
'locationSource': 'ak',
'longitude': -150.6981,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '40km W of Big Lake, Alaska',
'rms': 0.09,
'status': 'automatic',
'time': '2016-07-11T14:11:08.000Z',
'type': 'earthquake',
'updated': '2016-07-11T14:25:30.335Z'},
{'depth': 22.0,
'depthError': 3.6,
'dmin': 0.17247653,
'gap': 219.6,
'horizontalError': 5.0,
'id': 'pr16193005',
'latitude': 18.479,
'locationSource': 'pr',
'longitude': -65.079,
'mag': 1.6,
'magError': 0.0,
'magNst': 4.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '21km NW of Charlotte Amalie, U.S. Virgin Islands',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-11T14:08:17.200Z',
'type': 'earthquake',
'updated': '2016-07-11T16:32:59.470Z'},
{'depth': 0.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13750622',
'latitude': 60.3442,
'locationSource': 'ak',
'longitude': -153.4092,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '39km WSW of Redoubt Volcano, Alaska',
'rms': 0.63,
'status': 'automatic',
'time': '2016-07-11T14:05:25.000Z',
'type': 'earthquake',
'updated': '2016-07-11T14:26:59.731Z'},
{'depth': 13.11,
'depthError': 1.43,
'dmin': 0.06266000000000001,
'gap': 156.0,
'horizontalError': 0.86,
'id': 'nc72660356',
'latitude': 36.0530014,
'locationSource': 'nc',
'longitude': -120.18633270000001,
'mag': 2.16,
'magError': 0.34,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 18.0,
'place': '7km NW of Avenal, California',
'rms': 0.08,
'status': 'automatic',
'time': '2016-07-11T14:00:39.500Z',
'type': 'earthquake',
'updated': '2016-07-11T14:30:21.290Z'},
{'depth': 2.6,
'depthError': 8.34,
'dmin': 0.5305,
'gap': 330.0,
'horizontalError': 2.37,
'id': 'nc72660351',
'latitude': 38.1641667,
'locationSource': 'nc',
'longitude': -119.3895,
'mag': 1.84,
'magError': 0.184,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 7.0,
'place': '17km SW of Bridgeport, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-11T13:57:07.770Z',
'type': 'earthquake',
'updated': '2016-07-11T23:57:04.421Z'},
{'depth': 10.75,
'depthError': 0.63,
'dmin': 0.0634,
'gap': 148.0,
'horizontalError': 0.38,
'id': 'ci37412279',
'latitude': 34.3185,
'locationSource': 'ci',
'longitude': -116.9565,
'mag': 1.02,
'magError': 0.109,
'magNst': 14.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 6.0,
'place': '9km NNW of Big Bear Lake, CA',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-11T13:49:31.280Z',
'type': 'earthquake',
'updated': '2016-07-11T16:50:05.348Z'},
{'depth': 15.92,
'depthError': 0.71,
'dmin': 0.1213,
'gap': 103.0,
'horizontalError': 0.3,
'id': 'ci37412271',
'latitude': 34.9213333,
'locationSource': 'ci',
'longitude': -119.07933329999999,
'mag': 1.72,
'magError': 0.171,
'magNst': 37.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 25.0,
'place': '10km NE of Pine Mountain Club, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-11T13:40:12.210Z',
'type': 'earthquake',
'updated': '2016-07-11T23:21:24.023Z'},
{'depth': 5.6,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13750395',
'latitude': 60.912,
'locationSource': 'ak',
'longitude': -148.6621,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '15km N of Whittier, Alaska',
'rms': 0.85,
'status': 'automatic',
'time': '2016-07-11T13:39:01.000Z',
'type': 'earthquake',
'updated': '2016-07-11T13:55:33.406Z'},
{'depth': 45.25,
'depthError': 6.0,
'dmin': 0.19699999999999998,
'gap': 81.0,
'horizontalError': 4.5,
'id': 'us100062lm',
'latitude': -30.680999999999997,
'locationSource': 'us',
'longitude': -71.4054,
'mag': 4.9,
'magError': nan,
'magNst': nan,
'magSource': 'guc',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '21km WSW of Ovalle, Chile',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-11T13:27:36.330Z',
'type': 'earthquake',
'updated': '2016-07-11T14:53:36.999Z'},
{'depth': 3.4,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13750392',
'latitude': 63.4533,
'locationSource': 'ak',
'longitude': -148.2516,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '35km ENE of Cantwell, Alaska',
'rms': 0.31,
'status': 'automatic',
'time': '2016-07-11T13:20:20.000Z',
'type': 'earthquake',
'updated': '2016-07-11T13:42:21.785Z'},
{'depth': 0.0,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13750391',
'latitude': 60.2598,
'locationSource': 'ak',
'longitude': -141.2055,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '71km ENE of Cape Yakataga, Alaska',
'rms': 0.65,
'status': 'automatic',
'time': '2016-07-11T13:16:44.000Z',
'type': 'earthquake',
'updated': '2016-07-11T13:42:21.141Z'},
{'depth': 1.79,
'depthError': 0.4,
'dmin': 0.007089,
'gap': 113.0,
'horizontalError': 0.24,
'id': 'nc72660336',
'latitude': 38.8448334,
'locationSource': 'nc',
'longitude': -122.83116909999998,
'mag': 1.03,
'magError': 0.06,
'magNst': 5.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 18.0,
'place': '9km WNW of Cobb, California',
'rms': 0.02,
'status': 'automatic',
'time': '2016-07-11T12:53:04.580Z',
'type': 'earthquake',
'updated': '2016-07-11T13:24:03.120Z'},
{'depth': 48.0,
'depthError': 6.6,
'dmin': 0.88034898,
'gap': 352.8,
'horizontalError': 16.8,
'id': 'pr16193004',
'latitude': 18.3899,
'locationSource': 'pr',
'longitude': -63.6896,
'mag': 2.6,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 5.0,
'place': '69km WNW of The Valley, Anguilla',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-11T12:47:42.600Z',
'type': 'earthquake',
'updated': '2016-07-11T16:15:54.290Z'},
{'depth': 15.52,
'depthError': 0.94,
'dmin': 0.09246,
'gap': 61.0,
'horizontalError': 0.45,
'id': 'ci37412263',
'latitude': 34.4731667,
'locationSource': 'ci',
'longitude': -119.00216670000002,
'mag': 1.63,
'magError': 0.12,
'magNst': 35.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 24.0,
'place': '11km NW of Fillmore, CA',
'rms': 0.32,
'status': 'reviewed',
'time': '2016-07-11T12:35:04.790Z',
'type': 'earthquake',
'updated': '2016-07-11T18:38:04.122Z'},
{'depth': 40.54,
'depthError': 5.7,
'dmin': 2.8480000000000003,
'gap': 65.0,
'horizontalError': 8.5,
'id': 'us100062le',
'latitude': -4.4939,
'locationSource': 'us',
'longitude': 134.6338,
'mag': 4.7,
'magError': 0.114,
'magNst': 23.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '148km NNE of Dobo, Indonesia',
'rms': 1.11,
'status': 'reviewed',
'time': '2016-07-11T12:29:11.470Z',
'type': 'earthquake',
'updated': '2016-07-11T12:50:27.314Z'},
{'depth': 46.0,
'depthError': 12.6,
'dmin': 0.56593863,
'gap': 298.8,
'horizontalError': 3.7,
'id': 'pr16193003',
'latitude': 18.9421,
'locationSource': 'pr',
'longitude': -67.4405,
'mag': 3.1,
'magError': 0.0,
'magNst': 13.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 14.0,
'place': '61km NW of San Antonio, Puerto Rico',
'rms': 0.75,
'status': 'reviewed',
'time': '2016-07-11T12:16:44.200Z',
'type': 'earthquake',
'updated': '2016-07-11T12:48:03.455Z'},
{'depth': 4.52,
'depthError': 0.96,
'dmin': 0.1273,
'gap': 38.0,
'horizontalError': 0.16,
'id': 'ci37412247',
'latitude': 34.2378333,
'locationSource': 'ci',
'longitude': -116.75,
'mag': 1.48,
'magError': 0.172,
'magNst': 28.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 58.0,
'place': '9km ESE of Big Bear City, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-11T12:15:15.480Z',
'type': 'earthquake',
'updated': '2016-07-11T16:51:32.390Z'},
{'depth': 15.1,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 1.6,
'id': 'ak13750162',
'latitude': 61.2359,
'locationSource': 'ak',
'longitude': -152.5934,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '84km N of Redoubt Volcano, Alaska',
'rms': 0.73,
'status': 'reviewed',
'time': '2016-07-11T11:31:52.000Z',
'type': 'earthquake',
'updated': '2016-07-11T17:00:47.788Z'},
{'depth': 61.99,
'depthError': 12.0,
'dmin': 0.439,
'gap': 104.0,
'horizontalError': 7.6,
'id': 'us100062l8',
'latitude': 12.3466,
'locationSource': 'us',
'longitude': -87.325,
'mag': 4.3,
'magError': 0.084,
'magNst': 40.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '22km SW of Corinto, Nicaragua',
'rms': 1.13,
'status': 'reviewed',
'time': '2016-07-11T11:31:11.770Z',
'type': 'earthquake',
'updated': '2016-07-11T11:57:30.991Z'},
{'depth': 127.54,
'depthError': 9.4,
'dmin': 4.0089999999999995,
'gap': 71.0,
'horizontalError': 10.2,
'id': 'us100062l6',
'latitude': -7.7862,
'locationSource': 'us',
'longitude': 127.8075,
'mag': 4.4,
'magError': 0.14300000000000002,
'magNst': 14.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '260km ENE of Dili, East Timor',
'rms': 1.0,
'status': 'reviewed',
'time': '2016-07-11T11:07:04.670Z',
'type': 'earthquake',
'updated': '2016-07-11T11:24:35.574Z'},
{'depth': 110.1,
'depthError': 1.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.3,
'id': 'ak13749942',
'latitude': 61.9858,
'locationSource': 'ak',
'longitude': -146.6302,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '58km WSW of Glennallen, Alaska',
'rms': 0.93,
'status': 'automatic',
'time': '2016-07-11T10:57:11.000Z',
'type': 'earthquake',
'updated': '2016-07-11T11:10:33.861Z'},
{'depth': 98.1,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13749936',
'latitude': 59.4536,
'locationSource': 'ak',
'longitude': -153.6102,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '80km ESE of Old Iliamna, Alaska',
'rms': 0.63,
'status': 'automatic',
'time': '2016-07-11T10:50:16.000Z',
'type': 'earthquake',
'updated': '2016-07-11T11:10:33.281Z'},
{'depth': 8.4,
'depthError': 6.8,
'dmin': 0.026000000000000002,
'gap': 182.77,
'horizontalError': nan,
'id': 'nn00551374',
'latitude': 40.6816,
'locationSource': 'nn',
'longitude': -119.464,
'mag': 1.2,
'magError': 0.3,
'magNst': 3.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 4.0,
'place': '13km NNW of Gerlach-Empire, Nevada',
'rms': 0.1843,
'status': 'reviewed',
'time': '2016-07-11T10:45:06.840Z',
'type': 'earthquake',
'updated': '2016-07-11T14:53:38.204Z'},
{'depth': 5.28,
'depthError': 0.38,
'dmin': 0.04057,
'gap': 159.0,
'horizontalError': 0.53,
'id': 'nc72660331',
'latitude': 37.8240013,
'locationSource': 'nc',
'longitude': -122.5866699,
'mag': 1.82,
'magError': 0.19,
'magNst': 18.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 23.0,
'place': '7km SW of Tamalpais-Homestead Valley, California',
'rms': 0.05,
'status': 'automatic',
'time': '2016-07-11T10:44:59.200Z',
'type': 'earthquake',
'updated': '2016-07-11T12:01:02.906Z'},
{'depth': 1.34,
'depthError': 1.04,
'dmin': 0.02752,
'gap': 105.0,
'horizontalError': 0.49,
'id': 'nc72660326',
'latitude': 38.835498799999996,
'locationSource': 'nc',
'longitude': -122.79683689999999,
'mag': 1.75,
'magError': 0.19,
'magNst': 8.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 7.0,
'place': '6km WNW of Cobb, California',
'rms': 0.04,
'status': 'automatic',
'time': '2016-07-11T10:31:50.800Z',
'type': 'earthquake',
'updated': '2016-07-11T11:29:02.768Z'},
{'depth': 12.0,
'depthError': 1.5,
'dmin': 0.20751083,
'gap': 277.2,
'horizontalError': 2.1,
'id': 'pr16193002',
'latitude': 17.8351,
'locationSource': 'pr',
'longitude': -66.6235,
'mag': 2.2,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '19km S of Ponce, Puerto Rico',
'rms': 0.36,
'status': 'reviewed',
'time': '2016-07-11T10:27:00.900Z',
'type': 'earthquake',
'updated': '2016-07-11T10:58:16.999Z'},
{'depth': 6.0,
'depthError': 1.0,
'dmin': 0.13923887,
'gap': 208.8,
'horizontalError': 0.9,
'id': 'pr16193001',
'latitude': 17.8546,
'locationSource': 'pr',
'longitude': -66.6686,
'mag': 2.5,
'magError': 0.0,
'magNst': 10.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 12.0,
'place': '16km SSE of Tallaboa, Puerto Rico',
'rms': 0.4,
'status': 'reviewed',
'time': '2016-07-11T10:24:45.800Z',
'type': 'earthquake',
'updated': '2016-07-11T10:45:53.284Z'},
{'depth': 53.8,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13749931',
'latitude': 62.1671,
'locationSource': 'ak',
'longitude': -149.7317,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '6km E of Y, Alaska',
'rms': 1.12,
'status': 'automatic',
'time': '2016-07-11T10:18:13.000Z',
'type': 'earthquake',
'updated': '2016-07-11T10:27:25.830Z'},
{'depth': 4.72,
'depthError': 1.15,
'dmin': 0.04038,
'gap': 131.0,
'horizontalError': 0.4,
'id': 'nc72660316',
'latitude': 36.736667600000004,
'locationSource': 'nc',
'longitude': -121.3414993,
'mag': 1.38,
'magError': 0.28,
'magNst': 9.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 10.0,
'place': '8km SSE of Ridgemark, California',
'rms': 0.07,
'status': 'automatic',
'time': '2016-07-11T09:46:43.920Z',
'type': 'earthquake',
'updated': '2016-07-11T10:37:02.637Z'},
{'depth': 7.485,
'depthError': 0.49,
'dmin': 0.04969,
'gap': 63.0,
'horizontalError': 0.25,
'id': 'hv61333481',
'latitude': 19.4905,
'locationSource': 'hv',
'longitude': -155.6495,
'mag': 2.51,
'magError': 0.21100000000000002,
'magNst': 16.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 45.0,
'place': '22km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-11T09:30:28.350Z',
'type': 'earthquake',
'updated': '2016-07-11T22:55:34.532Z'},
{'depth': 0.29,
'depthError': 1.39,
'dmin': 0.02036,
'gap': 81.0,
'horizontalError': 0.4,
'id': 'nc72660311',
'latitude': 38.8269997,
'locationSource': 'nc',
'longitude': -122.8046646,
'mag': 1.12,
'magError': 0.09,
'magNst': 4.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 13.0,
'place': '6km NW of The Geysers, California',
'rms': 0.17,
'status': 'automatic',
'time': '2016-07-11T09:28:19.200Z',
'type': 'earthquake',
'updated': '2016-07-11T10:09:03.581Z'},
{'depth': 6.31,
'depthError': 0.66,
'dmin': 0.038669999999999996,
'gap': 122.0,
'horizontalError': 0.48,
'id': 'nc72660306',
'latitude': 35.5501671,
'locationSource': 'nc',
'longitude': -120.8636703,
'mag': 1.32,
'magError': 0.18,
'magNst': 9.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 14.0,
'place': '12km NNE of Cayucos, California',
'rms': 0.05,
'status': 'automatic',
'time': '2016-07-11T09:14:03.060Z',
'type': 'earthquake',
'updated': '2016-07-11T09:43:01.518Z'},
{'depth': 83.1,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13749923',
'latitude': 63.0335,
'locationSource': 'ak',
'longitude': -150.0507,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km SW of Cantwell, Alaska',
'rms': 0.64,
'status': 'automatic',
'time': '2016-07-11T09:04:05.000Z',
'type': 'earthquake',
'updated': '2016-07-11T09:33:43.001Z'},
{'depth': 5.5,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13749922',
'latitude': 61.919,
'locationSource': 'ak',
'longitude': -154.5707,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '127km SSE of McGrath, Alaska',
'rms': 0.3,
'status': 'automatic',
'time': '2016-07-11T09:02:39.000Z',
'type': 'earthquake',
'updated': '2016-07-11T09:21:10.954Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.512,
'gap': 67.0,
'horizontalError': 6.4,
'id': 'us100062jg',
'latitude': 33.3601,
'locationSource': 'us',
'longitude': 139.2766,
'mag': 4.6,
'magError': 0.063,
'magNst': 74.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '57km WNW of Hachijo-jima, Japan',
'rms': 0.6,
'status': 'reviewed',
'time': '2016-07-11T08:39:40.700Z',
'type': 'earthquake',
'updated': '2016-07-11T13:09:56.857Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.475,
'gap': 68.0,
'horizontalError': 8.5,
'id': 'us100062ja',
'latitude': 33.3588,
'locationSource': 'us',
'longitude': 139.3261,
'mag': 4.0,
'magError': 0.098,
'magNst': 10.0,
'magSource': 'us',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '53km NW of Hachijo-jima, Japan',
'rms': 0.64,
'status': 'reviewed',
'time': '2016-07-11T08:33:05.180Z',
'type': 'earthquake',
'updated': '2016-07-11T12:50:20.319Z'},
{'depth': 14.64,
'depthError': 2.32,
'dmin': 0.4346,
'gap': 172.0,
'horizontalError': 1.4,
'id': 'nc72660296',
'latitude': 36.722167999999996,
'locationSource': 'nc',
'longitude': -120.68983459999998,
'mag': 1.65,
'magError': 0.19,
'magNst': 2.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 5.0,
'place': '25km SW of Firebaugh, California',
'rms': 0.09,
'status': 'automatic',
'time': '2016-07-11T08:31:50.460Z',
'type': 'earthquake',
'updated': '2016-07-11T09:03:04.402Z'},
{'depth': 36.61,
'depthError': 8.6,
'dmin': 0.813,
'gap': 177.0,
'horizontalError': 10.7,
'id': 'us100062j7',
'latitude': 51.2002,
'locationSource': 'us',
'longitude': -177.9295,
'mag': 4.5,
'magError': 0.042,
'magNst': 165.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '77km S of Tanaga Volcano, Alaska',
'rms': 0.82,
'status': 'reviewed',
'time': '2016-07-11T08:17:05.350Z',
'type': 'earthquake',
'updated': '2016-07-11T16:04:19.543Z'},
{'depth': 20.97,
'depthError': 2.05,
'dmin': 0.1795,
'gap': 104.0,
'horizontalError': 0.54,
'id': 'uw61164532',
'latitude': 46.6416667,
'locationSource': 'uw',
'longitude': -122.17466670000002,
'mag': 1.17,
'magError': 0.102,
'magNst': 2.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 15.0,
'place': '12km NE of Morton, Washington',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-11T08:08:13.660Z',
'type': 'earthquake',
'updated': '2016-07-12T01:22:37.950Z'},
{'depth': 6.56,
'depthError': 0.23,
'dmin': 0.050089999999999996,
'gap': 135.0,
'horizontalError': 0.3,
'id': 'uw61164527',
'latitude': 46.6085,
'locationSource': 'uw',
'longitude': -119.851,
'mag': 1.65,
'magError': 0.16699999999999998,
'magNst': 25.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 15.0,
'place': '9km SSE of Desert Aire, Washington',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-11T07:59:16.470Z',
'type': 'earthquake',
'updated': '2016-07-11T21:29:18.100Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.48200000000000004,
'gap': 77.0,
'horizontalError': 4.5,
'id': 'us100062j0',
'latitude': 33.3312,
'locationSource': 'us',
'longitude': 139.299,
'mag': 4.4,
'magError': 0.107,
'magNst': 25.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '54km WNW of Hachijo-jima, Japan',
'rms': 0.57,
'status': 'reviewed',
'time': '2016-07-11T07:58:33.820Z',
'type': 'earthquake',
'updated': '2016-07-11T09:23:55.073Z'},
{'depth': 11.45,
'depthError': 5.5,
'dmin': 1.167,
'gap': 153.0,
'horizontalError': 6.7,
'id': 'us100062j4',
'latitude': 0.7034,
'locationSource': 'us',
'longitude': -79.5232,
'mag': 4.3,
'magError': 0.08800000000000001,
'magNst': 37.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '31km SE of Propicia, Ecuador',
'rms': 0.8,
'status': 'reviewed',
'time': '2016-07-11T07:40:30.770Z',
'type': 'earthquake',
'updated': '2016-07-11T08:34:04.926Z'},
{'depth': 4.2,
'depthError': 5.6,
'dmin': 0.175,
'gap': 75.45,
'horizontalError': nan,
'id': 'nn00551340',
'latitude': 37.3113,
'locationSource': 'nn',
'longitude': -115.235,
'mag': 1.3,
'magError': 0.27,
'magNst': 9.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 17.0,
'place': '8km SW of Alamo, Nevada',
'rms': 0.2073,
'status': 'reviewed',
'time': '2016-07-11T07:35:21.747Z',
'type': 'earthquake',
'updated': '2016-07-11T15:19:28.824Z'},
{'depth': -0.5,
'depthError': 5.28,
'dmin': 0.0497,
'gap': 155.0,
'horizontalError': 0.75,
'id': 'nc72660276',
'latitude': 36.0753326,
'locationSource': 'nc',
'longitude': -120.65699769999999,
'mag': 1.6,
'magError': 0.23,
'magNst': 8.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 17.0,
'place': '27km WSW of Coalinga, California',
'rms': 0.12,
'status': 'automatic',
'time': '2016-07-11T07:19:04.310Z',
'type': 'earthquake',
'updated': '2016-07-11T07:48:02.165Z'},
{'depth': 5.14,
'depthError': 0.26,
'dmin': 0.040310000000000006,
'gap': 41.0,
'horizontalError': 0.11,
'id': 'ci37412159',
'latitude': 33.537833299999996,
'locationSource': 'ci',
'longitude': -116.69716670000001,
'mag': 1.14,
'magError': 0.083,
'magNst': 25.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 44.0,
'place': '3km SW of Anza, CA',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-11T07:01:58.830Z',
'type': 'earthquake',
'updated': '2016-07-11T23:52:23.640Z'},
{'depth': 19.84,
'depthError': 6.1,
'dmin': 0.33,
'gap': 153.0,
'horizontalError': 4.4,
'id': 'us100062im',
'latitude': 15.7178,
'locationSource': 'us',
'longitude': -61.0356,
'mag': 4.4,
'magError': 0.105,
'magNst': 26.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '34km NE of Marigot, Dominica',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-11T06:58:08.070Z',
'type': 'earthquake',
'updated': '2016-07-11T07:24:29.408Z'},
{'depth': 143.89,
'depthError': 12.6,
'dmin': 1.505,
'gap': 97.0,
'horizontalError': 8.6,
'id': 'us100062ik',
'latitude': 36.3893,
'locationSource': 'us',
'longitude': 70.4307,
'mag': 4.5,
'magError': 0.271,
'magNst': 4.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '50km NW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-11T06:51:26.270Z',
'type': 'earthquake',
'updated': '2016-07-11T07:10:52.718Z'},
{'depth': 82.0,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13749683',
'latitude': 60.0439,
'locationSource': 'ak',
'longitude': -152.3702,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '42km NW of Anchor Point, Alaska',
'rms': 0.53,
'status': 'automatic',
'time': '2016-07-11T06:51:06.000Z',
'type': 'earthquake',
'updated': '2016-07-11T07:14:47.495Z'},
{'depth': 57.9,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13749471',
'latitude': 61.9637,
'locationSource': 'ak',
'longitude': -150.9411,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '53km WNW of Willow, Alaska',
'rms': 0.78,
'status': 'automatic',
'time': '2016-07-11T06:22:11.000Z',
'type': 'earthquake',
'updated': '2016-07-11T06:44:22.134Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.47100000000000003,
'gap': 75.0,
'horizontalError': 5.8,
'id': 'us100062id',
'latitude': 33.3708,
'locationSource': 'us',
'longitude': 139.3406,
'mag': 5.1,
'magError': 0.045,
'magNst': 156.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '53km NW of Hachijo-jima, Japan',
'rms': 0.92,
'status': 'reviewed',
'time': '2016-07-11T06:22:00.830Z',
'type': 'earthquake',
'updated': '2016-07-11T06:46:16.040Z'},
{'depth': 9.97,
'depthError': 0.56,
'dmin': 0.01927,
'gap': 74.0,
'horizontalError': 0.34,
'id': 'ci37412135',
'latitude': 32.9025,
'locationSource': 'ci',
'longitude': -115.53783329999999,
'mag': 2.07,
'magError': 0.139,
'magNst': 62.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 32.0,
'place': '7km NNE of Imperial, CA',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-11T06:07:11.200Z',
'type': 'earthquake',
'updated': '2016-07-11T23:39:32.255Z'},
{'depth': 12.6,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13749470',
'latitude': 59.8574,
'locationSource': 'ak',
'longitude': -141.2211,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '71km ESE of Cape Yakataga, Alaska',
'rms': 1.27,
'status': 'automatic',
'time': '2016-07-11T06:02:59.000Z',
'type': 'earthquake',
'updated': '2016-07-11T06:16:37.833Z'},
{'depth': 17.0,
'depthError': 0.9,
'dmin': 0.14462876,
'gap': 342.0,
'horizontalError': 2.3,
'id': 'pr16193000',
'latitude': 18.5055,
'locationSource': 'pr',
'longitude': -64.4964,
'mag': 2.5,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '16km NE of Road Town, British Virgin Islands',
'rms': 0.01,
'status': 'reviewed',
'time': '2016-07-11T05:47:08.500Z',
'type': 'earthquake',
'updated': '2016-07-11T07:54:33.557Z'},
{'depth': 32.7,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13749467',
'latitude': 61.4836,
'locationSource': 'ak',
'longitude': -146.4724,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '39km N of Valdez, Alaska',
'rms': 0.3,
'status': 'automatic',
'time': '2016-07-11T05:42:44.000Z',
'type': 'earthquake',
'updated': '2016-07-11T06:03:25.760Z'},
{'depth': 0.5,
'depthError': 85.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13749281',
'latitude': 60.1484,
'locationSource': 'ak',
'longitude': -141.4004,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '58km E of Cape Yakataga, Alaska',
'rms': 1.04,
'status': 'automatic',
'time': '2016-07-11T05:32:56.000Z',
'type': 'earthquake',
'updated': '2016-07-11T05:50:04.005Z'},
{'depth': 14.12,
'depthError': 1.55,
'dmin': 0.1092,
'gap': 111.0,
'horizontalError': 0.46,
'id': 'uw61164507',
'latitude': 48.0071667,
'locationSource': 'uw',
'longitude': -121.9025,
'mag': 1.26,
'magError': 0.084,
'magNst': 9.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 10.0,
'place': '9km SSE of Granite Falls, Washington',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-11T05:25:19.070Z',
'type': 'earthquake',
'updated': '2016-07-11T21:22:53.100Z'},
{'depth': 5.58,
'depthError': 0.49,
'dmin': 0.018369999999999997,
'gap': 137.0,
'horizontalError': 0.37,
'id': 'nc72660251',
'latitude': 39.6436653,
'locationSource': 'nc',
'longitude': -123.4021683,
'mag': 2.07,
'magError': 0.02,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 9.0,
'place': '8km SE of Laytonville, California',
'rms': 0.05,
'status': 'automatic',
'time': '2016-07-11T05:24:26.180Z',
'type': 'earthquake',
'updated': '2016-07-11T05:51:03.824Z'},
{'depth': 34.99,
'depthError': 6.2,
'dmin': 1.364,
'gap': 91.0,
'horizontalError': 2.9,
'id': 'us100062i0',
'latitude': 26.8945,
'locationSource': 'us',
'longitude': 130.281,
'mag': 5.0,
'magError': 0.043,
'magNst': 176.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '181km SSE of Naze, Japan',
'rms': 0.77,
'status': 'reviewed',
'time': '2016-07-11T05:10:46.230Z',
'type': 'earthquake',
'updated': '2016-07-11T05:42:31.229Z'},
{'depth': 10.9,
'depthError': 1.2,
'dmin': 0.183,
'gap': 131.92,
'horizontalError': nan,
'id': 'nn00551320',
'latitude': 37.15,
'locationSource': 'nn',
'longitude': -117.3909,
'mag': 1.7,
'magError': 0.32,
'magNst': 16.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 22.0,
'place': '62km WNW of Beatty, Nevada',
'rms': 0.1837,
'status': 'reviewed',
'time': '2016-07-11T04:48:35.727Z',
'type': 'earthquake',
'updated': '2016-07-11T14:03:57.381Z'},
{'depth': 5.7,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13749258',
'latitude': 61.2987,
'locationSource': 'ak',
'longitude': -152.4514,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km NW of Nikiski, Alaska',
'rms': 0.63,
'status': 'automatic',
'time': '2016-07-11T04:45:49.000Z',
'type': 'earthquake',
'updated': '2016-07-11T05:06:19.025Z'},
{'depth': 74.0,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13749254',
'latitude': 59.8909,
'locationSource': 'ak',
'longitude': -151.4599,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '19km NNW of Fritz Creek, Alaska',
'rms': 0.24,
'status': 'automatic',
'time': '2016-07-11T04:39:09.000Z',
'type': 'earthquake',
'updated': '2016-07-11T05:06:20.181Z'},
{'depth': 89.5,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13749243',
'latitude': 60.8397,
'locationSource': 'ak',
'longitude': -152.0534,
'mag': 3.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km WNW of Nikiski, Alaska',
'rms': 0.66,
'status': 'automatic',
'time': '2016-07-11T04:30:34.000Z',
'type': 'earthquake',
'updated': '2016-07-11T05:07:46.298Z'},
{'depth': 2.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13749237',
'latitude': 61.2915,
'locationSource': 'ak',
'longitude': -152.496,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.45,
'status': 'automatic',
'time': '2016-07-11T04:24:10.000Z',
'type': 'earthquake',
'updated': '2016-07-11T04:52:28.675Z'},
{'depth': 14.19,
'depthError': 0.32,
'dmin': 0.07779,
'gap': 34.0,
'horizontalError': 0.22,
'id': 'ci37412103',
'latitude': 33.7056667,
'locationSource': 'ci',
'longitude': -116.82516670000001,
'mag': 1.48,
'magError': 0.21100000000000002,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 51.0,
'place': '8km SE of Valle Vista, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-11T04:13:26.080Z',
'type': 'earthquake',
'updated': '2016-07-11T16:52:22.612Z'},
{'depth': 3.7,
'depthError': 0.99,
'dmin': 0.0615,
'gap': 139.0,
'horizontalError': 0.4,
'id': 'nc72660231',
'latitude': 37.5644989,
'locationSource': 'nc',
'longitude': -118.8268356,
'mag': 1.11,
'magError': 0.13,
'magNst': 11.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 12.0,
'place': '15km SE of Mammoth Lakes, California',
'rms': 0.03,
'status': 'automatic',
'time': '2016-07-11T03:59:39.490Z',
'type': 'earthquake',
'updated': '2016-07-11T04:42:03.632Z'},
{'depth': 5.76,
'depthError': 0.69,
'dmin': 0.02062,
'gap': 224.0,
'horizontalError': 1.09,
'id': 'nc72660226',
'latitude': 39.6446648,
'locationSource': 'nc',
'longitude': -123.399498,
'mag': 1.72,
'magError': 0.07,
'magNst': 5.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 5.0,
'place': '8km SE of Laytonville, California',
'rms': 0.02,
'status': 'automatic',
'time': '2016-07-11T03:46:12.810Z',
'type': 'earthquake',
'updated': '2016-07-11T04:17:02.580Z'},
{'depth': 271.75,
'depthError': 5.5,
'dmin': 3.833,
'gap': 64.0,
'horizontalError': 9.3,
'id': 'us100062hn',
'latitude': -16.4067,
'locationSource': 'us',
'longitude': -174.8027,
'mag': 4.7,
'magError': 0.038,
'magNst': 205.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '123km WSW of Hihifo, Tonga',
'rms': 1.29,
'status': 'reviewed',
'time': '2016-07-11T03:38:23.780Z',
'type': 'earthquake',
'updated': '2016-07-11T04:14:13.676Z'},
{'depth': 10.86,
'depthError': 0.28,
'dmin': 0.05635,
'gap': 46.0,
'horizontalError': 0.13,
'id': 'ci37412079',
'latitude': 34.0205,
'locationSource': 'ci',
'longitude': -117.17783329999999,
'mag': 1.29,
'magError': 0.165,
'magNst': 22.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 53.0,
'place': '4km S of Redlands, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-11T03:35:47.160Z',
'type': 'earthquake',
'updated': '2016-07-11T23:31:53.440Z'},
{'depth': 44.4,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 1.8,
'id': 'ak13748850',
'latitude': 61.8411,
'locationSource': 'ak',
'longitude': -149.6069,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '22km WNW of Fishhook, Alaska',
'rms': 0.31,
'status': 'automatic',
'time': '2016-07-11T02:59:00.000Z',
'type': 'earthquake',
'updated': '2016-07-11T03:11:05.244Z'},
{'depth': 6.0,
'depthError': 6.14,
'dmin': 0.40299999999999997,
'gap': 156.0,
'horizontalError': 0.58,
'id': 'mb80161299',
'latitude': 47.9386667,
'locationSource': 'mb',
'longitude': -115.37183329999999,
'mag': 1.74,
'magError': 0.217,
'magNst': 2.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 10.0,
'place': '38km N of Thompson Falls, Montana',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-11T02:20:21.690Z',
'type': 'earthquake',
'updated': '2016-07-11T14:29:40.170Z'},
{'depth': 5.7,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13748815',
'latitude': 65.2509,
'locationSource': 'ak',
'longitude': -148.9234,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '62km NW of Ester, Alaska',
'rms': 0.4,
'status': 'automatic',
'time': '2016-07-11T02:16:44.000Z',
'type': 'earthquake',
'updated': '2016-07-11T02:44:37.120Z'},
{'depth': 3.63,
'depthError': 10.63,
'dmin': 0.40399999999999997,
'gap': 166.0,
'horizontalError': 1.63,
'id': 'mb80161519',
'latitude': 47.9335,
'locationSource': 'mb',
'longitude': -115.37483329999999,
'mag': 1.19,
'magError': 0.225,
'magNst': 2.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 9.0,
'place': '37km N of Thompson Falls, Montana',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-11T02:15:36.500Z',
'type': 'earthquake',
'updated': '2016-07-11T19:42:46.920Z'},
{'depth': 19.19,
'depthError': 2.9,
'dmin': 1.252,
'gap': 38.0,
'horizontalError': 6.1,
'id': 'us100062hg',
'latitude': 0.5539999999999999,
'locationSource': 'us',
'longitude': -79.663,
'mag': 6.3,
'magError': nan,
'magNst': nan,
'magSource': 'us',
'magType': 'mww',
'net': 'us',
'nst': nan,
'place': '32km NW of Rosa Zarate, Ecuador',
'rms': 1.06,
'status': 'reviewed',
'time': '2016-07-11T02:11:04.460Z',
'type': 'earthquake',
'updated': '2016-07-11T13:56:36.000Z'},
{'depth': 17.44,
'depthError': 3.2,
'dmin': 1.236,
'gap': 47.0,
'horizontalError': 6.1,
'id': 'us100062hd',
'latitude': 0.5661,
'locationSource': 'us',
'longitude': -79.6431,
'mag': 5.8,
'magError': nan,
'magNst': nan,
'magSource': 'us',
'magType': 'mww',
'net': 'us',
'nst': nan,
'place': '32km NW of Rosa Zarate, Ecuador',
'rms': 1.05,
'status': 'reviewed',
'time': '2016-07-11T02:01:10.090Z',
'type': 'earthquake',
'updated': '2016-07-11T13:56:35.000Z'},
{'depth': 0.23,
'depthError': 7.48,
'dmin': 0.05927,
'gap': 219.0,
'horizontalError': 0.72,
'id': 'nc72660201',
'latitude': 37.56233220000001,
'locationSource': 'nc',
'longitude': -118.9309998,
'mag': 1.23,
'magError': 0.22,
'magNst': 9.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 10.0,
'place': '10km SSE of Mammoth Lakes, California',
'rms': 0.03,
'status': 'automatic',
'time': '2016-07-11T01:28:06.640Z',
'type': 'earthquake',
'updated': '2016-07-11T01:58:02.162Z'},
{'depth': 6.745,
'depthError': 0.77,
'dmin': 0.04895,
'gap': 49.0,
'horizontalError': 0.31,
'id': 'hv61332976',
'latitude': 19.4921667,
'locationSource': 'hv',
'longitude': -155.64866669999998,
'mag': 2.21,
'magError': 0.047,
'magNst': 4.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 30.0,
'place': '23km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-11T01:23:58.640Z',
'type': 'earthquake',
'updated': '2016-07-11T23:32:43.020Z'},
{'depth': 4.07,
'depthError': 0.86,
'dmin': 0.1157,
'gap': 65.0,
'horizontalError': 0.26,
'id': 'ci37412015',
'latitude': 34.5561667,
'locationSource': 'ci',
'longitude': -116.5325,
'mag': 1.33,
'magError': 0.04,
'magNst': 8.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '39km WSW of Ludlow, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-11T00:53:09.220Z',
'type': 'earthquake',
'updated': '2016-07-11T23:01:37.965Z'},
{'depth': 0.1,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13748452',
'latitude': 61.2891,
'locationSource': 'ak',
'longitude': -152.5074,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.57,
'status': 'automatic',
'time': '2016-07-11T00:31:00.000Z',
'type': 'earthquake',
'updated': '2016-07-11T01:14:48.804Z'},
{'depth': 39.8,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13748450',
'latitude': 61.8458,
'locationSource': 'ak',
'longitude': -149.9939,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '11km NNE of Willow, Alaska',
'rms': 0.75,
'status': 'automatic',
'time': '2016-07-11T00:25:28.000Z',
'type': 'earthquake',
'updated': '2016-07-11T01:14:48.142Z'},
{'depth': 12.0,
'depthError': 1.4,
'dmin': 0.177,
'gap': 120.27,
'horizontalError': nan,
'id': 'nn00551311',
'latitude': 37.1585,
'locationSource': 'nn',
'longitude': -117.39299999999999,
'mag': 1.4,
'magError': 0.4,
'magNst': 15.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 21.0,
'place': '62km WNW of Beatty, Nevada',
'rms': 0.1918,
'status': 'reviewed',
'time': '2016-07-11T00:11:39.960Z',
'type': 'earthquake',
'updated': '2016-07-11T01:29:47.626Z'},
{'depth': 33.3,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13748446',
'latitude': 59.8964,
'locationSource': 'ak',
'longitude': -152.6433,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '47km WNW of Anchor Point, Alaska',
'rms': 0.92,
'status': 'automatic',
'time': '2016-07-11T00:00:28.000Z',
'type': 'earthquake',
'updated': '2016-07-11T00:44:19.368Z'},
{'depth': 0.85,
'depthError': 0.74,
'dmin': 0.1715,
'gap': 83.0,
'horizontalError': 0.23,
'id': 'ci37411999',
'latitude': 36.3868333,
'locationSource': 'ci',
'longitude': -117.868,
'mag': 1.23,
'magError': 0.14300000000000002,
'magNst': 10.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '17km NE of Olancha, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-10T23:40:21.670Z',
'type': 'earthquake',
'updated': '2016-07-11T18:42:45.315Z'},
{'depth': 1.76,
'depthError': 0.42,
'dmin': 0.09218,
'gap': 75.0,
'horizontalError': 0.26,
'id': 'ci37371085',
'latitude': 36.2363333,
'locationSource': 'ci',
'longitude': -117.5681667,
'mag': 1.86,
'magError': 0.153,
'magNst': 11.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '40km E of Olancha, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-10T23:29:49.000Z',
'type': 'earthquake',
'updated': '2016-07-11T22:55:37.615Z'},
{'depth': 1.99,
'depthError': 0.47,
'dmin': 0.08517999999999999,
'gap': 47.0,
'horizontalError': 0.22,
'id': 'ci37411991',
'latitude': 36.2333333,
'locationSource': 'ci',
'longitude': -117.57600000000001,
'mag': 2.36,
'magError': 0.14400000000000002,
'magNst': 63.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 28.0,
'place': '39km E of Olancha, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-10T23:29:21.850Z',
'type': 'earthquake',
'updated': '2016-07-11T22:46:51.110Z'},
{'depth': 71.5,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13748445',
'latitude': 63.0594,
'locationSource': 'ak',
'longitude': -149.4836,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km SW of Cantwell, Alaska',
'rms': 0.54,
'status': 'automatic',
'time': '2016-07-10T23:24:57.000Z',
'type': 'earthquake',
'updated': '2016-07-11T00:10:23.274Z'},
{'depth': 0.95,
'depthError': 0.59,
'dmin': 0.01114,
'gap': 69.0,
'horizontalError': 0.32,
'id': 'nc72660186',
'latitude': 38.777668,
'locationSource': 'nc',
'longitude': -122.7303314,
'mag': 1.82,
'magError': 0.22,
'magNst': 8.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 8.0,
'place': '2km E of The Geysers, California',
'rms': 0.06,
'status': 'automatic',
'time': '2016-07-10T23:02:35.680Z',
'type': 'earthquake',
'updated': '2016-07-11T00:21:03.924Z'},
{'depth': 14.59,
'depthError': 0.62,
'dmin': 0.046810000000000004,
'gap': 58.0,
'horizontalError': 0.37,
'id': 'ci37411983',
'latitude': 34.0553333,
'locationSource': 'ci',
'longitude': -118.02466670000001,
'mag': 1.27,
'magError': 0.183,
'magNst': 28.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 32.0,
'place': '2km S of El Monte, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-10T22:47:35.900Z',
'type': 'earthquake',
'updated': '2016-07-11T16:53:53.267Z'},
{'depth': -1.48,
'depthError': 0.61,
'dmin': 0.0561,
'gap': 154.0,
'horizontalError': 0.34,
'id': 'nc72660176',
'latitude': 37.5651665,
'locationSource': 'nc',
'longitude': -118.93283079999999,
'mag': 1.75,
'magError': 0.21,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 17.0,
'place': '9km SSE of Mammoth Lakes, California',
'rms': 0.06,
'status': 'automatic',
'time': '2016-07-10T22:43:22.080Z',
'type': 'earthquake',
'updated': '2016-07-10T23:55:02.835Z'},
{'depth': 0.91,
'depthError': 0.23,
'dmin': 0.008995999999999999,
'gap': 46.0,
'horizontalError': 0.13,
'id': 'nc72660166',
'latitude': 38.775833299999995,
'locationSource': 'nc',
'longitude': -122.73016670000001,
'mag': 1.22,
'magError': 0.253,
'magNst': 11.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 38.0,
'place': '2km E of The Geysers, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-10T22:34:19.050Z',
'type': 'earthquake',
'updated': '2016-07-12T00:59:01.996Z'},
{'depth': 1.69,
'depthError': 0.23,
'dmin': 0.005985,
'gap': 39.0,
'horizontalError': 0.18,
'id': 'nc72660161',
'latitude': 38.7725,
'locationSource': 'nc',
'longitude': -122.72483329999999,
'mag': 1.58,
'magError': 0.27399999999999997,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 45.0,
'place': '2km E of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-10T22:33:09.900Z',
'type': 'earthquake',
'updated': '2016-07-12T01:10:04.026Z'},
{'depth': 12.79,
'depthError': 0.5,
'dmin': 0.03297,
'gap': 48.0,
'horizontalError': 0.25,
'id': 'ci37411959',
'latitude': 34.0651667,
'locationSource': 'ci',
'longitude': -116.975,
'mag': 1.7,
'magError': 0.18100000000000002,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 49.0,
'place': '7km ENE of Yucaipa, CA',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-10T22:24:22.900Z',
'type': 'earthquake',
'updated': '2016-07-11T16:53:42.766Z'},
{'depth': 7.525,
'depthError': 0.69,
'dmin': 0.04891,
'gap': 73.0,
'horizontalError': 0.37,
'id': 'hv61332831',
'latitude': 19.492333300000002,
'locationSource': 'hv',
'longitude': -155.65,
'mag': 2.55,
'magError': 0.255,
'magNst': 10.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 32.0,
'place': '22km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-10T22:21:36.520Z',
'type': 'earthquake',
'updated': '2016-07-12T00:02:42.556Z'},
{'depth': 7.935,
'depthError': 0.93,
'dmin': 0.04655,
'gap': 88.0,
'horizontalError': 0.5,
'id': 'hv61332736',
'latitude': 19.4951667,
'locationSource': 'hv',
'longitude': -155.653,
'mag': 2.54,
'magError': 0.263,
'magNst': 8.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 23.0,
'place': '22km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-10T22:21:36.440Z',
'type': 'earthquake',
'updated': '2016-07-12T00:34:04.615Z'},
{'depth': 6.61,
'depthError': 1.15,
'dmin': 0.07511,
'gap': 88.0,
'horizontalError': 0.4,
'id': 'ci37411951',
'latitude': 33.1245,
'locationSource': 'ci',
'longitude': -116.292,
'mag': 1.26,
'magError': 0.161,
'magNst': 23.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 27.0,
'place': '15km W of Ocotillo Wells, CA',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-10T22:20:23.410Z',
'type': 'earthquake',
'updated': '2016-07-11T22:50:00.593Z'},
{'depth': 19.5,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 2.7,
'id': 'ak13748269',
'latitude': 61.3203,
'locationSource': 'ak',
'longitude': -152.7216,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '93km N of Redoubt Volcano, Alaska',
'rms': 1.12,
'status': 'reviewed',
'time': '2016-07-10T21:51:42.000Z',
'type': 'earthquake',
'updated': '2016-07-11T05:36:01.757Z'},
{'depth': 35.56,
'depthError': 9.1,
'dmin': 0.301,
'gap': 140.0,
'horizontalError': 5.2,
'id': 'us100062gh',
'latitude': -23.8093,
'locationSource': 'us',
'longitude': -70.4847,
'mag': 4.3,
'magError': 0.16,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '19km SSW of Antofagasta, Chile',
'rms': 1.02,
'status': 'reviewed',
'time': '2016-07-10T21:46:25.280Z',
'type': 'earthquake',
'updated': '2016-07-10T22:07:33.141Z'},
{'depth': 6.7,
'depthError': 2.1,
'dmin': 0.05,
'gap': 102.69,
'horizontalError': 1.74,
'id': 'nn00551302',
'latitude': 38.3835,
'locationSource': 'nn',
'longitude': -118.1661,
'mag': 1.1,
'magError': 0.04,
'magNst': 2.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 10.0,
'place': '42km ESE of Hawthorne, Nevada',
'rms': 0.1409,
'status': 'reviewed',
'time': '2016-07-10T21:42:53.559Z',
'type': 'earthquake',
'updated': '2016-07-10T22:35:54.275Z'},
{'depth': 2.58,
'depthError': 0.28,
'dmin': 0.01075,
'gap': 124.0,
'horizontalError': 0.29,
'id': 'hv61332731',
'latitude': 19.3945007,
'locationSource': 'hv',
'longitude': -155.24499509999998,
'mag': 2.14,
'magError': 0.16,
'magNst': 19.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 20.0,
'place': '4km S of Volcano, Hawaii',
'rms': 0.18,
'status': 'automatic',
'time': '2016-07-10T21:38:44.070Z',
'type': 'earthquake',
'updated': '2016-07-10T21:41:46.280Z'},
{'depth': 23.77,
'depthError': 5.0,
'dmin': 4.224,
'gap': 96.0,
'horizontalError': 8.5,
'id': 'us100062gd',
'latitude': 30.9067,
'locationSource': 'us',
'longitude': 66.4656,
'mag': 4.7,
'magError': 0.053,
'magNst': 109.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '2km SE of Chaman, Pakistan',
'rms': 0.95,
'status': 'reviewed',
'time': '2016-07-10T21:33:55.890Z',
'type': 'earthquake',
'updated': '2016-07-10T21:52:38.457Z'},
{'depth': 6.52,
'depthError': 0.79,
'dmin': 0.1341,
'gap': 83.0,
'horizontalError': 0.26,
'id': 'ci37411935',
'latitude': 33.062,
'locationSource': 'ci',
'longitude': -116.4395,
'mag': 1.08,
'magError': 0.136,
'magNst': 23.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 32.0,
'place': '15km E of Julian, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-10T21:26:31.990Z',
'type': 'earthquake',
'updated': '2016-07-11T22:46:52.402Z'},
{'depth': 7.3,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13748260',
'latitude': 57.2902,
'locationSource': 'ak',
'longitude': -155.3888,
'mag': 3.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km WSW of Larsen Bay, Alaska',
'rms': 0.81,
'status': 'reviewed',
'time': '2016-07-10T21:19:33.000Z',
'type': 'earthquake',
'updated': '2016-07-11T05:37:29.885Z'},
{'depth': 2.7,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13748257',
'latitude': 57.3126,
'locationSource': 'ak',
'longitude': -155.30100000000002,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '83km WSW of Larsen Bay, Alaska',
'rms': 0.77,
'status': 'automatic',
'time': '2016-07-10T21:13:10.000Z',
'type': 'earthquake',
'updated': '2016-07-10T22:01:53.742Z'},
{'depth': -0.53,
'depthError': 31.61,
'dmin': 0.573,
'gap': 198.0,
'horizontalError': 2.32,
'id': 'uw61164397',
'latitude': 49.3475,
'locationSource': 'uw',
'longitude': -120.4913333,
'mag': 1.73,
'magError': 0.17300000000000001,
'magNst': 3.0,
'magSource': 'uw',
'magType': 'md',
'net': 'uw',
'nst': 7.0,
'place': '12km S of Princeton, Canada',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-10T21:10:50.380Z',
'type': 'explosion',
'updated': '2016-07-11T21:14:19.760Z'},
{'depth': 132.7,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13748074',
'latitude': 63.0682,
'locationSource': 'ak',
'longitude': -150.9292,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km NNW of Talkeetna, Alaska',
'rms': 0.41,
'status': 'automatic',
'time': '2016-07-10T20:51:47.000Z',
'type': 'earthquake',
'updated': '2016-07-10T21:27:29.927Z'},
{'depth': 2.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13748072',
'latitude': 61.3006,
'locationSource': 'ak',
'longitude': -152.5198,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.61,
'status': 'automatic',
'time': '2016-07-10T20:51:13.000Z',
'type': 'earthquake',
'updated': '2016-07-10T21:26:05.625Z'},
{'depth': 2.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13748068',
'latitude': 61.294,
'locationSource': 'ak',
'longitude': -152.5045,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.52,
'status': 'automatic',
'time': '2016-07-10T20:48:01.000Z',
'type': 'earthquake',
'updated': '2016-07-10T21:26:07.441Z'},
{'depth': 19.7,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13748067',
'latitude': 60.1661,
'locationSource': 'ak',
'longitude': -140.9556,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '82km E of Cape Yakataga, Alaska',
'rms': 0.27,
'status': 'automatic',
'time': '2016-07-10T20:40:43.000Z',
'type': 'earthquake',
'updated': '2016-07-10T21:26:06.826Z'},
{'depth': 0.84,
'depthError': 0.7,
'dmin': 0.1272,
'gap': 60.0,
'horizontalError': 0.34,
'id': 'ci37411919',
'latitude': 34.536333299999995,
'locationSource': 'ci',
'longitude': -118.8453333,
'mag': 1.49,
'magError': 0.16699999999999998,
'magNst': 31.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 24.0,
'place': '14km NNW of Piru, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-10T20:20:42.690Z',
'type': 'earthquake',
'updated': '2016-07-11T16:54:33.445Z'},
{'depth': 114.67,
'depthError': 7.1,
'dmin': 0.494,
'gap': 37.0,
'horizontalError': 5.9,
'id': 'us100062fl',
'latitude': -21.0767,
'locationSource': 'us',
'longitude': -68.959,
'mag': 4.8,
'magError': 0.131,
'magNst': 18.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '153km N of Calama, Chile',
'rms': 1.1,
'status': 'reviewed',
'time': '2016-07-10T20:00:38.000Z',
'type': 'earthquake',
'updated': '2016-07-10T20:17:06.108Z'},
{'depth': 11.2,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 2.0,
'id': 'ak13748057',
'latitude': 58.1649,
'locationSource': 'ak',
'longitude': -154.8833,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '87km NW of Larsen Bay, Alaska',
'rms': 0.21,
'status': 'automatic',
'time': '2016-07-10T19:51:35.000Z',
'type': 'earthquake',
'updated': '2016-07-10T20:48:54.916Z'},
{'depth': 20.0,
'depthError': 0.9,
'dmin': 0.12217088,
'gap': 230.4,
'horizontalError': 1.2,
'id': 'pr16192008',
'latitude': 18.1243,
'locationSource': 'pr',
'longitude': -67.2027,
'mag': 2.3,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 7.0,
'place': '5km NNW of Puerto Real, Puerto Rico',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-10T19:30:27.100Z',
'type': 'earthquake',
'updated': '2016-07-10T20:25:13.225Z'},
{'depth': 18.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13747888',
'latitude': 61.2756,
'locationSource': 'ak',
'longitude': -147.6818,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '73km WNW of Valdez, Alaska',
'rms': 0.73,
'status': 'automatic',
'time': '2016-07-10T19:03:22.000Z',
'type': 'earthquake',
'updated': '2016-07-10T19:40:15.377Z'},
{'depth': 60.49,
'depthError': 11.4,
'dmin': 0.182,
'gap': 216.0,
'horizontalError': 11.9,
'id': 'us100062fe',
'latitude': 51.2087,
'locationSource': 'us',
'longitude': 179.1901,
'mag': 4.0,
'magError': 0.081,
'magNst': 41.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '87km SSW of Semisopochnoi Island, Alaska',
'rms': 1.38,
'status': 'reviewed',
'time': '2016-07-10T19:02:50.990Z',
'type': 'earthquake',
'updated': '2016-07-10T20:48:56.036Z'},
{'depth': 2.77,
'depthError': 0.19,
'dmin': 0.00014140000000000002,
'gap': 32.0,
'horizontalError': 0.18,
'id': 'hv61332621',
'latitude': 19.398166699999997,
'locationSource': 'hv',
'longitude': -155.2661591,
'mag': 2.26,
'magError': 0.31,
'magNst': 12.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 30.0,
'place': '4km SW of Volcano, Hawaii',
'rms': 0.16,
'status': 'automatic',
'time': '2016-07-10T19:00:06.890Z',
'type': 'earthquake',
'updated': '2016-07-10T19:05:45.790Z'},
{'depth': 2.02,
'depthError': 0.42,
'dmin': 0.036969999999999996,
'gap': 59.0,
'horizontalError': 0.22,
'id': 'nc72660151',
'latitude': 36.1005,
'locationSource': 'nc',
'longitude': -120.67983329999998,
'mag': 1.59,
'magError': 0.273,
'magNst': 31.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 44.0,
'place': '29km W of Coalinga, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-10T18:47:16.630Z',
'type': 'earthquake',
'updated': '2016-07-12T00:42:02.876Z'},
{'depth': 12.63,
'depthError': 0.67,
'dmin': 0.06297,
'gap': 59.0,
'horizontalError': 0.24,
'id': 'ci37411879',
'latitude': 34.389166700000004,
'locationSource': 'ci',
'longitude': -118.4245,
'mag': 1.09,
'magError': 0.11800000000000001,
'magNst': 12.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '8km ESE of Santa Clarita, CA',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-10T18:44:53.210Z',
'type': 'earthquake',
'updated': '2016-07-11T22:37:18.011Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 2.7110000000000003,
'gap': 99.0,
'horizontalError': 5.9,
'id': 'us100062f8',
'latitude': -17.8051,
'locationSource': 'us',
'longitude': -172.4542,
'mag': 4.6,
'magError': 0.13699999999999998,
'magNst': 16.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '186km ENE of Neiafu, Tonga',
'rms': 1.17,
'status': 'reviewed',
'time': '2016-07-10T18:25:35.770Z',
'type': 'earthquake',
'updated': '2016-07-10T19:04:51.523Z'},
{'depth': 19.7,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13747724',
'latitude': 61.2499,
'locationSource': 'ak',
'longitude': -147.3859,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '57km WNW of Valdez, Alaska',
'rms': 1.44,
'status': 'automatic',
'time': '2016-07-10T18:14:44.000Z',
'type': 'earthquake',
'updated': '2016-07-10T19:05:41.949Z'},
{'depth': 16.1,
'depthError': 1.03,
'dmin': 0.060570000000000006,
'gap': 159.0,
'horizontalError': 0.88,
'id': 'ci37411855',
'latitude': 32.745,
'locationSource': 'ci',
'longitude': -115.43833329999998,
'mag': 1.45,
'magError': 0.149,
'magNst': 10.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '9km E of Heber, CA',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-10T18:11:26.030Z',
'type': 'earthquake',
'updated': '2016-07-11T22:33:20.750Z'},
{'depth': 0.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13747722',
'latitude': 65.2779,
'locationSource': 'ak',
'longitude': -144.8943,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '23km SSW of Circle Hot Springs Station, Alaska',
'rms': 0.89,
'status': 'automatic',
'time': '2016-07-10T17:39:31.000Z',
'type': 'earthquake',
'updated': '2016-07-10T18:34:28.546Z'},
{'depth': 8.38,
'depthError': 6.8,
'dmin': 0.263,
'gap': 58.0,
'horizontalError': 1.7,
'id': 'us100062f1',
'latitude': 35.0475,
'locationSource': 'us',
'longitude': -97.5966,
'mag': 2.8,
'magError': 0.064,
'magNst': 63.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '11km SSE of Blanchard, Oklahoma',
'rms': 0.76,
'status': 'reviewed',
'time': '2016-07-10T17:38:01.140Z',
'type': 'earthquake',
'updated': '2016-07-10T17:55:07.729Z'},
{'depth': 0.0,
'depthError': 102.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13747717',
'latitude': 60.1738,
'locationSource': 'ak',
'longitude': -141.3645,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km ENE of Cape Yakataga, Alaska',
'rms': 1.31,
'status': 'automatic',
'time': '2016-07-10T17:21:49.000Z',
'type': 'earthquake',
'updated': '2016-07-10T18:02:21.325Z'},
{'depth': -0.53,
'depthError': 31.61,
'dmin': 0.5794,
'gap': 207.0,
'horizontalError': 2.44,
'id': 'uw61164322',
'latitude': 49.406000000000006,
'locationSource': 'uw',
'longitude': -120.49233329999998,
'mag': 1.97,
'magError': 0.11900000000000001,
'magNst': 9.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 11.0,
'place': '5km SSE of Princeton, Canada',
'rms': 0.38,
'status': 'reviewed',
'time': '2016-07-10T17:20:11.420Z',
'type': 'explosion',
'updated': '2016-07-10T21:47:59.010Z'},
{'depth': 10.17,
'depthError': 0.27,
'dmin': 0.057260000000000005,
'gap': 51.0,
'horizontalError': 0.15,
'id': 'ci37411799',
'latitude': 33.466,
'locationSource': 'ci',
'longitude': -116.4245,
'mag': 1.48,
'magError': 0.147,
'magNst': 22.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 60.0,
'place': '24km N of Borrego Springs, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-10T17:02:52.600Z',
'type': 'earthquake',
'updated': '2016-07-11T22:21:51.200Z'},
{'depth': 65.49,
'depthError': 11.5,
'dmin': 1.0959999999999999,
'gap': 139.0,
'horizontalError': 11.1,
'id': 'us100062ew',
'latitude': -4.5347,
'locationSource': 'us',
'longitude': 153.209,
'mag': 4.7,
'magError': 0.126,
'magNst': 19.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '20km ESE of Taron, Papua New Guinea',
'rms': 0.88,
'status': 'reviewed',
'time': '2016-07-10T17:01:14.280Z',
'type': 'earthquake',
'updated': '2016-07-10T17:14:13.174Z'},
{'depth': 30.7,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747550',
'latitude': 61.7424,
'locationSource': 'ak',
'longitude': -149.6815,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '13km NNW of Meadow Lakes, Alaska',
'rms': 0.5,
'status': 'automatic',
'time': '2016-07-10T16:40:23.000Z',
'type': 'earthquake',
'updated': '2016-07-10T17:27:36.470Z'},
{'depth': 166.81,
'depthError': 5.2,
'dmin': 6.129,
'gap': 52.0,
'horizontalError': 7.4,
'id': 'us100062et',
'latitude': -14.616,
'locationSource': 'us',
'longitude': 167.3899,
'mag': 5.0,
'magError': 0.037000000000000005,
'magNst': 227.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '60km NE of Port-Olry, Vanuatu',
'rms': 0.61,
'status': 'reviewed',
'time': '2016-07-10T16:32:49.930Z',
'type': 'earthquake',
'updated': '2016-07-11T00:56:40.000Z'},
{'depth': 1.1,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 3.2,
'id': 'ak13747548',
'latitude': 61.38,
'locationSource': 'ak',
'longitude': -152.7988,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '99km N of Redoubt Volcano, Alaska',
'rms': 1.01,
'status': 'automatic',
'time': '2016-07-10T16:25:15.000Z',
'type': 'earthquake',
'updated': '2016-07-10T16:54:59.248Z'},
{'depth': 1.99,
'depthError': 0.29,
'dmin': 0.006735,
'gap': 103.0,
'horizontalError': 0.19,
'id': 'nc72660136',
'latitude': 38.811,
'locationSource': 'nc',
'longitude': -122.821,
'mag': 1.07,
'magError': 0.152,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 30.0,
'place': '6km NW of The Geysers, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-10T16:21:31.720Z',
'type': 'earthquake',
'updated': '2016-07-11T23:45:21.848Z'},
{'depth': 2.35,
'depthError': 0.13,
'dmin': 0.005715,
'gap': 45.0,
'horizontalError': 0.1,
'id': 'nc72660131',
'latitude': 38.82,
'locationSource': 'nc',
'longitude': -122.84116670000002,
'mag': 2.12,
'magError': 0.17300000000000001,
'magNst': 28.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 60.0,
'place': '8km WNW of The Geysers, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-10T15:58:39.260Z',
'type': 'earthquake',
'updated': '2016-07-12T01:16:05.581Z'},
{'depth': 10.7,
'depthError': 3.0,
'dmin': 0.06,
'gap': 215.15,
'horizontalError': 4.22,
'id': 'nn00551287',
'latitude': 38.0775,
'locationSource': 'nn',
'longitude': -118.8538,
'mag': 1.1,
'magError': 0.13,
'magNst': 2.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 12.0,
'place': '38km ESE of Bridgeport, California',
'rms': 0.1255,
'status': 'reviewed',
'time': '2016-07-10T15:42:00.337Z',
'type': 'earthquake',
'updated': '2016-07-10T22:35:35.913Z'},
{'depth': 0.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747544',
'latitude': 60.1912,
'locationSource': 'ak',
'longitude': -140.8335,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km E of Cape Yakataga, Alaska',
'rms': 0.66,
'status': 'automatic',
'time': '2016-07-10T15:41:58.000Z',
'type': 'earthquake',
'updated': '2016-07-10T16:20:34.693Z'},
{'depth': 30.65,
'depthError': 5.3,
'dmin': 2.734,
'gap': 67.0,
'horizontalError': 8.7,
'id': 'us100062en',
'latitude': 2.2888,
'locationSource': 'us',
'longitude': 95.0203,
'mag': 4.7,
'magError': 0.09300000000000001,
'magNst': 35.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '152km W of Sinabang, Indonesia',
'rms': 0.64,
'status': 'reviewed',
'time': '2016-07-10T15:16:04.510Z',
'type': 'earthquake',
'updated': '2016-07-10T18:32:56.066Z'},
{'depth': 2.47,
'depthError': 0.2,
'dmin': 0.009935,
'gap': 76.0,
'horizontalError': 0.13,
'id': 'nc72660081',
'latitude': 38.8151667,
'locationSource': 'nc',
'longitude': -122.81933329999998,
'mag': 1.19,
'magError': 0.20600000000000002,
'magNst': 13.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 41.0,
'place': '6km NW of The Geysers, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-10T14:56:14.180Z',
'type': 'earthquake',
'updated': '2016-07-12T00:09:05.215Z'},
{'depth': 8.12,
'depthError': 0.81,
'dmin': 0.07883,
'gap': 48.0,
'horizontalError': 0.35,
'id': 'ci37411655',
'latitude': 34.681999999999995,
'locationSource': 'ci',
'longitude': -119.031,
'mag': 1.64,
'magError': 0.158,
'magNst': 22.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 29.0,
'place': '18km SSW of Frazier Park, CA',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-10T14:50:09.170Z',
'type': 'earthquake',
'updated': '2016-07-11T21:44:20.559Z'},
{'depth': 2.972,
'depthError': 0.45,
'dmin': 0.023469999999999998,
'gap': 78.0,
'horizontalError': 0.25,
'id': 'hv61332136',
'latitude': 19.4225,
'locationSource': 'hv',
'longitude': -155.614,
'mag': 3.29,
'magError': 0.222,
'magNst': 29.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 50.0,
'place': '26km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-10T14:38:02.960Z',
'type': 'earthquake',
'updated': '2016-07-11T20:39:07.040Z'},
{'depth': 98.5,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13747381',
'latitude': 59.5369,
'locationSource': 'ak',
'longitude': -153.2681,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '85km WSW of Anchor Point, Alaska',
'rms': 0.76,
'status': 'automatic',
'time': '2016-07-10T14:33:27.000Z',
'type': 'earthquake',
'updated': '2016-07-10T15:12:31.123Z'},
{'depth': 1.1,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13747378',
'latitude': 63.4585,
'locationSource': 'ak',
'longitude': -147.4372,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '75km E of Cantwell, Alaska',
'rms': 0.32,
'status': 'automatic',
'time': '2016-07-10T14:12:37.000Z',
'type': 'earthquake',
'updated': '2016-07-10T14:38:58.228Z'},
{'depth': 14.21,
'depthError': 5.0,
'dmin': 6.997000000000001,
'gap': 136.0,
'horizontalError': 8.6,
'id': 'us100062ec',
'latitude': 46.3035,
'locationSource': 'us',
'longitude': 152.8765,
'mag': 4.6,
'magError': 0.055999999999999994,
'magNst': 96.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'Kuril Islands',
'rms': 0.67,
'status': 'reviewed',
'time': '2016-07-10T14:07:10.670Z',
'type': 'earthquake',
'updated': '2016-07-10T18:13:24.623Z'},
{'depth': 42.3,
'depthError': 106.9,
'dmin': nan,
'gap': nan,
'horizontalError': 4.4,
'id': 'ak13747360',
'latitude': 52.5665,
'locationSource': 'ak',
'longitude': -166.8691,
'mag': 3.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '141km ESE of Nikolski, Alaska',
'rms': 0.67,
'status': 'reviewed',
'time': '2016-07-10T13:53:50.000Z',
'type': 'earthquake',
'updated': '2016-07-10T20:50:17.906Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747353',
'latitude': 62.262,
'locationSource': 'ak',
'longitude': -150.1168,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '6km S of Talkeetna, Alaska',
'rms': 0.84,
'status': 'automatic',
'time': '2016-07-10T13:46:15.000Z',
'type': 'earthquake',
'updated': '2016-07-10T14:38:57.611Z'},
{'depth': 10.0,
'depthError': 1.7,
'dmin': 1.81,
'gap': 36.0,
'horizontalError': 4.4,
'id': 'us100062ea',
'latitude': -15.0745,
'locationSource': 'us',
'longitude': -173.2139,
'mag': 5.8,
'magError': 0.034,
'magNst': 84.0,
'magSource': 'us',
'magType': 'mwb',
'net': 'us',
'nst': nan,
'place': '112km NNE of Hihifo, Tonga',
'rms': 0.73,
'status': 'reviewed',
'time': '2016-07-10T13:44:41.010Z',
'type': 'earthquake',
'updated': '2016-07-11T04:10:23.234Z'},
{'depth': 7.4,
'depthError': 0.34,
'dmin': 0.0487,
'gap': 46.0,
'horizontalError': 0.16,
'id': 'nc72660071',
'latitude': 36.9231667,
'locationSource': 'nc',
'longitude': -121.4255,
'mag': 1.63,
'magError': 0.243,
'magNst': 37.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 41.0,
'place': '8km NNW of Hollister, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-10T13:43:17.600Z',
'type': 'earthquake',
'updated': '2016-07-11T23:53:01.169Z'},
{'depth': 10.0,
'depthError': 1.8,
'dmin': 1.521,
'gap': 70.0,
'horizontalError': 7.8,
'id': 'us100062dw',
'latitude': -15.0231,
'locationSource': 'us',
'longitude': -172.8552,
'mag': 6.0,
'magError': 0.036000000000000004,
'magNst': 75.0,
'magSource': 'us',
'magType': 'mwb',
'net': 'us',
'nst': nan,
'place': '140km NE of Hihifo, Tonga',
'rms': 0.92,
'status': 'reviewed',
'time': '2016-07-10T13:41:53.660Z',
'type': 'earthquake',
'updated': '2016-07-11T04:14:42.076Z'},
{'depth': 3.55,
'depthError': 0.7,
'dmin': 0.07966000000000001,
'gap': 65.0,
'horizontalError': 0.17,
'id': 'ci37411615',
'latitude': 34.0325,
'locationSource': 'ci',
'longitude': -117.24366670000002,
'mag': 1.26,
'magError': 0.14,
'magNst': 21.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 37.0,
'place': '2km SE of Loma Linda, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-10T13:41:23.020Z',
'type': 'earthquake',
'updated': '2016-07-11T21:37:32.178Z'},
{'depth': 2.3,
'depthError': 0.15,
'dmin': 0.008140000000000001,
'gap': 49.0,
'horizontalError': 0.11,
'id': 'nc72660066',
'latitude': 38.8333333,
'locationSource': 'nc',
'longitude': -122.7985,
'mag': 1.97,
'magError': 0.13699999999999998,
'magNst': 15.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 49.0,
'place': '6km W of Cobb, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-10T13:23:55.410Z',
'type': 'earthquake',
'updated': '2016-07-12T00:20:03.659Z'},
{'depth': 10.47,
'depthError': 0.71,
'dmin': 0.02853,
'gap': 125.0,
'horizontalError': 0.44,
'id': 'ld60048903',
'latitude': 44.8233333,
'locationSource': 'ld',
'longitude': -74.5391667,
'mag': 1.15,
'magError': 0.09,
'magNst': 9.0,
'magSource': 'ld',
'magType': 'ml',
'net': 'ld',
'nst': 9.0,
'place': '19km W of Malone, New York',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-10T13:22:23.220Z',
'type': 'earthquake',
'updated': '2016-07-11T16:58:56.300Z'},
{'depth': 12.9,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13747200',
'latitude': 60.0458,
'locationSource': 'ak',
'longitude': -140.1956,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km NNW of Yakutat, Alaska',
'rms': 0.49,
'status': 'automatic',
'time': '2016-07-10T13:19:23.000Z',
'type': 'earthquake',
'updated': '2016-07-10T14:03:06.360Z'},
{'depth': 2.69,
'depthError': 0.87,
'dmin': 0.1312,
'gap': 114.0,
'horizontalError': 0.41,
'id': 'ci37411583',
'latitude': 33.0726667,
'locationSource': 'ci',
'longitude': -116.19,
'mag': 1.05,
'magError': 0.156,
'magNst': 23.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 21.0,
'place': '10km SW of Ocotillo Wells, CA',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-10T13:11:10.450Z',
'type': 'earthquake',
'updated': '2016-07-11T16:57:00.675Z'},
{'depth': 2.23,
'depthError': 0.14,
'dmin': 0.003201,
'gap': 45.0,
'horizontalError': 0.19,
'id': 'hv61332021',
'latitude': 19.3855,
'locationSource': 'hv',
'longitude': -155.2785034,
'mag': 2.62,
'magError': 0.31,
'magNst': 22.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 48.0,
'place': '6km SW of Volcano, Hawaii',
'rms': 0.26,
'status': 'automatic',
'time': '2016-07-10T13:06:25.650Z',
'type': 'earthquake',
'updated': '2016-07-10T13:12:19.374Z'},
{'depth': 35.33,
'depthError': 9.5,
'dmin': 0.965,
'gap': 174.0,
'horizontalError': 6.5,
'id': 'us100062di',
'latitude': 52.9122,
'locationSource': 'us',
'longitude': -166.9087,
'mag': 4.2,
'magError': 0.085,
'magNst': 39.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '109km SSW of Unalaska, Alaska',
'rms': 1.07,
'status': 'reviewed',
'time': '2016-07-10T13:06:24.720Z',
'type': 'earthquake',
'updated': '2016-07-10T13:38:18.876Z'},
{'depth': 0.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747179',
'latitude': 61.4565,
'locationSource': 'ak',
'longitude': -140.4401,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '176km WNW of Haines Junction, Canada',
'rms': 0.55,
'status': 'automatic',
'time': '2016-07-10T13:05:39.000Z',
'type': 'earthquake',
'updated': '2016-07-10T13:28:53.113Z'},
{'depth': 27.54,
'depthError': 6.0,
'dmin': 0.988,
'gap': 171.0,
'horizontalError': 6.7,
'id': 'us100062dc',
'latitude': 52.8746,
'locationSource': 'us',
'longitude': -166.796,
'mag': 4.4,
'magError': 0.084,
'magNst': 41.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '112km S of Unalaska, Alaska',
'rms': 0.89,
'status': 'reviewed',
'time': '2016-07-10T13:02:52.000Z',
'type': 'earthquake',
'updated': '2016-07-10T20:48:57.362Z'},
{'depth': 17.5,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747174',
'latitude': 61.3495,
'locationSource': 'ak',
'longitude': -146.7511,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '32km NW of Valdez, Alaska',
'rms': 0.7,
'status': 'automatic',
'time': '2016-07-10T13:01:46.000Z',
'type': 'earthquake',
'updated': '2016-07-10T13:28:52.517Z'},
{'depth': 8.0,
'depthError': 0.51,
'dmin': 0.008212,
'gap': 57.0,
'horizontalError': 0.32,
'id': 'ci37411559',
'latitude': 33.0463333,
'locationSource': 'ci',
'longitude': -115.58383329999998,
'mag': 1.17,
'magError': 0.17,
'magNst': 8.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '4km ENE of Westmorland, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-10T12:44:56.470Z',
'type': 'earthquake',
'updated': '2016-07-11T21:19:49.693Z'},
{'depth': -0.4,
'depthError': 1.53,
'dmin': 0.059320000000000005,
'gap': 121.0,
'horizontalError': 0.49,
'id': 'nc72660061',
'latitude': 39.0091667,
'locationSource': 'nc',
'longitude': -123.47983329999998,
'mag': 1.24,
'magError': 0.054000000000000006,
'magNst': 5.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 6.0,
'place': '9km W of Boonville, California',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-10T12:32:48.100Z',
'type': 'earthquake',
'updated': '2016-07-11T21:04:04.031Z'},
{'depth': 111.6,
'depthError': 1.9,
'dmin': nan,
'gap': nan,
'horizontalError': 5.6,
'id': 'ak13747171',
'latitude': 52.6062,
'locationSource': 'ak',
'longitude': -175.695,
'mag': 2.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '104km NE of Adak, Alaska',
'rms': 0.88,
'status': 'reviewed',
'time': '2016-07-10T12:27:47.000Z',
'type': 'earthquake',
'updated': '2016-07-10T20:50:24.321Z'},
{'depth': 9.0,
'depthError': 3.9,
'dmin': 0.6584651,
'gap': 320.4,
'horizontalError': 2.6,
'id': 'pr16192007',
'latitude': 19.0121,
'locationSource': 'pr',
'longitude': -64.9085,
'mag': 2.1,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '72km NNW of Road Town, British Virgin Islands',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-10T12:18:19.400Z',
'type': 'earthquake',
'updated': '2016-07-10T15:19:44.342Z'},
{'depth': 92.9,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13747167',
'latitude': 60.1627,
'locationSource': 'ak',
'longitude': -152.5706,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km SSE of Redoubt Volcano, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-10T12:08:40.000Z',
'type': 'earthquake',
'updated': '2016-07-10T12:52:47.555Z'},
{'depth': 0.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13747165',
'latitude': 58.1889,
'locationSource': 'ak',
'longitude': -155.3262,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '95km SE of King Salmon, Alaska',
'rms': 0.5,
'status': 'automatic',
'time': '2016-07-10T12:06:43.000Z',
'type': 'earthquake',
'updated': '2016-07-10T12:52:46.995Z'},
{'depth': 0.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747162',
'latitude': 63.4986,
'locationSource': 'ak',
'longitude': -151.0125,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '103km W of Cantwell, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-10T11:36:13.000Z',
'type': 'earthquake',
'updated': '2016-07-10T12:21:59.924Z'},
{'depth': 10.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13747157',
'latitude': 63.8392,
'locationSource': 'ak',
'longitude': -150.5177,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '76km W of Healy, Alaska',
'rms': 0.86,
'status': 'automatic',
'time': '2016-07-10T11:30:25.000Z',
'type': 'earthquake',
'updated': '2016-07-10T12:21:59.273Z'},
{'depth': 5.23,
'depthError': 6.1,
'dmin': 0.125,
'gap': 27.0,
'horizontalError': 1.1,
'id': 'us100062d3',
'latitude': 36.8379,
'locationSource': 'us',
'longitude': -97.7037,
'mag': 2.5,
'magError': 0.09,
'magNst': 32.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '4km NE of Medford, Oklahoma',
'rms': 0.45,
'status': 'reviewed',
'time': '2016-07-10T11:13:51.650Z',
'type': 'earthquake',
'updated': '2016-07-10T11:36:04.984Z'},
{'depth': 2.04,
'depthError': 0.58,
'dmin': 0.05143,
'gap': 57.0,
'horizontalError': 0.37,
'id': 'ci37411471',
'latitude': 34.2978333,
'locationSource': 'ci',
'longitude': -116.84166670000002,
'mag': 1.02,
'magError': 0.165,
'magNst': 29.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 26.0,
'place': '4km N of Big Bear City, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-10T11:03:09.460Z',
'type': 'earthquake',
'updated': '2016-07-11T16:58:31.867Z'},
{'depth': 0.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747154',
'latitude': 61.3138,
'locationSource': 'ak',
'longitude': -152.5043,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '93km N of Redoubt Volcano, Alaska',
'rms': 0.51,
'status': 'automatic',
'time': '2016-07-10T10:26:52.000Z',
'type': 'earthquake',
'updated': '2016-07-10T10:55:44.725Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13747149',
'latitude': 61.2937,
'locationSource': 'ak',
'longitude': -152.5031,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.5,
'status': 'automatic',
'time': '2016-07-10T10:16:32.000Z',
'type': 'earthquake',
'updated': '2016-07-10T10:55:45.914Z'},
{'depth': 5.0,
'depthError': 4.2,
'dmin': 0.62073586,
'gap': 306.0,
'horizontalError': 4.0,
'id': 'pr16192006',
'latitude': 18.9965,
'locationSource': 'pr',
'longitude': -64.8615,
'mag': 2.5,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '69km NNW of Road Town, British Virgin Islands',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-10T09:56:22.700Z',
'type': 'earthquake',
'updated': '2016-07-10T14:38:15.410Z'},
{'depth': 36.22,
'depthError': 0.79,
'dmin': 0.04712,
'gap': 76.0,
'horizontalError': 0.48,
'id': 'hv61331746',
'latitude': 19.185833,
'locationSource': 'hv',
'longitude': -155.5003357,
'mag': 2.29,
'magError': 0.05,
'magNst': 12.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 49.0,
'place': '3km SW of Pahala, Hawaii',
'rms': 0.21,
'status': 'automatic',
'time': '2016-07-10T09:55:16.300Z',
'type': 'earthquake',
'updated': '2016-07-10T09:58:34.240Z'},
{'depth': 3.27,
'depthError': 0.24,
'dmin': 0.005693999999999999,
'gap': 60.0,
'horizontalError': 0.18,
'id': 'nc72660016',
'latitude': 38.8186667,
'locationSource': 'nc',
'longitude': -122.806,
'mag': 1.15,
'magError': 0.115,
'magNst': 8.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 39.0,
'place': '6km NW of The Geysers, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-10T09:53:02.460Z',
'type': 'earthquake',
'updated': '2016-07-12T01:28:03.364Z'},
{'depth': 3.07,
'depthError': 0.18,
'dmin': 0.004999,
'gap': 60.0,
'horizontalError': 0.14,
'id': 'nc72660011',
'latitude': 38.8193333,
'locationSource': 'nc',
'longitude': -122.80633329999999,
'mag': 2.04,
'magError': 0.17,
'magNst': 31.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 56.0,
'place': '6km NW of The Geysers, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-10T09:46:39.520Z',
'type': 'earthquake',
'updated': '2016-07-11T23:21:03.811Z'},
{'depth': 14.0,
'depthError': 11.6,
'dmin': 0.66026173,
'gap': 320.4,
'horizontalError': 5.8,
'id': 'pr16192005',
'latitude': 19.0053,
'locationSource': 'pr',
'longitude': -64.8275,
'mag': 1.9,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '68km NNW of Road Town, British Virgin Islands',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-10T09:45:38.400Z',
'type': 'earthquake',
'updated': '2016-07-10T14:10:01.589Z'},
{'depth': 210.1,
'depthError': 1.7,
'dmin': nan,
'gap': nan,
'horizontalError': 2.7,
'id': 'ak13746999',
'latitude': 60.3643,
'locationSource': 'ak',
'longitude': -151.1686,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '7km E of Cohoe, Alaska',
'rms': 0.72,
'status': 'automatic',
'time': '2016-07-10T09:42:32.000Z',
'type': 'earthquake',
'updated': '2016-07-10T10:24:44.653Z'},
{'depth': 7.0,
'depthError': 3.3,
'dmin': 0.62253249,
'gap': 306.0,
'horizontalError': 3.0,
'id': 'pr16192004',
'latitude': 18.9913,
'locationSource': 'pr',
'longitude': -64.8769,
'mag': 2.2,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '69km NNW of Road Town, British Virgin Islands',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-10T09:39:23.300Z',
'type': 'earthquake',
'updated': '2016-07-10T13:53:49.740Z'},
{'depth': 13.11,
'depthError': 4.7,
'dmin': 0.9620000000000001,
'gap': 115.0,
'horizontalError': 5.4,
'id': 'us100062ch',
'latitude': 0.0516,
'locationSource': 'us',
'longitude': 100.1162,
'mag': 5.1,
'magError': 0.08199999999999999,
'magNst': 48.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '14km WNW of Bonjol, Indonesia',
'rms': 1.17,
'status': 'reviewed',
'time': '2016-07-10T09:31:57.370Z',
'type': 'earthquake',
'updated': '2016-07-10T10:29:01.265Z'},
{'depth': 8.66,
'depthError': 0.72,
'dmin': 0.06627000000000001,
'gap': 76.0,
'horizontalError': 0.25,
'id': 'ci37411447',
'latitude': 32.978666700000005,
'locationSource': 'ci',
'longitude': -115.54700000000001,
'mag': 1.69,
'magError': 0.201,
'magNst': 24.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 29.0,
'place': '2km W of Brawley, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-10T09:24:39.240Z',
'type': 'earthquake',
'updated': '2016-07-11T20:49:05.020Z'},
{'depth': 7.0,
'depthError': 4.4,
'dmin': 0.64139711,
'gap': 288.0,
'horizontalError': 4.5,
'id': 'pr16192003',
'latitude': 19.0074,
'locationSource': 'pr',
'longitude': -64.8892,
'mag': 2.2,
'magError': 0.0,
'magNst': 4.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '71km NNW of Road Town, British Virgin Islands',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-10T09:19:09.800Z',
'type': 'earthquake',
'updated': '2016-07-10T13:27:25.756Z'},
{'depth': -0.98,
'depthError': 0.75,
'dmin': 0.1323,
'gap': 107.0,
'horizontalError': 0.36,
'id': 'nc72660006',
'latitude': 39.0286667,
'locationSource': 'nc',
'longitude': -122.58783329999999,
'mag': 1.83,
'magError': 0.293,
'magNst': 24.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 32.0,
'place': '7km E of Clearlake Oaks, California',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-10T09:12:38.140Z',
'type': 'earthquake',
'updated': '2016-07-11T22:57:04.745Z'},
{'depth': 0.8,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13746992',
'latitude': 64.6021,
'locationSource': 'ak',
'longitude': -150.7844,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km S of Manley Hot Springs, Alaska',
'rms': 0.72,
'status': 'automatic',
'time': '2016-07-10T08:53:28.000Z',
'type': 'earthquake',
'updated': '2016-07-10T09:22:46.516Z'},
{'depth': 3.81,
'depthError': 0.47,
'dmin': 0.01183,
'gap': 87.0,
'horizontalError': 0.37,
'id': 'hv61331701',
'latitude': 19.3824997,
'locationSource': 'hv',
'longitude': -155.2323303,
'mag': 2.23,
'magError': 0.26,
'magNst': 12.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 36.0,
'place': '5km S of Volcano, Hawaii',
'rms': 0.28,
'status': 'automatic',
'time': '2016-07-10T08:50:58.220Z',
'type': 'earthquake',
'updated': '2016-07-10T08:56:36.950Z'},
{'depth': 2.13,
'depthError': 0.33,
'dmin': 0.007640999999999999,
'gap': 76.0,
'horizontalError': 0.2,
'id': 'nc72659991',
'latitude': 38.8143333,
'locationSource': 'nc',
'longitude': -122.82233329999998,
'mag': 1.07,
'magError': 0.062,
'magNst': 4.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 30.0,
'place': '7km NW of The Geysers, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-10T08:38:48.020Z',
'type': 'earthquake',
'updated': '2016-07-11T23:41:47.405Z'},
{'depth': 16.84,
'depthError': 1.07,
'dmin': 0.09782,
'gap': 55.0,
'horizontalError': 0.4,
'id': 'uw61164232',
'latitude': 47.9958333,
'locationSource': 'uw',
'longitude': -121.87933329999998,
'mag': 1.78,
'magError': 0.126,
'magNst': 32.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 22.0,
'place': '11km SE of Granite Falls, Washington',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-10T08:28:19.930Z',
'type': 'earthquake',
'updated': '2016-07-11T20:55:00.530Z'},
{'depth': 8.1,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13746989',
'latitude': 61.3106,
'locationSource': 'ak',
'longitude': -152.523,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km N of Redoubt Volcano, Alaska',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-10T08:18:51.000Z',
'type': 'earthquake',
'updated': '2016-07-10T20:15:33.073Z'},
{'depth': 27.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13746986',
'latitude': 62.2943,
'locationSource': 'ak',
'longitude': -148.8982,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '51km ENE of Y, Alaska',
'rms': 0.79,
'status': 'automatic',
'time': '2016-07-10T07:55:24.000Z',
'type': 'earthquake',
'updated': '2016-07-10T08:20:07.723Z'},
{'depth': 78.9,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13746841',
'latitude': 62.9587,
'locationSource': 'ak',
'longitude': -149.3562,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '52km SSW of Cantwell, Alaska',
'rms': 0.57,
'status': 'automatic',
'time': '2016-07-10T07:41:38.000Z',
'type': 'earthquake',
'updated': '2016-07-10T08:20:07.043Z'},
{'depth': 13.89,
'depthError': 1.66,
'dmin': 0.1943,
'gap': 177.0,
'horizontalError': 0.51,
'id': 'uw61164222',
'latitude': 47.9878333,
'locationSource': 'uw',
'longitude': -121.861,
'mag': 1.08,
'magError': 0.086,
'magNst': 6.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 7.0,
'place': '12km NNE of Woods Creek, Washington',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-10T07:30:32.550Z',
'type': 'earthquake',
'updated': '2016-07-10T10:27:49.320Z'},
{'depth': 8.5,
'depthError': 0.93,
'dmin': 0.06182000000000001,
'gap': 96.0,
'horizontalError': 0.37,
'id': 'ci37411415',
'latitude': 32.9631667,
'locationSource': 'ci',
'longitude': -115.5535,
'mag': 1.46,
'magError': 0.185,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 14.0,
'place': '3km SW of Brawley, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-10T07:24:00.160Z',
'type': 'earthquake',
'updated': '2016-07-11T17:00:11.525Z'},
{'depth': 70.3,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13746839',
'latitude': 62.7239,
'locationSource': 'ak',
'longitude': -149.685,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '49km NNE of Talkeetna, Alaska',
'rms': 0.78,
'status': 'automatic',
'time': '2016-07-10T07:22:56.000Z',
'type': 'earthquake',
'updated': '2016-07-10T07:47:48.289Z'},
{'depth': 35.0,
'depthError': 2.0,
'dmin': 1.7,
'gap': 168.0,
'horizontalError': 8.0,
'id': 'us100062c7',
'latitude': 13.4009,
'locationSource': 'us',
'longitude': -90.9557,
'mag': 4.2,
'magError': 0.066,
'magNst': 64.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '59km SSW of Puerto San Jose, Guatemala',
'rms': 1.06,
'status': 'reviewed',
'time': '2016-07-10T07:08:32.930Z',
'type': 'earthquake',
'updated': '2016-07-10T07:51:58.793Z'},
{'depth': 0.8,
'depthError': 1.66,
'dmin': 0.201,
'gap': 146.0,
'horizontalError': 0.39,
'id': 'mb80161569',
'latitude': 44.475,
'locationSource': 'mb',
'longitude': -112.10866670000001,
'mag': 1.31,
'magError': 0.168,
'magNst': 2.0,
'magSource': 'mb',
'magType': 'md',
'net': 'mb',
'nst': 10.0,
'place': '34km NNE of Dubois, Idaho',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-10T07:06:21.130Z',
'type': 'earthquake',
'updated': '2016-07-11T20:49:55.190Z'},
{'depth': 3.76,
'depthError': 0.2,
'dmin': 0.01605,
'gap': 47.0,
'horizontalError': 0.16,
'id': 'nc72659961',
'latitude': 35.9905,
'locationSource': 'nc',
'longitude': -120.55316670000002,
'mag': 1.33,
'magError': 0.24100000000000002,
'magNst': 28.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 49.0,
'place': '24km SW of Coalinga, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-10T07:04:31.960Z',
'type': 'earthquake',
'updated': '2016-07-11T20:09:04.086Z'},
{'depth': 5.0,
'depthError': 2.0,
'dmin': 0.257,
'gap': 73.0,
'horizontalError': 2.3,
'id': 'us100062c5',
'latitude': 35.0543,
'locationSource': 'us',
'longitude': -97.5941,
'mag': 2.5,
'magError': 0.076,
'magNst': 45.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '10km SSE of Blanchard, Oklahoma',
'rms': 0.57,
'status': 'reviewed',
'time': '2016-07-10T06:59:12.390Z',
'type': 'earthquake',
'updated': '2016-07-10T07:31:41.541Z'},
{'depth': 6.9,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13746833',
'latitude': 64.7507,
'locationSource': 'ak',
'longitude': -151.26,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '40km SW of Manley Hot Springs, Alaska',
'rms': 0.76,
'status': 'automatic',
'time': '2016-07-10T06:53:19.000Z',
'type': 'earthquake',
'updated': '2016-07-10T07:47:47.677Z'},
{'depth': 5.04,
'depthError': 0.36,
'dmin': 0.03825,
'gap': 158.0,
'horizontalError': 0.44,
'id': 'nc72659951',
'latitude': 37.8286667,
'locationSource': 'nc',
'longitude': -122.585,
'mag': 1.14,
'magError': 0.174,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 22.0,
'place': '6km SW of Tamalpais-Homestead Valley, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-10T06:36:08.060Z',
'type': 'earthquake',
'updated': '2016-07-11T20:37:01.963Z'},
{'depth': 63.21,
'depthError': 7.6,
'dmin': 2.635,
'gap': 173.0,
'horizontalError': 8.1,
'id': 'us100062c3',
'latitude': -2.306,
'locationSource': 'us',
'longitude': 100.7047,
'mag': 4.7,
'magError': 0.10099999999999999,
'magNst': 30.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '79km WSW of Sungaipenuh, Indonesia',
'rms': 0.65,
'status': 'reviewed',
'time': '2016-07-10T06:32:46.940Z',
'type': 'earthquake',
'updated': '2016-07-10T06:52:01.833Z'},
{'depth': 116.6,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13746827',
'latitude': 63.2847,
'locationSource': 'ak',
'longitude': -150.3973,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '73km W of Cantwell, Alaska',
'rms': 0.48,
'status': 'automatic',
'time': '2016-07-10T06:28:41.000Z',
'type': 'earthquake',
'updated': '2016-07-10T07:14:04.080Z'},
{'depth': 9.0,
'depthError': 3.1,
'dmin': 0.62702407,
'gap': 331.2,
'horizontalError': 2.4,
'id': 'pr16192002',
'latitude': 18.9039,
'locationSource': 'pr',
'longitude': -64.4934,
'mag': 2.2,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '55km NNE of Road Town, British Virgin Islands',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-10T05:53:54.100Z',
'type': 'earthquake',
'updated': '2016-07-10T07:53:14.878Z'},
{'depth': 59.13,
'depthError': 7.7,
'dmin': 1.444,
'gap': 102.0,
'horizontalError': 8.3,
'id': 'us100062bz',
'latitude': 8.4907,
'locationSource': 'us',
'longitude': 125.8892,
'mag': 4.6,
'magError': 0.094,
'magNst': 34.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '0km NNW of Borbon, Philippines',
'rms': 0.62,
'status': 'reviewed',
'time': '2016-07-10T05:37:41.640Z',
'type': 'earthquake',
'updated': '2016-07-10T06:27:40.336Z'},
{'depth': 35.06,
'depthError': 8.7,
'dmin': 1.358,
'gap': 105.0,
'horizontalError': 7.7,
'id': 'us100062bv',
'latitude': 1.7511,
'locationSource': 'us',
'longitude': 126.4182,
'mag': 4.6,
'magError': 0.107,
'magNst': 27.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '141km ENE of Bitung, Indonesia',
'rms': 1.08,
'status': 'reviewed',
'time': '2016-07-10T05:27:56.420Z',
'type': 'earthquake',
'updated': '2016-07-10T05:58:26.342Z'},
{'depth': 111.5,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13746681',
'latitude': 63.231,
'locationSource': 'ak',
'longitude': -150.445,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km WSW of Cantwell, Alaska',
'rms': 0.51,
'status': 'automatic',
'time': '2016-07-10T05:20:24.000Z',
'type': 'earthquake',
'updated': '2016-07-10T05:42:27.500Z'},
{'depth': 6.33,
'depthError': 3.1,
'dmin': 0.046,
'gap': 54.0,
'horizontalError': 1.3,
'id': 'us100062bt',
'latitude': 36.528,
'locationSource': 'us',
'longitude': -98.6575,
'mag': 2.5,
'magError': 0.08,
'magNst': 41.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '30km S of Alva, Oklahoma',
'rms': 0.29,
'status': 'reviewed',
'time': '2016-07-10T05:20:17.690Z',
'type': 'earthquake',
'updated': '2016-07-10T05:40:41.361Z'},
{'depth': 56.3,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13746678',
'latitude': 60.5299,
'locationSource': 'ak',
'longitude': -151.312,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '4km SW of Kenai, Alaska',
'rms': 0.45,
'status': 'automatic',
'time': '2016-07-10T05:11:15.000Z',
'type': 'earthquake',
'updated': '2016-07-10T05:42:26.939Z'},
{'depth': 6.93,
'depthError': 0.56,
'dmin': 0.001685,
'gap': 60.0,
'horizontalError': 0.25,
'id': 'ci37411367',
'latitude': 33.9468333,
'locationSource': 'ci',
'longitude': -117.92266670000001,
'mag': 1.8,
'magError': 0.152,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 59.0,
'place': '3km NE of La Habra, CA',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-10T05:02:00.060Z',
'type': 'earthquake',
'updated': '2016-07-11T17:05:27.310Z'},
{'depth': 5.58,
'depthError': 0.49,
'dmin': 0.07128,
'gap': 78.0,
'horizontalError': 0.25,
'id': 'ci37411359',
'latitude': 32.975333299999996,
'locationSource': 'ci',
'longitude': -115.54166670000001,
'mag': 1.23,
'magError': 0.121,
'magNst': 12.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '1km WSW of Brawley, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-10T04:58:43.950Z',
'type': 'earthquake',
'updated': '2016-07-11T20:34:15.620Z'},
{'depth': 16.28,
'depthError': 0.61,
'dmin': 0.08138,
'gap': 61.0,
'horizontalError': 0.28,
'id': 'ci37411327',
'latitude': 34.018,
'locationSource': 'ci',
'longitude': -117.22183329999999,
'mag': 1.33,
'magError': 0.28800000000000003,
'magNst': 28.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 38.0,
'place': '5km SE of Loma Linda, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-10T04:54:14.340Z',
'type': 'earthquake',
'updated': '2016-07-11T17:06:40.670Z'},
{'depth': 15.56,
'depthError': 0.65,
'dmin': 0.1123,
'gap': 138.0,
'horizontalError': 0.51,
'id': 'ci37411335',
'latitude': 32.3941667,
'locationSource': 'ci',
'longitude': -115.15366670000002,
'mag': 2.2,
'magError': 0.203,
'magNst': 22.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 10.0,
'place': '6km NE of Delta, B.C., MX',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-10T04:51:23.400Z',
'type': 'earthquake',
'updated': '2016-07-11T19:40:12.180Z'},
{'depth': 89.0,
'depthError': 0.8,
'dmin': 0.05389892,
'gap': 198.0,
'horizontalError': 1.1,
'id': 'pr16192000',
'latitude': 18.5244,
'locationSource': 'pr',
'longitude': -66.7533,
'mag': 3.7,
'magError': 0.0,
'magNst': 24.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 24.0,
'place': '5km NNW of Arecibo, Puerto Rico',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-10T04:17:22.500Z',
'type': 'earthquake',
'updated': '2016-07-10T05:26:45.508Z'},
{'depth': 4.65,
'depthError': 1.16,
'dmin': 0.1557,
'gap': 83.0,
'horizontalError': 0.33,
'id': 'ci37411319',
'latitude': 33.040833299999996,
'locationSource': 'ci',
'longitude': -116.36616670000001,
'mag': 1.19,
'magError': 0.162,
'magNst': 25.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 41.0,
'place': '22km E of Julian, CA',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-10T04:14:09.280Z',
'type': 'earthquake',
'updated': '2016-07-11T17:05:34.487Z'},
{'depth': 6.58,
'depthError': 0.45,
'dmin': 0.1119,
'gap': 113.0,
'horizontalError': 0.18,
'id': 'ci37411311',
'latitude': 35.2775,
'locationSource': 'ci',
'longitude': -118.5565,
'mag': 1.21,
'magError': 0.14800000000000002,
'magNst': 16.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '19km NNW of Tehachapi, CA',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-10T04:10:13.230Z',
'type': 'earthquake',
'updated': '2016-07-11T19:35:39.452Z'},
{'depth': 8.85,
'depthError': 1.7,
'dmin': 0.4142,
'gap': 121.0,
'horizontalError': 0.48,
'id': 'nc72659931',
'latitude': 37.7966667,
'locationSource': 'nc',
'longitude': -119.9575,
'mag': 2.38,
'magError': 0.14400000000000002,
'magNst': 25.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 26.0,
'place': '28km N of Midpines, California',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-10T03:53:50.310Z',
'type': 'earthquake',
'updated': '2016-07-11T19:36:03.794Z'},
{'depth': 35.0,
'depthError': 5.8,
'dmin': 0.55426053,
'gap': 338.4,
'horizontalError': 5.0,
'id': 'pr16192001',
'latitude': 18.7567,
'locationSource': 'pr',
'longitude': -64.1526,
'mag': 2.7,
'magError': 0.0,
'magNst': 5.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '61km NE of Road Town, British Virgin Islands',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-10T03:53:30.800Z',
'type': 'earthquake',
'updated': '2016-07-10T07:52:06.884Z'},
{'depth': 48.0,
'depthError': 2.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13746532',
'latitude': 60.2041,
'locationSource': 'ak',
'longitude': -151.2173,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '18km SSE of Cohoe, Alaska',
'rms': 0.24,
'status': 'automatic',
'time': '2016-07-10T03:52:10.000Z',
'type': 'earthquake',
'updated': '2016-07-10T04:38:28.358Z'},
{'depth': 184.55,
'depthError': 6.9,
'dmin': 3.593,
'gap': 44.0,
'horizontalError': 7.3,
'id': 'us100062b9',
'latitude': -5.6041,
'locationSource': 'us',
'longitude': 148.0013,
'mag': 4.4,
'magError': 0.06,
'magNst': 81.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '111km N of Finschhafen, Papua New Guinea',
'rms': 1.05,
'status': 'reviewed',
'time': '2016-07-10T03:33:45.220Z',
'type': 'earthquake',
'updated': '2016-07-10T03:56:50.172Z'},
{'depth': 5.5,
'depthError': 1.7,
'dmin': 0.1703,
'gap': 183.0,
'horizontalError': 0.77,
'id': 'uw61164202',
'latitude': 47.6781667,
'locationSource': 'uw',
'longitude': -120.21166670000001,
'mag': 2.1,
'magError': 0.125,
'magNst': 31.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 7.0,
'place': '0km NW of Entiat, Washington',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-10T03:29:29.130Z',
'type': 'earthquake',
'updated': '2016-07-10T04:10:24.250Z'},
{'depth': 25.7,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13746528',
'latitude': 62.2658,
'locationSource': 'ak',
'longitude': -149.2902,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '31km ENE of Y, Alaska',
'rms': 0.96,
'status': 'automatic',
'time': '2016-07-10T03:25:14.000Z',
'type': 'earthquake',
'updated': '2016-07-10T04:08:41.754Z'},
{'depth': 8.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13746526',
'latitude': 65.6266,
'locationSource': 'ak',
'longitude': -149.9429,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '76km NNE of Manley Hot Springs, Alaska',
'rms': 0.76,
'status': 'automatic',
'time': '2016-07-10T03:22:05.000Z',
'type': 'earthquake',
'updated': '2016-07-10T04:08:41.155Z'},
{'depth': 4.52,
'depthError': 0.54,
'dmin': 0.063,
'gap': 75.0,
'horizontalError': 0.36,
'id': 'mb80160764',
'latitude': 44.4286667,
'locationSource': 'mb',
'longitude': -114.09966670000001,
'mag': 2.05,
'magError': 0.171,
'magNst': 9.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 16.0,
'place': '13km SE of Challis, Idaho',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-10T03:20:48.220Z',
'type': 'earthquake',
'updated': '2016-07-11T17:39:49.500Z'},
{'depth': 142.0,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13746383',
'latitude': 59.7421,
'locationSource': 'ak',
'longitude': -153.6963,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km E of Old Iliamna, Alaska',
'rms': 0.49,
'status': 'automatic',
'time': '2016-07-10T02:39:04.000Z',
'type': 'earthquake',
'updated': '2016-07-10T03:04:14.050Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 10.104,
'gap': 107.0,
'horizontalError': 12.2,
'id': 'us100062b1',
'latitude': -35.8443,
'locationSource': 'us',
'longitude': -103.288,
'mag': 5.0,
'magError': 0.037000000000000005,
'magNst': 238.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'Southeast of Easter Island',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-10T02:32:42.290Z',
'type': 'earthquake',
'updated': '2016-07-11T00:56:38.000Z'},
{'depth': 1.82,
'depthError': 0.16,
'dmin': 0.01072,
'gap': 45.0,
'horizontalError': 0.13,
'id': 'nc72659926',
'latitude': 38.8225,
'locationSource': 'nc',
'longitude': -122.78766670000002,
'mag': 1.08,
'magError': 0.147,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 39.0,
'place': '5km W of Cobb, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-10T02:25:46.090Z',
'type': 'earthquake',
'updated': '2016-07-11T22:45:04.722Z'},
{'depth': 29.94,
'depthError': 3.7,
'dmin': 2.702,
'gap': 179.0,
'horizontalError': 10.0,
'id': 'us100062b0',
'latitude': 2.1878,
'locationSource': 'us',
'longitude': 95.0185,
'mag': 4.9,
'magError': 0.071,
'magNst': 61.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '154km WSW of Sinabang, Indonesia',
'rms': 0.63,
'status': 'reviewed',
'time': '2016-07-10T02:15:49.960Z',
'type': 'earthquake',
'updated': '2016-07-10T02:43:01.028Z'},
{'depth': 10.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13746381',
'latitude': 63.614,
'locationSource': 'ak',
'longitude': -144.9457,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '31km SSE of Deltana, Alaska',
'rms': 1.15,
'status': 'automatic',
'time': '2016-07-10T02:15:10.000Z',
'type': 'earthquake',
'updated': '2016-07-10T03:04:13.457Z'},
{'depth': 2.1,
'depthError': 0.22,
'dmin': 0.007634999999999999,
'gap': 55.0,
'horizontalError': 0.3,
'id': 'hv61331321',
'latitude': 19.3829994,
'locationSource': 'hv',
'longitude': -155.2436676,
'mag': 2.66,
'magError': 0.28,
'magNst': 19.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 35.0,
'place': '5km S of Volcano, Hawaii',
'rms': 0.3,
'status': 'automatic',
'time': '2016-07-10T01:58:51.570Z',
'type': 'earthquake',
'updated': '2016-07-10T02:04:57.151Z'},
{'depth': 33.3,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13746379',
'latitude': 62.3089,
'locationSource': 'ak',
'longitude': -148.5068,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '59km NNE of Sutton-Alpine, Alaska',
'rms': 0.29,
'status': 'automatic',
'time': '2016-07-10T01:58:16.000Z',
'type': 'earthquake',
'updated': '2016-07-10T02:32:17.976Z'},
{'depth': 4.57,
'depthError': 8.01,
'dmin': 2.03,
'gap': 341.0,
'horizontalError': 9.71,
'id': 'nc72659916',
'latitude': 40.8068333,
'locationSource': 'nc',
'longitude': -126.97,
'mag': 2.81,
'magError': 0.055,
'magNst': 7.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 11.0,
'place': '230km W of Ferndale, California',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-10T01:51:48.760Z',
'type': 'earthquake',
'updated': '2016-07-12T01:16:05.335Z'},
{'depth': 23.41,
'depthError': 1.01,
'dmin': 0.184,
'gap': 158.0,
'horizontalError': 0.5,
'id': 'mb80160754',
'latitude': 47.4246667,
'locationSource': 'mb',
'longitude': -113.4685,
'mag': 1.22,
'magError': 0.32799999999999996,
'magNst': 2.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 16.0,
'place': '27km N of Seeley Lake, Montana',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-10T01:43:34.890Z',
'type': 'earthquake',
'updated': '2016-07-10T16:48:44.290Z'},
{'depth': 2.31,
'depthError': 0.18,
'dmin': 0.002337,
'gap': 111.0,
'horizontalError': 0.19,
'id': 'hv61331231',
'latitude': 19.3856659,
'locationSource': 'hv',
'longitude': -155.2488403,
'mag': 1.74,
'magError': 0.29,
'magNst': 4.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 20.0,
'place': '5km SSW of Volcano, Hawaii',
'rms': 0.12,
'status': 'automatic',
'time': '2016-07-10T01:27:22.840Z',
'type': 'earthquake',
'updated': '2016-07-10T01:32:59.460Z'},
{'depth': 19.9,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13746376',
'latitude': 62.0251,
'locationSource': 'ak',
'longitude': -146.5973,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '55km W of Glennallen, Alaska',
'rms': 0.2,
'status': 'automatic',
'time': '2016-07-10T01:26:49.000Z',
'type': 'earthquake',
'updated': '2016-07-10T01:59:28.937Z'},
{'depth': 2.51,
'depthError': 0.22,
'dmin': 0.006744,
'gap': 120.0,
'horizontalError': 0.19,
'id': 'hv61331181',
'latitude': 19.389667499999998,
'locationSource': 'hv',
'longitude': -155.2456665,
'mag': 2.06,
'magError': 0.35,
'magNst': 7.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 23.0,
'place': '4km S of Volcano, Hawaii',
'rms': 0.15,
'status': 'automatic',
'time': '2016-07-10T01:01:40.880Z',
'type': 'earthquake',
'updated': '2016-07-10T01:07:18.190Z'},
{'depth': 35.0,
'depthError': 2.0,
'dmin': 4.579,
'gap': 56.0,
'horizontalError': 9.0,
'id': 'us100062aq',
'latitude': -16.173,
'locationSource': 'us',
'longitude': 167.2613,
'mag': 4.9,
'magError': 0.063,
'magNst': 79.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '17km SW of Norsup, Vanuatu',
'rms': 1.37,
'status': 'reviewed',
'time': '2016-07-10T01:00:35.070Z',
'type': 'earthquake',
'updated': '2016-07-10T01:20:07.061Z'},
{'depth': 60.8,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13746234',
'latitude': 62.9485,
'locationSource': 'ak',
'longitude': -148.1202,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '64km SE of Cantwell, Alaska',
'rms': 0.55,
'status': 'automatic',
'time': '2016-07-10T00:57:25.000Z',
'type': 'earthquake',
'updated': '2016-07-10T01:29:55.290Z'},
{'depth': 0.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13746228',
'latitude': 61.3232,
'locationSource': 'ak',
'longitude': -152.4151,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '93km NW of Nikiski, Alaska',
'rms': 0.7,
'status': 'automatic',
'time': '2016-07-10T00:32:18.000Z',
'type': 'earthquake',
'updated': '2016-07-10T01:29:54.710Z'},
{'depth': 2.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13746223',
'latitude': 61.2993,
'locationSource': 'ak',
'longitude': -152.5006,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.67,
'status': 'automatic',
'time': '2016-07-10T00:28:19.000Z',
'type': 'earthquake',
'updated': '2016-07-10T00:57:33.901Z'},
{'depth': 6.71,
'depthError': 0.95,
'dmin': 0.1222,
'gap': 75.0,
'horizontalError': 0.22,
'id': 'ci37411239',
'latitude': 34.7078333,
'locationSource': 'ci',
'longitude': -116.35316670000002,
'mag': 1.45,
'magError': 0.235,
'magNst': 18.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '18km W of Ludlow, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-10T00:27:25.710Z',
'type': 'earthquake',
'updated': '2016-07-11T19:27:03.075Z'},
{'depth': 13.8,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13746215',
'latitude': 56.9223,
'locationSource': 'ak',
'longitude': -152.5815,
'mag': 3.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '93km S of Kodiak Station, Alaska',
'rms': 0.96,
'status': 'reviewed',
'time': '2016-07-10T00:23:56.000Z',
'type': 'earthquake',
'updated': '2016-07-10T05:43:52.456Z'},
{'depth': 6.1,
'depthError': 0.97,
'dmin': 0.047,
'gap': 203.0,
'horizontalError': 0.67,
'id': 'mb80160724',
'latitude': 43.5933333,
'locationSource': 'mb',
'longitude': -111.04583329999998,
'mag': 1.18,
'magError': 0.19699999999999998,
'magNst': 8.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 8.0,
'place': '5km E of Victor, Idaho',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-10T00:14:09.670Z',
'type': 'earthquake',
'updated': '2016-07-11T17:32:42.420Z'},
{'depth': 2.78,
'depthError': 0.21,
'dmin': 0.007856,
'gap': 118.0,
'horizontalError': 0.23,
'id': 'hv61331116',
'latitude': 19.385166199999997,
'locationSource': 'hv',
'longitude': -155.2429962,
'mag': 2.0,
'magError': 0.23,
'magNst': 8.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 23.0,
'place': '5km S of Volcano, Hawaii',
'rms': 0.14,
'status': 'automatic',
'time': '2016-07-10T00:02:05.880Z',
'type': 'earthquake',
'updated': '2016-07-10T00:07:43.430Z'},
{'depth': 24.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13746211',
'latitude': 60.645,
'locationSource': 'ak',
'longitude': -146.5906,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '47km WNW of Cordova, Alaska',
'rms': 0.5,
'status': 'automatic',
'time': '2016-07-10T00:01:25.000Z',
'type': 'earthquake',
'updated': '2016-07-10T00:22:53.592Z'},
{'depth': -1.63,
'depthError': 1.01,
'dmin': 0.1167,
'gap': 118.0,
'horizontalError': 0.25,
'id': 'nc72659886',
'latitude': 37.4731667,
'locationSource': 'nc',
'longitude': -118.8235,
'mag': 2.36,
'magError': 0.268,
'magNst': 29.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 35.0,
'place': '23km SE of Mammoth Lakes, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-09T23:53:37.610Z',
'type': 'earthquake',
'updated': '2016-07-11T22:39:03.043Z'},
{'depth': 9.73,
'depthError': 0.27,
'dmin': 0.03767,
'gap': 67.0,
'horizontalError': 0.17,
'id': 'nc72659881',
'latitude': 38.2548333,
'locationSource': 'nc',
'longitude': -122.18066670000002,
'mag': 2.95,
'magError': 0.27399999999999997,
'magNst': 67.0,
'magSource': 'nc',
'magType': 'ml',
'net': 'nc',
'nst': 173.0,
'place': '1km W of Green Valley, California',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-09T23:49:54.240Z',
'type': 'earthquake',
'updated': '2016-07-11T22:39:43.877Z'},
{'depth': 177.68,
'depthError': 7.0,
'dmin': 1.72,
'gap': 38.0,
'horizontalError': 7.6,
'id': 'us1000629y',
'latitude': -24.229,
'locationSource': 'us',
'longitude': -66.9149,
'mag': 4.7,
'magError': 0.061,
'magNst': 82.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '60km W of San Antonio de los Cobres, Argentina',
'rms': 1.36,
'status': 'reviewed',
'time': '2016-07-09T23:42:33.470Z',
'type': 'earthquake',
'updated': '2016-07-09T23:59:22.259Z'},
{'depth': 9.9,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13746072',
'latitude': 59.3433,
'locationSource': 'ak',
'longitude': -154.2572,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '58km SE of Old Iliamna, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-09T23:39:12.000Z',
'type': 'earthquake',
'updated': '2016-07-10T00:22:52.965Z'},
{'depth': 4.33,
'depthError': 6.8,
'dmin': 0.163,
'gap': 41.0,
'horizontalError': 0.9,
'id': 'us1000629w',
'latitude': 35.8121,
'locationSource': 'us',
'longitude': -97.2495,
'mag': 2.5,
'magError': 0.08199999999999999,
'magNst': 39.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '14km S of Langston, Oklahoma',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-09T23:34:32.860Z',
'type': 'earthquake',
'updated': '2016-07-10T00:01:48.800Z'},
{'depth': 26.1,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13746066',
'latitude': 59.4352,
'locationSource': 'ak',
'longitude': -140.7809,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km WSW of Yakutat, Alaska',
'rms': 0.83,
'status': 'automatic',
'time': '2016-07-09T23:20:36.000Z',
'type': 'earthquake',
'updated': '2016-07-09T23:50:37.247Z'},
{'depth': 142.8,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13746063',
'latitude': 63.291000000000004,
'locationSource': 'ak',
'longitude': -150.4782,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km W of Cantwell, Alaska',
'rms': 0.64,
'status': 'automatic',
'time': '2016-07-09T23:13:26.000Z',
'type': 'earthquake',
'updated': '2016-07-09T23:50:38.459Z'},
{'depth': 65.6,
'depthError': 3.4,
'dmin': nan,
'gap': nan,
'horizontalError': 1.3,
'id': 'ak13746060',
'latitude': 59.4403,
'locationSource': 'ak',
'longitude': -152.4195,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '50km SW of Anchor Point, Alaska',
'rms': 0.02,
'status': 'automatic',
'time': '2016-07-09T23:10:22.000Z',
'type': 'earthquake',
'updated': '2016-07-09T23:50:37.897Z'},
{'depth': 15.67,
'depthError': 1.06,
'dmin': 0.08795,
'gap': 221.0,
'horizontalError': 0.68,
'id': 'ci37411215',
'latitude': 32.3646667,
'locationSource': 'ci',
'longitude': -115.15016670000001,
'mag': 2.25,
'magError': 0.115,
'magNst': 20.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 12.0,
'place': '4km ENE of Delta, B.C., MX',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-09T23:06:57.810Z',
'type': 'earthquake',
'updated': '2016-07-11T19:19:01.968Z'},
{'depth': 13.78,
'depthError': 3.95,
'dmin': 0.1742,
'gap': 154.0,
'horizontalError': 1.47,
'id': 'nc72659876',
'latitude': 39.1771667,
'locationSource': 'nc',
'longitude': -122.88016670000002,
'mag': 1.63,
'magError': 0.205,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 4.0,
'place': '2km ENE of Upper Lake, California',
'rms': 0.0,
'status': 'reviewed',
'time': '2016-07-09T22:44:55.480Z',
'type': 'earthquake',
'updated': '2016-07-12T00:53:02.973Z'},
{'depth': 0.34,
'depthError': 31.61,
'dmin': 0.0771,
'gap': 115.0,
'horizontalError': 0.24,
'id': 'nc72659871',
'latitude': 37.4761667,
'locationSource': 'nc',
'longitude': -118.8175,
'mag': 1.1,
'magError': 0.18100000000000002,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 21.0,
'place': '23km SE of Mammoth Lakes, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-09T22:37:33.410Z',
'type': 'earthquake',
'updated': '2016-07-11T19:20:02.743Z'},
{'depth': -2.35,
'depthError': 0.94,
'dmin': 0.0793,
'gap': 117.0,
'horizontalError': 0.24,
'id': 'nc72659866',
'latitude': 37.4746667,
'locationSource': 'nc',
'longitude': -118.82,
'mag': 1.94,
'magError': 0.285,
'magNst': 26.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 35.0,
'place': '23km SE of Mammoth Lakes, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-09T22:15:44.620Z',
'type': 'earthquake',
'updated': '2016-07-11T22:34:03.696Z'},
{'depth': 36.27,
'depthError': 7.3,
'dmin': 2.736,
'gap': 113.0,
'horizontalError': 9.6,
'id': 'us1000629i',
'latitude': -18.2294,
'locationSource': 'us',
'longitude': 168.3348,
'mag': 4.8,
'magError': 0.114,
'magNst': 24.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '54km S of Port-Vila, Vanuatu',
'rms': 0.73,
'status': 'reviewed',
'time': '2016-07-09T22:06:56.940Z',
'type': 'earthquake',
'updated': '2016-07-09T22:24:57.186Z'},
{'depth': 5.38,
'depthError': 3.3,
'dmin': 0.016,
'gap': 37.0,
'horizontalError': 1.6,
'id': 'us1000629h',
'latitude': 36.4742,
'locationSource': 'us',
'longitude': -98.7229,
'mag': 3.2,
'magError': 0.054000000000000006,
'magNst': 88.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '31km NW of Fairview, Oklahoma',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-09T21:40:15.350Z',
'type': 'earthquake',
'updated': '2016-07-09T21:58:05.098Z'},
{'depth': 5.85,
'depthError': 8.59,
'dmin': 0.252,
'gap': 220.0,
'horizontalError': 2.68,
'id': 'mb80160664',
'latitude': 43.0016667,
'locationSource': 'mb',
'longitude': -111.22066670000001,
'mag': 1.63,
'magError': 0.249,
'magNst': 8.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 7.0,
'place': '38km NW of Afton, Wyoming',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-09T21:26:55.680Z',
'type': 'earthquake',
'updated': '2016-07-11T17:18:23.260Z'},
{'depth': 0.13,
'depthError': 0.23,
'dmin': 0.07106,
'gap': 84.0,
'horizontalError': 0.44,
'id': 'hv61330836',
'latitude': 19.177333800000003,
'locationSource': 'hv',
'longitude': -155.53366090000003,
'mag': 1.99,
'magError': 0.05,
'magNst': 9.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 32.0,
'place': '6km WSW of Pahala, Hawaii',
'rms': 0.28,
'status': 'automatic',
'time': '2016-07-09T21:22:20.600Z',
'type': 'earthquake',
'updated': '2016-07-09T21:25:35.610Z'},
{'depth': 0.0,
'depthError': 32.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745919',
'latitude': 64.9652,
'locationSource': 'ak',
'longitude': -147.3404,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '20km NNE of Badger, Alaska',
'rms': 0.45,
'status': 'automatic',
'time': '2016-07-09T21:07:41.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:28:40.199Z'},
{'depth': 4.2,
'depthError': 6.7,
'dmin': 0.171,
'gap': 223.31,
'horizontalError': 4.32,
'id': 'nn00551198',
'latitude': 41.8645,
'locationSource': 'nn',
'longitude': -119.5986,
'mag': 1.3,
'magError': 0.26,
'magNst': 3.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 5.0,
'place': '71km ESE of Lakeview, Oregon',
'rms': 0.1387,
'status': 'reviewed',
'time': '2016-07-09T20:04:02.158Z',
'type': 'earthquake',
'updated': '2016-07-10T22:32:10.913Z'},
{'depth': 5.0,
'depthError': 31.61,
'dmin': 0.14400000000000002,
'gap': 322.0,
'horizontalError': 2.29,
'id': 'mb80160599',
'latitude': 43.2186667,
'locationSource': 'mb',
'longitude': -110.8635,
'mag': 1.39,
'magError': 0.054000000000000006,
'magNst': 5.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 6.0,
'place': '9km SW of Hoback, Wyoming',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-09T20:02:07.820Z',
'type': 'earthquake',
'updated': '2016-07-11T17:10:48.420Z'},
{'depth': 5.0,
'depthError': 1.4,
'dmin': nan,
'gap': nan,
'horizontalError': 2.4,
'id': 'us100062br',
'latitude': 45.231,
'locationSource': 'ott',
'longitude': -66.649,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ott',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '36km ENE of Saint Andrews, Canada',
'rms': 1.1,
'status': 'reviewed',
'time': '2016-07-09T19:55:01.000Z',
'type': 'earthquake',
'updated': '2016-07-11T21:15:37.040Z'},
{'depth': 4.68,
'depthError': 0.28,
'dmin': 0.03782,
'gap': 112.0,
'horizontalError': 0.24,
'id': 'ci37411127',
'latitude': 35.9716667,
'locationSource': 'ci',
'longitude': -117.587,
'mag': 1.09,
'magError': 0.23600000000000002,
'magNst': 15.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 12.0,
'place': '28km NW of Searles Valley, CA',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-09T19:54:40.780Z',
'type': 'earthquake',
'updated': '2016-07-11T17:06:52.152Z'},
{'depth': 1.62,
'depthError': 0.22,
'dmin': 0.003296,
'gap': 41.0,
'horizontalError': 0.13,
'id': 'nc72659826',
'latitude': 38.7585,
'locationSource': 'nc',
'longitude': -122.7263333,
'mag': 1.39,
'magError': 0.126,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 40.0,
'place': '3km SE of The Geysers, California',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-09T19:48:05.930Z',
'type': 'earthquake',
'updated': '2016-07-12T00:47:02.894Z'},
{'depth': 5.74,
'depthError': 0.35,
'dmin': 0.04675,
'gap': 100.0,
'horizontalError': 0.45,
'id': 'nc72659821',
'latitude': 37.8186667,
'locationSource': 'nc',
'longitude': -122.59266670000001,
'mag': 1.32,
'magError': 0.132,
'magNst': 13.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 21.0,
'place': '8km SW of Tamalpais-Homestead Valley, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-09T19:35:42.990Z',
'type': 'earthquake',
'updated': '2016-07-12T01:17:04.339Z'},
{'depth': 10.9,
'depthError': 4.4,
'dmin': 0.34299999999999997,
'gap': 214.66,
'horizontalError': 6.45,
'id': 'nn00551185',
'latitude': 39.8879,
'locationSource': 'nn',
'longitude': -119.0028,
'mag': 1.3,
'magError': 0.2,
'magNst': 3.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 7.0,
'place': '37km NE of Fernley, Nevada',
'rms': 0.10099999999999999,
'status': 'reviewed',
'time': '2016-07-09T19:22:39.151Z',
'type': 'earthquake',
'updated': '2016-07-10T22:31:52.426Z'},
{'depth': 5.39,
'depthError': 0.24,
'dmin': 0.049819999999999996,
'gap': 88.0,
'horizontalError': 0.18,
'id': 'nc72659811',
'latitude': 37.817666700000004,
'locationSource': 'nc',
'longitude': -122.59633329999998,
'mag': 2.62,
'magError': 0.139,
'magNst': 79.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 82.0,
'place': '8km SW of Tamalpais-Homestead Valley, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-09T19:20:09.120Z',
'type': 'earthquake',
'updated': '2016-07-11T19:51:02.829Z'},
{'depth': 0.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13745783',
'latitude': 63.2304,
'locationSource': 'ak',
'longitude': -144.5989,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km SSE of Deltana, Alaska',
'rms': 0.5,
'status': 'automatic',
'time': '2016-07-09T19:07:52.000Z',
'type': 'earthquake',
'updated': '2016-07-09T19:32:18.036Z'},
{'depth': 2.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745642',
'latitude': 61.2835,
'locationSource': 'ak',
'longitude': -152.5002,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km N of Redoubt Volcano, Alaska',
'rms': 0.67,
'status': 'automatic',
'time': '2016-07-09T18:29:34.000Z',
'type': 'earthquake',
'updated': '2016-07-09T19:02:05.706Z'},
{'depth': 123.2,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13745637',
'latitude': 63.0683,
'locationSource': 'ak',
'longitude': -150.9945,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '94km NNW of Talkeetna, Alaska',
'rms': 0.33,
'status': 'automatic',
'time': '2016-07-09T18:27:14.000Z',
'type': 'earthquake',
'updated': '2016-07-09T19:02:05.139Z'},
{'depth': 12.62,
'depthError': 0.38,
'dmin': 0.06,
'gap': 122.0,
'horizontalError': 0.34,
'id': 'mb80160564',
'latitude': 44.7316667,
'locationSource': 'mb',
'longitude': -111.7495,
'mag': 1.01,
'magError': 0.076,
'magNst': 2.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 8.0,
'place': '51km W of West Yellowstone, Montana',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-09T18:04:51.350Z',
'type': 'earthquake',
'updated': '2016-07-11T16:56:02.910Z'},
{'depth': 71.7,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13745633',
'latitude': 61.2778,
'locationSource': 'ak',
'longitude': -151.0732,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '63km W of Anchorage, Alaska',
'rms': 0.6,
'status': 'automatic',
'time': '2016-07-09T18:00:54.000Z',
'type': 'earthquake',
'updated': '2016-07-09T18:29:48.559Z'},
{'depth': 4.09,
'depthError': 14.65,
'dmin': 0.5581,
'gap': 148.0,
'horizontalError': 1.58,
'id': 'uw61164107',
'latitude': 48.7255,
'locationSource': 'uw',
'longitude': -119.96533329999998,
'mag': 1.65,
'magError': 0.115,
'magNst': 5.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 8.0,
'place': '35km ENE of Mazama, Washington',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-09T17:57:29.210Z',
'type': 'earthquake',
'updated': '2016-07-11T21:01:32.267Z'},
{'depth': 6.1,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13745629',
'latitude': 61.2864,
'locationSource': 'ak',
'longitude': -152.5085,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-09T17:44:34.000Z',
'type': 'earthquake',
'updated': '2016-07-09T19:32:19.197Z'},
{'depth': 40.0,
'depthError': 33.1,
'dmin': nan,
'gap': nan,
'horizontalError': 13.4,
'id': 'ak13745624',
'latitude': 50.7433,
'locationSource': 'ak',
'longitude': -173.4613,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '169km SSE of Atka, Alaska',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-09T17:42:43.000Z',
'type': 'earthquake',
'updated': '2016-07-09T20:01:59.572Z'},
{'depth': 8.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13745627',
'latitude': 61.3895,
'locationSource': 'ak',
'longitude': -152.4415,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '99km NW of Nikiski, Alaska',
'rms': 0.42,
'status': 'automatic',
'time': '2016-07-09T17:40:32.000Z',
'type': 'earthquake',
'updated': '2016-07-09T17:59:33.803Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745619',
'latitude': 61.2936,
'locationSource': 'ak',
'longitude': -152.5028,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.55,
'status': 'automatic',
'time': '2016-07-09T17:35:54.000Z',
'type': 'earthquake',
'updated': '2016-07-09T18:29:45.135Z'},
{'depth': 6.14,
'depthError': 5.31,
'dmin': 0.3048,
'gap': 191.0,
'horizontalError': 1.13,
'id': 'nc72659806',
'latitude': 39.7588348,
'locationSource': 'nc',
'longitude': -124.03283689999999,
'mag': 2.06,
'magError': 0.09,
'magNst': 7.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 13.0,
'place': '39km NNW of Fort Bragg, California',
'rms': 0.25,
'status': 'automatic',
'time': '2016-07-09T17:35:37.020Z',
'type': 'earthquake',
'updated': '2016-07-09T17:58:01.549Z'},
{'depth': 68.1,
'depthError': 10.3,
'dmin': 1.993,
'gap': 178.0,
'horizontalError': 11.8,
'id': 'us10006281',
'latitude': 12.6488,
'locationSource': 'us',
'longitude': -88.7306,
'mag': 4.5,
'magError': 0.064,
'magNst': 72.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '72km SSW of Puerto El Triunfo, El Salvador',
'rms': 0.62,
'status': 'reviewed',
'time': '2016-07-09T17:29:37.170Z',
'type': 'earthquake',
'updated': '2016-07-09T18:39:07.602Z'},
{'depth': 25.6,
'depthError': 21.1,
'dmin': nan,
'gap': nan,
'horizontalError': 17.8,
'id': 'ak13745616',
'latitude': 53.4857,
'locationSource': 'ak',
'longitude': -165.2794,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '79km SSE of Akutan, Alaska',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-09T17:05:51.000Z',
'type': 'earthquake',
'updated': '2016-07-09T19:32:18.636Z'},
{'depth': 96.5,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13745614',
'latitude': 63.0748,
'locationSource': 'ak',
'longitude': -150.2886,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '75km WSW of Cantwell, Alaska',
'rms': 0.45,
'status': 'automatic',
'time': '2016-07-09T16:55:30.000Z',
'type': 'earthquake',
'updated': '2016-07-09T17:28:40.741Z'},
{'depth': 30.0,
'depthError': 19.5,
'dmin': 0.48509025,
'gap': 291.6,
'horizontalError': 6.4,
'id': 'pr16191005',
'latitude': 18.9015,
'locationSource': 'pr',
'longitude': -64.6771,
'mag': 2.4,
'magError': 0.0,
'magNst': 4.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '54km N of Road Town, British Virgin Islands',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-09T16:55:22.700Z',
'type': 'earthquake',
'updated': '2016-07-09T19:01:36.352Z'},
{'depth': 18.05,
'depthError': 5.7,
'dmin': 1.851,
'gap': 102.0,
'horizontalError': 8.8,
'id': 'us1000627v',
'latitude': 39.8947,
'locationSource': 'us',
'longitude': 78.1509,
'mag': 4.8,
'magError': 0.14300000000000002,
'magNst': 15.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '175km E of Arzak, China',
'rms': 0.95,
'status': 'reviewed',
'time': '2016-07-09T16:37:00.560Z',
'type': 'earthquake',
'updated': '2016-07-09T16:55:37.161Z'},
{'depth': 0.0,
'depthError': 106.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13745482',
'latitude': 60.1806,
'locationSource': 'ak',
'longitude': -141.3373,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '62km ENE of Cape Yakataga, Alaska',
'rms': 0.69,
'status': 'automatic',
'time': '2016-07-09T16:30:21.000Z',
'type': 'earthquake',
'updated': '2016-07-09T17:00:28.787Z'},
{'depth': 8.18,
'depthError': 0.45,
'dmin': 0.07578,
'gap': 62.0,
'horizontalError': 0.19,
'id': 'ci37411079',
'latitude': 33.4196667,
'locationSource': 'ci',
'longitude': -116.6165,
'mag': 1.14,
'magError': 0.175,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 42.0,
'place': '15km N of Warner Springs, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-09T16:24:53.330Z',
'type': 'earthquake',
'updated': '2016-07-11T17:07:58.600Z'},
{'depth': 5.95,
'depthError': 7.2,
'dmin': 0.221,
'gap': 60.0,
'horizontalError': 0.9,
'id': 'us1000627s',
'latitude': 35.9926,
'locationSource': 'us',
'longitude': -97.2043,
'mag': 3.3,
'magError': 0.053,
'magNst': 94.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '7km NE of Langston, Oklahoma',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-09T16:20:23.130Z',
'type': 'earthquake',
'updated': '2016-07-09T17:21:07.122Z'},
{'depth': 10.16,
'depthError': 0.19,
'dmin': 0.07031,
'gap': 107.0,
'horizontalError': 0.35,
'id': 'nc72659791',
'latitude': 36.182333299999996,
'locationSource': 'nc',
'longitude': -120.31566670000001,
'mag': 1.61,
'magError': 0.27699999999999997,
'magNst': 28.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 46.0,
'place': '6km NE of Coalinga, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-09T15:56:10.260Z',
'type': 'earthquake',
'updated': '2016-07-12T00:45:04.887Z'},
{'depth': 4.15,
'depthError': 0.68,
'dmin': 0.09661,
'gap': 55.0,
'horizontalError': 0.15,
'id': 'nc72659786',
'latitude': 38.9523333,
'locationSource': 'nc',
'longitude': -123.1845,
'mag': 2.03,
'magError': 0.18,
'magNst': 24.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 39.0,
'place': '16km ESE of Boonville, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-09T15:48:57.700Z',
'type': 'earthquake',
'updated': '2016-07-12T00:40:03.874Z'},
{'depth': 55.8,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13745478',
'latitude': 62.1151,
'locationSource': 'ak',
'longitude': -150.4083,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '27km SW of Talkeetna, Alaska',
'rms': 0.6,
'status': 'automatic',
'time': '2016-07-09T15:48:46.000Z',
'type': 'earthquake',
'updated': '2016-07-09T16:31:19.510Z'},
{'depth': 2.29,
'depthError': 0.21,
'dmin': 0.01128,
'gap': 42.0,
'horizontalError': 0.12,
'id': 'nc72659781',
'latitude': 38.8346667,
'locationSource': 'nc',
'longitude': -122.80916670000002,
'mag': 1.41,
'magError': 0.324,
'magNst': 13.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 44.0,
'place': '7km W of Cobb, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-09T15:04:42.590Z',
'type': 'earthquake',
'updated': '2016-07-12T00:23:03.717Z'},
{'depth': 2.46,
'depthError': 0.46,
'dmin': 0.02595,
'gap': 96.0,
'horizontalError': 0.38,
'id': 'hv61330536',
'latitude': 19.4266663,
'locationSource': 'hv',
'longitude': -155.6100006,
'mag': 1.82,
'magError': 0.03,
'magNst': 8.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 11.0,
'place': '26km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.19,
'status': 'automatic',
'time': '2016-07-09T15:02:26.270Z',
'type': 'earthquake',
'updated': '2016-07-09T15:05:27.380Z'},
{'depth': 11.7,
'depthError': 0.47,
'dmin': 0.0854,
'gap': 84.0,
'horizontalError': 0.38,
'id': 'ci37411023',
'latitude': 32.721,
'locationSource': 'ci',
'longitude': -115.4645,
'mag': 1.7,
'magError': 0.20199999999999999,
'magNst': 14.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '6km NE of Calexico, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-09T14:41:15.610Z',
'type': 'earthquake',
'updated': '2016-07-11T19:08:18.772Z'},
{'depth': 4.05,
'depthError': 0.56,
'dmin': 0.008544,
'gap': 118.0,
'horizontalError': 0.26,
'id': 'nc72659776',
'latitude': 38.7888333,
'locationSource': 'nc',
'longitude': -122.7785,
'mag': 1.08,
'magError': 0.067,
'magNst': 4.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 32.0,
'place': '2km NW of The Geysers, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-09T14:23:35.780Z',
'type': 'earthquake',
'updated': '2016-07-11T23:16:02.795Z'},
{'depth': 39.71,
'depthError': 6.8,
'dmin': 4.105,
'gap': 122.0,
'horizontalError': 10.6,
'id': 'us1000627j',
'latitude': 19.2065,
'locationSource': 'us',
'longitude': 121.1745,
'mag': 4.8,
'magError': 0.068,
'magNst': 67.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '65km N of Namuac, Philippines',
'rms': 1.24,
'status': 'reviewed',
'time': '2016-07-09T14:11:43.280Z',
'type': 'earthquake',
'updated': '2016-07-09T15:11:40.375Z'},
{'depth': 60.8,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13745337',
'latitude': 62.872,
'locationSource': 'ak',
'longitude': -148.9312,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '57km S of Cantwell, Alaska',
'rms': 0.86,
'status': 'automatic',
'time': '2016-07-09T14:10:23.000Z',
'type': 'earthquake',
'updated': '2016-07-09T14:37:18.930Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': 0.457,
'gap': 117.5,
'horizontalError': 2.6,
'id': 'nn00551126',
'latitude': 37.2178,
'locationSource': 'nn',
'longitude': -114.5286,
'mag': 1.1,
'magError': 0.23,
'magNst': 4.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 7.0,
'place': '44km S of Caliente, Nevada',
'rms': 0.0899,
'status': 'reviewed',
'time': '2016-07-09T14:02:18.469Z',
'type': 'earthquake',
'updated': '2016-07-10T22:29:25.437Z'},
{'depth': 27.7,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13745333',
'latitude': 62.07,
'locationSource': 'ak',
'longitude': -148.2125,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km NE of Sutton-Alpine, Alaska',
'rms': 0.84,
'status': 'automatic',
'time': '2016-07-09T13:58:49.000Z',
'type': 'earthquake',
'updated': '2016-07-09T14:37:18.340Z'},
{'depth': 16.32,
'depthError': 1.53,
'dmin': 0.2967,
'gap': 137.0,
'horizontalError': 0.39,
'id': 'nc72659771',
'latitude': 37.6473333,
'locationSource': 'nc',
'longitude': -119.45299999999999,
'mag': 2.04,
'magError': 0.19899999999999998,
'magNst': 19.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 23.0,
'place': '15km SE of Yosemite Valley, California',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-09T13:52:54.900Z',
'type': 'earthquake',
'updated': '2016-07-11T17:31:02.411Z'},
{'depth': 118.76,
'depthError': 10.9,
'dmin': 1.347,
'gap': 98.0,
'horizontalError': 7.3,
'id': 'us1000627g',
'latitude': -10.776,
'locationSource': 'us',
'longitude': -76.2248,
'mag': 4.4,
'magError': 0.126,
'magNst': 18.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '8km ESE of Tinyahuarco, Peru',
'rms': 1.36,
'status': 'reviewed',
'time': '2016-07-09T13:44:52.120Z',
'type': 'earthquake',
'updated': '2016-07-09T15:21:41.724Z'},
{'depth': 8.68,
'depthError': 0.99,
'dmin': 0.04849,
'gap': 128.0,
'horizontalError': 0.57,
'id': 'uw61164052',
'latitude': 48.755166700000004,
'locationSource': 'uw',
'longitude': -121.96,
'mag': 1.86,
'magError': 0.135,
'magNst': 22.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 6.0,
'place': '24km SE of Peaceful Valley, Washington',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-09T13:43:20.220Z',
'type': 'earthquake',
'updated': '2016-07-09T15:53:08.900Z'},
{'depth': -2.03,
'depthError': 0.64,
'dmin': 0.07995,
'gap': 117.0,
'horizontalError': 0.25,
'id': 'nc72659766',
'latitude': 37.4731667,
'locationSource': 'nc',
'longitude': -118.8205,
'mag': 1.73,
'magError': 0.325,
'magNst': 24.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 31.0,
'place': '23km SE of Mammoth Lakes, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-09T13:42:46.180Z',
'type': 'earthquake',
'updated': '2016-07-12T01:16:04.340Z'},
{'depth': 0.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13745329',
'latitude': 60.1579,
'locationSource': 'ak',
'longitude': -141.4,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '58km E of Cape Yakataga, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-09T13:42:21.000Z',
'type': 'earthquake',
'updated': '2016-07-09T14:07:36.239Z'},
{'depth': 3.64,
'depthError': 9.74,
'dmin': 0.1013,
'gap': 223.0,
'horizontalError': 0.72,
'id': 'uw60126908',
'latitude': 48.7231667,
'locationSource': 'uw',
'longitude': -122.0235,
'mag': 1.06,
'magError': 0.042,
'magNst': 4.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 6.0,
'place': '23km E of Sudden Valley, Washington',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-09T13:22:03.360Z',
'type': 'earthquake',
'updated': '2016-07-11T20:47:07.000Z'},
{'depth': 102.0,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13745188',
'latitude': 63.8304,
'locationSource': 'ak',
'longitude': -148.5005,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '23km E of Healy, Alaska',
'rms': 0.53,
'status': 'automatic',
'time': '2016-07-09T12:47:23.000Z',
'type': 'earthquake',
'updated': '2016-07-09T13:38:40.055Z'},
{'depth': 10.7,
'depthError': 2.6,
'dmin': 0.127,
'gap': 189.51,
'horizontalError': 3.37,
'id': 'nn00551119',
'latitude': 41.8914,
'locationSource': 'nn',
'longitude': -119.6454,
'mag': 2.2,
'magError': 0.35,
'magNst': 5.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 6.0,
'place': '66km ESE of Lakeview, Oregon',
'rms': 0.1649,
'status': 'reviewed',
'time': '2016-07-09T12:02:41.861Z',
'type': 'earthquake',
'updated': '2016-07-10T22:28:51.390Z'},
{'depth': 23.2,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13745184',
'latitude': 61.4584,
'locationSource': 'ak',
'longitude': -147.2764,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km NW of Valdez, Alaska',
'rms': 0.48,
'status': 'automatic',
'time': '2016-07-09T11:59:27.000Z',
'type': 'earthquake',
'updated': '2016-07-09T12:40:10.561Z'},
{'depth': 10.03,
'depthError': 0.66,
'dmin': 0.08489,
'gap': 95.0,
'horizontalError': 0.3,
'id': 'ci37410903',
'latitude': 33.3318333,
'locationSource': 'ci',
'longitude': -116.34983329999999,
'mag': 1.17,
'magError': 0.149,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 38.0,
'place': '9km NNE of Borrego Springs, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-09T11:43:03.820Z',
'type': 'earthquake',
'updated': '2016-07-11T17:10:07.369Z'},
{'depth': 143.3,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 1.1,
'id': 'ak13745179',
'latitude': 61.0216,
'locationSource': 'ak',
'longitude': -152.4734,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km NNE of Redoubt Volcano, Alaska',
'rms': 0.68,
'status': 'automatic',
'time': '2016-07-09T11:29:34.000Z',
'type': 'earthquake',
'updated': '2016-07-09T12:12:40.348Z'},
{'depth': 26.7,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13745178',
'latitude': 61.4829,
'locationSource': 'ak',
'longitude': -146.3119,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '39km N of Valdez, Alaska',
'rms': 0.93,
'status': 'automatic',
'time': '2016-07-09T11:13:02.000Z',
'type': 'earthquake',
'updated': '2016-07-09T11:43:40.284Z'},
{'depth': 13.3,
'depthError': 0.67,
'dmin': 0.02456,
'gap': 99.0,
'horizontalError': 0.72,
'id': 'uw61164022',
'latitude': 47.7043333,
'locationSource': 'uw',
'longitude': -122.94083329999998,
'mag': 1.64,
'magError': 0.168,
'magNst': 15.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 11.0,
'place': '11km NW of Seabeck, Washington',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-09T11:06:52.340Z',
'type': 'earthquake',
'updated': '2016-07-11T21:18:37.380Z'},
{'depth': 8.87,
'depthError': 0.45,
'dmin': 0.03285,
'gap': 80.0,
'horizontalError': 0.22,
'id': 'ci37410879',
'latitude': 33.4905,
'locationSource': 'ci',
'longitude': -116.42383329999998,
'mag': 1.51,
'magError': 0.212,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 53.0,
'place': '22km SSW of La Quinta, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-09T10:53:56.290Z',
'type': 'earthquake',
'updated': '2016-07-11T17:11:17.010Z'},
{'depth': 8.42,
'depthError': 0.32,
'dmin': 0.02705,
'gap': 102.0,
'horizontalError': 0.26,
'id': 'nc72659741',
'latitude': 37.5651667,
'locationSource': 'nc',
'longitude': -118.84266670000001,
'mag': 1.11,
'magError': 0.275,
'magNst': 20.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 26.0,
'place': '14km SE of Mammoth Lakes, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-09T10:50:08.960Z',
'type': 'earthquake',
'updated': '2016-07-12T01:04:03.009Z'},
{'depth': 9.5,
'depthError': 4.6,
'dmin': 0.649,
'gap': 80.61,
'horizontalError': 6.53,
'id': 'nn00551140',
'latitude': 39.7959,
'locationSource': 'nn',
'longitude': -117.0531,
'mag': 1.5,
'magError': 0.0,
'magNst': 1.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 7.0,
'place': '33km N of Austin, Nevada',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-09T10:17:10.527Z',
'type': 'earthquake',
'updated': '2016-07-10T22:30:20.372Z'},
{'depth': 1.63,
'depthError': 0.23,
'dmin': 0.013880000000000002,
'gap': 51.0,
'horizontalError': 0.15,
'id': 'nc72659736',
'latitude': 38.7618333,
'locationSource': 'nc',
'longitude': -122.72733329999998,
'mag': 1.58,
'magError': 0.198,
'magNst': 9.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 29.0,
'place': '3km SE of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-09T10:03:02.620Z',
'type': 'earthquake',
'updated': '2016-07-12T00:50:02.902Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745170',
'latitude': 61.2869,
'locationSource': 'ak',
'longitude': -152.5828,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km N of Redoubt Volcano, Alaska',
'rms': 0.78,
'status': 'automatic',
'time': '2016-07-09T10:02:07.000Z',
'type': 'earthquake',
'updated': '2016-07-09T10:46:34.199Z'},
{'depth': 2.74,
'depthError': 0.2,
'dmin': 0.004814,
'gap': 60.0,
'horizontalError': 0.14,
'id': 'nc72659721',
'latitude': 38.8196667,
'locationSource': 'nc',
'longitude': -122.80616670000002,
'mag': 1.73,
'magError': 0.262,
'magNst': 19.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 48.0,
'place': '6km NW of The Geysers, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-09T09:47:55.980Z',
'type': 'earthquake',
'updated': '2016-07-11T22:49:02.730Z'},
{'depth': 7.9,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745164',
'latitude': 63.3472,
'locationSource': 'ak',
'longitude': -147.5356,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '70km E of Cantwell, Alaska',
'rms': 0.54,
'status': 'automatic',
'time': '2016-07-09T09:28:45.000Z',
'type': 'earthquake',
'updated': '2016-07-09T10:18:59.992Z'},
{'depth': 5.54,
'depthError': 7.1,
'dmin': 0.131,
'gap': 49.0,
'horizontalError': 0.9,
'id': 'us1000626q',
'latitude': 36.703,
'locationSource': 'us',
'longitude': -98.1041,
'mag': 2.5,
'magError': 0.081,
'magNst': 40.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '22km NE of Helena, Oklahoma',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-09T09:09:00.120Z',
'type': 'earthquake',
'updated': '2016-07-09T09:41:14.533Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.465,
'gap': 102.0,
'horizontalError': 3.7,
'id': 'us1000626n',
'latitude': 32.7632,
'locationSource': 'us',
'longitude': 130.5265,
'mag': 4.2,
'magError': 0.159,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '15km NW of Uto, Japan',
'rms': 0.76,
'status': 'reviewed',
'time': '2016-07-09T09:05:20.140Z',
'type': 'earthquake',
'updated': '2016-07-09T09:22:05.940Z'},
{'depth': 6.18,
'depthError': 5.66,
'dmin': 0.2999,
'gap': 245.0,
'horizontalError': 0.66,
'id': 'nc72659716',
'latitude': 40.907166700000005,
'locationSource': 'nc',
'longitude': -121.66483329999998,
'mag': 1.9,
'magError': 0.11900000000000001,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 11.0,
'place': '2km N of Burney, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-09T08:50:29.150Z',
'type': 'earthquake',
'updated': '2016-07-11T16:51:03.290Z'},
{'depth': 8.22,
'depthError': 0.67,
'dmin': 0.031869999999999996,
'gap': 83.0,
'horizontalError': 0.24,
'id': 'nc72659711',
'latitude': 36.7446667,
'locationSource': 'nc',
'longitude': -121.34766670000002,
'mag': 1.14,
'magError': 0.256,
'magNst': 23.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 28.0,
'place': '7km SSE of Ridgemark, California',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-09T08:46:39.090Z',
'type': 'earthquake',
'updated': '2016-07-12T00:53:03.294Z'},
{'depth': 23.9,
'depthError': 2.5,
'dmin': nan,
'gap': nan,
'horizontalError': 2.6,
'id': 'ak13745140',
'latitude': 65.6724,
'locationSource': 'ak',
'longitude': -166.1159,
'mag': 3.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '65km S of Shishmaref, Alaska',
'rms': 1.09,
'status': 'reviewed',
'time': '2016-07-09T08:46:23.000Z',
'type': 'earthquake',
'updated': '2016-07-09T19:03:33.003Z'},
{'depth': 1.1,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13745137',
'latitude': 63.4595,
'locationSource': 'ak',
'longitude': -148.2533,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '35km ENE of Cantwell, Alaska',
'rms': 0.97,
'status': 'automatic',
'time': '2016-07-09T08:45:37.000Z',
'type': 'earthquake',
'updated': '2016-07-09T09:20:15.263Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 6.379,
'gap': 73.0,
'horizontalError': 10.9,
'id': 'us1000626l',
'latitude': 85.2521,
'locationSource': 'us',
'longitude': 13.1664,
'mag': 4.5,
'magError': 0.078,
'magNst': 48.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'North of Svalbard',
'rms': 0.74,
'status': 'reviewed',
'time': '2016-07-09T08:45:10.620Z',
'type': 'earthquake',
'updated': '2016-07-09T09:03:20.704Z'},
{'depth': 22.8,
'depthError': 2.3,
'dmin': nan,
'gap': nan,
'horizontalError': 2.3,
'id': 'ak13745020',
'latitude': 65.6955,
'locationSource': 'ak',
'longitude': -166.1036,
'mag': 4.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '28km SSW of Shishmaref, Alaska',
'rms': 1.23,
'status': 'reviewed',
'time': '2016-07-09T08:35:01.000Z',
'type': 'earthquake',
'updated': '2016-07-09T09:21:51.467Z'},
{'depth': 15.41,
'depthError': 0.27,
'dmin': 0.008075,
'gap': 22.0,
'horizontalError': 0.17,
'id': 'ci37410743',
'latitude': 34.228,
'locationSource': 'ci',
'longitude': -118.568,
'mag': 2.43,
'magError': 0.16,
'magNst': 24.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 88.0,
'place': '3km WSW of Northridge, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-09T08:13:33.220Z',
'type': 'earthquake',
'updated': '2016-07-11T18:40:57.460Z'},
{'depth': 6.99,
'depthError': 0.4,
'dmin': 0.03387,
'gap': 147.0,
'horizontalError': 0.36,
'id': 'hv61330086',
'latitude': 19.319334,
'locationSource': 'hv',
'longitude': -155.1224976,
'mag': 2.33,
'magError': 0.25,
'magNst': 5.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 48.0,
'place': '17km SE of Volcano, Hawaii',
'rms': 0.23,
'status': 'automatic',
'time': '2016-07-09T08:05:16.650Z',
'type': 'earthquake',
'updated': '2016-07-09T08:10:54.770Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745004',
'latitude': 61.2752,
'locationSource': 'ak',
'longitude': -152.5051,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '88km N of Redoubt Volcano, Alaska',
'rms': 0.69,
'status': 'automatic',
'time': '2016-07-09T08:03:49.000Z',
'type': 'earthquake',
'updated': '2016-07-09T08:50:50.905Z'},
{'depth': 10.4,
'depthError': 3.3,
'dmin': 0.207,
'gap': 80.37,
'horizontalError': 1.58,
'id': 'nn00551112',
'latitude': 38.6509,
'locationSource': 'nn',
'longitude': -118.7855,
'mag': 1.1,
'magError': 0.36,
'magNst': 6.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 14.0,
'place': '19km NW of Hawthorne, Nevada',
'rms': 0.0868,
'status': 'reviewed',
'time': '2016-07-09T07:52:43.444Z',
'type': 'earthquake',
'updated': '2016-07-10T22:29:16.305Z'},
{'depth': 93.47,
'depthError': 3.6,
'dmin': 1.892,
'gap': 112.0,
'horizontalError': 9.1,
'id': 'us10006263',
'latitude': 5.234,
'locationSource': 'us',
'longitude': 126.0878,
'mag': 4.5,
'magError': 0.113,
'magNst': 23.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '71km ESE of Sarangani, Philippines',
'rms': 0.89,
'status': 'reviewed',
'time': '2016-07-09T07:27:41.150Z',
'type': 'earthquake',
'updated': '2016-07-09T07:56:38.357Z'},
{'depth': 0.75,
'depthError': 0.21,
'dmin': 0.01253,
'gap': 76.0,
'horizontalError': 0.16,
'id': 'nc71103544',
'latitude': 38.8108333,
'locationSource': 'nc',
'longitude': -122.81333329999998,
'mag': 1.13,
'magError': 0.028999999999999998,
'magNst': 5.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 26.0,
'place': '6km NW of The Geysers, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-09T07:25:36.050Z',
'type': 'earthquake',
'updated': '2016-07-11T21:57:03.797Z'},
{'depth': 1.53,
'depthError': 0.36,
'dmin': 0.0076170000000000005,
'gap': 45.0,
'horizontalError': 0.19,
'id': 'nc72659696',
'latitude': 38.773,
'locationSource': 'nc',
'longitude': -122.7075,
'mag': 1.52,
'magError': 0.212,
'magNst': 4.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 20.0,
'place': '4km E of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-09T07:25:31.580Z',
'type': 'earthquake',
'updated': '2016-07-11T22:23:03.673Z'},
{'depth': 97.21,
'depthError': 8.8,
'dmin': 0.514,
'gap': 99.0,
'horizontalError': 7.5,
'id': 'us1000625y',
'latitude': 36.8914,
'locationSource': 'us',
'longitude': 30.524,
'mag': 4.2,
'magError': 0.124,
'magNst': 18.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '15km W of Antalya, Turkey',
'rms': 0.75,
'status': 'reviewed',
'time': '2016-07-09T07:15:32.620Z',
'type': 'earthquake',
'updated': '2016-07-09T07:29:18.441Z'},
{'depth': 2.65,
'depthError': 4.7,
'dmin': 0.24,
'gap': 40.0,
'horizontalError': 1.3,
'id': 'us1000625x',
'latitude': 36.3255,
'locationSource': 'us',
'longitude': -97.5175,
'mag': 2.7,
'magError': 0.068,
'magNst': 56.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '20km W of Perry, Oklahoma',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-09T07:10:39.140Z',
'type': 'earthquake',
'updated': '2016-07-09T08:07:25.831Z'},
{'depth': 0.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744889',
'latitude': 63.4623,
'locationSource': 'ak',
'longitude': -148.3118,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '32km ENE of Cantwell, Alaska',
'rms': 0.4,
'status': 'automatic',
'time': '2016-07-09T07:08:22.000Z',
'type': 'earthquake',
'updated': '2016-07-09T07:50:16.101Z'},
{'depth': 4.99,
'depthError': 0.42,
'dmin': 0.01996,
'gap': 36.0,
'horizontalError': 0.19,
'id': 'ci37410735',
'latitude': 33.2488333,
'locationSource': 'ci',
'longitude': -116.41116670000001,
'mag': 1.5,
'magError': 0.192,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 45.0,
'place': '4km WSW of Borrego Springs, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-09T07:00:11.830Z',
'type': 'earthquake',
'updated': '2016-07-11T17:12:30.800Z'},
{'depth': 5.71,
'depthError': 0.39,
'dmin': 0.01948,
'gap': 37.0,
'horizontalError': 0.14,
'id': 'ci37410727',
'latitude': 33.2496667,
'locationSource': 'ci',
'longitude': -116.40983329999999,
'mag': 1.71,
'magError': 0.179,
'magNst': 73.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 50.0,
'place': '3km WSW of Borrego Springs, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-09T06:58:34.980Z',
'type': 'earthquake',
'updated': '2016-07-11T18:29:40.990Z'},
{'depth': 121.3,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744875',
'latitude': 60.0448,
'locationSource': 'ak',
'longitude': -153.2344,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '56km SSW of Redoubt Volcano, Alaska',
'rms': 0.54,
'status': 'automatic',
'time': '2016-07-09T06:21:27.000Z',
'type': 'earthquake',
'updated': '2016-07-09T06:56:57.912Z'},
{'depth': 4.0,
'depthError': 7.3,
'dmin': 0.42580144,
'gap': 320.4,
'horizontalError': 7.3,
'id': 'pr16191004',
'latitude': 18.8276,
'locationSource': 'pr',
'longitude': -64.4903,
'mag': 2.1,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '47km NNE of Road Town, British Virgin Islands',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-09T06:03:57.300Z',
'type': 'earthquake',
'updated': '2016-07-09T08:08:41.370Z'},
{'depth': 7.97,
'depthError': 0.45,
'dmin': 0.02743,
'gap': 81.0,
'horizontalError': 0.38,
'id': 'ci37410711',
'latitude': 32.9125,
'locationSource': 'ci',
'longitude': -115.53083329999998,
'mag': 1.41,
'magError': 0.24,
'magNst': 15.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '7km S of Brawley, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-09T06:03:19.830Z',
'type': 'earthquake',
'updated': '2016-07-11T18:21:21.659Z'},
{'depth': 5.84,
'depthError': 0.26,
'dmin': 0.037689999999999994,
'gap': 33.0,
'horizontalError': 0.14,
'id': 'ci37410703',
'latitude': 34.123000000000005,
'locationSource': 'ci',
'longitude': -116.96433329999999,
'mag': 1.23,
'magError': 0.175,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 57.0,
'place': '12km NE of Yucaipa, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-09T05:55:10.820Z',
'type': 'earthquake',
'updated': '2016-07-11T18:14:25.450Z'},
{'depth': 121.9,
'depthError': 1.4,
'dmin': nan,
'gap': nan,
'horizontalError': 1.6,
'id': 'ak13744872',
'latitude': 63.0348,
'locationSource': 'ak',
'longitude': -150.8138,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '87km NNW of Talkeetna, Alaska',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-09T05:48:06.000Z',
'type': 'earthquake',
'updated': '2016-07-09T18:29:44.511Z'},
{'depth': 7.7,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13744864',
'latitude': 61.1647,
'locationSource': 'ak',
'longitude': -152.6899,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '75km N of Redoubt Volcano, Alaska',
'rms': 0.73,
'status': 'automatic',
'time': '2016-07-09T05:35:07.000Z',
'type': 'earthquake',
'updated': '2016-07-09T05:58:25.744Z'},
{'depth': 21.5,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13744861',
'latitude': 60.6608,
'locationSource': 'ak',
'longitude': -147.0985,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '66km SW of Valdez, Alaska',
'rms': 0.75,
'status': 'automatic',
'time': '2016-07-09T05:34:48.000Z',
'type': 'earthquake',
'updated': '2016-07-09T05:58:26.928Z'},
{'depth': 0.2,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13744860',
'latitude': 58.1313,
'locationSource': 'ak',
'longitude': -155.2239,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '99km NW of Larsen Bay, Alaska',
'rms': 0.78,
'status': 'automatic',
'time': '2016-07-09T05:23:49.000Z',
'type': 'earthquake',
'updated': '2016-07-09T05:58:26.383Z'},
{'depth': 2.69,
'depthError': 0.68,
'dmin': 0.04729,
'gap': 48.0,
'horizontalError': 0.34,
'id': 'hv61329936',
'latitude': 19.482334100000003,
'locationSource': 'hv',
'longitude': -155.647171,
'mag': 2.27,
'magError': 0.1,
'magNst': 4.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 40.0,
'place': '23km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.27,
'status': 'automatic',
'time': '2016-07-09T05:12:43.150Z',
'type': 'earthquake',
'updated': '2016-07-09T05:49:17.875Z'},
{'depth': 3.87,
'depthError': 0.41,
'dmin': 0.09586,
'gap': 45.0,
'horizontalError': 0.13,
'id': 'ci37410679',
'latitude': 35.9365,
'locationSource': 'ci',
'longitude': -117.96966670000002,
'mag': 1.74,
'magError': 0.251,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 29.0,
'place': '6km W of Little Lake, CA',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-09T05:05:45.390Z',
'type': 'earthquake',
'updated': '2016-07-11T17:58:09.050Z'},
{'depth': 13.55,
'depthError': 0.7,
'dmin': 0.1148,
'gap': 63.0,
'horizontalError': 0.31,
'id': 'ci37410663',
'latitude': 34.1051667,
'locationSource': 'ci',
'longitude': -117.40899999999999,
'mag': 1.06,
'magError': 0.19899999999999998,
'magNst': 29.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 30.0,
'place': '4km W of Rialto, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-09T04:33:48.880Z',
'type': 'earthquake',
'updated': '2016-07-11T17:12:43.970Z'},
{'depth': 0.0,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744754',
'latitude': 63.5147,
'locationSource': 'ak',
'longitude': -147.2706,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '84km E of Cantwell, Alaska',
'rms': 0.66,
'status': 'automatic',
'time': '2016-07-09T04:33:03.000Z',
'type': 'earthquake',
'updated': '2016-07-09T05:01:58.835Z'},
{'depth': 7.0,
'depthError': 4.0,
'dmin': 0.44915764,
'gap': 316.8,
'horizontalError': 3.3,
'id': 'pr16191003',
'latitude': 18.8561,
'locationSource': 'pr',
'longitude': -64.5065,
'mag': 2.4,
'magError': 0.0,
'magNst': 4.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 5.0,
'place': '50km NNE of Road Town, British Virgin Islands',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-09T04:30:23.100Z',
'type': 'earthquake',
'updated': '2016-07-09T08:07:16.095Z'},
{'depth': 7.0,
'depthError': 1.8,
'dmin': 0.54527738,
'gap': 324.0,
'horizontalError': 1.9,
'id': 'pr16191002',
'latitude': 18.8628,
'locationSource': 'pr',
'longitude': -64.6297,
'mag': 2.0,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '49km N of Road Town, British Virgin Islands',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-09T04:22:09.600Z',
'type': 'earthquake',
'updated': '2016-07-09T08:06:24.864Z'},
{'depth': 3.62,
'depthError': 6.1,
'dmin': 0.07200000000000001,
'gap': 60.0,
'horizontalError': 1.8,
'id': 'us10006258',
'latitude': 36.4499,
'locationSource': 'us',
'longitude': -98.7543,
'mag': 2.8,
'magError': 0.064,
'magNst': 64.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '31km NW of Fairview, Oklahoma',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-09T04:19:27.390Z',
'type': 'earthquake',
'updated': '2016-07-09T05:19:11.815Z'},
{'depth': 62.1,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13744749',
'latitude': 60.2618,
'locationSource': 'ak',
'longitude': -151.0415,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '18km SE of Cohoe, Alaska',
'rms': 0.4,
'status': 'automatic',
'time': '2016-07-09T03:58:49.000Z',
'type': 'earthquake',
'updated': '2016-07-09T04:34:12.246Z'},
{'depth': 2.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13744746',
'latitude': 61.2796,
'locationSource': 'ak',
'longitude': -152.5074,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km N of Redoubt Volcano, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-09T03:57:01.000Z',
'type': 'earthquake',
'updated': '2016-07-09T04:34:11.570Z'},
{'depth': 53.6,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744742',
'latitude': 61.4489,
'locationSource': 'ak',
'longitude': -150.0418,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '9km SSW of Big Lake, Alaska',
'rms': 0.33,
'status': 'automatic',
'time': '2016-07-09T03:20:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T04:06:17.933Z'},
{'depth': 2.7,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744740',
'latitude': 63.4602,
'locationSource': 'ak',
'longitude': -148.2541,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '35km ENE of Cantwell, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-09T03:03:53.000Z',
'type': 'earthquake',
'updated': '2016-07-09T03:37:21.555Z'},
{'depth': 6.04,
'depthError': 3.7,
'dmin': 0.018000000000000002,
'gap': 73.0,
'horizontalError': 2.2,
'id': 'us1000624i',
'latitude': 36.4468,
'locationSource': 'us',
'longitude': -98.7613,
'mag': 3.1,
'magError': 0.057999999999999996,
'magNst': 77.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '32km NW of Fairview, Oklahoma',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-09T02:51:15.830Z',
'type': 'earthquake',
'updated': '2016-07-09T05:22:46.123Z'},
{'depth': 1.16,
'depthError': 0.8,
'dmin': 0.094,
'gap': 78.0,
'horizontalError': 1.3,
'id': 'us100062bp',
'latitude': 45.6568,
'locationSource': 'us',
'longitude': -68.9852,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ott',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '21km W of Millinocket, Maine',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-09T02:27:54.360Z',
'type': 'earthquake',
'updated': '2016-07-11T21:10:49.238Z'},
{'depth': 6.05,
'depthError': 4.2,
'dmin': 0.008,
'gap': 70.0,
'horizontalError': 1.8,
'id': 'us1000624e',
'latitude': 36.4412,
'locationSource': 'us',
'longitude': -98.7506,
'mag': 2.8,
'magError': 0.079,
'magNst': 42.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '30km NW of Fairview, Oklahoma',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-09T02:21:34.960Z',
'type': 'earthquake',
'updated': '2016-07-09T05:27:55.062Z'},
{'depth': 14.06,
'depthError': 0.22,
'dmin': 0.02505,
'gap': 34.0,
'horizontalError': 0.14,
'id': 'ci37410631',
'latitude': 33.669000000000004,
'locationSource': 'ci',
'longitude': -116.70383329999999,
'mag': 1.3,
'magError': 0.26899999999999996,
'magNst': 24.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 47.0,
'place': '8km S of Idyllwild, CA',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-09T02:07:56.060Z',
'type': 'earthquake',
'updated': '2016-07-11T17:43:36.240Z'},
{'depth': 9.19,
'depthError': 7.5,
'dmin': 0.024,
'gap': 32.0,
'horizontalError': 3.6,
'id': 'us10006249',
'latitude': 36.4717,
'locationSource': 'us',
'longitude': -98.7011,
'mag': 4.4,
'magError': 0.033,
'magNst': 88.0,
'magSource': 'us',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '30km NW of Fairview, Oklahoma',
'rms': 0.37,
'status': 'reviewed',
'time': '2016-07-09T02:04:28.770Z',
'type': 'earthquake',
'updated': '2016-07-11T04:34:56.980Z'},
{'depth': 3.55,
'depthError': 0.26,
'dmin': 0.0026089999999999998,
'gap': 114.0,
'horizontalError': 0.37,
'id': 'hv61329606',
'latitude': 19.376167300000002,
'locationSource': 'hv',
'longitude': -155.21434019999998,
'mag': 1.75,
'magError': 0.15,
'magNst': 3.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 18.0,
'place': '6km SSE of Volcano, Hawaii',
'rms': 0.14,
'status': 'automatic',
'time': '2016-07-09T01:54:32.830Z',
'type': 'earthquake',
'updated': '2016-07-09T02:00:11.520Z'},
{'depth': 7.0,
'depthError': 16.5,
'dmin': 1.10043622,
'gap': 338.4,
'horizontalError': 17.1,
'id': 'pr16191001',
'latitude': 19.3775,
'locationSource': 'pr',
'longitude': -64.3925,
'mag': 2.4,
'magError': 0.0,
'magNst': 2.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '108km NNE of Road Town, British Virgin Islands',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-09T01:36:19.500Z',
'type': 'earthquake',
'updated': '2016-07-09T03:57:27.663Z'},
{'depth': 2.7,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744622',
'latitude': 61.3176,
'locationSource': 'ak',
'longitude': -152.5014,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '93km N of Redoubt Volcano, Alaska',
'rms': 0.16,
'status': 'automatic',
'time': '2016-07-09T01:15:12.000Z',
'type': 'earthquake',
'updated': '2016-07-09T01:47:33.355Z'},
{'depth': 3.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13744618',
'latitude': 61.2943,
'locationSource': 'ak',
'longitude': -152.5238,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-09T01:13:54.000Z',
'type': 'earthquake',
'updated': '2016-07-09T01:47:32.675Z'},
{'depth': 15.9,
'depthError': 1.67,
'dmin': 0.2898,
'gap': 128.0,
'horizontalError': 0.57,
'id': 'nc72659631',
'latitude': 37.6471667,
'locationSource': 'nc',
'longitude': -119.44433329999998,
'mag': 1.73,
'magError': 0.239,
'magNst': 20.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 21.0,
'place': '14km SE of Yosemite Valley, California',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-09T01:13:37.080Z',
'type': 'earthquake',
'updated': '2016-07-10T22:28:30.029Z'},
{'depth': 51.79,
'depthError': 6.0,
'dmin': 0.37,
'gap': 133.0,
'horizontalError': 6.3,
'id': 'us10006240',
'latitude': -38.5958,
'locationSource': 'us',
'longitude': 176.9113,
'mag': 4.4,
'magError': 0.155,
'magNst': 12.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '23km SE of Murupara, New Zealand',
'rms': 1.34,
'status': 'reviewed',
'time': '2016-07-09T01:08:02.290Z',
'type': 'earthquake',
'updated': '2016-07-09T01:28:48.084Z'},
{'depth': 2.7,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13744605',
'latitude': 63.4804,
'locationSource': 'ak',
'longitude': -148.3062,
'mag': 3.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '33km ENE of Cantwell, Alaska',
'rms': 0.73,
'status': 'automatic',
'time': '2016-07-09T01:07:22.000Z',
'type': 'earthquake',
'updated': '2016-07-09T01:49:02.375Z'},
{'depth': 10.32,
'depthError': 0.65,
'dmin': 0.02104,
'gap': 157.0,
'horizontalError': 0.69,
'id': 'ci37410599',
'latitude': 32.9111667,
'locationSource': 'ci',
'longitude': -115.5385,
'mag': 1.24,
'magError': 0.193,
'magNst': 12.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 12.0,
'place': '8km S of Brawley, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-09T01:05:17.470Z',
'type': 'earthquake',
'updated': '2016-07-11T17:25:34.262Z'},
{'depth': 4.1,
'depthError': 4.5,
'dmin': 0.003,
'gap': 71.0,
'horizontalError': 1.6,
'id': 'us1000623s',
'latitude': 36.4749,
'locationSource': 'us',
'longitude': -98.7448,
'mag': 2.9,
'magError': 0.067,
'magNst': 58.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '32km NW of Fairview, Oklahoma',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-09T01:01:30.420Z',
'type': 'earthquake',
'updated': '2016-07-09T01:55:25.701Z'},
{'depth': 40.93,
'depthError': 7.8,
'dmin': 0.812,
'gap': 127.0,
'horizontalError': 6.2,
'id': 'us1000623r',
'latitude': 37.1591,
'locationSource': 'us',
'longitude': 141.2883,
'mag': 4.6,
'magError': 0.08199999999999999,
'magNst': 44.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '37km ENE of Iwaki, Japan',
'rms': 0.6,
'status': 'reviewed',
'time': '2016-07-09T00:54:37.310Z',
'type': 'earthquake',
'updated': '2016-07-09T02:09:58.322Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': 0.204,
'gap': 129.99,
'horizontalError': 0.98,
'id': 'nn00551100',
'latitude': 38.6595,
'locationSource': 'nn',
'longitude': -118.7968,
'mag': 1.6,
'magError': 0.37,
'magNst': 4.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 11.0,
'place': '21km NW of Hawthorne, Nevada',
'rms': 0.1084,
'status': 'reviewed',
'time': '2016-07-09T00:52:17.743Z',
'type': 'earthquake',
'updated': '2016-07-10T22:28:04.354Z'},
{'depth': 157.0,
'depthError': 2.2,
'dmin': 0.50754814,
'gap': 176.4,
'horizontalError': 4.9,
'id': 'pr16191000',
'latitude': 18.637999999999998,
'locationSource': 'pr',
'longitude': -68.8683,
'mag': 3.5,
'magError': 0.0,
'magNst': 12.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 17.0,
'place': '12km ENE of Guaymate, Dominican Republic',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-09T00:36:39.200Z',
'type': 'earthquake',
'updated': '2016-07-09T01:25:18.634Z'},
{'depth': 1.86,
'depthError': 0.5,
'dmin': 0.0476,
'gap': 48.0,
'horizontalError': 0.29,
'id': 'hv61329431',
'latitude': 19.482500100000003,
'locationSource': 'hv',
'longitude': -155.64750669999998,
'mag': 2.43,
'magError': 0.15,
'magNst': 5.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 39.0,
'place': '22km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.25,
'status': 'automatic',
'time': '2016-07-09T00:23:08.800Z',
'type': 'earthquake',
'updated': '2016-07-09T00:28:44.710Z'},
{'depth': 2.56,
'depthError': 0.69,
'dmin': 0.1022,
'gap': 63.0,
'horizontalError': 0.31,
'id': 'ci37410583',
'latitude': 34.4926667,
'locationSource': 'ci',
'longitude': -118.993,
'mag': 1.29,
'magError': 0.127,
'magNst': 17.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '12km NNW of Fillmore, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-09T00:18:22.590Z',
'type': 'earthquake',
'updated': '2016-07-09T00:54:40.044Z'},
{'depth': 8.25,
'depthError': 0.36,
'dmin': 0.039939999999999996,
'gap': 31.0,
'horizontalError': 0.23,
'id': 'nc72659626',
'latitude': 36.923,
'locationSource': 'nc',
'longitude': -121.38683329999999,
'mag': 1.45,
'magError': 0.257,
'magNst': 35.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 35.0,
'place': '7km N of Hollister, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-09T00:02:16.570Z',
'type': 'earthquake',
'updated': '2016-07-09T01:20:04.303Z'},
{'depth': 1.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744386',
'latitude': 62.2743,
'locationSource': 'ak',
'longitude': -145.8252,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '23km NW of Glennallen, Alaska',
'rms': 0.75,
'status': 'automatic',
'time': '2016-07-08T23:57:26.000Z',
'type': 'earthquake',
'updated': '2016-07-09T00:49:59.136Z'},
{'depth': 8.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744385',
'latitude': 61.2285,
'locationSource': 'ak',
'longitude': -152.5194,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '83km N of Redoubt Volcano, Alaska',
'rms': 0.65,
'status': 'automatic',
'time': '2016-07-08T23:55:23.000Z',
'type': 'earthquake',
'updated': '2016-07-09T00:26:11.389Z'},
{'depth': 5.32,
'depthError': 3.5,
'dmin': 0.02,
'gap': 39.0,
'horizontalError': 1.6,
'id': 'us1000622l',
'latitude': 36.477,
'locationSource': 'us',
'longitude': -98.7174,
'mag': 2.6,
'magError': 0.076,
'magNst': 45.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '31km NW of Fairview, Oklahoma',
'rms': 0.47,
'status': 'reviewed',
'time': '2016-07-08T23:27:12.790Z',
'type': 'earthquake',
'updated': '2016-07-09T00:10:24.054Z'},
{'depth': 10.6,
'depthError': 4.6,
'dmin': 0.20800000000000002,
'gap': 97.49,
'horizontalError': nan,
'id': 'nn00551089',
'latitude': 38.6496,
'locationSource': 'nn',
'longitude': -118.7864,
'mag': 1.2,
'magError': 0.29,
'magNst': 4.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 10.0,
'place': '19km NW of Hawthorne, Nevada',
'rms': 0.0875,
'status': 'reviewed',
'time': '2016-07-08T23:23:19.129Z',
'type': 'earthquake',
'updated': '2016-07-08T23:36:39.146Z'},
{'depth': 31.0,
'depthError': 19.3,
'dmin': 0.8111786999999999,
'gap': 252.0,
'horizontalError': 2.9,
'id': 'pr16190005',
'latitude': 19.1222,
'locationSource': 'pr',
'longitude': -65.33,
'mag': 3.0,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 8.0,
'place': '90km N of Culebra, Puerto Rico',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-08T23:19:19.500Z',
'type': 'earthquake',
'updated': '2016-07-09T03:51:31.856Z'},
{'depth': 10.0,
'depthError': 1.8,
'dmin': 1.5959999999999999,
'gap': 33.0,
'horizontalError': 7.5,
'id': 'us1000622e',
'latitude': 8.6545,
'locationSource': 'us',
'longitude': 125.8475,
'mag': 5.2,
'magError': 0.040999999999999995,
'magNst': 194.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '6km N of Aurora, Philippines',
'rms': 0.99,
'status': 'reviewed',
'time': '2016-07-08T23:16:44.520Z',
'type': 'earthquake',
'updated': '2016-07-08T23:49:22.188Z'},
{'depth': 8.5,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744289',
'latitude': 64.9742,
'locationSource': 'ak',
'longitude': -147.3707,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '20km NNE of Badger, Alaska',
'rms': 0.49,
'status': 'automatic',
'time': '2016-07-08T23:06:40.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:29:45.275Z'},
{'depth': 22.0,
'depthError': 21.1,
'dmin': 0.50934477,
'gap': 313.2,
'horizontalError': 2.7,
'id': 'pr16190004',
'latitude': 18.8906,
'locationSource': 'pr',
'longitude': -67.561,
'mag': 2.8,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 7.0,
'place': '65km NW of San Antonio, Puerto Rico',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-08T23:01:34.000Z',
'type': 'earthquake',
'updated': '2016-07-09T03:33:39.219Z'},
{'depth': 11.34,
'depthError': 0.39,
'dmin': 0.1319,
'gap': 23.0,
'horizontalError': 0.15,
'id': 'ci37410543',
'latitude': 33.3375,
'locationSource': 'ci',
'longitude': -116.21016670000002,
'mag': 1.7,
'magError': 0.156,
'magNst': 66.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 59.0,
'place': '18km SW of Oasis, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-08T22:53:14.540Z',
'type': 'earthquake',
'updated': '2016-07-08T23:20:29.100Z'},
{'depth': 27.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744267',
'latitude': 61.6463,
'locationSource': 'ak',
'longitude': -149.8979,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '4km WNW of Houston, Alaska',
'rms': 0.61,
'status': 'automatic',
'time': '2016-07-08T22:51:00.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:29:46.512Z'},
{'depth': 7.05,
'depthError': 1.05,
'dmin': 0.134,
'gap': 85.0,
'horizontalError': 0.26,
'id': 'ci37410535',
'latitude': 36.4245,
'locationSource': 'ci',
'longitude': -118.24516670000001,
'mag': 1.32,
'magError': 0.21600000000000003,
'magNst': 12.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '24km SW of Lone Pine, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-08T22:44:00.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:44:35.805Z'},
{'depth': 4.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744252',
'latitude': 63.463,
'locationSource': 'ak',
'longitude': -148.3105,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '32km ENE of Cantwell, Alaska',
'rms': 0.72,
'status': 'automatic',
'time': '2016-07-08T22:38:06.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:31:16.376Z'},
{'depth': 159.7,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744170',
'latitude': 60.0748,
'locationSource': 'ak',
'longitude': -153.498,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km SW of Redoubt Volcano, Alaska',
'rms': 0.69,
'status': 'automatic',
'time': '2016-07-08T22:34:03.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:04:21.877Z'},
{'depth': 3.51,
'depthError': 0.82,
'dmin': 0.04521,
'gap': 47.0,
'horizontalError': 0.36,
'id': 'hv61329151',
'latitude': 19.4871674,
'locationSource': 'hv',
'longitude': -155.6450043,
'mag': 2.22,
'magError': 0.28,
'magNst': 7.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 34.0,
'place': '23km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.24,
'status': 'automatic',
'time': '2016-07-08T22:32:12.920Z',
'type': 'earthquake',
'updated': '2016-07-08T22:37:52.400Z'},
{'depth': 0.0,
'depthError': 0.0,
'dmin': 0.5820000000000001,
'gap': 87.18,
'horizontalError': nan,
'id': 'nn00551085',
'latitude': 38.7202,
'locationSource': 'nn',
'longitude': -116.1582,
'mag': 2.6,
'magError': 0.0,
'magNst': 1.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 5.0,
'place': '59km W of Currant, Nevada',
'rms': 0.1016,
'status': 'reviewed',
'time': '2016-07-08T22:30:26.972Z',
'type': 'earthquake',
'updated': '2016-07-08T23:03:13.938Z'},
{'depth': 2.2,
'depthError': 6.0,
'dmin': 0.022000000000000002,
'gap': 75.0,
'horizontalError': 1.7,
'id': 'us1000621p',
'latitude': 36.4633,
'locationSource': 'us',
'longitude': -98.7219,
'mag': 4.2,
'magError': 0.036000000000000004,
'magNst': 76.0,
'magSource': 'us',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '30km NW of Fairview, Oklahoma',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-08T22:29:38.090Z',
'type': 'earthquake',
'updated': '2016-07-11T04:38:36.559Z'},
{'depth': 50.2,
'depthError': 2.9,
'dmin': nan,
'gap': nan,
'horizontalError': 1.5,
'id': 'ak13744169',
'latitude': 59.3941,
'locationSource': 'ak',
'longitude': -153.488,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km ESE of Old Iliamna, Alaska',
'rms': 1.23,
'status': 'automatic',
'time': '2016-07-08T22:27:42.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:02:49.080Z'},
{'depth': 108.9,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13744161',
'latitude': 62.9801,
'locationSource': 'ak',
'longitude': -150.8742,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '82km NNW of Talkeetna, Alaska',
'rms': 0.46,
'status': 'automatic',
'time': '2016-07-08T22:11:03.000Z',
'type': 'earthquake',
'updated': '2016-07-08T23:02:48.414Z'},
{'depth': 38.61,
'depthError': 19.5,
'dmin': 1.865,
'gap': 238.0,
'horizontalError': 11.1,
'id': 'us1000621m',
'latitude': 51.1429,
'locationSource': 'us',
'longitude': 176.3539,
'mag': 4.1,
'magError': 0.096,
'magNst': 30.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '137km SW of Kiska Volcano, Alaska',
'rms': 0.64,
'status': 'reviewed',
'time': '2016-07-08T22:07:29.130Z',
'type': 'earthquake',
'updated': '2016-07-09T18:29:43.915Z'},
{'depth': 10.3,
'depthError': 2.7,
'dmin': 0.141,
'gap': 191.12,
'horizontalError': nan,
'id': 'nn00551079',
'latitude': 41.8757,
'locationSource': 'nn',
'longitude': -119.6377,
'mag': 1.9,
'magError': 0.19,
'magNst': 5.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 5.0,
'place': '68km ESE of Lakeview, Oregon',
'rms': 0.1713,
'status': 'reviewed',
'time': '2016-07-08T21:58:04.153Z',
'type': 'earthquake',
'updated': '2016-07-08T22:25:49.473Z'},
{'depth': 6.87,
'depthError': 0.36,
'dmin': 0.03321,
'gap': 58.0,
'horizontalError': 0.21,
'id': 'nc72659606',
'latitude': 37.4258333,
'locationSource': 'nc',
'longitude': -121.77216670000001,
'mag': 1.12,
'magError': 0.268,
'magNst': 17.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 21.0,
'place': '6km NE of East Foothills, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-08T21:53:09.770Z',
'type': 'earthquake',
'updated': '2016-07-09T01:31:02.338Z'},
{'depth': 5.48,
'depthError': 0.89,
'dmin': 0.1366,
'gap': 186.0,
'horizontalError': 0.51,
'id': 'ci37410487',
'latitude': 36.4195,
'locationSource': 'ci',
'longitude': -118.24766670000001,
'mag': 1.16,
'magError': 0.395,
'magNst': 4.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 6.0,
'place': '24km SW of Lone Pine, CA',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-08T21:51:35.570Z',
'type': 'earthquake',
'updated': '2016-07-11T17:22:47.196Z'},
{'depth': 7.315,
'depthError': 3.1,
'dmin': nan,
'gap': 46.0,
'horizontalError': 2.1,
'id': 'us10006215',
'latitude': 36.4765,
'locationSource': 'tul',
'longitude': -98.7387,
'mag': 4.2,
'magError': 0.043,
'magNst': 52.0,
'magSource': 'us',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '32km NW of Fairview, Oklahoma',
'rms': 0.4,
'status': 'reviewed',
'time': '2016-07-08T21:31:57.600Z',
'type': 'earthquake',
'updated': '2016-07-11T03:42:17.873Z'},
{'depth': 35.0,
'depthError': 2.0,
'dmin': 0.708,
'gap': 46.0,
'horizontalError': 2.5,
'id': 'us10006214',
'latitude': 36.569,
'locationSource': 'us',
'longitude': 139.4192,
'mag': 4.7,
'magError': 0.09300000000000001,
'magNst': 35.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '19km NE of Omama, Japan',
'rms': 1.4,
'status': 'reviewed',
'time': '2016-07-08T21:28:54.930Z',
'type': 'earthquake',
'updated': '2016-07-09T00:26:27.065Z'},
{'depth': -0.53,
'depthError': 31.61,
'dmin': 0.5920000000000001,
'gap': 213.0,
'horizontalError': 3.78,
'id': 'uw61163857',
'latitude': 49.4488333,
'locationSource': 'uw',
'longitude': -120.49966670000002,
'mag': 1.74,
'magError': 0.044000000000000004,
'magNst': 4.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 8.0,
'place': '1km SE of Princeton, Canada',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-08T21:17:16.270Z',
'type': 'explosion',
'updated': '2016-07-11T21:38:20.280Z'},
{'depth': 9.05,
'depthError': 0.64,
'dmin': 0.03007,
'gap': 117.0,
'horizontalError': 0.36,
'id': 'ci37410455',
'latitude': 32.9115,
'locationSource': 'ci',
'longitude': -115.527,
'mag': 1.63,
'magError': 0.204,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 22.0,
'place': '8km S of Brawley, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-08T21:16:44.370Z',
'type': 'earthquake',
'updated': '2016-07-08T22:16:18.154Z'},
{'depth': 16.0,
'depthError': 0.7,
'dmin': 0.21739229999999998,
'gap': 277.2,
'horizontalError': 1.2,
'id': 'pr16190003',
'latitude': 17.8575,
'locationSource': 'pr',
'longitude': -66.6122,
'mag': 2.1,
'magError': 0.0,
'magNst': 2.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '16km S of Ponce, Puerto Rico',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-08T21:09:22.800Z',
'type': 'earthquake',
'updated': '2016-07-09T00:14:41.694Z'},
{'depth': 9.86,
'depthError': 0.49,
'dmin': 0.03129,
'gap': 109.0,
'horizontalError': 0.28,
'id': 'nc72659591',
'latitude': 35.1993333,
'locationSource': 'nc',
'longitude': -120.76566670000001,
'mag': 1.43,
'magError': 0.268,
'magNst': 29.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 37.0,
'place': '3km NW of Avila Beach, California',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-08T21:05:52.610Z',
'type': 'earthquake',
'updated': '2016-07-09T02:54:02.615Z'},
{'depth': 55.6,
'depthError': 1.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13744020',
'latitude': 60.1716,
'locationSource': 'ak',
'longitude': -151.1721,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '23km SSE of Cohoe, Alaska',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-08T20:20:40.000Z',
'type': 'earthquake',
'updated': '2016-07-08T22:09:08.512Z'},
{'depth': 4.13,
'depthError': 1.31,
'dmin': 0.1884,
'gap': 110.0,
'horizontalError': 0.37,
'id': 'ci37371021',
'latitude': 34.5488333,
'locationSource': 'ci',
'longitude': -116.31233329999999,
'mag': 1.03,
'magError': 0.114,
'magNst': 7.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 12.0,
'place': '24km SW of Ludlow, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-08T20:12:08.420Z',
'type': 'earthquake',
'updated': '2016-07-08T21:34:46.444Z'},
{'depth': 63.0,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13744016',
'latitude': 62.9237,
'locationSource': 'ak',
'longitude': -149.3721,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '56km SSW of Cantwell, Alaska',
'rms': 0.69,
'status': 'automatic',
'time': '2016-07-08T20:01:47.000Z',
'type': 'earthquake',
'updated': '2016-07-08T20:30:23.896Z'},
{'depth': 35.3,
'depthError': 10.2,
'dmin': nan,
'gap': nan,
'horizontalError': 3.1,
'id': 'ak13744148',
'latitude': 51.227,
'locationSource': 'ak',
'longitude': -176.3486,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '75km SSE of Adak, Alaska',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-08T20:00:45.000Z',
'type': 'earthquake',
'updated': '2016-07-08T22:09:09.150Z'},
{'depth': 13.6,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13744012',
'latitude': 63.4709,
'locationSource': 'ak',
'longitude': -147.8871,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '53km E of Cantwell, Alaska',
'rms': 0.26,
'status': 'automatic',
'time': '2016-07-08T19:35:26.000Z',
'type': 'earthquake',
'updated': '2016-07-08T20:06:04.481Z'},
{'depth': 1.79,
'depthError': 0.62,
'dmin': 0.02828,
'gap': 51.0,
'horizontalError': 0.38,
'id': 'nc72659571',
'latitude': 35.4276667,
'locationSource': 'nc',
'longitude': -120.57016670000002,
'mag': 1.11,
'magError': 0.245,
'magNst': 25.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 30.0,
'place': '0km S of Quarry near Atascadero, CA',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-08T19:32:24.130Z',
'type': 'quarry blast',
'updated': '2016-07-09T00:07:05.651Z'},
{'depth': 8.2,
'depthError': 2.7,
'dmin': 0.242,
'gap': 89.21,
'horizontalError': nan,
'id': 'nn00551053',
'latitude': 38.9722,
'locationSource': 'nn',
'longitude': -118.3962,
'mag': 1.4,
'magError': 0.19,
'magNst': 6.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 11.0,
'place': '42km WNW of Gabbs, Nevada',
'rms': 0.0852,
'status': 'reviewed',
'time': '2016-07-08T19:22:00.656Z',
'type': 'earthquake',
'updated': '2016-07-08T21:11:53.490Z'},
{'depth': -0.58,
'depthError': 31.61,
'dmin': 0.03636,
'gap': 54.0,
'horizontalError': 0.34,
'id': 'ci37410239',
'latitude': 33.8181667,
'locationSource': 'ci',
'longitude': -117.48866670000001,
'mag': 1.35,
'magError': 0.149,
'magNst': 35.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 53.0,
'place': '7km SSE of Home Gardens, CA',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-08T19:19:31.640Z',
'type': 'quarry blast',
'updated': '2016-07-08T19:58:41.174Z'},
{'depth': 8.038,
'depthError': 0.37,
'dmin': 0.03399,
'gap': 156.0,
'horizontalError': 0.4,
'id': 'hv61328821',
'latitude': 19.355166699999998,
'locationSource': 'hv',
'longitude': -155.08233330000002,
'mag': 3.48,
'magError': 0.14800000000000002,
'magNst': 29.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 46.0,
'place': '17km S of Fern Acres, Hawaii',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-08T19:11:58.180Z',
'type': 'earthquake',
'updated': '2016-07-09T14:38:26.040Z'},
{'depth': 5.875,
'depthError': 6.0,
'dmin': nan,
'gap': 58.0,
'horizontalError': 2.1,
'id': 'us1000620c',
'latitude': 35.059,
'locationSource': 'tul',
'longitude': -97.6064,
'mag': 3.4,
'magError': nan,
'magNst': nan,
'magSource': 'tul',
'magType': 'ml',
'net': 'us',
'nst': nan,
'place': '9km SSE of Blanchard, Oklahoma',
'rms': 1.01,
'status': 'reviewed',
'time': '2016-07-08T19:06:18.400Z',
'type': 'earthquake',
'updated': '2016-07-09T14:30:05.040Z'},
{'depth': -2.0,
'depthError': 31.61,
'dmin': 0.191,
'gap': 113.0,
'horizontalError': 0.8,
'id': 'mb80160329',
'latitude': 46.0125,
'locationSource': 'mb',
'longitude': -112.46916670000002,
'mag': 1.41,
'magError': 0.324,
'magNst': 3.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 7.0,
'place': '5km E of Butte, Montana',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-08T19:03:27.060Z',
'type': 'quarry blast',
'updated': '2016-07-08T19:58:05.950Z'},
{'depth': -0.55,
'depthError': 31.61,
'dmin': 0.010459999999999999,
'gap': 129.0,
'horizontalError': 0.57,
'id': 'ci37410207',
'latitude': 34.5368333,
'locationSource': 'ci',
'longitude': -119.98466670000002,
'mag': 1.16,
'magError': 0.099,
'magNst': 5.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 8.0,
'place': '12km SE of Santa Ynez, CA',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-08T18:55:41.380Z',
'type': 'quarry blast',
'updated': '2016-07-08T19:17:59.979Z'},
{'depth': 5.54,
'depthError': 6.69,
'dmin': 0.1777,
'gap': 216.0,
'horizontalError': 1.16,
'id': 'uu60155142',
'latitude': 37.0391667,
'locationSource': 'uu',
'longitude': -113.75133329999998,
'mag': 1.1,
'magError': 0.063,
'magNst': 2.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 5.0,
'place': '13km SW of Santa Clara, Utah',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-08T18:52:59.240Z',
'type': 'earthquake',
'updated': '2016-07-08T20:54:28.400Z'},
{'depth': 7.045,
'depthError': 5.4,
'dmin': nan,
'gap': 44.0,
'horizontalError': 1.2,
'id': 'us10006205',
'latitude': 36.6485,
'locationSource': 'tul',
'longitude': -97.7445,
'mag': 2.7,
'magError': nan,
'magNst': nan,
'magSource': 'tul',
'magType': 'ml',
'net': 'us',
'nst': nan,
'place': '17km S of Medford, Oklahoma',
'rms': 0.76,
'status': 'reviewed',
'time': '2016-07-08T18:41:55.300Z',
'type': 'earthquake',
'updated': '2016-07-09T14:22:17.303Z'},
{'depth': 106.81,
'depthError': 8.8,
'dmin': 1.117,
'gap': 138.0,
'horizontalError': 7.8,
'id': 'us10006204',
'latitude': 36.4528,
'locationSource': 'us',
'longitude': 71.2802,
'mag': 4.2,
'magError': 0.18600000000000003,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '34km SW of Ashkasham, Afghanistan',
'rms': 1.46,
'status': 'reviewed',
'time': '2016-07-08T18:37:34.770Z',
'type': 'earthquake',
'updated': '2016-07-09T14:11:45.514Z'},
{'depth': 2.15,
'depthError': 0.17,
'dmin': 0.006764,
'gap': 62.0,
'horizontalError': 0.11,
'id': 'nc72659561',
'latitude': 38.8358333,
'locationSource': 'nc',
'longitude': -122.78233329999999,
'mag': 1.12,
'magError': 0.133,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 44.0,
'place': '5km WNW of Cobb, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-08T18:37:11.170Z',
'type': 'earthquake',
'updated': '2016-07-09T00:51:02.851Z'},
{'depth': 16.0,
'depthError': 6.8,
'dmin': 0.20199999999999999,
'gap': 240.92,
'horizontalError': nan,
'id': 'nn00551049',
'latitude': 40.1157,
'locationSource': 'nn',
'longitude': -119.6863,
'mag': 1.0,
'magError': 0.17,
'magNst': 3.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 5.0,
'place': '51km N of Spanish Springs, Nevada',
'rms': 0.1379,
'status': 'reviewed',
'time': '2016-07-08T18:30:30.875Z',
'type': 'earthquake',
'updated': '2016-07-08T18:44:31.113Z'},
{'depth': 3.43,
'depthError': 4.45,
'dmin': 0.275,
'gap': 110.0,
'horizontalError': 0.52,
'id': 'mb80160324',
'latitude': 44.581166700000004,
'locationSource': 'mb',
'longitude': -114.30516670000002,
'mag': 1.71,
'magError': 0.057,
'magNst': 8.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 12.0,
'place': '10km NW of Challis, Idaho',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-08T18:29:46.020Z',
'type': 'earthquake',
'updated': '2016-07-08T19:51:58.270Z'},
{'depth': 11.28,
'depthError': 0.48,
'dmin': 0.03161,
'gap': 71.0,
'horizontalError': 0.44,
'id': 'ci37410175',
'latitude': 32.9028333,
'locationSource': 'ci',
'longitude': -115.52316670000002,
'mag': 1.77,
'magError': 0.175,
'magNst': 22.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '8km NE of Imperial, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-08T18:26:57.920Z',
'type': 'earthquake',
'updated': '2016-07-08T18:55:51.460Z'},
{'depth': 1.91,
'depthError': 0.27,
'dmin': 0.011309999999999999,
'gap': 43.0,
'horizontalError': 0.16,
'id': 'nc72659556',
'latitude': 38.8346667,
'locationSource': 'nc',
'longitude': -122.80866670000002,
'mag': 1.15,
'magError': 0.16,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 34.0,
'place': '7km W of Cobb, California',
'rms': 0.02,
'status': 'reviewed',
'time': '2016-07-08T18:26:09.430Z',
'type': 'earthquake',
'updated': '2016-07-08T23:38:02.398Z'},
{'depth': 15.07,
'depthError': 0.87,
'dmin': 0.1075,
'gap': 128.0,
'horizontalError': 0.72,
'id': 'nc72659551',
'latitude': 39.6765,
'locationSource': 'nc',
'longitude': -123.44366670000001,
'mag': 1.86,
'magError': 0.10400000000000001,
'magNst': 12.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 10.0,
'place': '3km ESE of Laytonville, California',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-08T18:21:35.510Z',
'type': 'earthquake',
'updated': '2016-07-09T02:16:03.488Z'},
{'depth': 33.26,
'depthError': 4.9,
'dmin': 6.754,
'gap': 86.0,
'horizontalError': 8.8,
'id': 'us100061zw',
'latitude': -1.9806,
'locationSource': 'us',
'longitude': 138.9452,
'mag': 4.7,
'magError': 0.071,
'magNst': 61.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '195km WNW of Abepura, Indonesia',
'rms': 0.97,
'status': 'reviewed',
'time': '2016-07-08T18:08:32.010Z',
'type': 'earthquake',
'updated': '2016-07-09T13:59:23.551Z'},
{'depth': 9.07,
'depthError': 0.59,
'dmin': 0.0292,
'gap': 72.0,
'horizontalError': 0.29,
'id': 'ci37410095',
'latitude': 32.911666700000005,
'locationSource': 'ci',
'longitude': -115.52816670000001,
'mag': 2.15,
'magError': 0.182,
'magNst': 50.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 35.0,
'place': '8km S of Brawley, CA',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-08T17:58:50.960Z',
'type': 'earthquake',
'updated': '2016-07-08T18:43:57.619Z'},
{'depth': 11.72,
'depthError': 0.33,
'dmin': 0.046239999999999996,
'gap': 44.0,
'horizontalError': 0.12,
'id': 'ci37410087',
'latitude': 34.0278333,
'locationSource': 'ci',
'longitude': -116.98983329999999,
'mag': 1.51,
'magError': 0.17600000000000002,
'magNst': 56.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 65.0,
'place': '5km E of Yucaipa, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-08T17:53:02.020Z',
'type': 'earthquake',
'updated': '2016-07-08T18:33:16.870Z'},
{'depth': 15.56,
'depthError': 2.25,
'dmin': 0.2043,
'gap': 193.0,
'horizontalError': 0.99,
'id': 'uw61163787',
'latitude': 42.2591667,
'locationSource': 'uw',
'longitude': -121.9805,
'mag': 1.25,
'magError': 0.172,
'magNst': 3.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 3.0,
'place': '16km WNW of Klamath Falls, Oregon',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-08T17:52:56.400Z',
'type': 'earthquake',
'updated': '2016-07-08T18:04:29.851Z'},
{'depth': 56.2,
'depthError': 2.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13743948',
'latitude': 60.1634,
'locationSource': 'ak',
'longitude': -150.9922,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '28km SE of Cohoe, Alaska',
'rms': 0.97,
'status': 'automatic',
'time': '2016-07-08T17:52:23.000Z',
'type': 'earthquake',
'updated': '2016-07-08T18:26:48.096Z'},
{'depth': 0.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743945',
'latitude': 61.3673,
'locationSource': 'ak',
'longitude': -140.0449,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '153km WNW of Haines Junction, Canada',
'rms': 0.75,
'status': 'automatic',
'time': '2016-07-08T17:41:11.000Z',
'type': 'earthquake',
'updated': '2016-07-08T18:02:35.794Z'},
{'depth': -0.92,
'depthError': 31.61,
'dmin': 0.1094,
'gap': 69.0,
'horizontalError': 0.53,
'id': 'ci37410071',
'latitude': 34.7476667,
'locationSource': 'ci',
'longitude': -116.43116670000002,
'mag': 1.23,
'magError': 0.132,
'magNst': 17.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '25km W of Ludlow, CA',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-08T17:31:30.870Z',
'type': 'quarry blast',
'updated': '2016-07-08T19:55:31.932Z'},
{'depth': 2.2,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13743942',
'latitude': 60.3348,
'locationSource': 'ak',
'longitude': -141.4871,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km ENE of Cape Yakataga, Alaska',
'rms': 0.79,
'status': 'automatic',
'time': '2016-07-08T17:28:49.000Z',
'type': 'earthquake',
'updated': '2016-07-08T18:02:34.313Z'},
{'depth': 12.7,
'depthError': 0.47,
'dmin': 0.06,
'gap': 101.0,
'horizontalError': 0.6,
'id': 'mb80160309',
'latitude': 46.7355,
'locationSource': 'mb',
'longitude': -112.2443333,
'mag': 1.06,
'magError': 0.057999999999999996,
'magNst': 2.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 15.0,
'place': '13km W of Helena Valley Northwest, Montana',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-08T17:19:55.150Z',
'type': 'earthquake',
'updated': '2016-07-08T20:18:25.900Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 4.062,
'gap': 161.0,
'horizontalError': 10.1,
'id': 'us100061z6',
'latitude': 19.6964,
'locationSource': 'us',
'longitude': -109.0157,
'mag': 4.7,
'magError': 0.034,
'magNst': 268.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '230km ENE of Socorro Island, Mexico',
'rms': 1.1,
'status': 'reviewed',
'time': '2016-07-08T17:12:41.730Z',
'type': 'earthquake',
'updated': '2016-07-09T13:20:35.959Z'},
{'depth': 11.46,
'depthError': 0.81,
'dmin': 0.1302,
'gap': 59.0,
'horizontalError': 0.33,
'id': 'uw61163777',
'latitude': 47.6933333,
'locationSource': 'uw',
'longitude': -121.49600000000001,
'mag': 1.34,
'magError': 0.040999999999999995,
'magNst': 6.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 13.0,
'place': '23km SE of Gold Bar, Washington',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-08T17:11:27.190Z',
'type': 'earthquake',
'updated': '2016-07-08T18:13:01.322Z'},
{'depth': 12.62,
'depthError': 1.33,
'dmin': 0.1556,
'gap': 148.0,
'horizontalError': 0.42,
'id': 'se60150416',
'latitude': 35.4318333,
'locationSource': 'se',
'longitude': -84.3151667,
'mag': 1.42,
'magError': 0.094,
'magNst': 5.0,
'magSource': 'se',
'magType': 'md',
'net': 'se',
'nst': 5.0,
'place': '10km SSE of Madisonville, Tennessee',
'rms': 0.02,
'status': 'reviewed',
'time': '2016-07-08T17:03:55.670Z',
'type': 'earthquake',
'updated': '2016-07-08T23:32:39.310Z'},
{'depth': 10.0,
'depthError': 2.0,
'dmin': 10.695,
'gap': 159.0,
'horizontalError': 5.5,
'id': 'us100061yi',
'latitude': -54.3715,
'locationSource': 'us',
'longitude': 140.59799999999998,
'mag': 5.4,
'magError': 0.106,
'magNst': 30.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'West of Macquarie Island',
'rms': 0.79,
'status': 'reviewed',
'time': '2016-07-08T16:48:41.770Z',
'type': 'earthquake',
'updated': '2016-07-08T17:02:29.719Z'},
{'depth': 10.52,
'depthError': 0.69,
'dmin': 0.030139999999999997,
'gap': 77.0,
'horizontalError': 0.41,
'id': 'ci37409975',
'latitude': 32.9095,
'locationSource': 'ci',
'longitude': -115.52616670000002,
'mag': 1.45,
'magError': 0.18600000000000003,
'magNst': 12.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '8km S of Brawley, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-08T16:28:51.980Z',
'type': 'earthquake',
'updated': '2016-07-08T18:14:58.786Z'},
{'depth': 10.15,
'depthError': 0.3,
'dmin': 0.02816,
'gap': 74.0,
'horizontalError': 0.37,
'id': 'hv61328691',
'latitude': 19.3588333,
'locationSource': 'hv',
'longitude': -155.1901667,
'mag': 1.44,
'magError': 0.09699999999999999,
'magNst': 17.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 43.0,
'place': '9km SSE of Volcano, Hawaii',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-08T16:27:29.680Z',
'type': 'earthquake',
'updated': '2016-07-08T17:26:21.890Z'},
{'depth': 11.44,
'depthError': 1.23,
'dmin': 0.1991,
'gap': 125.0,
'horizontalError': 0.35,
'id': 'ci37409967',
'latitude': 36.019,
'locationSource': 'ci',
'longitude': -118.86816670000002,
'mag': 1.48,
'magError': 0.261,
'magNst': 11.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 16.0,
'place': '14km ESE of Porterville, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-08T16:24:01.610Z',
'type': 'earthquake',
'updated': '2016-07-08T20:06:52.785Z'},
{'depth': -1.6,
'depthError': 31.61,
'dmin': 0.09008,
'gap': 102.0,
'horizontalError': 0.84,
'id': 'uw61163742',
'latitude': 43.512666700000004,
'locationSource': 'uw',
'longitude': -121.8155,
'mag': 1.83,
'magError': 0.084,
'magNst': 17.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 10.0,
'place': '30km SW of La Pine, Oregon',
'rms': 0.35,
'status': 'reviewed',
'time': '2016-07-08T16:10:12.180Z',
'type': 'explosion',
'updated': '2016-07-08T16:30:17.430Z'},
{'depth': 4.22,
'depthError': 2.2,
'dmin': 0.1811,
'gap': 76.0,
'horizontalError': 0.53,
'id': 'uu60155117',
'latitude': 38.2726667,
'locationSource': 'uu',
'longitude': -113.0861667,
'mag': 1.88,
'magError': 0.043,
'magNst': 5.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 19.0,
'place': '15km SSW of Milford, Utah',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-08T16:00:33.930Z',
'type': 'earthquake',
'updated': '2016-07-08T20:54:36.840Z'},
{'depth': 43.5,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13743863',
'latitude': 61.4138,
'locationSource': 'ak',
'longitude': -150.7807,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km WSW of Big Lake, Alaska',
'rms': 0.8,
'status': 'automatic',
'time': '2016-07-08T15:43:22.000Z',
'type': 'earthquake',
'updated': '2016-07-08T16:19:14.179Z'},
{'depth': 9.8,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13743866',
'latitude': 64.2014,
'locationSource': 'ak',
'longitude': -147.5407,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '47km SW of Salcha, Alaska',
'rms': 0.83,
'status': 'automatic',
'time': '2016-07-08T15:42:56.000Z',
'type': 'earthquake',
'updated': '2016-07-08T16:19:17.063Z'},
{'depth': 10.66,
'depthError': 0.43,
'dmin': 0.0315,
'gap': 72.0,
'horizontalError': 0.29,
'id': 'ci37409927',
'latitude': 32.9118333,
'locationSource': 'ci',
'longitude': -115.52533329999999,
'mag': 1.64,
'magError': 0.187,
'magNst': 25.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 20.0,
'place': '7km S of Brawley, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-08T15:40:17.280Z',
'type': 'earthquake',
'updated': '2016-07-08T18:10:02.056Z'},
{'depth': 9.46,
'depthError': 0.7,
'dmin': 0.027569999999999997,
'gap': 82.0,
'horizontalError': 0.39,
'id': 'ci37409871',
'latitude': 32.9103333,
'locationSource': 'ci',
'longitude': -115.5296667,
'mag': 1.48,
'magError': 0.162,
'magNst': 17.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 14.0,
'place': '8km S of Brawley, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-08T15:14:00.100Z',
'type': 'earthquake',
'updated': '2016-07-08T17:42:57.312Z'},
{'depth': 5.78,
'depthError': 0.61,
'dmin': 0.022080000000000002,
'gap': 99.0,
'horizontalError': 0.45,
'id': 'ci37409863',
'latitude': 32.9003333,
'locationSource': 'ci',
'longitude': -115.5345,
'mag': 1.64,
'magError': 0.21,
'magNst': 23.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 23.0,
'place': '7km NNE of Imperial, CA',
'rms': 0.29,
'status': 'reviewed',
'time': '2016-07-08T15:12:36.570Z',
'type': 'earthquake',
'updated': '2016-07-08T17:38:02.777Z'},
{'depth': 80.88,
'depthError': 7.9,
'dmin': 2.282,
'gap': 70.0,
'horizontalError': 3.6,
'id': 'us100062g2',
'latitude': -8.2641,
'locationSource': 'us',
'longitude': 108.2455,
'mag': 4.4,
'magError': 0.092,
'magNst': 34.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '50km S of Sukamenak, Indonesia',
'rms': 1.42,
'status': 'reviewed',
'time': '2016-07-08T15:10:02.350Z',
'type': 'earthquake',
'updated': '2016-07-10T21:12:15.997Z'},
{'depth': 6.98,
'depthError': 0.41,
'dmin': 0.02888,
'gap': 96.0,
'horizontalError': 0.33,
'id': 'ci37409855',
'latitude': 32.903833299999995,
'locationSource': 'ci',
'longitude': -115.5265,
'mag': 1.54,
'magError': 0.23,
'magNst': 18.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 16.0,
'place': '7km NNE of Imperial, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-08T15:09:14.100Z',
'type': 'earthquake',
'updated': '2016-07-08T17:26:24.500Z'},
{'depth': 5.89,
'depthError': 0.58,
'dmin': 0.024640000000000002,
'gap': 75.0,
'horizontalError': 0.42,
'id': 'ci37409847',
'latitude': 32.9125,
'locationSource': 'ci',
'longitude': -115.5345,
'mag': 1.41,
'magError': 0.195,
'magNst': 11.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 16.0,
'place': '7km S of Brawley, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-08T15:08:18.890Z',
'type': 'earthquake',
'updated': '2016-07-08T16:28:51.381Z'},
{'depth': 10.15,
'depthError': 0.65,
'dmin': 0.03167,
'gap': 90.0,
'horizontalError': 0.37,
'id': 'ci37409839',
'latitude': 32.9123333,
'locationSource': 'ci',
'longitude': -115.52533329999999,
'mag': 1.7,
'magError': 0.2,
'magNst': 25.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 20.0,
'place': '7km S of Brawley, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-08T15:05:19.720Z',
'type': 'earthquake',
'updated': '2016-07-08T16:23:56.750Z'},
{'depth': 9.89,
'depthError': 0.53,
'dmin': 0.033530000000000004,
'gap': 71.0,
'horizontalError': 0.31,
'id': 'ci37409831',
'latitude': 32.9066667,
'locationSource': 'ci',
'longitude': -115.52133329999998,
'mag': 1.9,
'magError': 0.16,
'magNst': 39.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 31.0,
'place': '8km NE of Imperial, CA',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-08T14:59:23.120Z',
'type': 'earthquake',
'updated': '2016-07-08T16:06:05.574Z'},
{'depth': 20.3,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13743859',
'latitude': 59.6934,
'locationSource': 'ak',
'longitude': -150.1878,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km SW of Seward, Alaska',
'rms': 0.69,
'status': 'automatic',
'time': '2016-07-08T14:53:31.000Z',
'type': 'earthquake',
'updated': '2016-07-08T15:28:10.711Z'},
{'depth': 98.7,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13743856',
'latitude': 62.9994,
'locationSource': 'ak',
'longitude': -150.7046,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '81km NNW of Talkeetna, Alaska',
'rms': 0.43,
'status': 'automatic',
'time': '2016-07-08T14:40:15.000Z',
'type': 'earthquake',
'updated': '2016-07-08T15:03:47.750Z'},
{'depth': 0.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743852',
'latitude': 61.3044,
'locationSource': 'ak',
'longitude': -152.4982,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km N of Redoubt Volcano, Alaska',
'rms': 0.6,
'status': 'automatic',
'time': '2016-07-08T14:27:44.000Z',
'type': 'earthquake',
'updated': '2016-07-08T15:03:46.885Z'},
{'depth': 40.0,
'depthError': 1.7,
'dmin': 0.16888327,
'gap': 316.8,
'horizontalError': 3.8,
'id': 'pr16190002',
'latitude': 18.5636,
'locationSource': 'pr',
'longitude': -64.525,
'mag': 2.6,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 8.0,
'place': '18km NNE of Road Town, British Virgin Islands',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-08T14:23:03.900Z',
'type': 'earthquake',
'updated': '2016-07-08T14:45:16.377Z'},
{'depth': 7.26,
'depthError': 0.88,
'dmin': 0.06758,
'gap': 45.0,
'horizontalError': 0.27,
'id': 'hv61328646',
'latitude': 19.3041667,
'locationSource': 'hv',
'longitude': -155.455,
'mag': 1.71,
'magError': 0.155,
'magNst': 19.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 49.0,
'place': '11km NNE of Pahala, Hawaii',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-08T14:04:24.350Z',
'type': 'earthquake',
'updated': '2016-07-08T17:10:40.610Z'},
{'depth': 7.86,
'depthError': 0.39,
'dmin': 0.034,
'gap': 102.0,
'horizontalError': 0.34,
'id': 'mb80160284',
'latitude': 45.3286667,
'locationSource': 'mb',
'longitude': -112.59916670000001,
'mag': 2.23,
'magError': 0.185,
'magNst': 14.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 21.0,
'place': '12km NNE of Dillon, Montana',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-08T13:58:45.080Z',
'type': 'earthquake',
'updated': '2016-07-08T14:16:22.230Z'},
{'depth': 3.052,
'depthError': 0.57,
'dmin': 0.01937,
'gap': 68.0,
'horizontalError': 0.44,
'id': 'hv61328641',
'latitude': 19.434,
'locationSource': 'hv',
'longitude': -155.611,
'mag': 2.36,
'magError': 0.174,
'magNst': 8.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 17.0,
'place': '26km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-08T13:58:25.760Z',
'type': 'earthquake',
'updated': '2016-07-08T18:04:58.590Z'},
{'depth': 1.24,
'depthError': 0.18,
'dmin': 0.008765,
'gap': 67.0,
'horizontalError': 0.12,
'id': 'nc72659501',
'latitude': 38.8171667,
'locationSource': 'nc',
'longitude': -122.80216670000001,
'mag': 1.01,
'magError': 0.087,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 36.0,
'place': '5km NW of The Geysers, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-08T13:10:52.520Z',
'type': 'earthquake',
'updated': '2016-07-08T18:20:02.468Z'},
{'depth': 27.9,
'depthError': 1.7,
'dmin': nan,
'gap': nan,
'horizontalError': 1.7,
'id': 'ak13743786',
'latitude': 61.0024,
'locationSource': 'ak',
'longitude': -151.6082,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '38km NNW of Nikiski, Alaska',
'rms': 1.29,
'status': 'automatic',
'time': '2016-07-08T12:45:43.000Z',
'type': 'earthquake',
'updated': '2016-07-08T13:23:15.688Z'},
{'depth': 3.68,
'depthError': 2.39,
'dmin': 0.1309,
'gap': 80.0,
'horizontalError': 0.45,
'id': 'ci37409823',
'latitude': 33.0225,
'locationSource': 'ci',
'longitude': -115.9315,
'mag': 1.14,
'magError': 0.204,
'magNst': 15.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 20.0,
'place': '23km SE of Ocotillo Wells, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-08T12:37:23.180Z',
'type': 'earthquake',
'updated': '2016-07-08T13:13:13.929Z'},
{'depth': 89.2,
'depthError': 2.4,
'dmin': nan,
'gap': nan,
'horizontalError': 2.4,
'id': 'ak13743728',
'latitude': 59.8857,
'locationSource': 'ak',
'longitude': -152.905,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km WNW of Anchor Point, Alaska',
'rms': 0.59,
'status': 'automatic',
'time': '2016-07-08T12:26:01.000Z',
'type': 'earthquake',
'updated': '2016-07-08T12:59:11.729Z'},
{'depth': 46.01,
'depthError': 11.2,
'dmin': 3.176,
'gap': 126.0,
'horizontalError': 4.8,
'id': 'us100061wu',
'latitude': -2.4891,
'locationSource': 'us',
'longitude': 129.0983,
'mag': 4.3,
'magError': 0.16,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '80km ENE of Taniwel, Indonesia',
'rms': 1.37,
'status': 'reviewed',
'time': '2016-07-08T12:25:32.430Z',
'type': 'earthquake',
'updated': '2016-07-08T12:59:09.303Z'},
{'depth': 45.41,
'depthError': 9.3,
'dmin': 2.206,
'gap': 98.0,
'horizontalError': 5.5,
'id': 'us100061wq',
'latitude': 38.0623,
'locationSource': 'us',
'longitude': 72.8639,
'mag': 4.4,
'magError': 0.084,
'magNst': 41.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '97km W of Murghob, Tajikistan',
'rms': 0.84,
'status': 'reviewed',
'time': '2016-07-08T12:10:31.830Z',
'type': 'earthquake',
'updated': '2016-07-08T12:43:54.418Z'},
{'depth': 2.572,
'depthError': 0.53,
'dmin': 0.01976,
'gap': 89.0,
'horizontalError': 0.43,
'id': 'hv61328506',
'latitude': 19.4163333,
'locationSource': 'hv',
'longitude': -155.61233330000002,
'mag': 1.07,
'magError': 0.08,
'magNst': 3.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 14.0,
'place': '26km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-08T12:00:48.770Z',
'type': 'earthquake',
'updated': '2016-07-08T15:47:36.260Z'},
{'depth': 3.49,
'depthError': 1.06,
'dmin': 0.01957,
'gap': 111.0,
'horizontalError': 0.24,
'id': 'nc72659491',
'latitude': 36.672,
'locationSource': 'nc',
'longitude': -121.29666670000002,
'mag': 1.11,
'magError': 0.17,
'magNst': 20.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 23.0,
'place': '16km SSE of Ridgemark, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-08T11:11:59.410Z',
'type': 'earthquake',
'updated': '2016-07-08T23:18:03.352Z'},
{'depth': 0.91,
'depthError': 1.03,
'dmin': 0.2062,
'gap': 66.0,
'horizontalError': 0.26,
'id': 'ci37409791',
'latitude': 35.0448333,
'locationSource': 'ci',
'longitude': -119.06083329999998,
'mag': 1.78,
'magError': 0.174,
'magNst': 38.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 30.0,
'place': '16km NW of Grapevine, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-08T11:10:06.230Z',
'type': 'earthquake',
'updated': '2016-07-08T15:22:42.620Z'},
{'depth': 53.9,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13743665',
'latitude': 59.0945,
'locationSource': 'ak',
'longitude': -152.0571,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '67km SSW of Homer, Alaska',
'rms': 0.47,
'status': 'automatic',
'time': '2016-07-08T11:05:39.000Z',
'type': 'earthquake',
'updated': '2016-07-08T11:20:28.182Z'},
{'depth': 11.3,
'depthError': 0.19,
'dmin': 0.003811,
'gap': 23.0,
'horizontalError': 0.11,
'id': 'ci37409783',
'latitude': 34.0013333,
'locationSource': 'ci',
'longitude': -117.564,
'mag': 2.04,
'magError': 0.184,
'magNst': 102.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 100.0,
'place': '4km WNW of Mira Loma, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-08T11:04:12.990Z',
'type': 'earthquake',
'updated': '2016-07-08T15:14:19.550Z'},
{'depth': 77.94,
'depthError': 7.6,
'dmin': 3.839,
'gap': 134.0,
'horizontalError': 10.2,
'id': 'us100061wf',
'latitude': 49.4827,
'locationSource': 'us',
'longitude': 155.7063,
'mag': 4.4,
'magError': 0.053,
'magNst': 103.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': "136km SSW of Severo-Kuril'sk, Russia",
'rms': 0.86,
'status': 'reviewed',
'time': '2016-07-08T10:51:57.690Z',
'type': 'earthquake',
'updated': '2016-07-08T13:52:38.948Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 9.273,
'gap': 96.0,
'horizontalError': 6.1,
'id': 'us100061vb',
'latitude': -29.1443,
'locationSource': 'us',
'longitude': 61.0354,
'mag': 4.7,
'magError': 0.152,
'magNst': 13.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'Southwest Indian Ridge',
'rms': 0.55,
'status': 'reviewed',
'time': '2016-07-08T10:08:13.680Z',
'type': 'earthquake',
'updated': '2016-07-08T11:07:43.356Z'},
{'depth': 3.13,
'depthError': 0.49,
'dmin': 0.06445,
'gap': 47.0,
'horizontalError': 0.13,
'id': 'ci37409767',
'latitude': 33.9416667,
'locationSource': 'ci',
'longitude': -116.03,
'mag': 1.93,
'magError': 0.136,
'magNst': 60.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 53.0,
'place': '22km S of Twentynine Palms, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-08T09:56:41.200Z',
'type': 'earthquake',
'updated': '2016-07-08T14:55:13.970Z'},
{'depth': 20.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13743608',
'latitude': 60.4337,
'locationSource': 'ak',
'longitude': -143.3014,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '63km NW of Cape Yakataga, Alaska',
'rms': 0.16,
'status': 'automatic',
'time': '2016-07-08T09:53:34.000Z',
'type': 'earthquake',
'updated': '2016-07-08T10:29:55.202Z'},
{'depth': 2.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743602',
'latitude': 61.2899,
'locationSource': 'ak',
'longitude': -152.5044,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.55,
'status': 'automatic',
'time': '2016-07-08T09:50:05.000Z',
'type': 'earthquake',
'updated': '2016-07-08T10:29:55.864Z'},
{'depth': 0.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743599',
'latitude': 61.2899,
'locationSource': 'ak',
'longitude': -152.442,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km NW of Nikiski, Alaska',
'rms': 0.7,
'status': 'automatic',
'time': '2016-07-08T09:48:18.000Z',
'type': 'earthquake',
'updated': '2016-07-08T10:29:53.069Z'},
{'depth': 15.2,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743597',
'latitude': 62.2722,
'locationSource': 'ak',
'longitude': -149.687,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '15km NE of Y, Alaska',
'rms': 0.39,
'status': 'automatic',
'time': '2016-07-08T09:44:36.000Z',
'type': 'earthquake',
'updated': '2016-07-08T10:05:11.156Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 4.32,
'gap': 67.0,
'horizontalError': 8.3,
'id': 'us100061v2',
'latitude': -32.5405,
'locationSource': 'us',
'longitude': 122.3456,
'mag': 5.2,
'magError': 0.075,
'magNst': 59.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '152km NNE of Esperance, Australia',
'rms': 1.4,
'status': 'reviewed',
'time': '2016-07-08T09:40:51.560Z',
'type': 'earthquake',
'updated': '2016-07-08T10:00:44.658Z'},
{'depth': -0.9,
'depthError': 1.1,
'dmin': 0.1309,
'gap': 88.0,
'horizontalError': 0.3,
'id': 'nc72659466',
'latitude': 39.025999999999996,
'locationSource': 'nc',
'longitude': -122.57833329999998,
'mag': 1.84,
'magError': 0.29600000000000004,
'magNst': 27.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 19.0,
'place': '8km NNE of Clearlake, California',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-08T09:29:53.900Z',
'type': 'earthquake',
'updated': '2016-07-09T00:29:02.289Z'},
{'depth': 5.2,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13743593',
'latitude': 63.5068,
'locationSource': 'ak',
'longitude': -150.9979,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '102km W of Cantwell, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-08T08:34:15.000Z',
'type': 'earthquake',
'updated': '2016-07-08T09:14:32.857Z'},
{'depth': 10.59,
'depthError': 0.48,
'dmin': 0.04643,
'gap': 63.0,
'horizontalError': 0.26,
'id': 'nc72659461',
'latitude': 36.5775,
'locationSource': 'nc',
'longitude': -121.1325,
'mag': 1.22,
'magError': 0.201,
'magNst': 21.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 24.0,
'place': '24km NE of Soledad, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-08T08:32:18.760Z',
'type': 'earthquake',
'updated': '2016-07-09T00:36:02.812Z'},
{'depth': 6.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13743592',
'latitude': 63.5196,
'locationSource': 'ak',
'longitude': -150.9903,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '102km W of Cantwell, Alaska',
'rms': 0.34,
'status': 'automatic',
'time': '2016-07-08T08:13:58.000Z',
'type': 'earthquake',
'updated': '2016-07-08T08:50:13.286Z'},
{'depth': 2.53,
'depthError': 6.3,
'dmin': 0.032,
'gap': 39.0,
'horizontalError': 1.0,
'id': 'us100061uf',
'latitude': 35.6567,
'locationSource': 'us',
'longitude': -97.1508,
'mag': 2.5,
'magError': 0.076,
'magNst': 45.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '4km E of Luther, Oklahoma',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-08T07:45:21.370Z',
'type': 'earthquake',
'updated': '2016-07-08T07:57:21.585Z'},
{'depth': 25.4,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13743591',
'latitude': 61.9452,
'locationSource': 'ak',
'longitude': -148.8638,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '16km N of Sutton-Alpine, Alaska',
'rms': 0.27,
'status': 'automatic',
'time': '2016-07-08T07:43:17.000Z',
'type': 'earthquake',
'updated': '2016-07-08T08:00:22.159Z'},
{'depth': 26.78,
'depthError': 0.52,
'dmin': 0.1196,
'gap': 247.0,
'horizontalError': 0.66,
'id': 'nc72659456',
'latitude': 40.4575,
'locationSource': 'nc',
'longitude': -124.4925,
'mag': 2.18,
'magError': 0.302,
'magNst': 21.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 21.0,
'place': '23km SW of Ferndale, California',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-08T07:37:05.460Z',
'type': 'earthquake',
'updated': '2016-07-09T02:57:03.622Z'},
{'depth': 44.1,
'depthError': 1.6,
'dmin': nan,
'gap': nan,
'horizontalError': 2.0,
'id': 'ak13743586',
'latitude': 51.3986,
'locationSource': 'ak',
'longitude': -177.0779,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km SSW of Adak, Alaska',
'rms': 0.32,
'status': 'reviewed',
'time': '2016-07-08T07:25:17.000Z',
'type': 'earthquake',
'updated': '2016-07-08T18:03:50.255Z'},
{'depth': 226.82,
'depthError': 5.7,
'dmin': 2.763,
'gap': 92.0,
'horizontalError': 9.6,
'id': 'us100061ua',
'latitude': 1.8234,
'locationSource': 'us',
'longitude': 124.80799999999999,
'mag': 4.5,
'magError': 0.09699999999999999,
'magNst': 31.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '37km N of Manado, Indonesia',
'rms': 0.89,
'status': 'reviewed',
'time': '2016-07-08T07:21:38.860Z',
'type': 'earthquake',
'updated': '2016-07-08T07:37:26.231Z'},
{'depth': 65.1,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13743531',
'latitude': 62.9411,
'locationSource': 'ak',
'longitude': -149.4414,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '55km SSW of Cantwell, Alaska',
'rms': 0.44,
'status': 'automatic',
'time': '2016-07-08T07:06:15.000Z',
'type': 'earthquake',
'updated': '2016-07-08T07:35:55.515Z'},
{'depth': 35.41,
'depthError': 3.5,
'dmin': 2.121,
'gap': 94.0,
'horizontalError': 7.0,
'id': 'us100061u5',
'latitude': -0.3772,
'locationSource': 'us',
'longitude': -80.6781,
'mag': 4.6,
'magError': 0.054000000000000006,
'magNst': 103.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '38km NW of Bahia de Caraquez, Ecuador',
'rms': 1.03,
'status': 'reviewed',
'time': '2016-07-08T07:03:53.960Z',
'type': 'earthquake',
'updated': '2016-07-08T07:21:20.057Z'},
{'depth': 102.1,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13743529',
'latitude': 59.9858,
'locationSource': 'ak',
'longitude': -152.9388,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '56km S of Redoubt Volcano, Alaska',
'rms': 0.59,
'status': 'automatic',
'time': '2016-07-08T06:59:49.000Z',
'type': 'earthquake',
'updated': '2016-07-08T07:35:54.886Z'},
{'depth': 5.51,
'depthError': 0.37,
'dmin': 0.02723,
'gap': 75.0,
'horizontalError': 0.27,
'id': 'ci37409743',
'latitude': 32.8916667,
'locationSource': 'ci',
'longitude': -115.5305,
'mag': 1.38,
'magError': 0.198,
'magNst': 19.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '6km NE of Imperial, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-08T06:55:56.210Z',
'type': 'earthquake',
'updated': '2016-07-08T14:40:37.522Z'},
{'depth': 8.839,
'depthError': 0.63,
'dmin': 0.0641,
'gap': 46.0,
'horizontalError': 0.29,
'id': 'hv61328396',
'latitude': 19.2985,
'locationSource': 'hv',
'longitude': -155.4563333,
'mag': 1.71,
'magError': 0.131,
'magNst': 18.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 44.0,
'place': '10km NNE of Pahala, Hawaii',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-08T06:41:53.450Z',
'type': 'earthquake',
'updated': '2016-07-08T16:13:53.480Z'},
{'depth': 14.2,
'depthError': 0.6,
'dmin': 0.1355,
'gap': 152.0,
'horizontalError': 0.35,
'id': 'uw61163602',
'latitude': 47.1668333,
'locationSource': 'uw',
'longitude': -122.185,
'mag': 1.06,
'magError': 0.081,
'magNst': 6.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 10.0,
'place': '1km S of Bonney Lake, Washington',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-08T06:14:58.080Z',
'type': 'earthquake',
'updated': '2016-07-08T17:32:18.890Z'},
{'depth': 5.65,
'depthError': 0.83,
'dmin': 0.136,
'gap': 54.0,
'horizontalError': 0.17,
'id': 'ci37409727',
'latitude': 33.0168333,
'locationSource': 'ci',
'longitude': -116.35716670000001,
'mag': 1.57,
'magError': 0.11800000000000001,
'magNst': 48.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 53.0,
'place': '24km ESE of Julian, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-08T06:11:19.880Z',
'type': 'earthquake',
'updated': '2016-07-08T14:27:58.100Z'},
{'depth': 36.38,
'depthError': 11.3,
'dmin': 1.751,
'gap': 174.0,
'horizontalError': 15.1,
'id': 'us100061tv',
'latitude': 52.858999999999995,
'locationSource': 'us',
'longitude': 171.2259,
'mag': 4.1,
'magError': 0.085,
'magNst': 38.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '132km W of Attu Station, Alaska',
'rms': 0.78,
'status': 'reviewed',
'time': '2016-07-08T06:00:55.530Z',
'type': 'earthquake',
'updated': '2016-07-08T06:17:38.798Z'},
{'depth': 6.57,
'depthError': 1.0,
'dmin': 0.1354,
'gap': 54.0,
'horizontalError': 0.29,
'id': 'ci37409719',
'latitude': 33.0168333,
'locationSource': 'ci',
'longitude': -116.359,
'mag': 1.5,
'magError': 0.15,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 38.0,
'place': '24km ESE of Julian, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-08T05:55:35.760Z',
'type': 'earthquake',
'updated': '2016-07-08T13:14:39.920Z'},
{'depth': 10.89,
'depthError': 0.81,
'dmin': 0.1325,
'gap': 60.0,
'horizontalError': 0.31,
'id': 'uw61163512',
'latitude': 47.6921667,
'locationSource': 'uw',
'longitude': -121.49266670000002,
'mag': 1.82,
'magError': 0.127,
'magNst': 29.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 16.0,
'place': '23km SE of Gold Bar, Washington',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-08T05:44:52.850Z',
'type': 'earthquake',
'updated': '2016-07-08T17:18:14.140Z'},
{'depth': 9.02,
'depthError': 2.79,
'dmin': 0.1419,
'gap': 121.0,
'horizontalError': 0.69,
'id': 'nc72659436',
'latitude': 39.2331667,
'locationSource': 'nc',
'longitude': -123.12183329999999,
'mag': 1.3,
'magError': 0.147,
'magNst': 8.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 8.0,
'place': '7km ESE of Redwood Valley, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-08T05:39:33.870Z',
'type': 'earthquake',
'updated': '2016-07-09T04:00:05.063Z'},
{'depth': 4.04,
'depthError': 0.36,
'dmin': 0.0309,
'gap': 79.0,
'horizontalError': 0.24,
'id': 'nc72659431',
'latitude': 38.7798333,
'locationSource': 'nc',
'longitude': -122.77883329999999,
'mag': 1.68,
'magError': 0.23399999999999999,
'magNst': 21.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 19.0,
'place': '1km W of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-08T05:32:25.970Z',
'type': 'earthquake',
'updated': '2016-07-08T23:44:03.416Z'},
{'depth': 16.51,
'depthError': 0.57,
'dmin': 0.07082999999999999,
'gap': 73.0,
'horizontalError': 0.37,
'id': 'uw61163497',
'latitude': 45.634666700000004,
'locationSource': 'uw',
'longitude': -122.7413333,
'mag': 1.46,
'magError': 0.125,
'magNst': 11.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 13.0,
'place': '6km W of Vancouver, Washington',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-08T05:31:19.720Z',
'type': 'earthquake',
'updated': '2016-07-08T17:12:06.700Z'},
{'depth': 6.35,
'depthError': 0.42,
'dmin': 0.02975,
'gap': 64.0,
'horizontalError': 0.17,
'id': 'nc72659426',
'latitude': 36.7485,
'locationSource': 'nc',
'longitude': -121.3375,
'mag': 1.77,
'magError': 0.26,
'magNst': 43.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 45.0,
'place': '7km SSE of Ridgemark, California',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-08T05:25:35.330Z',
'type': 'earthquake',
'updated': '2016-07-09T00:25:02.789Z'},
{'depth': 89.4,
'depthError': 2.0,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13743476',
'latitude': 62.9203,
'locationSource': 'ak',
'longitude': -150.3929,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km NNW of Talkeetna, Alaska',
'rms': 0.24,
'status': 'automatic',
'time': '2016-07-08T05:24:57.000Z',
'type': 'earthquake',
'updated': '2016-07-08T05:49:14.173Z'},
{'depth': 105.0,
'depthError': 1.4,
'dmin': 0.1643917,
'gap': 154.8,
'horizontalError': 2.5,
'id': 'pr16190001',
'latitude': 18.3845,
'locationSource': 'pr',
'longitude': -66.3848,
'mag': 2.7,
'magError': 0.0,
'magNst': 10.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 10.0,
'place': '0km SSW of Miranda, Puerto Rico',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-08T05:12:10.400Z',
'type': 'earthquake',
'updated': '2016-07-08T08:10:55.748Z'},
{'depth': 5.0,
'depthError': 2.0,
'dmin': 0.237,
'gap': 36.0,
'horizontalError': 2.2,
'id': 'us100061tl',
'latitude': 35.0701,
'locationSource': 'us',
'longitude': -97.5793,
'mag': 2.7,
'magError': 0.076,
'magNst': 45.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '10km SE of Blanchard, Oklahoma',
'rms': 0.71,
'status': 'reviewed',
'time': '2016-07-08T04:41:16.070Z',
'type': 'earthquake',
'updated': '2016-07-08T05:35:49.475Z'},
{'depth': 36.89,
'depthError': 5.9,
'dmin': 2.197,
'gap': 88.0,
'horizontalError': 6.6,
'id': 'us100061tj',
'latitude': -0.4094,
'locationSource': 'us',
'longitude': -80.7855,
'mag': 5.3,
'magError': 0.023,
'magNst': 651.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '46km WNW of Bahia de Caraquez, Ecuador',
'rms': 0.73,
'status': 'reviewed',
'time': '2016-07-08T04:28:47.580Z',
'type': 'earthquake',
'updated': '2016-07-08T19:44:25.040Z'},
{'depth': 4.47,
'depthError': 0.29,
'dmin': 0.060989999999999996,
'gap': 94.0,
'horizontalError': 0.1,
'id': 'nc72659421',
'latitude': 37.4125,
'locationSource': 'nc',
'longitude': -121.35216670000001,
'mag': 2.07,
'magError': 0.14,
'magNst': 56.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 61.0,
'place': '20km WSW of Patterson, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-08T04:27:09.420Z',
'type': 'earthquake',
'updated': '2016-07-09T00:12:03.652Z'},
{'depth': 8.1,
'depthError': 1.9,
'dmin': 0.17300000000000001,
'gap': 136.93,
'horizontalError': nan,
'id': 'nn00550934',
'latitude': 37.1529,
'locationSource': 'nn',
'longitude': -117.3732,
'mag': 1.6,
'magError': 0.29,
'magNst': 10.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 21.0,
'place': '60km WNW of Beatty, Nevada',
'rms': 0.1847,
'status': 'reviewed',
'time': '2016-07-08T03:37:01.417Z',
'type': 'earthquake',
'updated': '2016-07-08T17:05:47.639Z'},
{'depth': 10.1,
'depthError': 6.3,
'dmin': 0.212,
'gap': 154.34,
'horizontalError': 1.75,
'id': 'nn00550956',
'latitude': 38.653,
'locationSource': 'nn',
'longitude': -118.7921,
'mag': 1.1,
'magError': 0.17,
'magNst': 7.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 8.0,
'place': '20km NW of Hawthorne, Nevada',
'rms': 0.0832,
'status': 'reviewed',
'time': '2016-07-08T03:34:09.114Z',
'type': 'earthquake',
'updated': '2016-07-08T13:42:04.205Z'},
{'depth': 3.63,
'depthError': 0.41,
'dmin': 0.04529,
'gap': 42.0,
'horizontalError': 0.2,
'id': 'nc72659411',
'latitude': 36.9673333,
'locationSource': 'nc',
'longitude': -121.45633329999998,
'mag': 1.49,
'magError': 0.247,
'magNst': 28.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 34.0,
'place': '10km ESE of Gilroy, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-08T03:33:55.630Z',
'type': 'earthquake',
'updated': '2016-07-09T00:12:02.619Z'},
{'depth': 3.6,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13743370',
'latitude': 61.2923,
'locationSource': 'ak',
'longitude': -152.4545,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.66,
'status': 'automatic',
'time': '2016-07-08T03:31:27.000Z',
'type': 'earthquake',
'updated': '2016-07-08T04:11:44.108Z'},
{'depth': 2.2,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743362',
'latitude': 61.2766,
'locationSource': 'ak',
'longitude': -152.5303,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '88km N of Redoubt Volcano, Alaska',
'rms': 0.7,
'status': 'automatic',
'time': '2016-07-08T03:28:50.000Z',
'type': 'earthquake',
'updated': '2016-07-08T04:13:00.274Z'},
{'depth': 95.6,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13743359',
'latitude': 62.9652,
'locationSource': 'ak',
'longitude': -150.4748,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '73km NNW of Talkeetna, Alaska',
'rms': 0.57,
'status': 'automatic',
'time': '2016-07-08T03:26:03.000Z',
'type': 'earthquake',
'updated': '2016-07-08T03:48:03.089Z'},
{'depth': 10.0,
'depthError': 1.7,
'dmin': 30.156,
'gap': 46.0,
'horizontalError': 8.8,
'id': 'us100061ta',
'latitude': -55.3114,
'locationSource': 'us',
'longitude': -128.0678,
'mag': 5.1,
'magError': 0.07,
'magNst': 66.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'Pacific-Antarctic Ridge',
'rms': 0.75,
'status': 'reviewed',
'time': '2016-07-08T03:19:58.470Z',
'type': 'earthquake',
'updated': '2016-07-08T13:56:36.000Z'},
{'depth': 2.36,
'depthError': 0.23,
'dmin': 0.009401000000000001,
'gap': 121.0,
'horizontalError': 0.33,
'id': 'hv61328181',
'latitude': 19.3805008,
'locationSource': 'hv',
'longitude': -155.2338409,
'mag': 1.82,
'magError': 0.13,
'magNst': 11.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 19.0,
'place': '5km S of Volcano, Hawaii',
'rms': 0.19,
'status': 'automatic',
'time': '2016-07-08T03:19:12.470Z',
'type': 'earthquake',
'updated': '2016-07-08T03:22:30.090Z'},
{'depth': 110.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13743344',
'latitude': 59.645,
'locationSource': 'ak',
'longitude': -153.3461,
'mag': 3.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '86km W of Anchor Point, Alaska',
'rms': 0.56,
'status': 'reviewed',
'time': '2016-07-08T03:16:43.000Z',
'type': 'earthquake',
'updated': '2016-07-08T17:37:27.793Z'},
{'depth': 10.0,
'depthError': 1.8,
'dmin': 3.612,
'gap': 58.0,
'horizontalError': 9.1,
'id': 'us100061t8',
'latitude': -61.0055,
'locationSource': 'us',
'longitude': -37.3699,
'mag': 5.1,
'magError': 0.08,
'magNst': 51.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'Scotia Sea',
'rms': 0.74,
'status': 'reviewed',
'time': '2016-07-08T03:11:28.400Z',
'type': 'earthquake',
'updated': '2016-07-08T03:36:41.858Z'},
{'depth': 5.22,
'depthError': 0.99,
'dmin': 0.08829,
'gap': 100.0,
'horizontalError': 0.64,
'id': 'uw61163422',
'latitude': 47.283333299999995,
'locationSource': 'uw',
'longitude': -120.54383329999999,
'mag': 1.26,
'magError': 0.154,
'magNst': 9.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 9.0,
'place': '22km SW of West Wenatchee, Washington',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-08T02:23:12.450Z',
'type': 'earthquake',
'updated': '2016-07-08T05:31:03.220Z'},
{'depth': 13.0,
'depthError': 1.3,
'dmin': 0.22188388,
'gap': 111.6,
'horizontalError': 0.6,
'id': 'pr16190000',
'latitude': 18.2469,
'locationSource': 'pr',
'longitude': -66.3095,
'mag': 2.2,
'magError': 0.0,
'magNst': 10.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 11.0,
'place': '5km WNW of Palomas, Puerto Rico',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-08T02:15:22.000Z',
'type': 'earthquake',
'updated': '2016-07-08T02:29:29.083Z'},
{'depth': 10.68,
'depthError': 0.51,
'dmin': 0.02947,
'gap': 76.0,
'horizontalError': 0.36,
'id': 'ci37409535',
'latitude': 32.91,
'locationSource': 'ci',
'longitude': -115.52716670000001,
'mag': 1.51,
'magError': 0.192,
'magNst': 21.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '8km S of Brawley, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-08T01:38:02.430Z',
'type': 'earthquake',
'updated': '2016-07-08T13:55:55.368Z'},
{'depth': 2.46,
'depthError': 0.46,
'dmin': 0.01882,
'gap': 70.0,
'horizontalError': 0.58,
'id': 'hv61328056',
'latitude': 19.3665009,
'locationSource': 'hv',
'longitude': -155.1838379,
'mag': 1.98,
'magError': 0.14,
'magNst': 3.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 31.0,
'place': '9km SE of Volcano, Hawaii',
'rms': 0.2,
'status': 'automatic',
'time': '2016-07-08T01:34:43.940Z',
'type': 'earthquake',
'updated': '2016-07-08T01:40:21.610Z'},
{'depth': 7.7,
'depthError': 0.4,
'dmin': 0.1158,
'gap': 44.0,
'horizontalError': 0.12,
'id': 'ci37409527',
'latitude': 34.4198333,
'locationSource': 'ci',
'longitude': -116.4885,
'mag': 2.16,
'magError': 0.146,
'magNst': 84.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 63.0,
'place': '34km N of Yucca Valley, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-08T01:32:03.300Z',
'type': 'earthquake',
'updated': '2016-07-08T13:51:42.510Z'},
{'depth': 109.76,
'depthError': 4.9,
'dmin': 0.35100000000000003,
'gap': 41.0,
'horizontalError': 5.2,
'id': 'us100061si',
'latitude': -20.9192,
'locationSource': 'us',
'longitude': -69.1358,
'mag': 4.2,
'magError': 0.235,
'magNst': 5.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '130km SE of Iquique, Chile',
'rms': 0.55,
'status': 'reviewed',
'time': '2016-07-08T01:21:07.580Z',
'type': 'earthquake',
'updated': '2016-07-08T01:40:56.994Z'},
{'depth': 8.7,
'depthError': 7.7,
'dmin': 0.209,
'gap': 97.32,
'horizontalError': 1.27,
'id': 'nn00550927',
'latitude': 38.6601,
'locationSource': 'nn',
'longitude': -118.7871,
'mag': 1.1,
'magError': 0.26,
'magNst': 8.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 12.0,
'place': '20km NW of Hawthorne, Nevada',
'rms': 0.1615,
'status': 'reviewed',
'time': '2016-07-08T01:09:31.968Z',
'type': 'earthquake',
'updated': '2016-07-08T13:40:46.304Z'},
{'depth': 51.0,
'depthError': 0.73,
'dmin': 0.07306,
'gap': 181.0,
'horizontalError': 1.38,
'id': 'uw61163402',
'latitude': 47.719666700000005,
'locationSource': 'uw',
'longitude': -122.86366670000001,
'mag': 1.27,
'magError': 0.159,
'magNst': 11.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 11.0,
'place': '9km NNW of Seabeck, Washington',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-08T01:04:09.730Z',
'type': 'earthquake',
'updated': '2016-07-08T05:27:50.490Z'},
{'depth': 0.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743145',
'latitude': 64.9629,
'locationSource': 'ak',
'longitude': -147.4461,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '18km NE of Fairbanks, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-08T00:58:45.000Z',
'type': 'earthquake',
'updated': '2016-07-08T01:23:53.376Z'},
{'depth': 108.7,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 1.5,
'id': 'ak13743143',
'latitude': 58.1824,
'locationSource': 'ak',
'longitude': -152.6815,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '46km NNW of Kodiak, Alaska',
'rms': 0.81,
'status': 'automatic',
'time': '2016-07-08T00:57:32.000Z',
'type': 'earthquake',
'updated': '2016-07-08T01:23:44.879Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 3.457,
'gap': 143.0,
'horizontalError': 4.3,
'id': 'us100061s6',
'latitude': -44.3329,
'locationSource': 'us',
'longitude': -78.1281,
'mag': 4.6,
'magError': 0.068,
'magNst': 21.0,
'magSource': 'us',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': 'Off the coast of Aisen, Chile',
'rms': 0.73,
'status': 'reviewed',
'time': '2016-07-08T00:35:58.910Z',
'type': 'earthquake',
'updated': '2016-07-08T01:06:25.054Z'},
{'depth': 3.35,
'depthError': 3.9,
'dmin': 0.23399999999999999,
'gap': 58.0,
'horizontalError': 0.9,
'id': 'us100061s5',
'latitude': 35.0881,
'locationSource': 'us',
'longitude': -97.6004,
'mag': 2.1,
'magError': 0.17,
'magNst': 9.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '7km SE of Blanchard, Oklahoma',
'rms': 0.54,
'status': 'reviewed',
'time': '2016-07-08T00:32:29.180Z',
'type': 'earthquake',
'updated': '2016-07-08T01:30:03.409Z'},
{'depth': 6.1,
'depthError': 2.1,
'dmin': 0.198,
'gap': 80.78,
'horizontalError': 0.85,
'id': 'nn00550911',
'latitude': 38.6541,
'locationSource': 'nn',
'longitude': -118.7917,
'mag': 1.4,
'magError': 0.2,
'magNst': 7.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 17.0,
'place': '20km NW of Hawthorne, Nevada',
'rms': 0.1287,
'status': 'reviewed',
'time': '2016-07-08T00:04:39.406Z',
'type': 'earthquake',
'updated': '2016-07-08T13:39:53.967Z'},
{'depth': 1.07,
'depthError': 0.2,
'dmin': 0.009623,
'gap': 75.0,
'horizontalError': 0.18,
'id': 'nc72659396',
'latitude': 38.7483333,
'locationSource': 'nc',
'longitude': -122.704,
'mag': 1.13,
'magError': 0.19,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 38.0,
'place': '5km SE of The Geysers, California',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-08T00:00:51.370Z',
'type': 'earthquake',
'updated': '2016-07-08T20:32:02.861Z'},
{'depth': 1.51,
'depthError': 0.23,
'dmin': 0.009023,
'gap': 78.0,
'horizontalError': 0.23,
'id': 'nc72659386',
'latitude': 38.7476667,
'locationSource': 'nc',
'longitude': -122.70416670000002,
'mag': 1.14,
'magError': 0.243,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 41.0,
'place': '5km SE of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-07T23:52:38.670Z',
'type': 'earthquake',
'updated': '2016-07-08T19:12:03.613Z'},
{'depth': 9.5,
'depthError': 1.0,
'dmin': 0.065,
'gap': 79.74,
'horizontalError': 0.62,
'id': 'nn00550907',
'latitude': 39.436,
'locationSource': 'nn',
'longitude': -119.8232,
'mag': 1.2,
'magError': 0.18,
'magNst': 10.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 27.0,
'place': '10km S of Reno, Nevada',
'rms': 0.1417,
'status': 'reviewed',
'time': '2016-07-07T23:49:51.298Z',
'type': 'earthquake',
'updated': '2016-07-08T23:05:25.760Z'},
{'depth': 28.0,
'depthError': 17.7,
'dmin': 0.5407858,
'gap': 270.0,
'horizontalError': 4.0,
'id': 'pr16189004',
'latitude': 18.8962,
'locationSource': 'pr',
'longitude': -64.9748,
'mag': 2.7,
'magError': 0.0,
'magNst': 5.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 7.0,
'place': '61km N of Charlotte Amalie, U.S. Virgin Islands',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-07T23:47:26.000Z',
'type': 'earthquake',
'updated': '2016-07-08T03:32:18.650Z'},
{'depth': 10.8,
'depthError': 5.3,
'dmin': 0.20199999999999999,
'gap': 153.32,
'horizontalError': nan,
'id': 'nn00551002',
'latitude': 38.6489,
'locationSource': 'nn',
'longitude': -118.7795,
'mag': 1.2,
'magError': 0.49,
'magNst': 2.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 8.0,
'place': '19km NW of Hawthorne, Nevada',
'rms': 0.0935,
'status': 'reviewed',
'time': '2016-07-07T23:45:27.686Z',
'type': 'earthquake',
'updated': '2016-07-08T14:18:08.168Z'},
{'depth': 9.1,
'depthError': 1.2,
'dmin': 0.196,
'gap': 50.51,
'horizontalError': 0.74,
'id': 'nn00550904',
'latitude': 38.6516,
'locationSource': 'nn',
'longitude': -118.7943,
'mag': 4.5,
'magError': 0.34,
'magNst': 14.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 28.0,
'place': '19km NW of Hawthorne, Nevada',
'rms': 0.1551,
'status': 'reviewed',
'time': '2016-07-07T23:40:45.777Z',
'type': 'earthquake',
'updated': '2016-07-08T20:18:44.364Z'},
{'depth': 29.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13743010',
'latitude': 61.3713,
'locationSource': 'ak',
'longitude': -146.6448,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '31km NNW of Valdez, Alaska',
'rms': 0.28,
'status': 'automatic',
'time': '2016-07-07T23:28:03.000Z',
'type': 'earthquake',
'updated': '2016-07-07T23:48:35.665Z'},
{'depth': 5.8,
'depthError': 2.6,
'dmin': 0.19899999999999998,
'gap': 61.73,
'horizontalError': 0.82,
'id': 'nn00550899',
'latitude': 38.6542,
'locationSource': 'nn',
'longitude': -118.7983,
'mag': 2.3,
'magError': 0.43,
'magNst': 6.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 16.0,
'place': '20km NW of Hawthorne, Nevada',
'rms': 0.1491,
'status': 'reviewed',
'time': '2016-07-07T23:18:19.844Z',
'type': 'earthquake',
'updated': '2016-07-08T22:47:31.600Z'},
{'depth': 2.4,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13743008',
'latitude': 62.6398,
'locationSource': 'ak',
'longitude': -150.3743,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km NNW of Talkeetna, Alaska',
'rms': 0.6,
'status': 'automatic',
'time': '2016-07-07T23:16:14.000Z',
'type': 'earthquake',
'updated': '2016-07-07T23:48:34.899Z'},
{'depth': 6.0,
'depthError': 1.3,
'dmin': 0.198,
'gap': 43.85,
'horizontalError': 0.67,
'id': 'nn00550898',
'latitude': 38.6539,
'locationSource': 'nn',
'longitude': -118.7984,
'mag': 4.3,
'magError': 0.21,
'magNst': 12.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 33.0,
'place': '19km NW of Hawthorne, Nevada',
'rms': 0.1437,
'status': 'reviewed',
'time': '2016-07-07T23:14:40.556Z',
'type': 'earthquake',
'updated': '2016-07-08T13:38:33.075Z'},
{'depth': 5.0,
'depthError': 2.0,
'dmin': 0.244,
'gap': 50.0,
'horizontalError': 2.2,
'id': 'us100061re',
'latitude': 35.083,
'locationSource': 'us',
'longitude': -97.6106,
'mag': 2.8,
'magError': 0.07,
'magNst': 53.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '7km SE of Blanchard, Oklahoma',
'rms': 0.86,
'status': 'reviewed',
'time': '2016-07-07T23:08:56.860Z',
'type': 'earthquake',
'updated': '2016-07-07T23:22:05.307Z'},
{'depth': 1.3,
'depthError': 0.18,
'dmin': 0.007576,
'gap': 40.0,
'horizontalError': 0.1,
'id': 'nc72659366',
'latitude': 38.7861667,
'locationSource': 'nc',
'longitude': -122.74566670000002,
'mag': 1.39,
'magError': 0.215,
'magNst': 14.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 45.0,
'place': '1km NE of The Geysers, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-07T23:00:55.710Z',
'type': 'earthquake',
'updated': '2016-07-08T18:46:02.545Z'},
{'depth': 63.3,
'depthError': 8.5,
'dmin': 6.178999999999999,
'gap': 64.0,
'horizontalError': 7.5,
'id': 'us100061r5',
'latitude': -4.303999999999999,
'locationSource': 'us',
'longitude': 141.6003,
'mag': 4.4,
'magError': 0.105,
'magNst': 26.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '138km W of Ambunti, Papua New Guinea',
'rms': 1.08,
'status': 'reviewed',
'time': '2016-07-07T22:17:32.280Z',
'type': 'earthquake',
'updated': '2016-07-07T22:45:26.806Z'},
{'depth': 36.59,
'depthError': 12.6,
'dmin': 0.11,
'gap': 105.0,
'horizontalError': 2.9,
'id': 'us100061qx',
'latitude': -30.5693,
'locationSource': 'us',
'longitude': -71.5926,
'mag': 4.4,
'magError': 0.19,
'magNst': 8.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '37km W of Ovalle, Chile',
'rms': 1.32,
'status': 'reviewed',
'time': '2016-07-07T21:54:05.940Z',
'type': 'earthquake',
'updated': '2016-07-07T23:11:18.868Z'},
{'depth': 82.0,
'depthError': 9.0,
'dmin': 1.17948797,
'gap': 237.6,
'horizontalError': 3.6,
'id': 'pr16189003',
'latitude': 17.8311,
'locationSource': 'pr',
'longitude': -68.6474,
'mag': 3.4,
'magError': 0.0,
'magNst': 8.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 11.0,
'place': '60km S of Boca de Yuma, Dominican Republic',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-07T21:38:28.600Z',
'type': 'earthquake',
'updated': '2016-07-08T01:03:33.218Z'},
{'depth': 2.766,
'depthError': 0.21,
'dmin': 0.006229999999999999,
'gap': 114.0,
'horizontalError': 0.24,
'id': 'hv61327721',
'latitude': 19.3881667,
'locationSource': 'hv',
'longitude': -155.2453333,
'mag': 2.1,
'magError': 0.1,
'magNst': 12.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 26.0,
'place': '4km S of Volcano, Hawaii',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-07T21:32:15.540Z',
'type': 'earthquake',
'updated': '2016-07-07T23:45:32.260Z'},
{'depth': 18.41,
'depthError': 0.94,
'dmin': 0.2755,
'gap': 204.0,
'horizontalError': 0.55,
'id': 'uu60155072',
'latitude': 36.981333299999996,
'locationSource': 'uu',
'longitude': -112.90183329999999,
'mag': 1.79,
'magError': 0.141,
'magNst': 4.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 11.0,
'place': '6km E of Colorado City, Arizona',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-07T21:30:11.910Z',
'type': 'earthquake',
'updated': '2016-07-11T19:57:22.170Z'},
{'depth': 5.82,
'depthError': 0.45,
'dmin': 0.03348,
'gap': 74.0,
'horizontalError': 0.21,
'id': 'nc72659351',
'latitude': 36.4793333,
'locationSource': 'nc',
'longitude': -121.059,
'mag': 1.81,
'magError': 0.295,
'magNst': 27.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 32.0,
'place': '24km ENE of Soledad, California',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-07T21:29:46.640Z',
'type': 'earthquake',
'updated': '2016-07-09T02:04:04.435Z'},
{'depth': 7.18,
'depthError': 2.8,
'dmin': 0.24600000000000002,
'gap': 58.0,
'horizontalError': 1.5,
'id': 'us100061qe',
'latitude': 35.08,
'locationSource': 'us',
'longitude': -97.6099,
'mag': 3.0,
'magError': 0.065,
'magNst': 61.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '7km SE of Blanchard, Oklahoma',
'rms': 0.47,
'status': 'reviewed',
'time': '2016-07-07T20:39:04.280Z',
'type': 'earthquake',
'updated': '2016-07-07T21:19:17.207Z'},
{'depth': 101.3,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742926',
'latitude': 59.8055,
'locationSource': 'ak',
'longitude': -152.9933,
'mag': 2.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '65km W of Anchor Point, Alaska',
'rms': 0.55,
'status': 'automatic',
'time': '2016-07-07T20:37:21.000Z',
'type': 'earthquake',
'updated': '2016-07-07T21:05:15.472Z'},
{'depth': 1.9,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742925',
'latitude': 58.1522,
'locationSource': 'ak',
'longitude': -155.7298,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '80km SE of King Salmon, Alaska',
'rms': 1.0,
'status': 'automatic',
'time': '2016-07-07T20:31:52.000Z',
'type': 'earthquake',
'updated': '2016-07-07T21:03:46.984Z'},
{'depth': -1.11,
'depthError': 31.61,
'dmin': 0.2214,
'gap': 180.0,
'horizontalError': 0.99,
'id': 'ci37409311',
'latitude': 34.6395,
'locationSource': 'ci',
'longitude': -117.11583329999999,
'mag': 1.6,
'magError': 0.18600000000000003,
'magNst': 14.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '17km NNE of Apple Valley, CA',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-07T20:10:24.730Z',
'type': 'quarry blast',
'updated': '2016-07-07T20:39:54.076Z'},
{'depth': 16.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742891',
'latitude': 61.3372,
'locationSource': 'ak',
'longitude': -146.561,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '25km NNW of Valdez, Alaska',
'rms': 0.82,
'status': 'automatic',
'time': '2016-07-07T19:45:54.000Z',
'type': 'earthquake',
'updated': '2016-07-07T20:18:28.889Z'},
{'depth': 31.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742887',
'latitude': 60.8988,
'locationSource': 'ak',
'longitude': -149.4013,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '41km WNW of Whittier, Alaska',
'rms': 0.71,
'status': 'automatic',
'time': '2016-07-07T19:38:23.000Z',
'type': 'earthquake',
'updated': '2016-07-07T20:18:26.310Z'},
{'depth': 9.73,
'depthError': 0.57,
'dmin': 0.02744,
'gap': 95.0,
'horizontalError': 0.33,
'id': 'ci37409239',
'latitude': 32.9058333,
'locationSource': 'ci',
'longitude': -115.5285,
'mag': 1.2,
'magError': 0.265,
'magNst': 8.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 12.0,
'place': '8km NNE of Imperial, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-07T19:37:03.000Z',
'type': 'earthquake',
'updated': '2016-07-07T20:16:30.408Z'},
{'depth': -1.24,
'depthError': 31.61,
'dmin': 0.1338,
'gap': 207.0,
'horizontalError': 0.92,
'id': 'ci37409215',
'latitude': 35.0065,
'locationSource': 'ci',
'longitude': -118.1788333,
'mag': 1.32,
'magError': 0.213,
'magNst': 4.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 9.0,
'place': '5km S of Mojave, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-07T19:13:43.850Z',
'type': 'quarry blast',
'updated': '2016-07-07T20:23:12.586Z'},
{'depth': 34.49,
'depthError': 0.86,
'dmin': 0.03215,
'gap': 80.0,
'horizontalError': 0.5,
'id': 'hv61327571',
'latitude': 19.1825008,
'locationSource': 'hv',
'longitude': -155.48066709999998,
'mag': 2.09,
'magError': 0.13,
'magNst': 14.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 40.0,
'place': '2km S of Pahala, Hawaii',
'rms': 0.13,
'status': 'automatic',
'time': '2016-07-07T19:13:10.890Z',
'type': 'earthquake',
'updated': '2016-07-07T19:16:29.090Z'},
{'depth': -1.35,
'depthError': 31.61,
'dmin': 0.06325,
'gap': 38.0,
'horizontalError': 0.32,
'id': 'ci37409207',
'latitude': 34.3246667,
'locationSource': 'ci',
'longitude': -116.9345,
'mag': 1.41,
'magError': 0.122,
'magNst': 32.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 39.0,
'place': '9km NNW of Big Bear Lake, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-07T19:07:05.230Z',
'type': 'quarry blast',
'updated': '2016-07-07T20:08:26.892Z'},
{'depth': 0.2,
'depthError': 0.2,
'dmin': nan,
'gap': 50.3999959680003,
'horizontalError': 0.2,
'id': 'ak13742772',
'latitude': 61.2885,
'locationSource': 'ak',
'longitude': -152.5009,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': 34.0,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.66,
'status': 'automatic',
'time': '2016-07-07T18:56:23.000Z',
'type': 'earthquake',
'updated': '2016-07-07T19:46:03.675Z'},
{'depth': 5.6,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742768',
'latitude': 62.7392,
'locationSource': 'ak',
'longitude': -150.5583,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '51km NNW of Talkeetna, Alaska',
'rms': 0.31,
'status': 'automatic',
'time': '2016-07-07T18:39:45.000Z',
'type': 'earthquake',
'updated': '2016-07-07T19:07:38.101Z'},
{'depth': 2.573,
'depthError': 0.12,
'dmin': 0.004365,
'gap': 42.0,
'horizontalError': 0.18,
'id': 'hv61327546',
'latitude': 19.390666699999997,
'locationSource': 'hv',
'longitude': -155.2801667,
'mag': 2.53,
'magError': 0.132,
'magNst': 14.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 30.0,
'place': '6km SW of Volcano, Hawaii',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-07T18:35:46.130Z',
'type': 'earthquake',
'updated': '2016-07-07T23:22:30.677Z'},
{'depth': 2.291,
'depthError': 0.22,
'dmin': 0.006734,
'gap': 138.0,
'horizontalError': 0.3,
'id': 'hv61327531',
'latitude': 19.388666699999998,
'locationSource': 'hv',
'longitude': -155.245,
'mag': 2.47,
'magError': 0.17600000000000002,
'magNst': 12.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 31.0,
'place': '4km S of Volcano, Hawaii',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-07T18:13:55.820Z',
'type': 'earthquake',
'updated': '2016-07-07T22:50:27.328Z'},
{'depth': 9.2,
'depthError': 4.8,
'dmin': 0.155,
'gap': 224.3,
'horizontalError': 5.45,
'id': 'nn00550884',
'latitude': 41.853,
'locationSource': 'nn',
'longitude': -119.6382,
'mag': 1.5,
'magError': 0.45,
'magNst': 5.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 5.0,
'place': '69km ESE of Lakeview, Oregon',
'rms': 0.1033,
'status': 'reviewed',
'time': '2016-07-07T18:13:04.686Z',
'type': 'earthquake',
'updated': '2016-07-08T13:38:08.936Z'},
{'depth': -0.29,
'depthError': 31.61,
'dmin': 0.015969999999999998,
'gap': 128.0,
'horizontalError': 0.23,
'id': 'nc72659301',
'latitude': 37.324,
'locationSource': 'nc',
'longitude': -122.10816670000001,
'mag': 1.46,
'magError': 0.17800000000000002,
'magNst': 13.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 13.0,
'place': '11km E of Quarry near Portola Valley, CA',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-07T18:10:56.740Z',
'type': 'quarry blast',
'updated': '2016-07-07T21:50:12.582Z'},
{'depth': 4.55,
'depthError': 0.93,
'dmin': 0.1239,
'gap': 136.0,
'horizontalError': 0.33,
'id': 'ci37409151',
'latitude': 36.5275,
'locationSource': 'ci',
'longitude': -117.97116670000001,
'mag': 1.15,
'magError': 0.27399999999999997,
'magNst': 8.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '11km SE of Lone Pine, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-07T18:04:58.330Z',
'type': 'earthquake',
'updated': '2016-07-08T01:46:37.238Z'},
{'depth': 4.27,
'depthError': 4.2,
'dmin': 0.23199999999999998,
'gap': 58.0,
'horizontalError': 1.9,
'id': 'us100061nm',
'latitude': 35.0788,
'locationSource': 'us',
'longitude': -97.5839,
'mag': 2.7,
'magError': 0.075,
'magNst': 46.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '9km SE of Blanchard, Oklahoma',
'rms': 0.35,
'status': 'reviewed',
'time': '2016-07-07T17:56:46.080Z',
'type': 'earthquake',
'updated': '2016-07-08T00:07:39.960Z'},
{'depth': 5.11,
'depthError': 0.92,
'dmin': 0.040389999999999995,
'gap': 144.0,
'horizontalError': 0.68,
'id': 'ci37409119',
'latitude': 32.867,
'locationSource': 'ci',
'longitude': -115.5355,
'mag': 2.06,
'magError': 0.20800000000000002,
'magNst': 26.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '4km NE of Imperial, CA',
'rms': 0.31,
'status': 'automatic',
'time': '2016-07-07T17:18:21.480Z',
'type': 'earthquake',
'updated': '2016-07-07T17:22:16.604Z'},
{'depth': 1.1,
'depthError': 31.61,
'dmin': 0.1136,
'gap': 219.0,
'horizontalError': 0.72,
'id': 'ci37409103',
'latitude': 33.012,
'locationSource': 'ci',
'longitude': -115.52783329999998,
'mag': 1.27,
'magError': 0.23800000000000002,
'magNst': 16.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 11.0,
'place': '4km N of Brawley, CA',
'rms': 0.22,
'status': 'automatic',
'time': '2016-07-07T17:04:15.570Z',
'type': 'earthquake',
'updated': '2016-07-07T17:07:49.139Z'},
{'depth': -0.42,
'depthError': 31.61,
'dmin': 0.013269999999999999,
'gap': 203.0,
'horizontalError': 4.53,
'id': 'uw61163217',
'latitude': 43.9226667,
'locationSource': 'uw',
'longitude': -123.741,
'mag': 1.48,
'magError': 0.153,
'magNst': 5.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 5.0,
'place': '29km ESE of Florence, Oregon',
'rms': 0.43,
'status': 'reviewed',
'time': '2016-07-07T16:45:09.560Z',
'type': 'explosion',
'updated': '2016-07-07T16:59:59.980Z'},
{'depth': 140.0,
'depthError': 1.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13742764',
'latitude': 63.3144,
'locationSource': 'ak',
'longitude': -150.491,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km W of Cantwell, Alaska',
'rms': 0.31,
'status': 'automatic',
'time': '2016-07-07T16:43:10.000Z',
'type': 'earthquake',
'updated': '2016-07-07T17:02:50.922Z'},
{'depth': 0.68,
'depthError': 0.57,
'dmin': 0.1718,
'gap': 147.0,
'horizontalError': 0.29,
'id': 'ci37409079',
'latitude': 35.5011667,
'locationSource': 'ci',
'longitude': -118.4015,
'mag': 1.48,
'magError': 0.218,
'magNst': 23.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '13km SE of Bodfish, CA',
'rms': 0.14,
'status': 'automatic',
'time': '2016-07-07T16:28:30.040Z',
'type': 'earthquake',
'updated': '2016-07-07T16:32:14.981Z'},
{'depth': -1.73,
'depthError': 31.61,
'dmin': 0.02169,
'gap': 106.0,
'horizontalError': 0.39,
'id': 'ci37408975',
'latitude': 34.347333299999995,
'locationSource': 'ci',
'longitude': -116.85366670000002,
'mag': 1.14,
'magError': 0.07,
'magNst': 16.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '10km N of Big Bear City, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-07T16:20:06.460Z',
'type': 'quarry blast',
'updated': '2016-07-07T17:58:46.807Z'},
{'depth': 5.2,
'depthError': 2.4,
'dmin': 0.228,
'gap': 126.31,
'horizontalError': 1.07,
'id': 'nn00550856',
'latitude': 37.2601,
'locationSource': 'nn',
'longitude': -115.8044,
'mag': 1.3,
'magError': 0.31,
'magNst': 11.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 26.0,
'place': '57km WSW of Alamo, Nevada',
'rms': 0.1358,
'status': 'reviewed',
'time': '2016-07-07T16:18:56.317Z',
'type': 'earthquake',
'updated': '2016-07-08T22:40:35.829Z'},
{'depth': 5.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742756',
'latitude': 61.3263,
'locationSource': 'ak',
'longitude': -152.4396,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '94km NW of Nikiski, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-07T16:10:26.000Z',
'type': 'earthquake',
'updated': '2016-07-07T16:42:09.965Z'},
{'depth': 5.9,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742755',
'latitude': 61.3104,
'locationSource': 'ak',
'longitude': -152.498,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km N of Redoubt Volcano, Alaska',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-07T16:08:33.000Z',
'type': 'earthquake',
'updated': '2016-07-07T17:02:50.316Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742751',
'latitude': 61.2911,
'locationSource': 'ak',
'longitude': -152.5124,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.61,
'status': 'automatic',
'time': '2016-07-07T16:07:56.000Z',
'type': 'earthquake',
'updated': '2016-07-07T16:42:11.461Z'},
{'depth': 83.2,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13742746',
'latitude': 60.1928,
'locationSource': 'ak',
'longitude': -151.2986,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '19km S of Cohoe, Alaska',
'rms': 0.92,
'status': 'automatic',
'time': '2016-07-07T15:55:48.000Z',
'type': 'earthquake',
'updated': '2016-07-07T16:21:04.412Z'},
{'depth': 10.64,
'depthError': 0.24,
'dmin': 0.03102,
'gap': 24.0,
'horizontalError': 0.14,
'id': 'ci37622984',
'latitude': 34.1195,
'locationSource': 'ci',
'longitude': -117.26583329999998,
'mag': 1.4,
'magError': 0.13699999999999998,
'magNst': 53.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 75.0,
'place': '3km ESE of San Bernardino, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-07T15:36:16.670Z',
'type': 'earthquake',
'updated': '2016-07-07T18:41:47.810Z'},
{'depth': 6.38,
'depthError': 1.01,
'dmin': 0.02554,
'gap': 95.0,
'horizontalError': 0.42,
'id': 'ci37622976',
'latitude': 32.906,
'locationSource': 'ci',
'longitude': -115.53083329999998,
'mag': 1.51,
'magError': 0.205,
'magNst': 19.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 26.0,
'place': '7km NNE of Imperial, CA',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-07T15:35:35.090Z',
'type': 'earthquake',
'updated': '2016-07-07T18:19:12.929Z'},
{'depth': 0.0,
'depthError': 84.3,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13742706',
'latitude': 60.1092,
'locationSource': 'ak',
'longitude': -141.5095,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '51km E of Cape Yakataga, Alaska',
'rms': 0.98,
'status': 'automatic',
'time': '2016-07-07T15:31:30.000Z',
'type': 'earthquake',
'updated': '2016-07-07T15:58:19.663Z'},
{'depth': 18.16,
'depthError': 0.71,
'dmin': 0.1533,
'gap': 79.0,
'horizontalError': 0.29,
'id': 'uw61163187',
'latitude': 46.4851667,
'locationSource': 'uw',
'longitude': -122.4155,
'mag': 1.95,
'magError': 0.157,
'magNst': 35.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 26.0,
'place': '13km SW of Morton, Washington',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-07T15:29:36.190Z',
'type': 'earthquake',
'updated': '2016-07-07T19:10:06.206Z'},
{'depth': 41.3,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742700',
'latitude': 62.1219,
'locationSource': 'ak',
'longitude': -150.2798,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '22km W of Y, Alaska',
'rms': 0.4,
'status': 'automatic',
'time': '2016-07-07T15:01:15.000Z',
'type': 'earthquake',
'updated': '2016-07-07T15:36:51.152Z'},
{'depth': 11.465,
'depthError': 0.71,
'dmin': 0.022119999999999997,
'gap': 63.0,
'horizontalError': 0.36,
'id': 'hv61327296',
'latitude': 19.4841667,
'locationSource': 'hv',
'longitude': -155.69283330000002,
'mag': 1.44,
'magError': 0.057999999999999996,
'magNst': 13.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 27.0,
'place': '18km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-07T14:26:52.690Z',
'type': 'earthquake',
'updated': '2016-07-07T17:28:29.780Z'},
{'depth': 14.8,
'depthError': 10.2,
'dmin': 0.209,
'gap': 205.65,
'horizontalError': 11.18,
'id': 'nn00550847',
'latitude': 37.6219,
'locationSource': 'nn',
'longitude': -115.4851,
'mag': 1.1,
'magError': 0.26,
'magNst': 3.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 6.0,
'place': '40km NW of Alamo, Nevada',
'rms': 0.2119,
'status': 'reviewed',
'time': '2016-07-07T14:24:38.829Z',
'type': 'earthquake',
'updated': '2016-07-08T13:36:20.740Z'},
{'depth': 8.14,
'depthError': 0.37,
'dmin': 0.054920000000000004,
'gap': 35.0,
'horizontalError': 0.13,
'id': 'ci37622920',
'latitude': 34.2625,
'locationSource': 'ci',
'longitude': -117.17933329999998,
'mag': 1.72,
'magError': 0.14800000000000002,
'magNst': 65.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 84.0,
'place': '2km NNE of Lake Arrowhead, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-07T13:56:33.690Z',
'type': 'earthquake',
'updated': '2016-07-07T14:48:09.390Z'},
{'depth': 0.0,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13742656',
'latitude': 65.3767,
'locationSource': 'ak',
'longitude': -144.7482,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '10km SSW of Circle Hot Springs Station, Alaska',
'rms': 1.04,
'status': 'automatic',
'time': '2016-07-07T13:49:53.000Z',
'type': 'earthquake',
'updated': '2016-07-07T14:13:46.082Z'},
{'depth': 12.14,
'depthError': 1.55,
'dmin': 0.09416000000000001,
'gap': 197.0,
'horizontalError': 1.12,
'id': 'ci37622888',
'latitude': 32.8758333,
'locationSource': 'ci',
'longitude': -115.45299999999999,
'mag': 1.4,
'magError': 0.139,
'magNst': 14.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 12.0,
'place': '10km NW of Holtville, CA',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-07T13:47:23.580Z',
'type': 'earthquake',
'updated': '2016-07-07T21:23:14.225Z'},
{'depth': 5.0,
'depthError': 0.69,
'dmin': 0.02638,
'gap': 86.0,
'horizontalError': 0.18,
'id': 'nc72659251',
'latitude': 36.6908333,
'locationSource': 'nc',
'longitude': -121.286,
'mag': 1.99,
'magError': 0.17600000000000002,
'magNst': 35.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 32.0,
'place': '15km SSE of Ridgemark, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-07T13:41:04.750Z',
'type': 'earthquake',
'updated': '2016-07-07T18:39:04.507Z'},
{'depth': 37.431,
'depthError': 1.32,
'dmin': 0.3205,
'gap': 248.0,
'horizontalError': 0.96,
'id': 'hv61327281',
'latitude': 18.9355,
'locationSource': 'hv',
'longitude': -155.2145,
'mag': 2.08,
'magError': 0.145,
'magNst': 23.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 51.0,
'place': '40km SE of Pahala, Hawaii',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-07T13:35:10.310Z',
'type': 'earthquake',
'updated': '2016-07-08T00:07:21.260Z'},
{'depth': 7.87,
'depthError': 0.65,
'dmin': 0.0266,
'gap': 92.0,
'horizontalError': 0.37,
'id': 'ci37622864',
'latitude': 32.9123333,
'locationSource': 'ci',
'longitude': -115.53183329999999,
'mag': 1.59,
'magError': 0.161,
'magNst': 29.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 24.0,
'place': '7km S of Brawley, CA',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-07T13:14:26.460Z',
'type': 'earthquake',
'updated': '2016-07-07T15:20:29.011Z'},
{'depth': 1.68,
'depthError': 0.86,
'dmin': 0.03912,
'gap': 200.0,
'horizontalError': 0.73,
'id': 'nc72659246',
'latitude': 35.9018333,
'locationSource': 'nc',
'longitude': -119.95733329999999,
'mag': 1.63,
'magError': 0.184,
'magNst': 12.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 25.0,
'place': '11km S of Kettleman City, California',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-07T12:59:17.940Z',
'type': 'earthquake',
'updated': '2016-07-09T02:42:01.588Z'},
{'depth': 12.79,
'depthError': 0.68,
'dmin': 0.025830000000000002,
'gap': 72.0,
'horizontalError': 0.27,
'id': 'ci37622848',
'latitude': 32.909,
'locationSource': 'ci',
'longitude': -115.53133329999999,
'mag': 3.76,
'magError': nan,
'magNst': 4.0,
'magSource': 'ci',
'magType': 'mw',
'net': 'ci',
'nst': 53.0,
'place': '8km NNE of Imperial, CA',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-07T12:55:25.250Z',
'type': 'earthquake',
'updated': '2016-07-08T23:01:28.185Z'},
{'depth': 15.0,
'depthError': 0.4,
'dmin': 0.08084838,
'gap': 302.4,
'horizontalError': 0.8,
'id': 'pr16189002',
'latitude': 18.0121,
'locationSource': 'pr',
'longitude': -66.5248,
'mag': 1.8,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '1km SE of Aguilita, Puerto Rico',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-07T12:32:45.200Z',
'type': 'earthquake',
'updated': '2016-07-07T15:02:48.148Z'},
{'depth': 32.3,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742655',
'latitude': 61.3756,
'locationSource': 'ak',
'longitude': -149.5506,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '15km S of Knik-Fairview, Alaska',
'rms': 0.17,
'status': 'automatic',
'time': '2016-07-07T12:27:46.000Z',
'type': 'earthquake',
'updated': '2016-07-07T12:45:42.350Z'},
{'depth': 2.4019999999999997,
'depthError': 0.32,
'dmin': 0.00968,
'gap': 118.0,
'horizontalError': 0.56,
'id': 'hv61327241',
'latitude': 19.3971667,
'locationSource': 'hv',
'longitude': -155.636,
'mag': 1.42,
'magError': 0.17600000000000002,
'magNst': 4.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 9.0,
'place': '24km ESE of Honaunau-Napoopoo, Hawaii',
'rms': 0.11,
'status': 'reviewed',
'time': '2016-07-07T12:27:07.010Z',
'type': 'earthquake',
'updated': '2016-07-07T18:19:33.720Z'},
{'depth': 5.5,
'depthError': 3.39,
'dmin': 0.1699,
'gap': 127.0,
'horizontalError': 0.35,
'id': 'nc72659236',
'latitude': 37.9288333,
'locationSource': 'nc',
'longitude': -118.6375,
'mag': 1.53,
'magError': 0.221,
'magNst': 25.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 30.0,
'place': '42km NE of Mammoth Lakes, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-07T12:19:28.850Z',
'type': 'earthquake',
'updated': '2016-07-08T13:36:02.977Z'},
{'depth': 20.0,
'depthError': 3.8,
'dmin': nan,
'gap': nan,
'horizontalError': 1.6,
'id': 'ak13742653',
'latitude': 62.2995,
'locationSource': 'ak',
'longitude': -149.5697,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '21km NE of Y, Alaska',
'rms': 0.28,
'status': 'automatic',
'time': '2016-07-07T11:31:25.000Z',
'type': 'earthquake',
'updated': '2016-07-07T12:04:34.882Z'},
{'depth': 68.0,
'depthError': 1.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13742652',
'latitude': 62.7859,
'locationSource': 'ak',
'longitude': -149.7424,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '54km NNE of Talkeetna, Alaska',
'rms': 0.59,
'status': 'automatic',
'time': '2016-07-07T11:26:56.000Z',
'type': 'earthquake',
'updated': '2016-07-07T11:44:08.279Z'},
{'depth': 86.6,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742645',
'latitude': 59.7231,
'locationSource': 'ak',
'longitude': -152.9945,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '65km W of Anchor Point, Alaska',
'rms': 0.48,
'status': 'automatic',
'time': '2016-07-07T11:03:28.000Z',
'type': 'earthquake',
'updated': '2016-07-07T11:44:07.688Z'},
{'depth': 81.4,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742639',
'latitude': 60.5791,
'locationSource': 'ak',
'longitude': -151.9259,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '36km W of Kenai, Alaska',
'rms': 0.61,
'status': 'automatic',
'time': '2016-07-07T10:27:59.000Z',
'type': 'earthquake',
'updated': '2016-07-07T11:01:59.032Z'},
{'depth': 7.18,
'depthError': 2.37,
'dmin': 0.465,
'gap': 123.0,
'horizontalError': 0.54,
'id': 'mb80160129',
'latitude': 48.0698333,
'locationSource': 'mb',
'longitude': -115.39733329999999,
'mag': 1.79,
'magError': 0.445,
'magNst': 6.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 16.0,
'place': '37km SSE of Libby, Montana',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-07T10:21:47.430Z',
'type': 'earthquake',
'updated': '2016-07-07T16:42:11.680Z'},
{'depth': 44.33,
'depthError': 6.5,
'dmin': 3.0780000000000003,
'gap': 27.0,
'horizontalError': 6.6,
'id': 'us100061jy',
'latitude': -7.895,
'locationSource': 'us',
'longitude': 126.7583,
'mag': 5.6,
'magError': 0.040999999999999995,
'magNst': 63.0,
'magSource': 'us',
'magType': 'mwp',
'net': 'us',
'nst': nan,
'place': '149km ENE of Dili, East Timor',
'rms': 1.25,
'status': 'reviewed',
'time': '2016-07-07T10:12:09.100Z',
'type': 'earthquake',
'updated': '2016-07-07T15:45:09.000Z'},
{'depth': 20.87,
'depthError': 6.1,
'dmin': 2.889,
'gap': 165.0,
'horizontalError': 9.0,
'id': 'us100061k1',
'latitude': 24.5345,
'locationSource': 'us',
'longitude': 126.3213,
'mag': 4.8,
'magError': 0.085,
'magNst': 42.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '109km ESE of Hirara, Japan',
'rms': 1.0,
'status': 'reviewed',
'time': '2016-07-07T10:09:48.790Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:57.786Z'},
{'depth': 11.25,
'depthError': 0.55,
'dmin': 0.05214,
'gap': 68.0,
'horizontalError': 0.31,
'id': 'hv61327071',
'latitude': 19.2473335,
'locationSource': 'hv',
'longitude': -155.55982969999997,
'mag': 1.97,
'magError': 0.21,
'magNst': 19.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 40.0,
'place': '9km WNW of Pahala, Hawaii',
'rms': 0.19,
'status': 'automatic',
'time': '2016-07-07T09:57:34.970Z',
'type': 'earthquake',
'updated': '2016-07-07T10:01:11.450Z'},
{'depth': 45.64,
'depthError': 7.3,
'dmin': 3.074,
'gap': 37.0,
'horizontalError': 6.9,
'id': 'us100061jt',
'latitude': -7.928,
'locationSource': 'us',
'longitude': 126.7776,
'mag': 5.2,
'magError': 0.087,
'magNst': 44.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '149km ENE of Dili, East Timor',
'rms': 1.16,
'status': 'reviewed',
'time': '2016-07-07T09:55:58.320Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:51.596Z'},
{'depth': 20.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742614',
'latitude': 60.7622,
'locationSource': 'ak',
'longitude': -147.2325,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '63km SW of Valdez, Alaska',
'rms': 0.58,
'status': 'automatic',
'time': '2016-07-07T09:51:01.000Z',
'type': 'earthquake',
'updated': '2016-07-07T10:20:56.534Z'},
{'depth': 51.2,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742613',
'latitude': 62.1419,
'locationSource': 'ak',
'longitude': -150.1087,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '13km W of Y, Alaska',
'rms': 0.86,
'status': 'automatic',
'time': '2016-07-07T09:45:07.000Z',
'type': 'earthquake',
'updated': '2016-07-07T10:00:16.329Z'},
{'depth': 0.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742607',
'latitude': 63.2811,
'locationSource': 'ak',
'longitude': -151.3181,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '119km W of Cantwell, Alaska',
'rms': 0.65,
'status': 'automatic',
'time': '2016-07-07T09:23:52.000Z',
'type': 'earthquake',
'updated': '2016-07-07T10:00:16.920Z'},
{'depth': 4.72,
'depthError': 0.39,
'dmin': 0.06471,
'gap': 109.0,
'horizontalError': 0.14,
'id': 'nc72659176',
'latitude': 37.542333299999996,
'locationSource': 'nc',
'longitude': -121.654,
'mag': 1.69,
'magError': 0.161,
'magNst': 40.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 38.0,
'place': '18km SSE of Livermore, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-07T09:16:46.060Z',
'type': 'earthquake',
'updated': '2016-07-07T17:44:03.354Z'},
{'depth': 0.19,
'depthError': 0.45,
'dmin': 0.009125,
'gap': 88.0,
'horizontalError': 0.25,
'id': 'nc72659166',
'latitude': 38.8175011,
'locationSource': 'nc',
'longitude': -122.8190002,
'mag': 1.01,
'magError': 0.03,
'magNst': 3.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 11.0,
'place': '7km NW of The Geysers, California',
'rms': 0.04,
'status': 'automatic',
'time': '2016-07-07T08:53:19.070Z',
'type': 'earthquake',
'updated': '2016-07-07T09:25:01.479Z'},
{'depth': 171.64,
'depthError': 9.1,
'dmin': 1.29,
'gap': 169.0,
'horizontalError': 10.0,
'id': 'us100061ji',
'latitude': 36.5688,
'locationSource': 'us',
'longitude': 70.581,
'mag': 4.5,
'magError': 0.163,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '39km SW of Jarm, Afghanistan',
'rms': 1.39,
'status': 'reviewed',
'time': '2016-07-07T08:41:38.740Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:03.766Z'},
{'depth': 73.2,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13742584',
'latitude': 58.56100000000001,
'locationSource': 'ak',
'longitude': -153.6394,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '107km NW of Kodiak Station, Alaska',
'rms': 0.39,
'status': 'automatic',
'time': '2016-07-07T08:25:12.000Z',
'type': 'earthquake',
'updated': '2016-07-07T08:57:50.150Z'},
{'depth': 0.78,
'depthError': 2.69,
'dmin': 0.3849,
'gap': 83.0,
'horizontalError': 0.57,
'id': 'nm60124022',
'latitude': 36.162833299999996,
'locationSource': 'nm',
'longitude': -91.6153333,
'mag': 2.41,
'magError': 0.033,
'magNst': 5.0,
'magSource': 'nm',
'magType': 'md',
'net': 'nm',
'nst': 17.0,
'place': '6km S of Ash Flat, Arkansas',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-07T08:00:06.190Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:57.648Z'},
{'depth': 6.74,
'depthError': 0.75,
'dmin': 0.3178,
'gap': 113.0,
'horizontalError': 0.41,
'id': 'uw61163112',
'latitude': 48.1261667,
'locationSource': 'uw',
'longitude': -121.61200000000001,
'mag': 1.07,
'magError': 0.071,
'magNst': 4.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 10.0,
'place': '14km S of Darrington, Washington',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-07T07:59:02.830Z',
'type': 'earthquake',
'updated': '2016-07-07T18:54:49.150Z'},
{'depth': 6.78,
'depthError': 0.64,
'dmin': 0.033139999999999996,
'gap': 74.0,
'horizontalError': 0.22,
'id': 'nc72659156',
'latitude': 39.222,
'locationSource': 'nc',
'longitude': -120.0875,
'mag': 1.09,
'magError': 0.152,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 14.0,
'place': '3km WSW of Tahoe Vista, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-07T07:38:57.810Z',
'type': 'earthquake',
'updated': '2016-07-11T19:09:25.089Z'},
{'depth': 12.57,
'depthError': 0.38,
'dmin': 0.087,
'gap': 121.0,
'horizontalError': 0.34,
'id': 'mb80160124',
'latitude': 46.7971667,
'locationSource': 'mb',
'longitude': -112.225,
'mag': 2.34,
'magError': 0.24,
'magNst': 12.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 25.0,
'place': '14km WNW of Helena Valley Northwest, Montana',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-07T07:02:11.190Z',
'type': 'earthquake',
'updated': '2016-07-07T13:56:38.290Z'},
{'depth': 10.49,
'depthError': 1.35,
'dmin': 0.273,
'gap': 206.0,
'horizontalError': 1.08,
'id': 'mb80160119',
'latitude': 43.8331667,
'locationSource': 'mb',
'longitude': -110.1085,
'mag': 1.6,
'magError': 0.147,
'magNst': 11.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 14.0,
'place': '50km NW of Dubois, Wyoming',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-07T07:00:27.340Z',
'type': 'earthquake',
'updated': '2016-07-07T17:31:01.330Z'},
{'depth': 10.1,
'depthError': 5.6,
'dmin': 0.895,
'gap': 136.08,
'horizontalError': 6.29,
'id': 'nn00550835',
'latitude': 39.5531,
'locationSource': 'nn',
'longitude': -115.77799999999999,
'mag': 1.1,
'magError': 0.0,
'magNst': 1.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 4.0,
'place': '16km ENE of Eureka, Nevada',
'rms': 0.2096,
'status': 'reviewed',
'time': '2016-07-07T06:49:26.795Z',
'type': 'earthquake',
'updated': '2016-07-08T13:36:58.227Z'},
{'depth': 109.1,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742574',
'latitude': 63.3742,
'locationSource': 'ak',
'longitude': -149.5411,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '29km W of Cantwell, Alaska',
'rms': 0.61,
'status': 'automatic',
'time': '2016-07-07T06:47:23.000Z',
'type': 'earthquake',
'updated': '2016-07-07T07:13:46.207Z'},
{'depth': 3.9,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742571',
'latitude': 62.641000000000005,
'locationSource': 'ak',
'longitude': -152.0127,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '104km WNW of Talkeetna, Alaska',
'rms': 0.69,
'status': 'automatic',
'time': '2016-07-07T06:34:46.000Z',
'type': 'earthquake',
'updated': '2016-07-07T06:53:00.375Z'},
{'depth': 8.56,
'depthError': 0.62,
'dmin': 0.08371,
'gap': 24.0,
'horizontalError': 0.18,
'id': 'ci37622704',
'latitude': 34.0101667,
'locationSource': 'ci',
'longitude': -116.904,
'mag': 1.64,
'magError': 0.175,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 62.0,
'place': '10km NNW of Banning, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-07T06:32:39.290Z',
'type': 'earthquake',
'updated': '2016-07-07T13:24:10.691Z'},
{'depth': 1.9,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742566',
'latitude': 62.6394,
'locationSource': 'ak',
'longitude': -152.0257,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '104km WNW of Talkeetna, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-07T06:12:55.000Z',
'type': 'earthquake',
'updated': '2016-07-07T06:32:06.722Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': 0.23399999999999999,
'gap': 192.44,
'horizontalError': 2.89,
'id': 'nn00550834',
'latitude': 37.0207,
'locationSource': 'nn',
'longitude': -117.7678,
'mag': 1.3,
'magError': 0.19,
'magNst': 8.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 11.0,
'place': '49km ESE of Big Pine, California',
'rms': 0.1784,
'status': 'reviewed',
'time': '2016-07-07T06:06:25.176Z',
'type': 'earthquake',
'updated': '2016-07-08T13:36:52.182Z'},
{'depth': 4.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742564',
'latitude': 61.2855,
'locationSource': 'ak',
'longitude': -152.4878,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.66,
'status': 'automatic',
'time': '2016-07-07T06:04:33.000Z',
'type': 'earthquake',
'updated': '2016-07-07T06:32:08.003Z'},
{'depth': 5.74,
'depthError': 1.04,
'dmin': 0.1367,
'gap': 42.0,
'horizontalError': 0.35,
'id': 'ci37622672',
'latitude': 33.0241667,
'locationSource': 'ci',
'longitude': -115.943,
'mag': 1.51,
'magError': 0.149,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 32.0,
'place': '22km SE of Ocotillo Wells, CA',
'rms': 0.26,
'status': 'reviewed',
'time': '2016-07-07T06:03:12.230Z',
'type': 'earthquake',
'updated': '2016-07-07T21:55:46.803Z'},
{'depth': 3.2,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742559',
'latitude': 61.2864,
'locationSource': 'ak',
'longitude': -152.5118,
'mag': 2.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.64,
'status': 'automatic',
'time': '2016-07-07T06:02:33.000Z',
'type': 'earthquake',
'updated': '2016-07-07T06:32:07.364Z'},
{'depth': 25.7,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 3.9,
'id': 'ak13742558',
'latitude': 53.1057,
'locationSource': 'ak',
'longitude': -164.5727,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '139km SE of Akutan, Alaska',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-07T05:25:19.000Z',
'type': 'earthquake',
'updated': '2016-07-07T16:22:32.808Z'},
{'depth': 80.6,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742540',
'latitude': 59.8373,
'locationSource': 'ak',
'longitude': -152.5542,
'mag': 3.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '41km W of Anchor Point, Alaska',
'rms': 0.63,
'status': 'automatic',
'time': '2016-07-07T04:43:16.000Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:39.238Z'},
{'depth': 9.8,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742537',
'latitude': 63.3891,
'locationSource': 'ak',
'longitude': -151.3926,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '122km W of Cantwell, Alaska',
'rms': 0.88,
'status': 'automatic',
'time': '2016-07-07T04:37:18.000Z',
'type': 'earthquake',
'updated': '2016-07-07T05:09:49.103Z'},
{'depth': 11.57,
'depthError': 0.63,
'dmin': 0.1266,
'gap': 36.0,
'horizontalError': 0.17,
'id': 'ci37622552',
'latitude': 33.4816667,
'locationSource': 'ci',
'longitude': -116.9125,
'mag': 1.68,
'magError': 0.16699999999999998,
'magNst': 24.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 57.0,
'place': '6km NW of Aguanga, CA',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-07T04:34:49.520Z',
'type': 'earthquake',
'updated': '2016-07-08T00:15:45.480Z'},
{'depth': 91.0,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13742530',
'latitude': 63.4197,
'locationSource': 'ak',
'longitude': -147.5903,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km E of Cantwell, Alaska',
'rms': 0.39,
'status': 'automatic',
'time': '2016-07-07T04:29:55.000Z',
'type': 'earthquake',
'updated': '2016-07-07T04:49:31.793Z'},
{'depth': 0.1,
'depthError': 23.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13742526',
'latitude': 59.9964,
'locationSource': 'ak',
'longitude': -141.7811,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km ESE of Cape Yakataga, Alaska',
'rms': 0.97,
'status': 'automatic',
'time': '2016-07-07T04:27:44.000Z',
'type': 'earthquake',
'updated': '2016-07-07T04:49:31.209Z'},
{'depth': 25.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742521',
'latitude': 61.4346,
'locationSource': 'ak',
'longitude': -150.0789,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '11km SW of Big Lake, Alaska',
'rms': 0.72,
'status': 'automatic',
'time': '2016-07-07T04:21:58.000Z',
'type': 'earthquake',
'updated': '2016-07-07T04:49:28.466Z'},
{'depth': 63.3,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13742512',
'latitude': 57.7909,
'locationSource': 'ak',
'longitude': -153.5889,
'mag': 3.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '36km NE of Larsen Bay, Alaska',
'rms': 0.62,
'status': 'automatic',
'time': '2016-07-07T04:19:27.000Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:45.420Z'},
{'depth': 80.26,
'depthError': 7.6,
'dmin': 3.617,
'gap': 45.0,
'horizontalError': 5.6,
'id': 'us100061i6',
'latitude': -6.0836,
'locationSource': 'us',
'longitude': 148.6563,
'mag': 5.2,
'magError': 0.09,
'magNst': 41.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '100km W of Kandrian, Papua New Guinea',
'rms': 1.04,
'status': 'reviewed',
'time': '2016-07-07T04:16:29.940Z',
'type': 'earthquake',
'updated': '2016-07-07T14:01:41.311Z'},
{'depth': 21.42,
'depthError': 1.62,
'dmin': 0.14,
'gap': 106.0,
'horizontalError': 0.63,
'id': 'se60124017',
'latitude': 35.978333299999996,
'locationSource': 'se',
'longitude': -83.55666670000001,
'mag': 2.1,
'magError': 0.262,
'magNst': 6.0,
'magSource': 'se',
'magType': 'md',
'net': 'se',
'nst': 11.0,
'place': '12km N of Sevierville, Tennessee',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-07T04:11:03.330Z',
'type': 'earthquake',
'updated': '2016-07-07T14:04:23.558Z'},
{'depth': 0.2,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742510',
'latitude': 63.1013,
'locationSource': 'ak',
'longitude': -144.4294,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km WSW of Tok, Alaska',
'rms': 0.9,
'status': 'automatic',
'time': '2016-07-07T04:04:40.000Z',
'type': 'earthquake',
'updated': '2016-07-07T04:27:35.698Z'},
{'depth': 197.78,
'depthError': 7.0,
'dmin': 0.451,
'gap': 99.0,
'horizontalError': 8.0,
'id': 'us100061hs',
'latitude': 37.147,
'locationSource': 'us',
'longitude': 71.9615,
'mag': 4.2,
'magError': 0.159,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': "17km SE of Roshtqal'a, Tajikistan",
'rms': 0.75,
'status': 'reviewed',
'time': '2016-07-07T03:41:10.130Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:17.753Z'},
{'depth': 5.25,
'depthError': 3.7,
'dmin': 0.205,
'gap': 63.0,
'horizontalError': 1.3,
'id': 'us100061hn',
'latitude': 35.7882,
'locationSource': 'us',
'longitude': -96.9901,
'mag': 2.0,
'magError': 0.154,
'magNst': 11.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '13km NW of Chandler, Oklahoma',
'rms': 0.27,
'status': 'reviewed',
'time': '2016-07-07T03:21:05.040Z',
'type': 'earthquake',
'updated': '2016-07-07T14:04:32.177Z'},
{'depth': 0.0,
'depthError': 395.8,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13742489',
'latitude': 60.1337,
'locationSource': 'ak',
'longitude': -141.5421,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '50km E of Cape Yakataga, Alaska',
'rms': 0.94,
'status': 'automatic',
'time': '2016-07-07T02:54:48.000Z',
'type': 'earthquake',
'updated': '2016-07-07T03:21:46.352Z'},
{'depth': 5.73,
'depthError': 0.74,
'dmin': 0.03756,
'gap': 95.0,
'horizontalError': 0.37,
'id': 'nc72659121',
'latitude': 39.227,
'locationSource': 'nc',
'longitude': -120.0845,
'mag': 1.1,
'magError': 0.077,
'magNst': 9.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 13.0,
'place': '3km WSW of Tahoe Vista, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-07T01:50:36.920Z',
'type': 'earthquake',
'updated': '2016-07-11T21:57:03.477Z'},
{'depth': 1.26,
'depthError': 0.36,
'dmin': 0.01252,
'gap': 85.0,
'horizontalError': 0.24,
'id': 'nc72659116',
'latitude': 38.842834499999995,
'locationSource': 'nc',
'longitude': -122.82866670000001,
'mag': 1.15,
'magError': 0.17,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 19.0,
'place': '9km WNW of Cobb, California',
'rms': 0.03,
'status': 'automatic',
'time': '2016-07-07T01:44:22.560Z',
'type': 'earthquake',
'updated': '2016-07-07T04:57:04.113Z'},
{'depth': 6.14,
'depthError': 0.61,
'dmin': 0.03588,
'gap': 75.0,
'horizontalError': 0.25,
'id': 'nc72659111',
'latitude': 39.2245,
'locationSource': 'nc',
'longitude': -120.08516670000002,
'mag': 1.53,
'magError': 0.15,
'magNst': 4.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 16.0,
'place': '3km WSW of Tahoe Vista, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-07T01:30:39.350Z',
'type': 'earthquake',
'updated': '2016-07-08T13:35:37.748Z'},
{'depth': 0.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742480',
'latitude': 61.2871,
'locationSource': 'ak',
'longitude': -152.5084,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '90km N of Redoubt Volcano, Alaska',
'rms': 0.57,
'status': 'automatic',
'time': '2016-07-07T01:16:04.000Z',
'type': 'earthquake',
'updated': '2016-07-07T01:40:01.251Z'},
{'depth': 0.0,
'depthError': 42.8,
'dmin': nan,
'gap': 176.399985888001,
'horizontalError': 0.7,
'id': 'ak13742476',
'latitude': 60.122,
'locationSource': 'ak',
'longitude': -141.3986,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': 11.0,
'place': '57km E of Cape Yakataga, Alaska',
'rms': 0.99,
'status': 'automatic',
'time': '2016-07-07T00:58:27.000Z',
'type': 'earthquake',
'updated': '2016-07-07T01:25:10.955Z'},
{'depth': 4.86,
'depthError': 0.94,
'dmin': 0.0209,
'gap': 124.0,
'horizontalError': 0.36,
'id': 'hv61326501',
'latitude': 19.296833300000003,
'locationSource': 'hv',
'longitude': -155.2098333,
'mag': 1.1,
'magError': 0.253,
'magNst': 15.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 36.0,
'place': '15km S of Volcano, Hawaii',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-07T00:54:59.630Z',
'type': 'earthquake',
'updated': '2016-07-08T00:20:33.060Z'},
{'depth': 6.71,
'depthError': 0.89,
'dmin': 0.1342,
'gap': 84.0,
'horizontalError': 0.32,
'id': 'ci37622504',
'latitude': 33.0608333,
'locationSource': 'ci',
'longitude': -116.4395,
'mag': 1.11,
'magError': 0.201,
'magNst': 24.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 26.0,
'place': '15km E of Julian, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-07T00:53:48.470Z',
'type': 'earthquake',
'updated': '2016-07-08T00:10:37.440Z'},
{'depth': 17.8,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13742472',
'latitude': 56.8263,
'locationSource': 'ak',
'longitude': -155.2565,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '110km SW of Larsen Bay, Alaska',
'rms': 1.03,
'status': 'reviewed',
'time': '2016-07-07T00:48:08.000Z',
'type': 'earthquake',
'updated': '2016-07-07T15:59:48.574Z'},
{'depth': 13.51,
'depthError': 0.75,
'dmin': 0.032,
'gap': 77.0,
'horizontalError': 0.49,
'id': 'mb80160114',
'latitude': 46.5526667,
'locationSource': 'mb',
'longitude': -112.48216670000001,
'mag': 1.32,
'magError': 0.052000000000000005,
'magNst': 3.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 17.0,
'place': '25km NE of Deer Lodge, Montana',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-07T00:40:29.030Z',
'type': 'earthquake',
'updated': '2016-07-07T17:18:47.380Z'},
{'depth': 6.591,
'depthError': 0.71,
'dmin': 0.01711,
'gap': 146.0,
'horizontalError': 0.34,
'id': 'hv61326491',
'latitude': 19.2901667,
'locationSource': 'hv',
'longitude': -155.2091667,
'mag': 1.38,
'magError': 0.095,
'magNst': 13.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 35.0,
'place': '15km S of Volcano, Hawaii',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-07T00:35:26.890Z',
'type': 'earthquake',
'updated': '2016-07-08T00:45:24.190Z'},
{'depth': 5.0,
'depthError': 7.3,
'dmin': 0.28925752,
'gap': 345.6,
'horizontalError': 4.6,
'id': 'pr16189001',
'latitude': 17.677,
'locationSource': 'pr',
'longitude': -67.0412,
'mag': 2.1,
'magError': 0.0,
'magNst': 2.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 3.0,
'place': '32km S of La Parguera, Puerto Rico',
'rms': 0.02,
'status': 'reviewed',
'time': '2016-07-07T00:33:31.200Z',
'type': 'earthquake',
'updated': '2016-07-07T04:02:12.308Z'},
{'depth': 13.0,
'depthError': 1.3,
'dmin': 0.22727377,
'gap': 115.2,
'horizontalError': 0.6,
'id': 'pr16189000',
'latitude': 18.1222,
'locationSource': 'pr',
'longitude': -64.9533,
'mag': 2.1,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '24km S of Charlotte Amalie, U.S. Virgin Islands',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-07T00:33:27.800Z',
'type': 'earthquake',
'updated': '2016-07-07T03:56:31.598Z'},
{'depth': -0.72,
'depthError': 31.61,
'dmin': 0.2846,
'gap': 327.0,
'horizontalError': 1.92,
'id': 'uw61162997',
'latitude': 45.6516667,
'locationSource': 'uw',
'longitude': -122.35383329999999,
'mag': 1.15,
'magError': 0.18,
'magNst': 7.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 8.0,
'place': '3km ENE of Fern Prairie, Washington',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-07T00:16:47.660Z',
'type': 'explosion',
'updated': '2016-07-07T00:56:11.890Z'},
{'depth': 5.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742315',
'latitude': 61.2826,
'locationSource': 'ak',
'longitude': -152.5045,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km N of Redoubt Volcano, Alaska',
'rms': 0.48,
'status': 'automatic',
'time': '2016-07-06T23:59:30.000Z',
'type': 'earthquake',
'updated': '2016-07-07T00:18:40.760Z'},
{'depth': 3.2,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745918',
'latitude': 61.2966,
'locationSource': 'ak',
'longitude': -152.4357,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km NW of Nikiski, Alaska',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-06T23:59:30.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:06:22.460Z'},
{'depth': 10.0,
'depthError': 1.7,
'dmin': 2.739,
'gap': 70.0,
'horizontalError': 7.3,
'id': 'us100061gt',
'latitude': 27.6922,
'locationSource': 'us',
'longitude': 56.3648,
'mag': 5.0,
'magError': 0.045,
'magNst': 155.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': "56km N of Bandar 'Abbas, Iran",
'rms': 0.84,
'status': 'reviewed',
'time': '2016-07-06T23:58:25.840Z',
'type': 'earthquake',
'updated': '2016-07-07T14:01:48.584Z'},
{'depth': 44.27,
'depthError': 6.9,
'dmin': 0.332,
'gap': 178.0,
'horizontalError': 8.4,
'id': 'us100061gv',
'latitude': -30.3422,
'locationSource': 'us',
'longitude': -71.5978,
'mag': 4.3,
'magError': 0.307,
'magNst': 3.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '47km NW of Ovalle, Chile',
'rms': 1.13,
'status': 'reviewed',
'time': '2016-07-06T23:56:28.550Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:35.490Z'},
{'depth': 25.3,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742303',
'latitude': 61.4635,
'locationSource': 'ak',
'longitude': -146.4499,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km N of Valdez, Alaska',
'rms': 0.47,
'status': 'reviewed',
'time': '2016-07-06T23:50:54.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:19.209Z'},
{'depth': 40.6,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742300',
'latitude': 60.7865,
'locationSource': 'ak',
'longitude': -147.3983,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km WSW of Valdez, Alaska',
'rms': 0.49,
'status': 'reviewed',
'time': '2016-07-06T23:46:56.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:23.298Z'},
{'depth': 35.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742297',
'latitude': 62.0682,
'locationSource': 'ak',
'longitude': -148.3091,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '41km NE of Sutton-Alpine, Alaska',
'rms': 0.71,
'status': 'reviewed',
'time': '2016-07-06T23:35:44.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:21.261Z'},
{'depth': 20.0,
'depthError': 17.9,
'dmin': 0.54797232,
'gap': 320.4,
'horizontalError': 1.4,
'id': 'pr16188010',
'latitude': 18.8992,
'locationSource': 'pr',
'longitude': -64.3359,
'mag': 2.6,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 8.0,
'place': '61km NNE of Road Town, British Virgin Islands',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-06T23:19:15.300Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:51.862Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742294',
'latitude': 64.983,
'locationSource': 'ak',
'longitude': -147.3787,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '21km NNE of Badger, Alaska',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-06T23:08:44.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:25.310Z'},
{'depth': 94.22,
'depthError': 4.4,
'dmin': 0.354,
'gap': 64.0,
'horizontalError': 4.1,
'id': 'us100061gk',
'latitude': -20.4188,
'locationSource': 'us',
'longitude': -69.3902,
'mag': 4.5,
'magError': 0.085,
'magNst': 41.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '81km ESE of Iquique, Chile',
'rms': 0.98,
'status': 'reviewed',
'time': '2016-07-06T22:59:10.110Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:29.355Z'},
{'depth': 9.3,
'depthError': 2.1,
'dmin': nan,
'gap': nan,
'horizontalError': 1.8,
'id': 'ak13745911',
'latitude': 63.2369,
'locationSource': 'ak',
'longitude': -137.8573,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '105km WSW of Mayo, Canada',
'rms': 0.81,
'status': 'reviewed',
'time': '2016-07-06T22:58:26.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:17.328Z'},
{'depth': 2.79,
'depthError': 1.15,
'dmin': 0.05434,
'gap': 65.0,
'horizontalError': 0.39,
'id': 'ci37622440',
'latitude': 34.2941667,
'locationSource': 'ci',
'longitude': -116.83733329999998,
'mag': 1.18,
'magError': 0.152,
'magNst': 28.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 30.0,
'place': '4km N of Big Bear City, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-06T22:48:23.690Z',
'type': 'earthquake',
'updated': '2016-07-07T13:25:03.880Z'},
{'depth': 101.8,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13745909',
'latitude': 59.8465,
'locationSource': 'ak',
'longitude': -152.9512,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '63km W of Anchor Point, Alaska',
'rms': 0.38,
'status': 'reviewed',
'time': '2016-07-06T22:33:04.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:15.332Z'},
{'depth': 86.7,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13745908',
'latitude': 62.4819,
'locationSource': 'ak',
'longitude': -151.2638,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '62km WNW of Talkeetna, Alaska',
'rms': 0.42,
'status': 'reviewed',
'time': '2016-07-06T22:31:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:13.286Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742286',
'latitude': 60.1625,
'locationSource': 'ak',
'longitude': -141.3215,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '62km E of Cape Yakataga, Alaska',
'rms': 0.83,
'status': 'reviewed',
'time': '2016-07-06T22:28:45.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:02:34.663Z'},
{'depth': 84.9,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 2.2,
'id': 'ak13742284',
'latitude': 51.8203,
'locationSource': 'ak',
'longitude': -177.71900000000002,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '29km ESE of Tanaga Volcano, Alaska',
'rms': 0.59,
'status': 'reviewed',
'time': '2016-07-06T22:25:10.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:03:35.267Z'},
{'depth': 103.8,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13745904',
'latitude': 59.8107,
'locationSource': 'ak',
'longitude': -153.0124,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '66km W of Anchor Point, Alaska',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-06T22:13:38.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:05:11.266Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13742281',
'latitude': 60.1303,
'locationSource': 'ak',
'longitude': -141.3886,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '58km E of Cape Yakataga, Alaska',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-06T21:57:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:03:06.802Z'},
{'depth': 30.34,
'depthError': 1.21,
'dmin': 0.016380000000000002,
'gap': 237.0,
'horizontalError': 0.95,
'id': 'hv61326276',
'latitude': 19.1678333,
'locationSource': 'hv',
'longitude': -155.4734955,
'mag': 1.73,
'magError': 0.1,
'magNst': 4.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 16.0,
'place': '4km S of Pahala, Hawaii',
'rms': 0.14,
'status': 'automatic',
'time': '2016-07-06T21:41:02.960Z',
'type': 'earthquake',
'updated': '2016-07-06T21:44:01.750Z'},
{'depth': 10.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 1.6,
'id': 'ak13742269',
'latitude': 54.89,
'locationSource': 'ak',
'longitude': -155.0344,
'mag': 3.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '110km SSE of Chirikof Island, Alaska',
'rms': 0.81,
'status': 'reviewed',
'time': '2016-07-06T21:20:51.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:03:28.786Z'},
{'depth': 33.6,
'depthError': 2.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13742265',
'latitude': 58.4516,
'locationSource': 'ak',
'longitude': -150.9283,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '114km NE of Kodiak, Alaska',
'rms': 0.61,
'status': 'reviewed',
'time': '2016-07-06T21:20:31.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:02:32.663Z'},
{'depth': -0.53,
'depthError': 31.61,
'dmin': 0.6062,
'gap': 226.0,
'horizontalError': 2.23,
'id': 'uw61162917',
'latitude': 49.441166700000004,
'locationSource': 'uw',
'longitude': -120.5245,
'mag': 1.67,
'magError': 0.08800000000000001,
'magNst': 3.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 6.0,
'place': '2km SSW of Princeton, Canada',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T21:05:05.180Z',
'type': 'explosion',
'updated': '2016-07-07T20:05:15.800Z'},
{'depth': 64.72,
'depthError': 5.1,
'dmin': 0.7290000000000001,
'gap': 71.0,
'horizontalError': 8.0,
'id': 'us100061fr',
'latitude': 6.84,
'locationSource': 'us',
'longitude': 126.2767,
'mag': 4.8,
'magError': 0.053,
'magNst': 111.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '2km W of Tamisan, Philippines',
'rms': 1.08,
'status': 'reviewed',
'time': '2016-07-06T21:00:49.520Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:04.627Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 3.549,
'gap': 88.0,
'horizontalError': 7.6,
'id': 'us100061ff',
'latitude': 36.3952,
'locationSource': 'us',
'longitude': 3.4784,
'mag': 4.2,
'magError': 0.125,
'magNst': 18.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '20km WNW of Ain Bessem, Algeria',
'rms': 0.69,
'status': 'reviewed',
'time': '2016-07-06T20:52:30.410Z',
'type': 'earthquake',
'updated': '2016-07-07T14:03:11.240Z'},
{'depth': 104.8,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13745899',
'latitude': 60.2046,
'locationSource': 'ak',
'longitude': -152.6437,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '31km S of Redoubt Volcano, Alaska',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-06T20:46:19.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:10.225Z'},
{'depth': 121.4,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742257',
'latitude': 62.2221,
'locationSource': 'ak',
'longitude': -152.3552,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '117km W of Talkeetna, Alaska',
'rms': 0.39,
'status': 'reviewed',
'time': '2016-07-06T20:40:53.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:42.171Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742256',
'latitude': 60.1878,
'locationSource': 'ak',
'longitude': -141.2972,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '64km ENE of Cape Yakataga, Alaska',
'rms': 0.72,
'status': 'reviewed',
'time': '2016-07-06T20:36:50.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:29.933Z'},
{'depth': 2.74,
'depthError': 0.48,
'dmin': 0.01025,
'gap': 137.0,
'horizontalError': 0.7,
'id': 'nc72659066',
'latitude': 40.4735,
'locationSource': 'nc',
'longitude': -121.51233329999998,
'mag': 1.34,
'magError': 0.149,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 6.0,
'place': '30km NW of Chester, California',
'rms': 0.01,
'status': 'reviewed',
'time': '2016-07-06T20:35:39.460Z',
'type': 'earthquake',
'updated': '2016-07-06T21:47:03.074Z'},
{'depth': 47.7,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13745896',
'latitude': 55.0837,
'locationSource': 'ak',
'longitude': -160.3433,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '29km SSE of Sand Point, Alaska',
'rms': 0.63,
'status': 'reviewed',
'time': '2016-07-06T20:34:16.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:09.215Z'},
{'depth': 1.71,
'depthError': 0.18,
'dmin': 0.007690000000000001,
'gap': 72.0,
'horizontalError': 0.13,
'id': 'nc72659061',
'latitude': 38.8065,
'locationSource': 'nc',
'longitude': -122.85616670000002,
'mag': 1.58,
'magError': 0.062,
'magNst': 15.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 47.0,
'place': '9km WNW of The Geysers, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-06T20:21:11.360Z',
'type': 'earthquake',
'updated': '2016-07-07T00:38:04.007Z'},
{'depth': -0.1,
'depthError': 31.61,
'dmin': 0.019469999999999998,
'gap': 27.0,
'horizontalError': 0.16,
'id': 'nc72659056',
'latitude': 36.8956667,
'locationSource': 'nc',
'longitude': -121.61183329999999,
'mag': 1.89,
'magError': 0.235,
'magNst': 45.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 54.0,
'place': '2km SE of Quarry near Aromas, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T20:13:23.350Z',
'type': 'quarry blast',
'updated': '2016-07-07T00:36:38.998Z'},
{'depth': 2.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742247',
'latitude': 61.2958,
'locationSource': 'ak',
'longitude': -152.4537,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.48,
'status': 'reviewed',
'time': '2016-07-06T19:44:22.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:17.304Z'},
{'depth': 0.3,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742242',
'latitude': 61.2935,
'locationSource': 'ak',
'longitude': -152.4742,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.62,
'status': 'reviewed',
'time': '2016-07-06T19:42:07.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:19.546Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 4.468,
'gap': 68.0,
'horizontalError': 8.0,
'id': 'us100061f2',
'latitude': -7.6301,
'locationSource': 'us',
'longitude': 155.059,
'mag': 4.9,
'magError': 0.053,
'magNst': 113.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '152km SSW of Panguna, Papua New Guinea',
'rms': 0.69,
'status': 'reviewed',
'time': '2016-07-06T19:41:41.040Z',
'type': 'earthquake',
'updated': '2016-07-07T14:01:55.869Z'},
{'depth': 19.6,
'depthError': 3.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13745891',
'latitude': 57.5293,
'locationSource': 'ak',
'longitude': -132.4608,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '85km NNE of Petersburg, Alaska',
'rms': 0.38,
'status': 'reviewed',
'time': '2016-07-06T19:19:56.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:08.438Z'},
{'depth': 8.13,
'depthError': 1.02,
'dmin': 0.058210000000000005,
'gap': 78.0,
'horizontalError': 0.4,
'id': 'ci37622360',
'latitude': 32.9598333,
'locationSource': 'ci',
'longitude': -115.55933329999999,
'mag': 1.4,
'magError': 0.149,
'magNst': 16.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 19.0,
'place': '3km SW of Brawley, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-06T19:13:29.890Z',
'type': 'earthquake',
'updated': '2016-07-06T19:48:28.342Z'},
{'depth': 16.2,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742239',
'latitude': 66.2593,
'locationSource': 'ak',
'longitude': -149.8135,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '112km S of Coldfoot, Alaska',
'rms': 0.79,
'status': 'reviewed',
'time': '2016-07-06T19:09:05.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:18.733Z'},
{'depth': -2.0,
'depthError': 31.61,
'dmin': 0.22899999999999998,
'gap': 106.0,
'horizontalError': 0.51,
'id': 'mb80160004',
'latitude': 46.0475,
'locationSource': 'mb',
'longitude': -112.50916670000001,
'mag': 1.35,
'magError': 0.336,
'magNst': 4.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 7.0,
'place': '5km NNE of Butte, Montana',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-06T19:06:15.800Z',
'type': 'quarry blast',
'updated': '2016-07-06T20:44:03.370Z'},
{'depth': 2.81,
'depthError': 0.31,
'dmin': 0.01318,
'gap': 66.0,
'horizontalError': 0.19,
'id': 'nc72659046',
'latitude': 38.8075,
'locationSource': 'nc',
'longitude': -122.81216670000002,
'mag': 1.5,
'magError': 0.133,
'magNst': 18.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 46.0,
'place': '5km NW of The Geysers, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-06T19:04:40.080Z',
'type': 'earthquake',
'updated': '2016-07-07T00:50:04.175Z'},
{'depth': -1.41,
'depthError': 31.61,
'dmin': 0.04423,
'gap': 73.0,
'horizontalError': 0.43,
'id': 'ci37622344',
'latitude': 34.3425,
'locationSource': 'ci',
'longitude': -116.8805,
'mag': 1.08,
'magError': 0.08,
'magNst': 24.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 11.0,
'place': '10km NNW of Big Bear City, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T19:04:36.230Z',
'type': 'quarry blast',
'updated': '2016-07-06T20:17:57.903Z'},
{'depth': 99.5,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13745889',
'latitude': 59.4275,
'locationSource': 'ak',
'longitude': -153.2618,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km WSW of Anchor Point, Alaska',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-06T18:58:07.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:07.850Z'},
{'depth': 13.66,
'depthError': 0.69,
'dmin': 0.02418,
'gap': 99.0,
'horizontalError': 1.58,
'id': 'nm60123982',
'latitude': 36.4183333,
'locationSource': 'nm',
'longitude': -89.6343333,
'mag': 1.25,
'magError': 0.012,
'magNst': 4.0,
'magSource': 'nm',
'magType': 'md',
'net': 'nm',
'nst': 13.0,
'place': '5km E of Portageville, Missouri',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-06T18:57:55.020Z',
'type': 'earthquake',
'updated': '2016-07-11T12:18:03.250Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 5.627999999999999,
'gap': 67.0,
'horizontalError': 7.4,
'id': 'us100061el',
'latitude': 31.8494,
'locationSource': 'us',
'longitude': 50.4844,
'mag': 4.5,
'magError': 0.076,
'magNst': 50.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '45km S of Farsan, Iran',
'rms': 0.91,
'status': 'reviewed',
'time': '2016-07-06T18:46:24.520Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:16.409Z'},
{'depth': 3.062,
'depthError': 0.57,
'dmin': 0.02396,
'gap': 98.0,
'horizontalError': 0.38,
'id': 'hv61326031',
'latitude': 19.422666699999997,
'locationSource': 'hv',
'longitude': -155.61333330000002,
'mag': 1.96,
'magError': 0.128,
'magNst': 7.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 18.0,
'place': '26km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-06T18:44:32.070Z',
'type': 'earthquake',
'updated': '2016-07-06T19:23:56.860Z'},
{'depth': 16.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742237',
'latitude': 62.297,
'locationSource': 'ak',
'longitude': -150.2,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '5km WSW of Talkeetna, Alaska',
'rms': 0.44,
'status': 'reviewed',
'time': '2016-07-06T18:44:29.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:21.276Z'},
{'depth': 2.46,
'depthError': 0.79,
'dmin': 0.07075,
'gap': 81.0,
'horizontalError': 0.37,
'id': 'ci37622328',
'latitude': 34.3528333,
'locationSource': 'ci',
'longitude': -118.476,
'mag': 1.1,
'magError': 0.154,
'magNst': 12.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 21.0,
'place': '8km SSE of Santa Clarita, CA',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-06T18:43:20.520Z',
'type': 'earthquake',
'updated': '2016-07-06T19:58:18.978Z'},
{'depth': 72.1,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13745887',
'latitude': 61.0672,
'locationSource': 'ak',
'longitude': -151.5063,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '43km NNW of Nikiski, Alaska',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-06T18:33:19.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:07.242Z'},
{'depth': 17.0,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742235',
'latitude': 61.8975,
'locationSource': 'ak',
'longitude': -147.7523,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '58km ENE of Sutton-Alpine, Alaska',
'rms': 0.6,
'status': 'reviewed',
'time': '2016-07-06T18:33:00.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:32.229Z'},
{'depth': 21.3,
'depthError': 2.8,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13745884',
'latitude': 53.5045,
'locationSource': 'ak',
'longitude': -164.8797,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km SE of Akutan, Alaska',
'rms': 0.32,
'status': 'reviewed',
'time': '2016-07-06T18:14:48.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:06.655Z'},
{'depth': 127.5,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13742230',
'latitude': 63.156000000000006,
'locationSource': 'ak',
'longitude': -150.8228,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '97km WSW of Cantwell, Alaska',
'rms': 0.42,
'status': 'reviewed',
'time': '2016-07-06T17:40:29.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:29.335Z'},
{'depth': 21.96,
'depthError': 0.78,
'dmin': 0.2763,
'gap': 95.0,
'horizontalError': 0.31,
'id': 'nc72659011',
'latitude': 37.6403333,
'locationSource': 'nc',
'longitude': -119.42766670000002,
'mag': 2.14,
'magError': 0.284,
'magNst': 35.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 35.0,
'place': '17km SE of Yosemite Valley, California',
'rms': 0.13,
'status': 'reviewed',
'time': '2016-07-06T17:29:50.460Z',
'type': 'earthquake',
'updated': '2016-07-09T05:14:03.288Z'},
{'depth': 52.9,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13742226',
'latitude': 61.352,
'locationSource': 'ak',
'longitude': -150.3566,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '28km WNW of Anchorage, Alaska',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-06T17:23:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:21.959Z'},
{'depth': 49.8,
'depthError': 7.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13742227',
'latitude': 52.776,
'locationSource': 'ak',
'longitude': -163.1915,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '228km SE of Akutan, Alaska',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-06T17:22:34.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:03:13.551Z'},
{'depth': 8.63,
'depthError': 0.29,
'dmin': 0.0403,
'gap': 82.0,
'horizontalError': 0.15,
'id': 'nc72659006',
'latitude': 38.2028333,
'locationSource': 'nc',
'longitude': -122.31,
'mag': 2.21,
'magError': 0.138,
'magNst': 61.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 64.0,
'place': '5km NW of American Canyon, California',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-06T17:21:31.070Z',
'type': 'earthquake',
'updated': '2016-07-07T14:04:10.243Z'},
{'depth': 128.4,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13742207',
'latitude': 57.8314,
'locationSource': 'ak',
'longitude': -156.1807,
'mag': 3.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '99km SSE of King Salmon, Alaska',
'rms': 0.77,
'status': 'reviewed',
'time': '2016-07-06T17:18:07.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:06:01.824Z'},
{'depth': 13.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742204',
'latitude': 63.0102,
'locationSource': 'ak',
'longitude': -154.6517,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '48km E of McGrath, Alaska',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-06T17:04:41.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:28.728Z'},
{'depth': 2.463,
'depthError': 0.17,
'dmin': 0.003225,
'gap': 63.0,
'horizontalError': 0.18,
'id': 'hv61325951',
'latitude': 19.389,
'locationSource': 'hv',
'longitude': -155.2795,
'mag': 1.9,
'magError': 0.11900000000000001,
'magNst': 7.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 27.0,
'place': '6km SW of Volcano, Hawaii',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-06T16:39:47.790Z',
'type': 'earthquake',
'updated': '2016-07-06T19:31:36.460Z'},
{'depth': 85.9,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13745874',
'latitude': 59.9265,
'locationSource': 'ak',
'longitude': -152.5593,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km WNW of Anchor Point, Alaska',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-06T16:34:24.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:04.484Z'},
{'depth': 1.8,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13742009',
'latitude': 62.9878,
'locationSource': 'ak',
'longitude': -154.6366,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '48km E of McGrath, Alaska',
'rms': 0.53,
'status': 'reviewed',
'time': '2016-07-06T16:34:09.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:28.040Z'},
{'depth': 1.07,
'depthError': 0.15,
'dmin': 0.00618,
'gap': 112.0,
'horizontalError': 0.17,
'id': 'nc72658996',
'latitude': 38.7733333,
'locationSource': 'nc',
'longitude': -122.70933329999998,
'mag': 1.5,
'magError': 0.281,
'magNst': 7.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 33.0,
'place': '4km E of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-06T16:30:24.020Z',
'type': 'earthquake',
'updated': '2016-07-07T02:54:02.822Z'},
{'depth': 4.7,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 1.7,
'id': 'ak13742007',
'latitude': 52.2912,
'locationSource': 'ak',
'longitude': -173.5681,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km ENE of Atka, Alaska',
'rms': 0.39,
'status': 'reviewed',
'time': '2016-07-06T16:14:58.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:01.951Z'},
{'depth': 36.89,
'depthError': 6.7,
'dmin': 5.332000000000001,
'gap': 102.0,
'horizontalError': 10.4,
'id': 'us100061bb',
'latitude': -24.2692,
'locationSource': 'us',
'longitude': -175.7264,
'mag': 4.8,
'magError': 0.069,
'magNst': 65.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'South of Tonga',
'rms': 0.84,
'status': 'reviewed',
'time': '2016-07-06T15:29:24.790Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:10.884Z'},
{'depth': 389.34,
'depthError': 6.5,
'dmin': 2.398,
'gap': 57.0,
'horizontalError': 2.8,
'id': 'us100061b9',
'latitude': -7.4141,
'locationSource': 'us',
'longitude': 120.0102,
'mag': 4.5,
'magError': 0.08,
'magNst': 46.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '102km NNW of Nggilat, Indonesia',
'rms': 0.96,
'status': 'reviewed',
'time': '2016-07-06T15:29:00.950Z',
'type': 'earthquake',
'updated': '2016-07-07T14:02:23.202Z'},
{'depth': 12.3,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741994',
'latitude': 63.1554,
'locationSource': 'ak',
'longitude': -152.70600000000002,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '147km E of McGrath, Alaska',
'rms': 1.08,
'status': 'reviewed',
'time': '2016-07-06T15:28:04.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:23.197Z'},
{'depth': 5.343999999999999,
'depthError': 3.6,
'dmin': nan,
'gap': 33.0,
'horizontalError': 0.8,
'id': 'us100061b3',
'latitude': 35.8098,
'locationSource': 'tul',
'longitude': -97.5717,
'mag': 2.6,
'magError': nan,
'magNst': nan,
'magSource': 'tul',
'magType': 'ml',
'net': 'us',
'nst': nan,
'place': '15km WSW of Guthrie, Oklahoma',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-06T15:19:09.900Z',
'type': 'earthquake',
'updated': '2016-07-08T04:11:18.238Z'},
{'depth': 6.7,
'depthError': 0.56,
'dmin': 0.1103,
'gap': 38.0,
'horizontalError': 0.18,
'id': 'ci37622128',
'latitude': 33.5421667,
'locationSource': 'ci',
'longitude': -116.92816670000002,
'mag': 1.16,
'magError': 0.23,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 40.0,
'place': '12km NNW of Aguanga, CA',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-06T15:18:22.220Z',
'type': 'earthquake',
'updated': '2016-07-06T16:22:19.760Z'},
{'depth': 101.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741798',
'latitude': 63.0197,
'locationSource': 'ak',
'longitude': -150.6675,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '82km NNW of Talkeetna, Alaska',
'rms': 0.44,
'status': 'reviewed',
'time': '2016-07-06T14:57:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:27.136Z'},
{'depth': 2.282,
'depthError': 0.58,
'dmin': 0.02348,
'gap': 95.0,
'horizontalError': 0.36,
'id': 'hv61325781',
'latitude': 19.421,
'locationSource': 'hv',
'longitude': -155.6118333,
'mag': 1.43,
'magError': 0.203,
'magNst': 3.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 13.0,
'place': '26km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-06T14:56:28.650Z',
'type': 'earthquake',
'updated': '2016-07-06T19:41:36.420Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': 0.741,
'gap': 329.24,
'horizontalError': 12.33,
'id': 'nn00550775',
'latitude': 38.3393,
'locationSource': 'nn',
'longitude': -119.39399999999999,
'mag': 1.1,
'magError': 0.0,
'magNst': 1.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 4.0,
'place': '16km WNW of Bridgeport, California',
'rms': 0.0954,
'status': 'reviewed',
'time': '2016-07-06T14:52:54.558Z',
'type': 'earthquake',
'updated': '2016-07-07T14:28:23.653Z'},
{'depth': 82.4,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13745865',
'latitude': 60.4805,
'locationSource': 'ak',
'longitude': -151.9464,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '36km W of Kalifornsky, Alaska',
'rms': 0.32,
'status': 'reviewed',
'time': '2016-07-06T14:51:14.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:01.316Z'},
{'depth': 4.162,
'depthError': 0.81,
'dmin': 0.02248,
'gap': 113.0,
'horizontalError': 0.48,
'id': 'hv61325761',
'latitude': 19.425333300000002,
'locationSource': 'hv',
'longitude': -155.62816669999998,
'mag': 1.28,
'magError': 0.21100000000000002,
'magNst': 6.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 13.0,
'place': '25km E of Honaunau-Napoopoo, Hawaii',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-06T14:29:29.340Z',
'type': 'earthquake',
'updated': '2016-07-06T19:48:44.720Z'},
{'depth': 3.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13741794',
'latitude': 63.3873,
'locationSource': 'ak',
'longitude': -151.345,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '119km W of Cantwell, Alaska',
'rms': 0.55,
'status': 'reviewed',
'time': '2016-07-06T14:14:33.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:27.882Z'},
{'depth': 3.3,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741792',
'latitude': 61.2959,
'locationSource': 'ak',
'longitude': -152.4474,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-06T14:08:13.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:27.184Z'},
{'depth': 2.71,
'depthError': 0.52,
'dmin': 0.05561,
'gap': 52.0,
'horizontalError': 0.26,
'id': 'ci37622064',
'latitude': 33.4485,
'locationSource': 'ci',
'longitude': -115.81633329999998,
'mag': 1.13,
'magError': 0.17800000000000002,
'magNst': 17.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 39.0,
'place': '13km NW of Bombay Beach, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-06T14:04:55.430Z',
'type': 'earthquake',
'updated': '2016-07-06T17:12:41.668Z'},
{'depth': 26.36,
'depthError': 0.83,
'dmin': 0.07177,
'gap': 131.0,
'horizontalError': 1.1,
'id': 'uw61162687',
'latitude': 47.4313333,
'locationSource': 'uw',
'longitude': -122.7675,
'mag': 1.05,
'magError': 0.07400000000000001,
'magNst': 6.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 10.0,
'place': '5km ESE of Belfair, Washington',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-06T14:03:35.380Z',
'type': 'earthquake',
'updated': '2016-07-06T18:10:59.010Z'},
{'depth': 60.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13741789',
'latitude': 61.3918,
'locationSource': 'ak',
'longitude': -151.2155,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km WSW of Big Lake, Alaska',
'rms': 0.48,
'status': 'reviewed',
'time': '2016-07-06T13:51:32.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:26.375Z'},
{'depth': 5.99,
'depthError': 31.61,
'dmin': 0.1977,
'gap': 188.0,
'horizontalError': 1.69,
'id': 'uu60154987',
'latitude': 39.424,
'locationSource': 'uu',
'longitude': -110.33283329999999,
'mag': 1.8,
'magError': 0.34299999999999997,
'magNst': 5.0,
'magSource': 'uu',
'magType': 'md',
'net': 'uu',
'nst': 5.0,
'place': '15km SSE of East Carbon City, Utah',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-06T13:37:16.930Z',
'type': 'earthquake',
'updated': '2016-07-06T20:40:35.530Z'},
{'depth': 55.2,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13745859',
'latitude': 58.9481,
'locationSource': 'ak',
'longitude': -152.4364,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km SSW of Homer, Alaska',
'rms': 0.41,
'status': 'reviewed',
'time': '2016-07-06T13:36:39.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:00.711Z'},
{'depth': 4.32,
'depthError': 0.68,
'dmin': 0.04654,
'gap': 81.0,
'horizontalError': 0.25,
'id': 'ci37622048',
'latitude': 33.3933333,
'locationSource': 'ci',
'longitude': -116.89183329999999,
'mag': 1.07,
'magError': 0.11,
'magNst': 27.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 33.0,
'place': '5km NNW of Palomar Observatory, CA',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-06T13:35:28.710Z',
'type': 'earthquake',
'updated': '2016-07-06T14:59:45.800Z'},
{'depth': 80.5,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13741594',
'latitude': 59.7031,
'locationSource': 'ak',
'longitude': -152.6022,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km W of Anchor Point, Alaska',
'rms': 0.41,
'status': 'reviewed',
'time': '2016-07-06T13:14:29.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:29.229Z'},
{'depth': 3.8,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741590',
'latitude': 61.0392,
'locationSource': 'ak',
'longitude': -147.7042,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km ENE of Whittier, Alaska',
'rms': 0.68,
'status': 'reviewed',
'time': '2016-07-06T13:14:10.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:28.549Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 3.6489999999999996,
'gap': 48.0,
'horizontalError': 10.5,
'id': 'us100061af',
'latitude': -18.6197,
'locationSource': 'us',
'longitude': -173.7507,
'mag': 5.2,
'magError': 0.04,
'magNst': 205.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '24km E of Neiafu, Tonga',
'rms': 1.2,
'status': 'reviewed',
'time': '2016-07-06T13:13:58.400Z',
'type': 'earthquake',
'updated': '2016-07-07T14:04:45.904Z'},
{'depth': 6.2,
'depthError': 0.36,
'dmin': 0.06585,
'gap': 83.0,
'horizontalError': 0.11,
'id': 'nc72658971',
'latitude': 35.6615,
'locationSource': 'nc',
'longitude': -121.06316670000001,
'mag': 1.79,
'magError': 0.204,
'magNst': 46.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 57.0,
'place': '10km N of Cambria, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-06T12:51:26.230Z',
'type': 'earthquake',
'updated': '2016-07-06T23:52:03.666Z'},
{'depth': 6.08,
'depthError': 1.0,
'dmin': 0.1413,
'gap': 65.0,
'horizontalError': 0.16,
'id': 'ci37622000',
'latitude': 32.9301667,
'locationSource': 'ci',
'longitude': -116.2605,
'mag': 2.03,
'magError': 0.14800000000000002,
'magNst': 55.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 60.0,
'place': '27km SSW of Ocotillo Wells, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-06T12:49:24.760Z',
'type': 'earthquake',
'updated': '2016-07-06T17:04:22.290Z'},
{'depth': 3.62,
'depthError': 0.43,
'dmin': 0.007751000000000001,
'gap': 101.0,
'horizontalError': 0.22,
'id': 'nc72658956',
'latitude': 38.7931667,
'locationSource': 'nc',
'longitude': -122.77799999999999,
'mag': 1.03,
'magError': 0.091,
'magNst': 5.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 35.0,
'place': '2km NW of The Geysers, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-06T12:27:49.810Z',
'type': 'earthquake',
'updated': '2016-07-07T00:06:31.467Z'},
{'depth': 7.072,
'depthError': 0.77,
'dmin': 0.04411,
'gap': 144.0,
'horizontalError': 0.44,
'id': 'hv61325711',
'latitude': 19.3278333,
'locationSource': 'hv',
'longitude': -155.114,
'mag': 1.46,
'magError': 0.275,
'magNst': 13.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 26.0,
'place': '17km SE of Volcano, Hawaii',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-06T12:19:09.650Z',
'type': 'earthquake',
'updated': '2016-07-06T20:18:11.790Z'},
{'depth': 57.5,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13745852',
'latitude': 60.5806,
'locationSource': 'ak',
'longitude': -151.127,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '5km NNW of Ridgeway, Alaska',
'rms': 0.41,
'status': 'reviewed',
'time': '2016-07-06T12:13:09.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:59.747Z'},
{'depth': 5.76,
'depthError': 0.35,
'dmin': 0.0139,
'gap': 128.0,
'horizontalError': 0.21,
'id': 'nc72658951',
'latitude': 36.5755,
'locationSource': 'nc',
'longitude': -121.1728333,
'mag': 1.06,
'magError': 0.155,
'magNst': 12.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 19.0,
'place': '21km NE of Soledad, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-06T12:09:49.660Z',
'type': 'earthquake',
'updated': '2016-07-07T00:08:50.785Z'},
{'depth': 8.6,
'depthError': 3.0,
'dmin': nan,
'gap': nan,
'horizontalError': 3.9,
'id': 'ak13745851',
'latitude': 53.4164,
'locationSource': 'ak',
'longitude': -163.4581,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '159km S of False Pass, Alaska',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-06T12:00:08.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:04:38.186Z'},
{'depth': 17.2,
'depthError': 2.9,
'dmin': nan,
'gap': nan,
'horizontalError': 2.3,
'id': 'ak13741397',
'latitude': 53.4207,
'locationSource': 'ak',
'longitude': -163.4489,
'mag': 2.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '159km S of False Pass, Alaska',
'rms': 0.45,
'status': 'reviewed',
'time': '2016-07-06T11:58:03.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:03:20.242Z'},
{'depth': 11.6,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13741393',
'latitude': 53.441,
'locationSource': 'ak',
'longitude': -163.4722,
'mag': 3.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '156km S of False Pass, Alaska',
'rms': 0.42,
'status': 'reviewed',
'time': '2016-07-06T11:54:26.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:03:06.361Z'},
{'depth': 54.8,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741383',
'latitude': 60.8926,
'locationSource': 'ak',
'longitude': -150.7409,
'mag': 2.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km NE of Nikiski, Alaska',
'rms': 0.73,
'status': 'reviewed',
'time': '2016-07-06T11:45:14.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:06:30.166Z'},
{'depth': 43.7,
'depthError': 1.3,
'dmin': nan,
'gap': nan,
'horizontalError': 1.7,
'id': 'ak13745847',
'latitude': 53.4714,
'locationSource': 'ak',
'longitude': -163.5141,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '153km S of False Pass, Alaska',
'rms': 0.65,
'status': 'reviewed',
'time': '2016-07-06T11:41:05.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:04:31.479Z'},
{'depth': 120.0,
'depthError': 1.1,
'dmin': 0.42580144,
'gap': 316.8,
'horizontalError': 3.2,
'id': 'pr16188009',
'latitude': 18.1805,
'locationSource': 'pr',
'longitude': -67.8732,
'mag': 3.1,
'magError': 0.0,
'magNst': 4.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '68km WSW of Rincon, Puerto Rico',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T11:38:10.300Z',
'type': 'earthquake',
'updated': '2016-07-07T14:08:03.515Z'},
{'depth': 1.23,
'depthError': 0.28,
'dmin': 0.008806999999999999,
'gap': 42.0,
'horizontalError': 0.15,
'id': 'nc72658946',
'latitude': 38.8305,
'locationSource': 'nc',
'longitude': -122.79533329999998,
'mag': 1.07,
'magError': 0.16,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 27.0,
'place': '6km W of Cobb, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-06T11:32:47.070Z',
'type': 'earthquake',
'updated': '2016-07-07T00:37:02.820Z'},
{'depth': 5.33,
'depthError': 1.03,
'dmin': 0.0301,
'gap': 66.0,
'horizontalError': 0.44,
'id': 'uu60154977',
'latitude': 44.6245,
'locationSource': 'uu',
'longitude': -110.67566670000001,
'mag': 1.91,
'magError': 0.317,
'magNst': 6.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 21.0,
'place': '21km NNE of Old Faithful Geyser, Wyoming',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-06T11:10:34.110Z',
'type': 'earthquake',
'updated': '2016-07-06T20:25:02.140Z'},
{'depth': 12.3,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13741381',
'latitude': 65.4076,
'locationSource': 'ak',
'longitude': -144.6646,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '7km S of Circle Hot Springs Station, Alaska',
'rms': 1.06,
'status': 'reviewed',
'time': '2016-07-06T11:02:13.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:29.792Z'},
{'depth': 1.7,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13741380',
'latitude': 65.408,
'locationSource': 'ak',
'longitude': -144.64700000000002,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '7km SSE of Circle Hot Springs Station, Alaska',
'rms': 0.96,
'status': 'reviewed',
'time': '2016-07-06T11:01:27.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:24.105Z'},
{'depth': 134.2,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13745844',
'latitude': 60.1876,
'locationSource': 'ak',
'longitude': -153.2544,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '43km SW of Redoubt Volcano, Alaska',
'rms': 0.51,
'status': 'reviewed',
'time': '2016-07-06T11:00:46.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:57.346Z'},
{'depth': 21.76,
'depthError': 0.68,
'dmin': 0.09018999999999999,
'gap': 107.0,
'horizontalError': 0.43,
'id': 'uw61162632',
'latitude': 47.2875,
'locationSource': 'uw',
'longitude': -122.2835,
'mag': 1.06,
'magError': 0.115,
'magNst': 14.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 17.0,
'place': '1km N of Lakeland South, Washington',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-06T10:52:08.660Z',
'type': 'earthquake',
'updated': '2016-07-06T17:59:51.230Z'},
{'depth': 15.1,
'depthError': 3.9,
'dmin': nan,
'gap': nan,
'horizontalError': 3.6,
'id': 'ak13741379',
'latitude': 52.7063,
'locationSource': 'ak',
'longitude': -166.6561,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '130km S of Unalaska, Alaska',
'rms': 0.47,
'status': 'reviewed',
'time': '2016-07-06T10:49:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:37.723Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 2.719,
'gap': 93.0,
'horizontalError': 7.8,
'id': 'us1000619p',
'latitude': 24.2435,
'locationSource': 'us',
'longitude': 125.9831,
'mag': 4.3,
'magError': 0.086,
'magNst': 13.0,
'magSource': 'us',
'magType': 'mwr',
'net': 'us',
'nst': nan,
'place': '93km SE of Hirara, Japan',
'rms': 0.87,
'status': 'reviewed',
'time': '2016-07-06T10:41:15.100Z',
'type': 'earthquake',
'updated': '2016-07-07T14:05:56.562Z'},
{'depth': 8.14,
'depthError': 0.87,
'dmin': 0.05824,
'gap': 44.0,
'horizontalError': 0.39,
'id': 'ci37621968',
'latitude': 32.914666700000005,
'locationSource': 'ci',
'longitude': -115.859,
'mag': 1.21,
'magError': 0.17,
'magNst': 19.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '24km NNE of Ocotillo, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-06T10:35:27.540Z',
'type': 'earthquake',
'updated': '2016-07-06T13:14:43.541Z'},
{'depth': 64.1,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13741377',
'latitude': 60.434,
'locationSource': 'ak',
'longitude': -150.9788,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '7km SE of Soldotna, Alaska',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-06T10:20:51.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:24.615Z'},
{'depth': 20.0,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741374',
'latitude': 61.4492,
'locationSource': 'ak',
'longitude': -146.5966,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km NNW of Valdez, Alaska',
'rms': 0.59,
'status': 'reviewed',
'time': '2016-07-06T10:20:02.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:32.791Z'},
{'depth': 99.4,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741372',
'latitude': 59.7996,
'locationSource': 'ak',
'longitude': -153.0675,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '69km W of Anchor Point, Alaska',
'rms': 0.4,
'status': 'reviewed',
'time': '2016-07-06T10:08:55.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:08.686Z'},
{'depth': 7.0,
'depthError': 0.55,
'dmin': 0.07299,
'gap': 52.0,
'horizontalError': 0.14,
'id': 'nc72658931',
'latitude': 39.278,
'locationSource': 'nc',
'longitude': -123.31483329999999,
'mag': 2.39,
'magError': 0.217,
'magNst': 31.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 31.0,
'place': '9km W of Redwood Valley, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-06T09:59:01.920Z',
'type': 'earthquake',
'updated': '2016-07-07T01:35:03.510Z'},
{'depth': 109.9,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741369',
'latitude': 63.1095,
'locationSource': 'ak',
'longitude': -150.3482,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '76km WSW of Cantwell, Alaska',
'rms': 0.43,
'status': 'reviewed',
'time': '2016-07-06T09:56:55.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:23.444Z'},
{'depth': 10.279000000000002,
'depthError': 0.65,
'dmin': 0.04079,
'gap': 44.0,
'horizontalError': 0.26,
'id': 'hv61325576',
'latitude': 19.377,
'locationSource': 'hv',
'longitude': -155.4143333,
'mag': 1.48,
'magError': 0.195,
'magNst': 19.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 40.0,
'place': '19km WSW of Volcano, Hawaii',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-06T09:26:16.220Z',
'type': 'earthquake',
'updated': '2016-07-06T20:36:30.410Z'},
{'depth': 13.39,
'depthError': 1.1,
'dmin': 0.1035,
'gap': 57.0,
'horizontalError': 0.39,
'id': 'uw61162627',
'latitude': 48.000666700000004,
'locationSource': 'uw',
'longitude': -121.91266670000002,
'mag': 1.72,
'magError': 0.139,
'magNst': 28.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 18.0,
'place': '9km NE of Three Lakes, Washington',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-06T09:01:26.610Z',
'type': 'earthquake',
'updated': '2016-07-06T17:42:49.120Z'},
{'depth': 69.3,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13741366',
'latitude': 51.5982,
'locationSource': 'ak',
'longitude': -179.2876,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '39km NNW of Amatignak Island, Alaska',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-06T08:56:34.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:36.372Z'},
{'depth': 22.4,
'depthError': 6.2,
'dmin': nan,
'gap': nan,
'horizontalError': 7.5,
'id': 'ak13745835',
'latitude': 52.3735,
'locationSource': 'ak',
'longitude': -169.422,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '73km SSW of Nikolski, Alaska',
'rms': 0.31,
'status': 'reviewed',
'time': '2016-07-06T08:30:27.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:56.781Z'},
{'depth': 6.25,
'depthError': 0.68,
'dmin': 0.059210000000000006,
'gap': 93.0,
'horizontalError': 0.26,
'id': 'nc72658926',
'latitude': 37.5205,
'locationSource': 'nc',
'longitude': -118.78366670000001,
'mag': 1.07,
'magError': 0.159,
'magNst': 20.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 25.0,
'place': '21km SE of Mammoth Lakes, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-06T08:14:59.410Z',
'type': 'earthquake',
'updated': '2016-07-06T19:22:02.668Z'},
{'depth': 16.0,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13741364',
'latitude': 63.5144,
'locationSource': 'ak',
'longitude': -152.2465,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '164km W of Cantwell, Alaska',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-06T08:12:18.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:22.564Z'},
{'depth': 31.3,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13741363',
'latitude': 60.6573,
'locationSource': 'ak',
'longitude': -149.5732,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '50km WSW of Whittier, Alaska',
'rms': 0.43,
'status': 'reviewed',
'time': '2016-07-06T08:09:22.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:35.765Z'},
{'depth': 16.7,
'depthError': 6.6,
'dmin': nan,
'gap': nan,
'horizontalError': 5.4,
'id': 'ak13745832',
'latitude': 53.1767,
'locationSource': 'ak',
'longitude': -165.4784,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '104km SE of Unalaska, Alaska',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-06T07:45:10.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:55.898Z'},
{'depth': 3.46,
'depthError': 31.61,
'dmin': 0.21,
'gap': 136.0,
'horizontalError': 1.17,
'id': 'uu60154972',
'latitude': 37.789,
'locationSource': 'uu',
'longitude': -112.98383329999999,
'mag': 1.07,
'magError': 0.126,
'magNst': 2.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 8.0,
'place': '3km ENE of Enoch, Utah',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-06T07:44:32.470Z',
'type': 'earthquake',
'updated': '2016-07-07T21:19:35.720Z'},
{'depth': 91.9,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13745831',
'latitude': 58.882,
'locationSource': 'ak',
'longitude': -153.9785,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '110km SSE of Old Iliamna, Alaska',
'rms': 0.45,
'status': 'reviewed',
'time': '2016-07-06T07:41:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:55.244Z'},
{'depth': 2.7,
'depthError': 0.52,
'dmin': 0.010159999999999999,
'gap': 135.0,
'horizontalError': 0.62,
'id': 'nc72658921',
'latitude': 40.474166700000005,
'locationSource': 'nc',
'longitude': -121.51533329999998,
'mag': 1.2,
'magError': 0.151,
'magNst': 7.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 7.0,
'place': '30km NW of Chester, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-06T07:36:40.280Z',
'type': 'earthquake',
'updated': '2016-07-06T18:47:02.537Z'},
{'depth': 17.4,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 2.0,
'id': 'ak13741178',
'latitude': 59.6205,
'locationSource': 'ak',
'longitude': -150.4611,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '48km ESE of Fritz Creek, Alaska',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-06T07:30:05.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:26.597Z'},
{'depth': 6.4,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13741804',
'latitude': 53.7128,
'locationSource': 'ak',
'longitude': -166.986,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '34km WSW of Unalaska, Alaska',
'rms': 0.49,
'status': 'reviewed',
'time': '2016-07-06T07:28:42.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:25.238Z'},
{'depth': 26.4,
'depthError': 5.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13741176',
'latitude': 51.3322,
'locationSource': 'ak',
'longitude': -178.449,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '46km E of Amatignak Island, Alaska',
'rms': 0.61,
'status': 'reviewed',
'time': '2016-07-06T07:27:25.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:25.911Z'},
{'depth': 16.57,
'depthError': 0.5,
'dmin': 0.0378,
'gap': 56.0,
'horizontalError': 0.32,
'id': 'uw61162617',
'latitude': 47.1728333,
'locationSource': 'uw',
'longitude': -122.2015,
'mag': 2.03,
'magError': 0.276,
'magNst': 64.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 27.0,
'place': '1km WSW of Bonney Lake, Washington',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T07:14:12.800Z',
'type': 'earthquake',
'updated': '2016-07-07T14:11:39.936Z'},
{'depth': 64.0,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13741174',
'latitude': 60.2427,
'locationSource': 'ak',
'longitude': -151.6326,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '22km SW of Cohoe, Alaska',
'rms': 0.55,
'status': 'reviewed',
'time': '2016-07-06T07:13:49.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:09.976Z'},
{'depth': 2.2,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741172',
'latitude': 61.3061,
'locationSource': 'ak',
'longitude': -152.4295,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km NW of Nikiski, Alaska',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-06T07:13:12.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:09.311Z'},
{'depth': 3.7,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741169',
'latitude': 61.3097,
'locationSource': 'ak',
'longitude': -152.4504,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '93km NW of Nikiski, Alaska',
'rms': 0.45,
'status': 'reviewed',
'time': '2016-07-06T07:10:05.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:11.306Z'},
{'depth': 1.3,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13741167',
'latitude': 61.3043,
'locationSource': 'ak',
'longitude': -152.4433,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km NW of Nikiski, Alaska',
'rms': 0.4,
'status': 'reviewed',
'time': '2016-07-06T07:09:24.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:33.479Z'},
{'depth': 64.3,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13745822',
'latitude': 60.202,
'locationSource': 'ak',
'longitude': -151.3054,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '18km S of Cohoe, Alaska',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-06T07:01:53.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:53.693Z'},
{'depth': 79.7,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13745821',
'latitude': 56.8834,
'locationSource': 'ak',
'longitude': -157.2592,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '115km NE of Chignik Lake, Alaska',
'rms': 0.56,
'status': 'reviewed',
'time': '2016-07-06T06:59:23.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:52.507Z'},
{'depth': 13.2,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13745820',
'latitude': 51.4829,
'locationSource': 'ak',
'longitude': -178.1429,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km S of Tanaga Volcano, Alaska',
'rms': 0.66,
'status': 'reviewed',
'time': '2016-07-06T06:55:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:51.682Z'},
{'depth': 119.5,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13741164',
'latitude': 61.107,
'locationSource': 'ak',
'longitude': -152.3624,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '72km NNE of Redoubt Volcano, Alaska',
'rms': 0.65,
'status': 'reviewed',
'time': '2016-07-06T06:43:46.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:21.935Z'},
{'depth': 1.3,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13745817',
'latitude': 54.532,
'locationSource': 'ak',
'longitude': -164.6701,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '84km ENE of Akutan, Alaska',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-06T06:43:06.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:51.077Z'},
{'depth': 24.0,
'depthError': 13.5,
'dmin': 0.8578911,
'gap': 309.6,
'horizontalError': 1.5,
'id': 'pr16188008',
'latitude': 19.2047,
'locationSource': 'pr',
'longitude': -64.8127,
'mag': 2.1,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '89km NNW of Road Town, British Virgin Islands',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-06T06:36:02.900Z',
'type': 'earthquake',
'updated': '2016-07-06T08:13:42.028Z'},
{'depth': 24.0,
'depthError': 12.5,
'dmin': 0.86687425,
'gap': 309.6,
'horizontalError': 1.1,
'id': 'pr16188007',
'latitude': 19.2108,
'locationSource': 'pr',
'longitude': -64.8018,
'mag': 2.0,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '90km NNW of Road Town, British Virgin Islands',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-06T06:35:15.300Z',
'type': 'earthquake',
'updated': '2016-07-06T08:12:11.778Z'},
{'depth': 71.1,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13740982',
'latitude': 61.6078,
'locationSource': 'ak',
'longitude': -150.9675,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '51km WSW of Willow, Alaska',
'rms': 0.44,
'status': 'reviewed',
'time': '2016-07-06T06:21:25.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:35.160Z'},
{'depth': 11.0,
'depthError': 0.6,
'dmin': 0.19403610000000002,
'gap': 273.6,
'horizontalError': 0.8,
'id': 'pr16188005',
'latitude': 17.8495,
'locationSource': 'pr',
'longitude': -66.6334,
'mag': 2.2,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '18km S of Ponce, Puerto Rico',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-06T06:20:21.500Z',
'type': 'earthquake',
'updated': '2016-07-06T08:10:06.343Z'},
{'depth': 45.82,
'depthError': 6.1,
'dmin': 1.13,
'gap': 150.0,
'horizontalError': 5.1,
'id': 'us1000616m',
'latitude': 0.9109999999999999,
'locationSource': 'us',
'longitude': -79.3852,
'mag': 4.6,
'magError': 0.048,
'magNst': 129.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '33km E of Propicia, Ecuador',
'rms': 1.49,
'status': 'reviewed',
'time': '2016-07-06T06:19:49.620Z',
'type': 'earthquake',
'updated': '2016-07-07T14:05:09.162Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 3.387,
'gap': 93.0,
'horizontalError': 4.8,
'id': 'us1000616a',
'latitude': -18.666,
'locationSource': 'us',
'longitude': -173.4788,
'mag': 4.9,
'magError': 0.051,
'magNst': 119.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '53km E of Neiafu, Tonga',
'rms': 1.3,
'status': 'reviewed',
'time': '2016-07-06T06:08:24.190Z',
'type': 'earthquake',
'updated': '2016-07-07T14:01:14.399Z'},
{'depth': 24.0,
'depthError': 19.4,
'dmin': 0.78692419,
'gap': 295.2,
'horizontalError': 1.3,
'id': 'pr16188006',
'latitude': 19.1818,
'locationSource': 'pr',
'longitude': -64.832,
'mag': 3.2,
'magError': 0.0,
'magNst': 5.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 8.0,
'place': '87km NNW of Road Town, British Virgin Islands',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-06T06:06:14.100Z',
'type': 'earthquake',
'updated': '2016-07-07T14:07:50.451Z'},
{'depth': 78.5,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13745814',
'latitude': 60.6475,
'locationSource': 'ak',
'longitude': -151.8983,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '33km W of Nikiski, Alaska',
'rms': 0.34,
'status': 'reviewed',
'time': '2016-07-06T06:01:35.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:50.496Z'},
{'depth': 13.0,
'depthError': 0.7,
'dmin': 0.17696811,
'gap': 273.6,
'horizontalError': 0.8,
'id': 'pr16188003',
'latitude': 17.8652,
'locationSource': 'pr',
'longitude': -66.624,
'mag': 2.2,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '16km S of Ponce, Puerto Rico',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-06T05:37:55.300Z',
'type': 'earthquake',
'updated': '2016-07-06T07:46:43.493Z'},
{'depth': 12.0,
'depthError': 0.8,
'dmin': 0.11228941,
'gap': 205.2,
'horizontalError': 0.7,
'id': 'pr16188004',
'latitude': 17.8645,
'locationSource': 'pr',
'longitude': -66.642,
'mag': 2.2,
'magError': 0.0,
'magNst': 8.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 11.0,
'place': '16km S of Ponce, Puerto Rico',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-06T05:22:24.500Z',
'type': 'earthquake',
'updated': '2016-07-06T07:45:13.219Z'},
{'depth': 12.0,
'depthError': 3.6,
'dmin': 0.61624428,
'gap': 237.6,
'horizontalError': 1.7,
'id': 'pr16188002',
'latitude': 18.887999999999998,
'locationSource': 'pr',
'longitude': -65.7778,
'mag': 2.4,
'magError': 0.0,
'magNst': 6.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 9.0,
'place': '51km N of Vieques, Puerto Rico',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-06T04:35:27.200Z',
'type': 'earthquake',
'updated': '2016-07-06T07:43:47.896Z'},
{'depth': 73.6,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13745809',
'latitude': 59.8232,
'locationSource': 'ak',
'longitude': -152.475,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '36km W of Anchor Point, Alaska',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-06T04:18:48.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:49.795Z'},
{'depth': 20.0,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13740793',
'latitude': 60.9809,
'locationSource': 'ak',
'longitude': -150.7879,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '42km NE of Nikiski, Alaska',
'rms': 0.67,
'status': 'reviewed',
'time': '2016-07-06T04:01:24.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:33.701Z'},
{'depth': 3.81,
'depthError': 0.4,
'dmin': 0.04888,
'gap': 40.0,
'horizontalError': 0.13,
'id': 'ci37621856',
'latitude': 34.3006667,
'locationSource': 'ci',
'longitude': -116.84266670000001,
'mag': 1.56,
'magError': 0.111,
'magNst': 53.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 72.0,
'place': '4km N of Big Bear City, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T03:58:53.000Z',
'type': 'earthquake',
'updated': '2016-07-06T15:51:34.852Z'},
{'depth': 70.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13745806',
'latitude': 59.3415,
'locationSource': 'ak',
'longitude': -152.8936,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km SW of Anchor Point, Alaska',
'rms': 0.34,
'status': 'reviewed',
'time': '2016-07-06T03:56:59.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:49.221Z'},
{'depth': 15.1,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13740790',
'latitude': 61.8948,
'locationSource': 'ak',
'longitude': -150.3676,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '23km NW of Willow, Alaska',
'rms': 0.68,
'status': 'reviewed',
'time': '2016-07-06T03:45:49.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:12.877Z'},
{'depth': 45.6,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13740788',
'latitude': 61.9294,
'locationSource': 'ak',
'longitude': -150.0255,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '20km N of Willow, Alaska',
'rms': 0.39,
'status': 'reviewed',
'time': '2016-07-06T03:38:25.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:12.210Z'},
{'depth': 11.4,
'depthError': 9.5,
'dmin': 0.25,
'gap': 153.37,
'horizontalError': nan,
'id': 'nn00551411',
'latitude': 40.797,
'locationSource': 'nn',
'longitude': -116.0546,
'mag': 1.3,
'magError': 0.26,
'magNst': 4.0,
'magSource': 'nn',
'magType': 'ml',
'net': 'nn',
'nst': 7.0,
'place': '10km NNE of Carlin, Nevada',
'rms': 0.147,
'status': 'reviewed',
'time': '2016-07-06T03:26:07.529Z',
'type': 'earthquake',
'updated': '2016-07-11T21:13:39.427Z'},
{'depth': 35.0,
'depthError': 2.0,
'dmin': 1.4409999999999998,
'gap': 144.0,
'horizontalError': 7.1,
'id': 'us1000615s',
'latitude': 0.166,
'locationSource': 'us',
'longitude': -79.8907,
'mag': 4.3,
'magError': 0.138,
'magNst': 15.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '19km ENE of Pedernales, Ecuador',
'rms': 1.2,
'status': 'reviewed',
'time': '2016-07-06T03:14:56.360Z',
'type': 'earthquake',
'updated': '2016-07-07T14:06:15.809Z'},
{'depth': 110.2,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13745801',
'latitude': 58.9181,
'locationSource': 'ak',
'longitude': -154.4196,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '96km SSE of Old Iliamna, Alaska',
'rms': 0.48,
'status': 'reviewed',
'time': '2016-07-06T03:08:42.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:48.628Z'},
{'depth': 29.697,
'depthError': 1.34,
'dmin': 0.03684,
'gap': 93.0,
'horizontalError': 0.78,
'id': 'hv61325286',
'latitude': 19.3173333,
'locationSource': 'hv',
'longitude': -155.3505,
'mag': 1.57,
'magError': 0.08,
'magNst': 10.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 21.0,
'place': '17km SW of Volcano, Hawaii',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-06T02:52:59.760Z',
'type': 'earthquake',
'updated': '2016-07-06T20:43:39.950Z'},
{'depth': 10.0,
'depthError': 2.2,
'dmin': 0.33237666,
'gap': 349.2,
'horizontalError': 9.3,
'id': 'pr16188001',
'latitude': 18.4081,
'locationSource': 'pr',
'longitude': -64.2662,
'mag': 2.1,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 4.0,
'place': '37km E of Road Town, British Virgin Islands',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-06T02:45:44.700Z',
'type': 'earthquake',
'updated': '2016-07-06T04:41:13.590Z'},
{'depth': 10.0,
'depthError': 2.0,
'dmin': 1.41,
'gap': 206.0,
'horizontalError': 8.0,
'id': 'us1000615k',
'latitude': 53.4488,
'locationSource': 'us',
'longitude': -163.4493,
'mag': 3.8,
'magError': 0.192,
'magNst': 7.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '156km S of False Pass, Alaska',
'rms': 1.08,
'status': 'reviewed',
'time': '2016-07-06T02:45:17.470Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:32.902Z'},
{'depth': 48.3,
'depthError': 1.3,
'dmin': nan,
'gap': nan,
'horizontalError': 1.1,
'id': 'ak13745799',
'latitude': 51.4784,
'locationSource': 'ak',
'longitude': 178.9537,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km SSE of Little Sitkin Island, Alaska',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-06T02:17:53.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:47.431Z'},
{'depth': 7.6,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 1.1,
'id': 'ak13745797',
'latitude': 56.992,
'locationSource': 'ak',
'longitude': -157.4403,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '115km NE of Chignik Lake, Alaska',
'rms': 0.54,
'status': 'reviewed',
'time': '2016-07-06T02:11:04.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:46.672Z'},
{'depth': 64.1,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13740598',
'latitude': 63.301,
'locationSource': 'ak',
'longitude': -147.5604,
'mag': 2.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '70km E of Cantwell, Alaska',
'rms': 0.69,
'status': 'reviewed',
'time': '2016-07-06T01:43:25.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:49.951Z'},
{'depth': 33.0,
'depthError': 20.4,
'dmin': 1.18218291,
'gap': 244.8,
'horizontalError': 2.9,
'id': 'pr16188000',
'latitude': 19.399,
'locationSource': 'pr',
'longitude': -67.8876,
'mag': 3.0,
'magError': 0.0,
'magNst': 3.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 6.0,
'place': '105km NNE of Punta Cana, Dominican Republic',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-06T01:39:27.100Z',
'type': 'earthquake',
'updated': '2016-07-07T14:08:15.186Z'},
{'depth': 33.5,
'depthError': 3.7,
'dmin': nan,
'gap': nan,
'horizontalError': 2.9,
'id': 'ak13745795',
'latitude': 53.4842,
'locationSource': 'ak',
'longitude': -163.4492,
'mag': 2.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '152km S of False Pass, Alaska',
'rms': 0.4,
'status': 'reviewed',
'time': '2016-07-06T01:35:28.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:46.052Z'},
{'depth': 87.1,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13745793',
'latitude': 59.6773,
'locationSource': 'ak',
'longitude': -152.3753,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '32km WSW of Anchor Point, Alaska',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-06T01:23:15.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:01:34.918Z'},
{'depth': 2.03,
'depthError': 0.21,
'dmin': 0.005772,
'gap': 104.0,
'horizontalError': 0.17,
'id': 'nc72658861',
'latitude': 38.8075,
'locationSource': 'nc',
'longitude': -122.822,
'mag': 1.19,
'magError': 0.159,
'magNst': 13.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 39.0,
'place': '6km WNW of The Geysers, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-06T01:18:05.170Z',
'type': 'earthquake',
'updated': '2016-07-07T00:53:03.646Z'},
{'depth': 24.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13745792',
'latitude': 59.6146,
'locationSource': 'ak',
'longitude': -150.5432,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km ESE of Fritz Creek, Alaska',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-06T01:13:04.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:45.036Z'},
{'depth': 10.0,
'depthError': 1.1,
'dmin': 27.215,
'gap': 70.0,
'horizontalError': 12.5,
'id': 'us10006153',
'latitude': -56.8016,
'locationSource': 'us',
'longitude': -142.1336,
'mag': 5.9,
'magError': 0.068,
'magNst': 21.0,
'magSource': 'us',
'magType': 'mwc',
'net': 'us',
'nst': nan,
'place': 'Pacific-Antarctic Ridge',
'rms': 1.18,
'status': 'reviewed',
'time': '2016-07-06T01:01:57.590Z',
'type': 'earthquake',
'updated': '2016-07-07T14:01:00.668Z'},
{'depth': 6.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13740481',
'latitude': 59.442,
'locationSource': 'ak',
'longitude': -135.7439,
'mag': 1.8,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '24km W of Skagway, Alaska',
'rms': 0.82,
'status': 'reviewed',
'time': '2016-07-06T00:33:48.000Z',
'type': 'earthquake',
'updated': '2016-07-09T21:00:32.174Z'},
{'depth': 14.5,
'depthError': 1.78,
'dmin': 0.1082,
'gap': 141.0,
'horizontalError': 0.52,
'id': 'uw61162462',
'latitude': 48.0058333,
'locationSource': 'uw',
'longitude': -121.9075,
'mag': 1.29,
'magError': 0.054000000000000006,
'magNst': 10.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 9.0,
'place': '9km SSE of Granite Falls, Washington',
'rms': 0.19,
'status': 'reviewed',
'time': '2016-07-06T00:30:10.180Z',
'type': 'earthquake',
'updated': '2016-07-06T18:18:59.050Z'},
{'depth': 257.05,
'depthError': 7.8,
'dmin': 2.886,
'gap': 81.0,
'horizontalError': 9.8,
'id': 'us1000614u',
'latitude': -18.8947,
'locationSource': 'us',
'longitude': 169.4241,
'mag': 4.8,
'magError': 0.048,
'magNst': 132.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '74km NNE of Isangel, Vanuatu',
'rms': 1.08,
'status': 'reviewed',
'time': '2016-07-06T00:27:01.540Z',
'type': 'earthquake',
'updated': '2016-07-07T14:01:27.081Z'},
{'depth': 2.4,
'depthError': 0.22,
'dmin': 0.045489999999999996,
'gap': 55.0,
'horizontalError': 0.14,
'id': 'ci37621784',
'latitude': 35.902333299999995,
'locationSource': 'ci',
'longitude': -117.6486667,
'mag': 1.91,
'magError': 0.114,
'magNst': 30.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 29.0,
'place': '24km E of Little Lake, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-06T00:25:32.880Z',
'type': 'earthquake',
'updated': '2016-07-06T15:40:13.670Z'},
{'depth': 12.52,
'depthError': 2.45,
'dmin': 0.1114,
'gap': 119.0,
'horizontalError': 0.53,
'id': 'uw61162457',
'latitude': 48.0086667,
'locationSource': 'uw',
'longitude': -121.912,
'mag': 1.11,
'magError': 0.066,
'magNst': 9.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 11.0,
'place': '9km SSE of Granite Falls, Washington',
'rms': 0.21,
'status': 'reviewed',
'time': '2016-07-06T00:24:48.360Z',
'type': 'earthquake',
'updated': '2016-07-06T18:21:24.680Z'},
{'depth': 12.07,
'depthError': 0.42,
'dmin': 0.04162,
'gap': 91.0,
'horizontalError': 0.23,
'id': 'ci37621776',
'latitude': 33.4841667,
'locationSource': 'ci',
'longitude': -116.44266670000002,
'mag': 1.12,
'magError': 0.136,
'magNst': 30.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 41.0,
'place': '23km ESE of Anza, CA',
'rms': 0.17,
'status': 'reviewed',
'time': '2016-07-06T00:16:03.740Z',
'type': 'earthquake',
'updated': '2016-07-06T15:22:21.112Z'},
{'depth': 9.38,
'depthError': 0.52,
'dmin': 0.08059,
'gap': 47.0,
'horizontalError': 0.26,
'id': 'ci37621768',
'latitude': 34.3188333,
'locationSource': 'ci',
'longitude': -116.47416670000001,
'mag': 1.1,
'magError': 0.07,
'magNst': 17.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 31.0,
'place': '23km N of Yucca Valley, CA',
'rms': 0.22,
'status': 'reviewed',
'time': '2016-07-05T23:58:48.640Z',
'type': 'earthquake',
'updated': '2016-07-06T15:14:30.451Z'},
{'depth': 78.1,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.9,
'id': 'ak13752250',
'latitude': 54.6553,
'locationSource': 'ak',
'longitude': -162.9459,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '37km SE of False Pass, Alaska',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-05T23:57:10.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:03.326Z'},
{'depth': 2.81,
'depthError': 0.54,
'dmin': 0.008185,
'gap': 132.0,
'horizontalError': 0.47,
'id': 'nc72658841',
'latitude': 40.472333299999995,
'locationSource': 'nc',
'longitude': -121.51666670000002,
'mag': 1.97,
'magError': 0.127,
'magNst': 6.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 7.0,
'place': '30km NW of Chester, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-05T23:48:11.980Z',
'type': 'earthquake',
'updated': '2016-07-06T16:13:02.095Z'},
{'depth': 21.26,
'depthError': 5.6,
'dmin': 0.7859999999999999,
'gap': 125.0,
'horizontalError': 5.7,
'id': 'us1000614p',
'latitude': 35.7802,
'locationSource': 'us',
'longitude': 140.9868,
'mag': 4.4,
'magError': 0.102,
'magNst': 28.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '14km ENE of Hasaki, Japan',
'rms': 1.27,
'status': 'reviewed',
'time': '2016-07-05T23:47:28.140Z',
'type': 'earthquake',
'updated': '2016-07-07T14:05:35.108Z'},
{'depth': -0.82,
'depthError': 31.61,
'dmin': 0.08092,
'gap': 118.0,
'horizontalError': 0.46,
'id': 'nc72658836',
'latitude': 37.4715,
'locationSource': 'nc',
'longitude': -118.82133329999999,
'mag': 1.12,
'magError': 0.177,
'magNst': 15.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 18.0,
'place': '23km SE of Mammoth Lakes, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-05T23:45:20.600Z',
'type': 'earthquake',
'updated': '2016-07-06T16:38:05.169Z'},
{'depth': 28.2,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 2.7,
'id': 'ak13740305',
'latitude': 60.876999999999995,
'locationSource': 'ak',
'longitude': -147.2174,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '54km WSW of Valdez, Alaska',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-05T23:40:45.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:12.402Z'},
{'depth': 64.0,
'depthError': 1.4,
'dmin': nan,
'gap': nan,
'horizontalError': 3.9,
'id': 'ak13740304',
'latitude': 51.833999999999996,
'locationSource': 'ak',
'longitude': -175.0549,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '71km SW of Atka, Alaska',
'rms': 0.37,
'status': 'reviewed',
'time': '2016-07-05T23:39:39.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:09.687Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 3.531,
'gap': 167.0,
'horizontalError': 8.8,
'id': 'us1000614m',
'latitude': 44.1651,
'locationSource': 'us',
'longitude': -128.9059,
'mag': 4.3,
'magError': 0.047,
'magNst': 130.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': 'Off the coast of Oregon',
'rms': 1.35,
'status': 'reviewed',
'time': '2016-07-05T23:39:17.390Z',
'type': 'earthquake',
'updated': '2016-07-07T14:06:09.296Z'},
{'depth': -1.75,
'depthError': 31.61,
'dmin': 0.08112,
'gap': 118.0,
'horizontalError': 0.28,
'id': 'nc72658831',
'latitude': 37.4731667,
'locationSource': 'nc',
'longitude': -118.822,
'mag': 1.57,
'magError': 0.298,
'magNst': 26.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 28.0,
'place': '23km SE of Mammoth Lakes, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-05T23:18:55.200Z',
'type': 'earthquake',
'updated': '2016-07-06T17:04:03.231Z'},
{'depth': 36.8,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13740301',
'latitude': 53.5978,
'locationSource': 'ak',
'longitude': -162.8804,
'mag': 3.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '143km SSE of False Pass, Alaska',
'rms': 0.76,
'status': 'reviewed',
'time': '2016-07-05T23:08:43.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:28:28.741Z'},
{'depth': 0.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13740299',
'latitude': 64.9754,
'locationSource': 'ak',
'longitude': -147.3364,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '21km NNE of Badger, Alaska',
'rms': 0.35,
'status': 'reviewed',
'time': '2016-07-05T23:02:54.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:15.927Z'},
{'depth': 29.15,
'depthError': 6.6,
'dmin': 2.6460000000000004,
'gap': 136.0,
'horizontalError': 10.9,
'id': 'us1000614l',
'latitude': 29.7514,
'locationSource': 'us',
'longitude': 142.1428,
'mag': 4.6,
'magError': 0.129,
'magNst': 18.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '295km N of Chichi-shima, Japan',
'rms': 0.67,
'status': 'reviewed',
'time': '2016-07-05T23:00:57.630Z',
'type': 'earthquake',
'updated': '2016-07-07T14:04:52.984Z'},
{'depth': 106.6,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13752244',
'latitude': 59.7609,
'locationSource': 'ak',
'longitude': -153.0856,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '70km W of Anchor Point, Alaska',
'rms': 0.34,
'status': 'reviewed',
'time': '2016-07-05T22:42:33.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:06.487Z'},
{'depth': 9.35,
'depthError': 0.58,
'dmin': 0.041139999999999996,
'gap': 42.0,
'horizontalError': 0.32,
'id': 'hv61325126',
'latitude': 19.375333800000003,
'locationSource': 'hv',
'longitude': -155.50067140000002,
'mag': 2.09,
'magError': 0.13,
'magNst': 3.0,
'magSource': 'hv',
'magType': 'ml',
'net': 'hv',
'nst': 39.0,
'place': '18km N of Pahala, Hawaii',
'rms': 0.18,
'status': 'automatic',
'time': '2016-07-05T22:41:43.580Z',
'type': 'earthquake',
'updated': '2016-07-05T22:47:22.840Z'},
{'depth': 13.6,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13740296',
'latitude': 62.913999999999994,
'locationSource': 'ak',
'longitude': -154.6984,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km E of McGrath, Alaska',
'rms': 0.75,
'status': 'reviewed',
'time': '2016-07-05T22:35:56.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:11.816Z'},
{'depth': 51.8,
'depthError': 4.2,
'dmin': nan,
'gap': nan,
'horizontalError': 2.0,
'id': 'ak13740291',
'latitude': 53.1852,
'locationSource': 'ak',
'longitude': -165.4231,
'mag': 3.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '106km SE of Unalaska, Alaska',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-05T22:32:37.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:28:38.017Z'},
{'depth': 91.1,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13740289',
'latitude': 61.3533,
'locationSource': 'ak',
'longitude': -151.9149,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '81km NNW of Nikiski, Alaska',
'rms': 0.56,
'status': 'reviewed',
'time': '2016-07-05T22:31:50.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:14.646Z'},
{'depth': 2.3,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13740284',
'latitude': 61.2933,
'locationSource': 'ak',
'longitude': -152.4576,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.49,
'status': 'reviewed',
'time': '2016-07-05T22:20:01.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:13.957Z'},
{'depth': 4.1,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.1,
'id': 'ak13740279',
'latitude': 61.303999999999995,
'locationSource': 'ak',
'longitude': -152.44,
'mag': 2.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km NW of Nikiski, Alaska',
'rms': 0.51,
'status': 'reviewed',
'time': '2016-07-05T22:16:42.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:13.241Z'},
{'depth': 2.76,
'depthError': 31.61,
'dmin': 0.2664,
'gap': 203.0,
'horizontalError': 1.35,
'id': 'uu60154942',
'latitude': 36.9835,
'locationSource': 'uu',
'longitude': -112.913,
'mag': 2.4,
'magError': 0.12,
'magNst': 5.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 14.0,
'place': '5km E of Colorado City, Arizona',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-05T22:07:13.140Z',
'type': 'earthquake',
'updated': '2016-07-07T16:06:09.050Z'},
{'depth': 3.3,
'depthError': 1.4,
'dmin': nan,
'gap': nan,
'horizontalError': 1.3,
'id': 'ak13752238',
'latitude': 59.4384,
'locationSource': 'ak',
'longitude': -138.6123,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '64km E of Yakutat, Alaska',
'rms': 0.61,
'status': 'reviewed',
'time': '2016-07-05T21:48:33.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:05.490Z'},
{'depth': -0.68,
'depthError': 31.61,
'dmin': 0.1094,
'gap': 151.0,
'horizontalError': 1.15,
'id': 'uw61177506',
'latitude': 47.362333299999996,
'locationSource': 'uw',
'longitude': -119.75783329999999,
'mag': 1.67,
'magError': 0.18100000000000002,
'magNst': 14.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 8.0,
'place': '15km NNE of Quincy, Washington',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-05T21:34:23.250Z',
'type': 'explosion',
'updated': '2016-07-05T22:46:21.150Z'},
{'depth': 95.2,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.6,
'id': 'ak13740277',
'latitude': 63.0046,
'locationSource': 'ak',
'longitude': -150.6963,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '81km NNW of Talkeetna, Alaska',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-05T21:31:14.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:27:10.346Z'},
{'depth': 14.54,
'depthError': 0.65,
'dmin': 0.036930000000000004,
'gap': 91.0,
'horizontalError': 0.51,
'id': 'ci37621656',
'latitude': 33.5825,
'locationSource': 'ci',
'longitude': -116.588,
'mag': 1.02,
'magError': 0.51,
'magNst': 20.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '8km ENE of Anza, CA',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-05T21:23:58.910Z',
'type': 'earthquake',
'updated': '2016-07-06T13:16:40.872Z'},
{'depth': 13.83,
'depthError': 0.79,
'dmin': 0.1249,
'gap': 80.0,
'horizontalError': 0.28,
'id': 'ci37621640',
'latitude': 34.0536667,
'locationSource': 'ci',
'longitude': -117.23466670000002,
'mag': 1.28,
'magError': 0.57,
'magNst': 22.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 17.0,
'place': '2km ENE of Loma Linda, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-05T21:15:38.770Z',
'type': 'earthquake',
'updated': '2016-07-06T13:16:41.884Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 1.27,
'gap': 91.0,
'horizontalError': 6.3,
'id': 'us100060k5',
'latitude': 39.489000000000004,
'locationSource': 'us',
'longitude': 73.4459,
'mag': 4.4,
'magError': 0.10300000000000001,
'magNst': 27.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '31km SSE of Sary-Tash, Kyrgyzstan',
'rms': 1.24,
'status': 'reviewed',
'time': '2016-07-05T21:00:22.660Z',
'type': 'earthquake',
'updated': '2016-07-07T14:05:26.204Z'},
{'depth': 53.2,
'depthError': 5.2,
'dmin': nan,
'gap': nan,
'horizontalError': 6.4,
'id': 'ak13752235',
'latitude': 51.521,
'locationSource': 'ak',
'longitude': -175.9203,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '64km SE of Adak, Alaska',
'rms': 0.84,
'status': 'reviewed',
'time': '2016-07-05T20:57:06.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:20.210Z'},
{'depth': 116.6,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13740104',
'latitude': 63.0651,
'locationSource': 'ak',
'longitude': -150.7828,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '89km NNW of Talkeetna, Alaska',
'rms': 0.38,
'status': 'reviewed',
'time': '2016-07-05T20:56:04.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:41.040Z'},
{'depth': 117.3,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13752233',
'latitude': 59.5962,
'locationSource': 'ak',
'longitude': -153.4292,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '85km E of Old Iliamna, Alaska',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-05T20:52:09.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:18.181Z'},
{'depth': 2.08,
'depthError': 0.18,
'dmin': 0.009237,
'gap': 45.0,
'horizontalError': 0.11,
'id': 'nc72658821',
'latitude': 38.829,
'locationSource': 'nc',
'longitude': -122.80066670000001,
'mag': 1.37,
'magError': 0.22399999999999998,
'magNst': 15.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 46.0,
'place': '6km W of Cobb, California',
'rms': 0.04,
'status': 'reviewed',
'time': '2016-07-05T20:23:09.440Z',
'type': 'earthquake',
'updated': '2016-07-07T02:28:03.760Z'},
{'depth': 5.0,
'depthError': 2.0,
'dmin': 0.177,
'gap': 121.0,
'horizontalError': 1.7,
'id': 'us10006069',
'latitude': 37.3679,
'locationSource': 'us',
'longitude': -98.2025,
'mag': 3.5,
'magError': 0.051,
'magNst': 99.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '18km WNW of Harper, Kansas',
'rms': 0.23,
'status': 'reviewed',
'time': '2016-07-05T20:17:14.840Z',
'type': 'earthquake',
'updated': '2016-07-07T14:07:28.631Z'},
{'depth': 8.6,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13740098',
'latitude': 63.5561,
'locationSource': 'ak',
'longitude': -151.0759,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '107km W of Cantwell, Alaska',
'rms': 0.85,
'status': 'reviewed',
'time': '2016-07-05T20:06:30.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:26.272Z'},
{'depth': 113.1,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13740089',
'latitude': 59.6203,
'locationSource': 'ak',
'longitude': -153.4349,
'mag': 2.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '84km E of Old Iliamna, Alaska',
'rms': 0.36,
'status': 'reviewed',
'time': '2016-07-05T20:00:43.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:29.755Z'},
{'depth': 31.8,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13740088',
'latitude': 61.5649,
'locationSource': 'ak',
'longitude': -146.4095,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '48km N of Valdez, Alaska',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-05T20:00:07.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:08.080Z'},
{'depth': 88.0,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13752228',
'latitude': 60.4658,
'locationSource': 'ak',
'longitude': -152.31799999999998,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '23km E of Redoubt Volcano, Alaska',
'rms': 0.44,
'status': 'reviewed',
'time': '2016-07-05T19:53:48.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:15.578Z'},
{'depth': -0.55,
'depthError': 31.61,
'dmin': 0.053720000000000004,
'gap': 69.0,
'horizontalError': 0.3,
'id': 'ci37621552',
'latitude': 33.851833299999996,
'locationSource': 'ci',
'longitude': -117.49466670000001,
'mag': 1.4,
'magError': 0.17800000000000002,
'magNst': 47.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 38.0,
'place': '4km SE of Home Gardens, CA',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-05T19:49:20.250Z',
'type': 'quarry blast',
'updated': '2016-07-06T18:29:43.332Z'},
{'depth': 192.36,
'depthError': 8.0,
'dmin': 1.617,
'gap': 105.0,
'horizontalError': 3.6,
'id': 'us1000605t',
'latitude': 2.0851,
'locationSource': 'us',
'longitude': 128.3228,
'mag': 4.3,
'magError': 0.07200000000000001,
'magNst': 55.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '52km NE of Tobelo, Indonesia',
'rms': 0.6,
'status': 'reviewed',
'time': '2016-07-05T19:31:44.620Z',
'type': 'earthquake',
'updated': '2016-07-07T14:05:50.218Z'},
{'depth': 84.7,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13740081',
'latitude': 62.6596,
'locationSource': 'ak',
'longitude': -151.0577,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km NW of Talkeetna, Alaska',
'rms': 0.56,
'status': 'reviewed',
'time': '2016-07-05T19:31:41.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:07.077Z'},
{'depth': 8.2,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13740078',
'latitude': 60.0641,
'locationSource': 'ak',
'longitude': -139.3519,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km NNE of Yakutat, Alaska',
'rms': 0.52,
'status': 'reviewed',
'time': '2016-07-05T19:29:23.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:42.762Z'},
{'depth': -1.63,
'depthError': 31.61,
'dmin': 0.04811,
'gap': 302.0,
'horizontalError': 3.63,
'id': 'uw61177486',
'latitude': 43.6563333,
'locationSource': 'uw',
'longitude': -121.41766670000001,
'mag': 1.45,
'magError': 0.10800000000000001,
'magNst': 6.0,
'magSource': 'uw',
'magType': 'ml',
'net': 'uw',
'nst': 8.0,
'place': '7km ESE of La Pine, Oregon',
'rms': 0.09,
'status': 'reviewed',
'time': '2016-07-05T19:26:08.810Z',
'type': 'explosion',
'updated': '2016-07-05T20:59:02.020Z'},
{'depth': 72.2,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13752224',
'latitude': 60.09,
'locationSource': 'ak',
'longitude': -152.1736,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '39km NNW of Anchor Point, Alaska',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-05T19:07:29.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:14.513Z'},
{'depth': 10.0,
'depthError': 1.7,
'dmin': 3.67,
'gap': 60.0,
'horizontalError': 9.5,
'id': 'us1000605l',
'latitude': -32.927,
'locationSource': 'us',
'longitude': -177.8664,
'mag': 5.2,
'magError': 0.05,
'magNst': 135.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': "192km SSE of L'Esperance Rock, New Zealand",
'rms': 0.65,
'status': 'reviewed',
'time': '2016-07-05T19:06:45.000Z',
'type': 'earthquake',
'updated': '2016-07-07T14:00:47.591Z'},
{'depth': 121.6,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13752223',
'latitude': 59.8597,
'locationSource': 'ak',
'longitude': -153.2511,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '75km SSW of Redoubt Volcano, Alaska',
'rms': 0.42,
'status': 'reviewed',
'time': '2016-07-05T18:49:45.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:19.539Z'},
{'depth': 6.228,
'depthError': 0.51,
'dmin': 0.01963,
'gap': 44.0,
'horizontalError': 0.23,
'id': 'hv61324891',
'latitude': 19.4111667,
'locationSource': 'hv',
'longitude': -155.32483330000002,
'mag': 1.32,
'magError': 0.19699999999999998,
'magNst': 16.0,
'magSource': 'hv',
'magType': 'md',
'net': 'hv',
'nst': 40.0,
'place': '9km WSW of Volcano, Hawaii',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-05T18:38:57.510Z',
'type': 'earthquake',
'updated': '2016-07-05T21:27:31.330Z'},
{'depth': 2.54,
'depthError': 0.25,
'dmin': 0.01548,
'gap': 70.0,
'horizontalError': 0.15,
'id': 'nc72658796',
'latitude': 38.7943333,
'locationSource': 'nc',
'longitude': -122.76816670000001,
'mag': 1.25,
'magError': 0.138,
'magNst': 13.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 44.0,
'place': '2km NNW of The Geysers, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-05T18:34:22.670Z',
'type': 'earthquake',
'updated': '2016-07-07T01:20:04.463Z'},
{'depth': -0.29,
'depthError': 31.61,
'dmin': 0.01409,
'gap': 128.0,
'horizontalError': 0.15,
'id': 'nc72658801',
'latitude': 37.3213333,
'locationSource': 'nc',
'longitude': -122.10066670000002,
'mag': 1.26,
'magError': 0.38299999999999995,
'magNst': 9.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 13.0,
'place': '11km E of Quarry near Portola Valley, CA',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-05T18:34:04.590Z',
'type': 'quarry blast',
'updated': '2016-07-07T03:17:04.378Z'},
{'depth': 117.5,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739906',
'latitude': 63.0102,
'locationSource': 'ak',
'longitude': -150.9725,
'mag': 2.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '88km NNW of Talkeetna, Alaska',
'rms': 0.44,
'status': 'reviewed',
'time': '2016-07-05T18:31:22.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:28.747Z'},
{'depth': 5.8,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739902',
'latitude': 64.0376,
'locationSource': 'ak',
'longitude': -150.3561,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '71km WNW of Healy, Alaska',
'rms': 0.65,
'status': 'reviewed',
'time': '2016-07-05T18:25:35.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:05.686Z'},
{'depth': 39.51,
'depthError': 7.8,
'dmin': 0.517,
'gap': 161.0,
'horizontalError': 6.4,
'id': 'us1000604v',
'latitude': -41.6855,
'locationSource': 'us',
'longitude': -74.0542,
'mag': 4.3,
'magError': 0.154,
'magNst': 12.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '28km NW of Ancud, Chile',
'rms': 0.68,
'status': 'reviewed',
'time': '2016-07-05T18:15:19.690Z',
'type': 'earthquake',
'updated': '2016-07-07T14:05:42.736Z'},
{'depth': 72.4,
'depthError': 17.1,
'dmin': nan,
'gap': nan,
'horizontalError': 13.6,
'id': 'ak13752220',
'latitude': 52.7709,
'locationSource': 'ak',
'longitude': -166.5027,
'mag': 1.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '122km S of Unalaska, Alaska',
'rms': 0.39,
'status': 'reviewed',
'time': '2016-07-05T18:10:39.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:18.901Z'},
{'depth': 61.8,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 2.1,
'id': 'ak13752219',
'latitude': 59.4585,
'locationSource': 'ak',
'longitude': -152.1994,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '41km SSW of Anchor Point, Alaska',
'rms': 0.16,
'status': 'reviewed',
'time': '2016-07-05T18:08:16.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:13.351Z'},
{'depth': 10.6,
'depthError': 0.51,
'dmin': 0.07128,
'gap': 119.0,
'horizontalError': 0.27,
'id': 'nc72658786',
'latitude': 36.0645,
'locationSource': 'nc',
'longitude': -120.1975,
'mag': 1.43,
'magError': 0.23800000000000002,
'magNst': 26.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 43.0,
'place': '9km NW of Avenal, California',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-05T17:40:14.110Z',
'type': 'earthquake',
'updated': '2016-07-07T14:11:10.637Z'},
{'depth': 5.0,
'depthError': 2.0,
'dmin': 0.159,
'gap': 45.0,
'horizontalError': 1.0,
'id': 'us1000604i',
'latitude': 36.2626,
'locationSource': 'us',
'longitude': -97.5821,
'mag': 3.5,
'magError': 0.051,
'magNst': 101.0,
'magSource': 'us',
'magType': 'mb_lg',
'net': 'us',
'nst': nan,
'place': '26km W of Perry, Oklahoma',
'rms': 0.35,
'status': 'reviewed',
'time': '2016-07-05T17:21:57.210Z',
'type': 'earthquake',
'updated': '2016-07-07T14:07:20.511Z'},
{'depth': 19.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13739739',
'latitude': 59.349,
'locationSource': 'ak',
'longitude': -138.5922,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km ESE of Yakutat, Alaska',
'rms': 0.59,
'status': 'reviewed',
'time': '2016-07-05T16:56:12.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:24.954Z'},
{'depth': 12.08,
'depthError': 0.55,
'dmin': 0.04,
'gap': 61.0,
'horizontalError': 0.35,
'id': 'mb80159859',
'latitude': 44.804333299999996,
'locationSource': 'mb',
'longitude': -111.38733329999998,
'mag': 1.31,
'magError': 0.14400000000000002,
'magNst': 11.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 21.0,
'place': '27km NW of West Yellowstone, Montana',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-05T16:30:38.010Z',
'type': 'earthquake',
'updated': '2016-07-05T16:49:12.410Z'},
{'depth': 13.1,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13739581',
'latitude': 58.6554,
'locationSource': 'ak',
'longitude': -154.1417,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '124km N of Larsen Bay, Alaska',
'rms': 0.7,
'status': 'reviewed',
'time': '2016-07-05T16:20:15.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:10.765Z'},
{'depth': 4.18,
'depthError': 0.55,
'dmin': 0.04576,
'gap': 60.0,
'horizontalError': 0.2,
'id': 'nc72658776',
'latitude': 36.5666667,
'locationSource': 'nc',
'longitude': -121.13416670000001,
'mag': 1.68,
'magError': 0.27699999999999997,
'magNst': 25.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 29.0,
'place': '23km NE of Soledad, California',
'rms': 0.1,
'status': 'reviewed',
'time': '2016-07-05T16:07:51.460Z',
'type': 'earthquake',
'updated': '2016-07-07T04:10:04.007Z'},
{'depth': 1.62,
'depthError': 0.3,
'dmin': 0.006342,
'gap': 48.0,
'horizontalError': 0.17,
'id': 'nc72658771',
'latitude': 38.7755,
'locationSource': 'nc',
'longitude': -122.72483329999999,
'mag': 1.44,
'magError': 0.23800000000000002,
'magNst': 10.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 37.0,
'place': '2km E of The Geysers, California',
'rms': 0.08,
'status': 'reviewed',
'time': '2016-07-05T16:03:41.670Z',
'type': 'earthquake',
'updated': '2016-07-06T23:30:03.987Z'},
{'depth': 11.0,
'depthError': 1.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13739579',
'latitude': 57.2197,
'locationSource': 'ak',
'longitude': -154.5615,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '50km SW of Larsen Bay, Alaska',
'rms': 1.13,
'status': 'reviewed',
'time': '2016-07-05T16:02:57.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:04.818Z'},
{'depth': 46.2,
'depthError': 6.1,
'dmin': nan,
'gap': nan,
'horizontalError': 4.9,
'id': 'ak13752214',
'latitude': 54.4505,
'locationSource': 'ak',
'longitude': -162.7438,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '62km SE of False Pass, Alaska',
'rms': 0.12,
'status': 'reviewed',
'time': '2016-07-05T15:59:09.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:12.296Z'},
{'depth': 155.4,
'depthError': 4.9,
'dmin': 1.744,
'gap': 59.0,
'horizontalError': 6.7,
'id': 'us10006049',
'latitude': 38.2305,
'locationSource': 'us',
'longitude': 73.6797,
'mag': 4.3,
'magError': 0.099,
'magNst': 29.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '26km WNW of Murghob, Tajikistan',
'rms': 0.91,
'status': 'reviewed',
'time': '2016-07-05T15:52:03.730Z',
'type': 'earthquake',
'updated': '2016-07-07T14:00:20.276Z'},
{'depth': 4.48,
'depthError': 1.26,
'dmin': 0.1228,
'gap': 115.0,
'horizontalError': 0.58,
'id': 'nc72658766',
'latitude': 40.2518333,
'locationSource': 'nc',
'longitude': -121.43966670000002,
'mag': 1.81,
'magError': 0.145,
'magNst': 16.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 13.0,
'place': '18km WSW of Chester, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-05T15:49:00.300Z',
'type': 'earthquake',
'updated': '2016-07-07T19:58:03.729Z'},
{'depth': 25.7,
'depthError': 6.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.8,
'id': 'ak13739417',
'latitude': 52.6886,
'locationSource': 'ak',
'longitude': -166.6164,
'mag': 3.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '131km S of Unalaska, Alaska',
'rms': 0.56,
'status': 'reviewed',
'time': '2016-07-05T15:32:25.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:16:01.408Z'},
{'depth': 8.15,
'depthError': 0.58,
'dmin': 0.1239,
'gap': 117.0,
'horizontalError': 0.22,
'id': 'ci37621328',
'latitude': 36.4405,
'locationSource': 'ci',
'longitude': -117.87433329999999,
'mag': 1.11,
'magError': 0.21600000000000003,
'magNst': 9.0,
'magSource': 'ci',
'magType': 'ml',
'net': 'ci',
'nst': 18.0,
'place': '21km NNE of Olancha, CA',
'rms': 0.14,
'status': 'reviewed',
'time': '2016-07-05T15:24:00.320Z',
'type': 'earthquake',
'updated': '2016-07-06T17:44:00.437Z'},
{'depth': 36.21,
'depthError': 5.4,
'dmin': 5.945,
'gap': 34.0,
'horizontalError': 8.0,
'id': 'us10006041',
'latitude': 21.8613,
'locationSource': 'us',
'longitude': 145.3276,
'mag': 5.2,
'magError': 0.033,
'magNst': 298.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '153km NNE of Farallon de Pajaros, Northern Mariana Islands',
'rms': 0.48,
'status': 'reviewed',
'time': '2016-07-05T15:22:17.940Z',
'type': 'earthquake',
'updated': '2016-07-07T13:59:21.547Z'},
{'depth': 34.0,
'depthError': 3.7,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13739411',
'latitude': 53.4454,
'locationSource': 'ak',
'longitude': -165.9719,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '60km SE of Unalaska, Alaska',
'rms': 0.48,
'status': 'reviewed',
'time': '2016-07-05T15:15:10.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:41.417Z'},
{'depth': 86.4,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13739408',
'latitude': 62.2867,
'locationSource': 'ak',
'longitude': -151.4267,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '68km W of Talkeetna, Alaska',
'rms': 0.3,
'status': 'reviewed',
'time': '2016-07-05T15:04:23.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:17.781Z'},
{'depth': 66.8,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13739406',
'latitude': 61.9853,
'locationSource': 'ak',
'longitude': -151.0925,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '61km WNW of Willow, Alaska',
'rms': 0.33,
'status': 'reviewed',
'time': '2016-07-05T14:54:38.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:24.047Z'},
{'depth': 22.9,
'depthError': 0.9,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13752209',
'latitude': 52.6476,
'locationSource': 'ak',
'longitude': -168.338,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '48km SE of Nikolski, Alaska',
'rms': 0.53,
'status': 'reviewed',
'time': '2016-07-05T14:53:42.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:10.033Z'},
{'depth': 31.0,
'depthError': 3.5,
'dmin': 0.37280084,
'gap': 212.4,
'horizontalError': 1.6,
'id': 'pr16187004',
'latitude': 17.9158,
'locationSource': 'pr',
'longitude': -65.5367,
'mag': 2.7,
'magError': 0.0,
'magNst': 8.0,
'magSource': 'pr',
'magType': 'Md',
'net': 'pr',
'nst': 13.0,
'place': '21km SSW of Esperanza, Puerto Rico',
'rms': 0.28,
'status': 'reviewed',
'time': '2016-07-05T14:48:43.400Z',
'type': 'earthquake',
'updated': '2016-07-07T14:09:28.388Z'},
{'depth': 20.0,
'depthError': nan,
'dmin': nan,
'gap': nan,
'horizontalError': 1.1,
'id': 'ak13739405',
'latitude': 52.7136,
'locationSource': 'ak',
'longitude': -166.6246,
'mag': 2.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '129km S of Unalaska, Alaska',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-05T14:44:48.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:04.286Z'},
{'depth': 0.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739401',
'latitude': 63.3209,
'locationSource': 'ak',
'longitude': -144.8896,
'mag': 1.6,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '63km SSE of Deltana, Alaska',
'rms': 0.74,
'status': 'reviewed',
'time': '2016-07-05T14:41:50.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:33.122Z'},
{'depth': 56.6,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739396',
'latitude': 62.0014,
'locationSource': 'ak',
'longitude': -150.69899999999998,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '44km NW of Willow, Alaska',
'rms': 0.41,
'status': 'reviewed',
'time': '2016-07-05T14:30:58.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:42.805Z'},
{'depth': 10.0,
'depthError': 2.0,
'dmin': 1.7619999999999998,
'gap': 255.0,
'horizontalError': 5.6,
'id': 'us1000603j',
'latitude': 43.3325,
'locationSource': 'us',
'longitude': -126.6572,
'mag': 3.1,
'magError': 0.046,
'magNst': 62.0,
'magSource': 'us',
'magType': 'ml',
'net': 'us',
'nst': nan,
'place': '184km W of Bandon, Oregon',
'rms': 1.12,
'status': 'reviewed',
'time': '2016-07-05T14:23:56.300Z',
'type': 'earthquake',
'updated': '2016-07-07T14:07:56.833Z'},
{'depth': 82.6,
'depthError': 0.6,
'dmin': nan,
'gap': nan,
'horizontalError': 1.4,
'id': 'ak13752204',
'latitude': 60.1407,
'locationSource': 'ak',
'longitude': -151.9344,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '40km N of Anchor Point, Alaska',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-05T14:14:00.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:09.144Z'},
{'depth': 19.4,
'depthError': 0.8,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13752203',
'latitude': 61.0526,
'locationSource': 'ak',
'longitude': -148.6903,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '31km N of Whittier, Alaska',
'rms': 0.38,
'status': 'reviewed',
'time': '2016-07-05T14:06:36.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:14:35.797Z'},
{'depth': 82.0,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.3,
'id': 'ak13739239',
'latitude': 63.6689,
'locationSource': 'ak',
'longitude': -148.3045,
'mag': 1.5,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '38km ESE of Healy, Alaska',
'rms': 0.49,
'status': 'reviewed',
'time': '2016-07-05T14:02:18.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:40.369Z'},
{'depth': 88.7,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 1.0,
'id': 'ak13752201',
'latitude': 60.4123,
'locationSource': 'ak',
'longitude': -152.0644,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '38km ESE of Redoubt Volcano, Alaska',
'rms': 0.32,
'status': 'reviewed',
'time': '2016-07-05T14:01:11.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:08.558Z'},
{'depth': 1.3,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 1.9,
'id': 'ak13739238',
'latitude': 63.6225,
'locationSource': 'ak',
'longitude': -157.1786,
'mag': 1.3,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '108km NW of McGrath, Alaska',
'rms': 0.46,
'status': 'reviewed',
'time': '2016-07-05T13:49:22.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:39.159Z'},
{'depth': 76.0,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13752197',
'latitude': 61.7928,
'locationSource': 'ak',
'longitude': -151.4094,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '72km W of Willow, Alaska',
'rms': 0.32,
'status': 'reviewed',
'time': '2016-07-05T13:08:34.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:06.812Z'},
{'depth': 3.2,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739234',
'latitude': 61.2967,
'locationSource': 'ak',
'longitude': -152.467,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '91km N of Redoubt Volcano, Alaska',
'rms': 0.38,
'status': 'reviewed',
'time': '2016-07-05T13:03:31.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:32.194Z'},
{'depth': 2.5,
'depthError': 0.1,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739230',
'latitude': 61.302,
'locationSource': 'ak',
'longitude': -152.4483,
'mag': 2.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km NW of Nikiski, Alaska',
'rms': 0.51,
'status': 'reviewed',
'time': '2016-07-05T13:01:34.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:34.518Z'},
{'depth': 14.03,
'depthError': 1.15,
'dmin': 0.2684,
'gap': 205.0,
'horizontalError': 1.2,
'id': 'uu60154892',
'latitude': 36.976833299999996,
'locationSource': 'uu',
'longitude': -112.9115,
'mag': 1.61,
'magError': 0.182,
'magNst': 4.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 9.0,
'place': '5km ESE of Colorado City, Arizona',
'rms': 0.25,
'status': 'reviewed',
'time': '2016-07-05T12:57:37.730Z',
'type': 'earthquake',
'updated': '2016-07-07T21:17:58.110Z'},
{'depth': 1.3,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739227',
'latitude': 61.3004,
'locationSource': 'ak',
'longitude': -152.4646,
'mag': 1.7,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '92km N of Redoubt Volcano, Alaska',
'rms': 0.53,
'status': 'reviewed',
'time': '2016-07-05T12:46:31.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:17.114Z'},
{'depth': 27.86,
'depthError': 0.6,
'dmin': 0.1044,
'gap': 231.0,
'horizontalError': 0.66,
'id': 'nc72658746',
'latitude': 37.4245,
'locationSource': 'nc',
'longitude': -119.3535,
'mag': 2.1,
'magError': 0.18899999999999997,
'magNst': 32.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 32.0,
'place': '28km ENE of Oakhurst, California',
'rms': 0.05,
'status': 'reviewed',
'time': '2016-07-05T12:35:09.800Z',
'type': 'earthquake',
'updated': '2016-07-09T04:59:02.232Z'},
{'depth': 16.09,
'depthError': 2.77,
'dmin': 0.725,
'gap': 74.0,
'horizontalError': 0.68,
'id': 'mb80159854',
'latitude': 46.3026667,
'locationSource': 'mb',
'longitude': -116.29816670000001,
'mag': 2.16,
'magError': 0.055,
'magNst': 12.0,
'magSource': 'mb',
'magType': 'ml',
'net': 'mb',
'nst': 13.0,
'place': '8km NNW of Nezperce, Idaho',
'rms': 0.2,
'status': 'reviewed',
'time': '2016-07-05T12:27:37.200Z',
'type': 'earthquake',
'updated': '2016-07-05T15:44:12.030Z'},
{'depth': 1.6,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739213',
'latitude': 60.6534,
'locationSource': 'ak',
'longitude': -137.6917,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '14km SW of Haines Junction, Canada',
'rms': 0.62,
'status': 'reviewed',
'time': '2016-07-05T12:17:34.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:16:14.238Z'},
{'depth': 6.47,
'depthError': 0.77,
'dmin': 0.05897,
'gap': 113.0,
'horizontalError': 0.33,
'id': 'nc72658741',
'latitude': 37.5196667,
'locationSource': 'nc',
'longitude': -118.78399999999999,
'mag': 1.45,
'magError': 0.139,
'magNst': 21.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 24.0,
'place': '21km SE of Mammoth Lakes, California',
'rms': 0.03,
'status': 'reviewed',
'time': '2016-07-05T12:12:45.320Z',
'type': 'earthquake',
'updated': '2016-07-05T23:32:02.321Z'},
{'depth': 2.47,
'depthError': 0.16,
'dmin': 0.004685,
'gap': 46.0,
'horizontalError': 0.12,
'id': 'nc72658736',
'latitude': 38.8226667,
'locationSource': 'nc',
'longitude': -122.84100000000001,
'mag': 1.81,
'magError': 0.23399999999999999,
'magNst': 23.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 57.0,
'place': '8km NW of The Geysers, California',
'rms': 0.06,
'status': 'reviewed',
'time': '2016-07-05T12:11:39.160Z',
'type': 'earthquake',
'updated': '2016-07-06T19:02:02.588Z'},
{'depth': 12.26,
'depthError': 0.33,
'dmin': 0.0604,
'gap': 83.0,
'horizontalError': 0.16,
'id': 'nc72658731',
'latitude': 37.967833299999995,
'locationSource': 'nc',
'longitude': -122.0325,
'mag': 1.77,
'magError': 0.14300000000000002,
'magNst': 41.0,
'magSource': 'nc',
'magType': 'md',
'net': 'nc',
'nst': 45.0,
'place': '1km S of Concord, California',
'rms': 0.07,
'status': 'reviewed',
'time': '2016-07-05T12:08:56.910Z',
'type': 'earthquake',
'updated': '2016-07-07T00:02:01.696Z'},
{'depth': 68.4,
'depthError': 0.3,
'dmin': nan,
'gap': nan,
'horizontalError': 0.2,
'id': 'ak13739210',
'latitude': 62.8797,
'locationSource': 'ak',
'longitude': -148.9436,
'mag': 1.4,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '57km S of Cantwell, Alaska',
'rms': 0.61,
'status': 'reviewed',
'time': '2016-07-05T12:06:28.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:38.312Z'},
{'depth': 15.1,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13752187',
'latitude': 61.0058,
'locationSource': 'ak',
'longitude': -147.1462,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '45km WSW of Valdez, Alaska',
'rms': 0.75,
'status': 'reviewed',
'time': '2016-07-05T11:54:16.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:06.074Z'},
{'depth': 35.0,
'depthError': 2.0,
'dmin': 2.189,
'gap': 69.0,
'horizontalError': 4.5,
'id': 'us1000601b',
'latitude': -0.3386,
'locationSource': 'us',
'longitude': 125.4749,
'mag': 4.4,
'magError': 0.12300000000000001,
'magNst': 19.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '161km N of Dofa, Indonesia',
'rms': 1.29,
'status': 'reviewed',
'time': '2016-07-05T11:48:54.100Z',
'type': 'earthquake',
'updated': '2016-07-07T14:00:06.819Z'},
{'depth': 10.0,
'depthError': 1.9,
'dmin': 0.669,
'gap': 24.0,
'horizontalError': 4.9,
'id': 'us1000601a',
'latitude': 35.5119,
'locationSource': 'us',
'longitude': 129.8661,
'mag': 4.8,
'magError': 0.076,
'magNst': 54.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '49km E of Ulsan, South Korea',
'rms': 0.91,
'status': 'reviewed',
'time': '2016-07-05T11:33:03.920Z',
'type': 'earthquake',
'updated': '2016-07-07T13:59:36.778Z'},
{'depth': 84.8,
'depthError': 0.7,
'dmin': nan,
'gap': nan,
'horizontalError': 0.7,
'id': 'ak13752186',
'latitude': 62.0424,
'locationSource': 'ak',
'longitude': -151.3841,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '73km WSW of Talkeetna, Alaska',
'rms': 0.24,
'status': 'reviewed',
'time': '2016-07-05T11:22:24.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:05.473Z'},
{'depth': 35.0,
'depthError': 2.0,
'dmin': 2.0909999999999997,
'gap': 51.0,
'horizontalError': 5.6,
'id': 'us10006015',
'latitude': -0.2665,
'locationSource': 'us',
'longitude': 125.5466,
'mag': 4.5,
'magError': 0.113,
'magNst': 23.0,
'magSource': 'us',
'magType': 'mb',
'net': 'us',
'nst': nan,
'place': '168km SE of Modayag, Indonesia',
'rms': 1.01,
'status': 'reviewed',
'time': '2016-07-05T11:18:03.620Z',
'type': 'earthquake',
'updated': '2016-07-07T13:59:52.574Z'},
{'depth': 5.96,
'depthError': 8.16,
'dmin': 0.2866,
'gap': 146.0,
'horizontalError': 0.53,
'id': 'uu60154887',
'latitude': 37.9326667,
'locationSource': 'uu',
'longitude': -112.52,
'mag': 1.29,
'magError': 0.218,
'magNst': 3.0,
'magSource': 'uu',
'magType': 'ml',
'net': 'uu',
'nst': 8.0,
'place': '14km NNW of Panguitch, Utah',
'rms': 0.15,
'status': 'reviewed',
'time': '2016-07-05T11:16:34.030Z',
'type': 'earthquake',
'updated': '2016-07-07T21:17:24.730Z'},
{'depth': 43.9,
'depthError': 0.4,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13739057',
'latitude': 61.8505,
'locationSource': 'ak',
'longitude': -149.69799999999998,
'mag': 1.2,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '21km ENE of Willow, Alaska',
'rms': 0.43,
'status': 'reviewed',
'time': '2016-07-05T11:14:55.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:13:19.508Z'},
{'depth': 7.2,
'depthError': 0.5,
'dmin': nan,
'gap': nan,
'horizontalError': 0.5,
'id': 'ak13752184',
'latitude': 60.5974,
'locationSource': 'ak',
'longitude': -147.305,
'mag': 1.1,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '77km ESE of Whittier, Alaska',
'rms': 0.5,
'status': 'reviewed',
'time': '2016-07-05T11:01:09.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:04.579Z'},
{'depth': 23.1,
'depthError': 0.2,
'dmin': nan,
'gap': nan,
'horizontalError': 0.4,
'id': 'ak13739056',
'latitude': 64.7658,
'locationSource': 'ak',
'longitude': -149.2111,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '21km NNW of North Nenana, Alaska',
'rms': 0.55,
'status': 'reviewed',
'time': '2016-07-05T10:57:00.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:02.007Z'},
{'depth': 89.7,
'depthError': 1.0,
'dmin': nan,
'gap': nan,
'horizontalError': 0.9,
'id': 'ak13752179',
'latitude': 62.6323,
'locationSource': 'ak',
'longitude': -150.9815,
'mag': 1.0,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '56km NW of Talkeetna, Alaska',
'rms': 0.18,
'status': 'reviewed',
'time': '2016-07-05T10:32:16.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:15:00.415Z'},
{'depth': 6.7,
'depthError': 1.1,
'dmin': nan,
'gap': nan,
'horizontalError': 1.2,
'id': 'ak13738902',
'latitude': 50.7054,
'locationSource': 'ak',
'longitude': 178.1843,
'mag': 2.9,
'magError': nan,
'magNst': nan,
'magSource': 'ak',
'magType': 'ml',
'net': 'ak',
'nst': nan,
'place': '140km S of Little Sitkin Island, Alaska',
'rms': 0.64,
'status': 'reviewed',
'time': '2016-07-05T10:07:50.000Z',
'type': 'earthquake',
'updated': '2016-07-11T23:16:07.663Z'},
...]
In [23]:
earthquake = earthquakes[0]
In [24]:
def depth_to_words(earth_dict):
depth = earth_dict['depth']
if depth < 70:
depth_description = "shallow"
elif (depth > 70) & (depth < 300):
depth_description = "intermediate"
elif (depth >300):
depth_description = "deep"
else:
depth_description = "no depth recorded"
return(depth_description)
# call the function
depth_to_words(earthquake)
Out[24]:
'shallow'
In [25]:
def magnitude_to_words(earth_dict):
magnitude = earth_dict['mag']
# mag_words = ""
if (magnitude >= 0) & (magnitude <= 2):
mag_words = "micro"
elif(magnitude > 2) & (magnitude <= 4):
mag_words = "minor"
elif (magnitude > 4) & (magnitude <= 6):
mag_words = "light"
elif (magnitude > 6) & (magnitude <= 7):
mag_words = "moderate"
elif (magnitude > 7) & (magnitude <= 9):
mag_words = "strong"
elif magnitude == 10:
mag_words = "major"
else:
mag_words = "no magnitud recorded"
return mag_words
magnitude_to_words(earthquake)
Out[25]:
'micro'
In [26]:
import dateutil.parser
def day_in_words(earth_dict):
time = earthquake['time']
day_of_the_week = dateutil.parser.parse(time)
return(day_of_the_week.strftime("%A"))
day_in_words(earthquake)
Out[26]:
'Tuesday'
In [27]:
def time_in_words(earth_dict):
time = earthquake['time']
python_time = dateutil.parser.parse(time)
python_time.strftime("%-H")
if (python_time.hour >= 00) & (python_time.hour < 12):
time_of_the_day = "morning"
elif (python_time.hour == 12) & (python_time.hour <= 13):
time_of_the_day = "noon"
elif (python_time.hour >= 14) & (python_time.hour < 18):
time_of_the_day = "afternoon"
elif (python_time.hour >= 18) & (python_time.hour < 24):
time_of_the_day = "night"
return(time_of_the_day)
time_in_words(earthquake)
Out[27]:
'morning'
In [28]:
python_time = dateutil.parser.parse('2016-06-14T23:57:34.000Z')
In [29]:
python_time.hour
Out[29]:
23
In [30]:
#variable for date in words
def date_in_words(earth_dict):
date = earthquake['time']
month_day = dateutil.parser.parse(date)
return(month_day.strftime("%b %d"))
date_in_words(earthquake)
Out[30]:
'Jul 12'
In [31]:
def eq_to_sentence(earth_dict):
depth = depth_to_words(earth_dict)
mag = magnitude_to_words(earth_dict)
mag_number = earth_dict['mag']
day= day_in_words(earth_dict)
daytime= time_in_words(earth_dict)
date= date_in_words(earth_dict)
place = earth_dict['place']
return("A" + " " + depth + " " + mag + " " + str(mag_number) + " " + "magnitude earthquake was reported" + " " +day + " " + daytime + " " + "on" + " " + date + " " +place)
print(eq_to_sentence(earthquake))
A shallow micro 1.87 magnitude earthquake was reported Tuesday morning on Jul 12 2km SW of Highland Park, California
In [32]:
for item in earthquakes:
if item['mag'] >= 4.0:
print(eq_to_sentence(item))
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 249km E of Nord, Greenland
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 56km NW of Hachijo-jima, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 48km NW of Hachijo-jima, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 204km SSW of Ushuaia, Argentina
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 51km NW of Hachijo-jima, Japan
A intermediate light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 83km S of Bengkulu, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 189km NNE of Chichi-shima, Japan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 14km WSW of Healy, Alaska
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 114km ESE of Iwaki, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 75km W of Coquimbo, Chile
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 51km SSW of Karangbadar Kidul, Indonesia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 21km WSW of Ovalle, Chile
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 148km NNE of Dobo, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 22km SW of Corinto, Nicaragua
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 260km ENE of Dili, East Timor
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 57km WNW of Hachijo-jima, Japan
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 53km NW of Hachijo-jima, Japan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 77km S of Tanaga Volcano, Alaska
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 54km WNW of Hachijo-jima, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 31km SE of Propicia, Ecuador
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 34km NE of Marigot, Dominica
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 50km NW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 53km NW of Hachijo-jima, Japan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 181km SSE of Naze, Japan
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 123km WSW of Hihifo, Tonga
A shallow moderate 6.3 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Rosa Zarate, Ecuador
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Rosa Zarate, Ecuador
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 19km SSW of Antofagasta, Chile
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 2km SE of Chaman, Pakistan
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 153km N of Calama, Chile
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 87km SSW of Semisopochnoi Island, Alaska
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 186km ENE of Neiafu, Tonga
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 20km ESE of Taron, Papua New Guinea
A intermediate light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 60km NE of Port-Olry, Vanuatu
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 152km W of Sinabang, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 112km NNE of Hihifo, Tonga
A shallow light 6.0 magnitude earthquake was reported Tuesday morning on Jul 12 140km NE of Hihifo, Tonga
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 109km SSW of Unalaska, Alaska
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 112km S of Unalaska, Alaska
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 14km WNW of Bonjol, Indonesia
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 59km SSW of Puerto San Jose, Guatemala
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 79km WSW of Sungaipenuh, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 0km NNW of Borbon, Philippines
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 141km ENE of Bitung, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 111km N of Finschhafen, Papua New Guinea
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Southeast of Easter Island
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 154km WSW of Sinabang, Indonesia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 17km SW of Norsup, Vanuatu
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 60km W of San Antonio de los Cobres, Argentina
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 54km S of Port-Vila, Vanuatu
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 72km SSW of Puerto El Triunfo, El Salvador
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 175km E of Arzak, China
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 65km N of Namuac, Philippines
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 8km ESE of Tinyahuarco, Peru
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 15km NW of Uto, Japan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 North of Svalbard
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 28km SSW of Shishmaref, Alaska
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 71km ESE of Sarangani, Philippines
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 15km W of Antalya, Turkey
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km NW of Fairview, Oklahoma
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 23km SE of Murupara, New Zealand
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 37km ENE of Iwaki, Japan
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 6km N of Aurora, Philippines
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 30km NW of Fairview, Oklahoma
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 137km SW of Kiska Volcano, Alaska
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Fairview, Oklahoma
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 19km NE of Omama, Japan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 34km SW of Ashkasham, Afghanistan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 195km WNW of Abepura, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 230km ENE of Socorro Island, Mexico
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 50km S of Sukamenak, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 80km ENE of Taniwel, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 97km W of Murghob, Tajikistan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 136km SSW of Severo-Kuril'sk, Russia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 152km NNE of Esperance, Australia
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 37km N of Manado, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 38km NW of Bahia de Caraquez, Ecuador
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 132km W of Attu Station, Alaska
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 46km WNW of Bahia de Caraquez, Ecuador
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Scotia Sea
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 130km SE of Iquique, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Off the coast of Aisen, Chile
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 19km NW of Hawthorne, Nevada
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 19km NW of Hawthorne, Nevada
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 138km W of Ambunti, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 37km W of Ovalle, Chile
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 149km ENE of Dili, East Timor
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 109km ESE of Hirara, Japan
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 149km ENE of Dili, East Timor
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Jarm, Afghanistan
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 100km W of Kandrian, Papua New Guinea
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 17km SE of Roshtqal'a, Tajikistan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 56km N of Bandar 'Abbas, Iran
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 47km NW of Ovalle, Chile
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 81km ESE of Iquique, Chile
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 2km W of Tamisan, Philippines
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 20km WNW of Ain Bessem, Algeria
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 152km SSW of Panguna, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 45km S of Farsan, Iran
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 South of Tonga
A deep light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 102km NNW of Nggilat, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 24km E of Neiafu, Tonga
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 93km SE of Hirara, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 33km E of Propicia, Ecuador
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 53km E of Neiafu, Tonga
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 19km ENE of Pedernales, Ecuador
A shallow light 5.9 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 74km NNE of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 14km ENE of Hasaki, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Off the coast of Oregon
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 295km N of Chichi-shima, Japan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 31km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 52km NE of Tobelo, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 192km SSE of L'Esperance Rock, New Zealand
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 28km NW of Ancud, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 26km WNW of Murghob, Tajikistan
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 153km NNE of Farallon de Pajaros, Northern Mariana Islands
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 161km N of Dofa, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 49km E of Ulsan, South Korea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 168km SE of Modayag, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 116km E of Yairipok, India
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 80km W of Iquique, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 23km NNE of Pinotepa de Don Luis, Mexico
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 113km ESE of Iquique, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 189km WNW of Abepura, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 21km SW of Sary-Tash, Kyrgyzstan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 86km ENE of Tadine, New Caledonia
A deep light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 107km SSW of Ndoi Island, Fiji
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 33km ENE of Camana, Peru
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 42km SW of Attu Station, Alaska
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 119km W of Attu Station, Alaska
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 88km S of Raoul Island, New Zealand
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 59km WSW of Ile Hunter, New Caledonia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 0km NE of Kurihashi, Japan
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 76km WNW of Havelu, Tonga
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 40km NW of Tobelo, Indonesia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 North of Ascension Island
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 South of Panama
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 94km W of Lata, Solomon Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 131km E of Yamada, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 50km SSE of Sola, Vanuatu
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 77km NNW of Naze, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 33km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 96km N of Naze, Japan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 2km SSW of Iwase, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 54km SSW of Nemuro, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 52km WNW of Illapel, Chile
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 38km SW of Ocos, Guatemala
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 149km W of Sinabang, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Tanaga Volcano, Alaska
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 33km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 152km N of Calama, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 47km NNE of Roshtqal'a, Tajikistan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNW of Tilaran, Costa Rica
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 4km E of Fortuna, Costa Rica
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 124km WNW of Havelu, Tonga
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Kepulauan Barat Daya, Indonesia
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 78km WNW of San Antonio de los Cobres, Argentina
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 South Shetland Islands
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 65km S of Bogorawatu, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNW of Querecotillo, Peru
A intermediate light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 126km SSE of Isangel, Vanuatu
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 13km NE of Borazjan, Iran
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 57km SSE of Shikotan, Russia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 16km ESE of Oarai, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 85km NE of Hihifo, Tonga
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 35km SW of Ovalle, Chile
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 119km SE of Phek, India
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 58km NE of Tobelo, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 West Chile Rise
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 27km SE of Gharm, Tajikistan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 21km SSW of Farkhar, Afghanistan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 76km E of Hualian, Taiwan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 36km WNW of Kota Ternate, Indonesia
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 5km SSE of Kunisaki-shi, Japan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 29km S of Sary-Tash, Kyrgyzstan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 22km WNW of Agrihan, Northern Mariana Islands
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 73km WSW of Neiafu, Tonga
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 26km WNW of Nagano-shi, Japan
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Fairview, Oklahoma
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 30km W of Dera Ghazi Khan, Pakistan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Central East Pacific Rise
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 52km SW of Taron, Papua New Guinea
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 126km N of Lae, Papua New Guinea
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 147km NNW of Ozernovskiy, Russia
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 41km S of Pimpi, Indonesia
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 2km N of Lakatoro, Vanuatu
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 16km ESE of Bunobogu, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 70km SW of San Juan del Sur, Nicaragua
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 92km SW of Karakul, Tajikistan
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 58km NNW of Road Town, British Virgin Islands
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 16km ENE of Bojnurd, Iran
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Mid-Indian Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 76km SSW of Kirakira, Solomon Islands
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 162km E of Miyako, Japan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 173km SSE of Adak, Alaska
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 106km S of Puerto San Jose, Guatemala
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 203km WSW of Nikol'skoye, Russia
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 173km NW of Ishikawa, Japan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 78km SE of Cold Bay, Alaska
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 41km NE of Dipayal, Nepal
A intermediate light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 138km NW of Sand Point, Alaska
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 32km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Balleny Islands region
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 145km N of Calama, Chile
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 7km NNW of Pinotepa de Don Luis, Mexico
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 57km WNW of Ovalle, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 21km S of Sary-Tash, Kyrgyzstan
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 76km WNW of Port-Olry, Vanuatu
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 135km ENE of Chichi-shima, Japan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 4km W of Tursunzoda, Tajikistan
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 89km W of San Antonio de los Cobres, Argentina
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 179km NNW of Dobo, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 64km N of Port-Olry, Vanuatu
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 129km SSW of `Ohonua, Tonga
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 93km SSE of Esso, Russia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 26km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 19km W of Isangel, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 15km S of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 South Indian Ocean
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 23km NNE of Mendoza, Argentina
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 36km SW of Kaliandak, Indonesia
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 15km N of Aratoca, Colombia
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 74km NE of Petropavlovsk-Kamchatskiy, Russia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 25km ESE of General Luna, Philippines
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 73km WNW of Calingasta, Argentina
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 93km SSE of Makry Gialos, Greece
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 East of the Kuril Islands
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 37km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 96km SSE of Makry Gialos, Greece
A shallow light 5.7 magnitude earthquake was reported Tuesday morning on Jul 12 18km NNE of Pinotepa de Don Luis, Mexico
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 40km SE of Sary-Tash, Kyrgyzstan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 68km SSW of Uyuni, Bolivia
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 22km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 38km SE of Sary-Tash, Kyrgyzstan
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 8km W of Goroka, Papua New Guinea
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 20km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 40km SSE of Sary-Tash, Kyrgyzstan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 29km SW of Illapel, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 26km SE of Sary-Tash, Kyrgyzstan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 181km WNW of Saumlaki, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 18km N of Yongchang, China
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km ESE of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 217km E of Hachijo-jima, Japan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 11km SSE of Wana, Pakistan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 34km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 47km NNW of Joetsu, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 40km WNW of Kashiwazaki, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 10km NNW of Pasaje, Ecuador
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 41km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 Fiji region
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 28km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 39km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 28km S of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 24km NE of Raojan, Bangladesh
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 29km SSW of Sary-Tash, Kyrgyzstan
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 112km E of Iwaki, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 225km NE of Socorro Island, Mexico
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 33km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 32km S of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 52km NNE of Karakul, Tajikistan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 117km NNW of Dobo, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 34km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 46km ESE of Sary-Tash, Kyrgyzstan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 125km NNE of Calama, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 36km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 206km SW of Merizo Village, Guam
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 9km SSE of Sary-Tash, Kyrgyzstan
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 200km SW of Merizo Village, Guam
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 31km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 43km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 87km SW of Puerto Madero, Mexico
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 12km SW of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 30km S of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 38km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 60km NE of Karakul, Tajikistan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 52km ESE of Sary-Tash, Kyrgyzstan
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 30km S of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 43km ESE of Sary-Tash, Kyrgyzstan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 38km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 41km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 27km ESE of Sary-Tash, Kyrgyzstan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 50km NNE of Karakul, Tajikistan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 44km SE of Sary-Tash, Kyrgyzstan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 45km SE of Shohimardon, Uzbekistan
A shallow moderate 6.4 magnitude earthquake was reported Tuesday morning on Jul 12 28km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 81km S of Angoram, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 126km NNW of Dobo, Indonesia
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 22km ESE of Farkhar, Afghanistan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Carlsberg Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 145km NNE of Tobelo, Indonesia
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 77km SSW of Calama, Chile
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 93km S of Kuh Sefid, Iran
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 253km ESE of Yigo Village, Guam
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 241km NW of Saumlaki, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 143km SSW of Merizo Village, Guam
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 118km NE of Calama, Chile
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 148km NW of Arawa, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 162km NW of Tobelo, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 185km W of Tual, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 3km NW of Magdug, Philippines
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 6km NNE of Korukoy, Turkey
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 26km NW of Nagano-shi, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 252km NE of Fais, Micronesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 213km E of Tadine, New Caledonia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 121km NNW of Dobo, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 38km WNW of Illapel, Chile
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 151km SE of Furnas, Portugal
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 35km NNE of Little Sitkin Island, Alaska
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 38km SSW of Shizunai, Japan
A intermediate light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 114km NE of Diego de Almagro, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 39km SSE of Shizunai, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 109km ESE of Sola, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 18km S of Ocos, Guatemala
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 130km NW of Kota Ternate, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 91km E of Bristol Island, South Sandwich Islands
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 220km NE of Dili, East Timor
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 46km SSW of Brooklyn, New Zealand
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 89km S of Semisopochnoi Island, Alaska
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 137km ENE of Tadine, New Caledonia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 104km WSW of Manismata, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 123km NW of Kota Ternate, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 13km N of Aratoca, Colombia
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 76km S of Manzanillo, Mexico
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 93km SSE of Yonakuni, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 132km N of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Off the east coast of Honshu, Japan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 165km NE of Enarotali, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 3km E of Salcedo, Philippines
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 94km S of Raoul Island, New Zealand
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 2km SSW of Sarzana, Italy
A intermediate light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 45km NNW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 129km N of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 175km NNE of Raoul Island, New Zealand
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 196km E of Amahai, Indonesia
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNE of Aratoca, Colombia
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 Scotia Sea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 10km NNW of Abdanan, Iran
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 181km NNW of Sola, Vanuatu
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 112km W of Port-Vila, Vanuatu
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 250km SE of Lambasa, Fiji
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 241km SE of Sarangani, Philippines
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 37km NNW of Maindong, China
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 130km N of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 163km N of Tobelo, Indonesia
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Tecoanapa, Mexico
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 105km NNW of Bristol Island, South Sandwich Islands
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 212km NW of Farallon de Pajaros, Northern Mariana Islands
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 13km WNW of Ayaviri, Peru
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 8km W of Khvoy, Iran
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 264km SE of Pondaguitan, Philippines
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 71km WSW of Muisne, Ecuador
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 270km NW of Farallon de Pajaros, Northern Mariana Islands
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 80km NNW of Monywa, Burma
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 47km SW of Kota Ternate, Indonesia
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 37km SSW of Iwo Jima, Japan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 10km WSW of Ciudad Sandino, Nicaragua
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 44km W of Ovalle, Chile
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 45km W of Ovalle, Chile
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 223km SE of Saparua, Indonesia
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 174km WSW of Sibolga, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 63km S of Hihifo, Tonga
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 5km ENE of Pitogo, Philippines
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 112km S of Kirakira, Solomon Islands
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 177km SW of Sibolga, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 178km WSW of Sibolga, Indonesia
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 20km ESE of San Francisco del Mar, Mexico
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 217km SSE of Raoul Island, New Zealand
A deep light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 236km WNW of Tual, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A deep moderate 6.3 magnitude earthquake was reported Tuesday morning on Jul 12 68km WNW of Namatanai, Papua New Guinea
A shallow moderate 6.1 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 184km WSW of Sibolga, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 38km N of Turkmenbasy, Turkmenistan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 177km WSW of Sibolga, Indonesia
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 67km SSE of Muara Siberut, Indonesia
A deep light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 27km W of Pacocha, Peru
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 21km SE of Wellington, New Zealand
A deep light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 13km S of Ndoi Island, Fiji
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 123km E of Kimbe, Papua New Guinea
A deep light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 181km WSW of L'Esperance Rock, New Zealand
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 98km SSW of Bengkulu, Indonesia
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 211km NNW of Saumlaki, Indonesia
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 7km SE of Antofagasta, Chile
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 64km NNE of Port-Vila, Vanuatu
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 23km SSE of Junin, Ecuador
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 228km SE of Lambasa, Fiji
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 86km NE of Norsup, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 82km W of Constitucion, Chile
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 20km S of Hukumati Dahanah-ye Ghori, Afghanistan
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 223km NNE of Ndoi Island, Fiji
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 38km WSW of Tugu Hilir, Indonesia
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 56km S of Molibagu, Indonesia
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 130km NE of San Pedro de Atacama, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 99km W of San Antonio de los Cobres, Argentina
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 30km ENE of Nanae, Japan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 18km NE of Norsup, Vanuatu
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 129km NE of Tadine, New Caledonia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 33km NW of La Puerta de San Jose, Argentina
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 211km ENE of Dili, East Timor
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 75km ESE of Luwuk, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 23km ENE of Santa Ana, Ecuador
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 82km SW of Vaini, Tonga
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 239km NE of Fais, Micronesia
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 48km WNW of San Antonio de los Cobres, Argentina
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 190km WSW of Hachijo-jima, Japan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 21km NE of Yilan, Taiwan
A shallow light 6.0 magnitude earthquake was reported Tuesday morning on Jul 12 90km SW of Isangel, Vanuatu
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 126km NE of Tadine, New Caledonia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Off the west coast of northern Sumatra
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 75km WSW of Coquimbo, Chile
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 77km SSW of Nikolski, Alaska
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 94km W of Tobelo, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 60km NE of Taitung City, Taiwan
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 75km ESE of Iwaki, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 162km ENE of L'Esperance Rock, New Zealand
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 126km N of Calama, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 58km S of Kokopo, Papua New Guinea
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 Ascension Island region
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Ascension Island region
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 54km WSW of Sabtang, Philippines
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 116km SW of Isangel, Vanuatu
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 110km WNW of Tobelo, Indonesia
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 150km ESE of Iquique, Chile
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 25km ENE of Linares, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 9km NE of Zonda, Argentina
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 134km ENE of Tadine, New Caledonia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 121km SW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 127km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 96km S of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 92km SSW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 187km S of Kokopo, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 89km S of Isangel, Vanuatu
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 121km SW of Isangel, Vanuatu
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 106km SW of Isangel, Vanuatu
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 90km SSW of Isangel, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 105km SSW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 127km ENE of L'Esperance Rock, New Zealand
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 112km S of Isangel, Vanuatu
A shallow moderate 6.3 magnitude earthquake was reported Tuesday morning on Jul 12 83km SSW of Isangel, Vanuatu
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 79km SW of Isangel, Vanuatu
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 124km NE of Tadine, New Caledonia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Scotia Sea
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 61km SSW of Juli, Peru
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 118km ESE of Bitung, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 136km NE of Aksu, China
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 264km WNW of Saumlaki, Indonesia
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Ascension Island region
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 91km ENE of Norsup, Vanuatu
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 124km WNW of Bengkulu, Indonesia
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 118km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 204km WSW of Puerto Natales, Chile
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 221km NNW of Saumlaki, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A intermediate light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 78km W of San Antonio de los Cobres, Argentina
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 35km NE of Jarm, Afghanistan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 27km NW of Ayaviri, Peru
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 51km SSW of Mendi, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 92km NW of Port-Vila, Vanuatu
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 7km W of Uto, Japan
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 115km W of San Antonio de los Cobres, Argentina
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 213km S of Punta de Burica, Panama
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 23km ENE of Lata, Solomon Islands
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 105km SSW of Kota Ternate, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 138km NW of Kota Ternate, Indonesia
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 143km S of False Pass, Alaska
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 22km ENE of Oarai, Japan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Southern East Pacific Rise
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 97km ENE of Keelung, Taiwan
A shallow light 5.7 magnitude earthquake was reported Tuesday morning on Jul 12 112km SSE of Lata, Solomon Islands
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 127km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 102km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 152km NNW of Tanahmerah, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 91km E of Namie, Japan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 70km S of Vinchina, Argentina
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 202km E of Hachijo-jima, Japan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 94km NNE of Palue, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 123km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 44km E of Kerman, Iran
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 99km E of Kimbe, Papua New Guinea
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 29km WSW of Ashkasham, Afghanistan
A intermediate light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Kepulauan Barat Daya, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 149km E of Neiafu, Tonga
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 61km W of Ovalle, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 22km WSW of Coquimbo, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 56km SSW of Calama, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 153km W of Longyearbyen, Svalbard and Jan Mayen
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 55km ESE of Tarata, Peru
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 14km SSE of Somotillo, Nicaragua
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 211km S of Muara Siberut, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 91km E of Naze, Japan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 79km NNW of Tobelo, Indonesia
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 81km SE of Kirakira, Solomon Islands
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 115km N of Tobelo, Indonesia
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 76km ESE of Kandrian, Papua New Guinea
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 9km WSW of Juliaca, Peru
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 88km ESE of Bristol Island, South Sandwich Islands
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 83km NW of Finschhafen, Papua New Guinea
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 119km SSW of Isangel, Vanuatu
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 129km SSW of Isangel, Vanuatu
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 280km NNW of Saumlaki, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 22km ENE of Nanae, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 14km WSW of Ovalle, Chile
A deep light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 17km SSE of Ndoi Island, Fiji
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 65km NW of Kota Ternate, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 4km SSW of Ceva-i-Ra, Fiji
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 66km SE of Palaiochora, Greece
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 131km SSW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 135km S of False Pass, Alaska
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 122km SSE of Lorengau, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 298km WNW of Neiafu, Tonga
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 164km SW of Merizo Village, Guam
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 42km ESE of Pucallpa, Peru
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 3km NE of Finca Corredor, Panama
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 221km WSW of Riverton, New Zealand
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 11km SW of Auki, Solomon Islands
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 90km WNW of Vallenar, Chile
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 10km NNW of Iztapa, Guatemala
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 174km W of Lata, Solomon Islands
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 31km WSW of Pueblo Nuevo Tiquisate, Guatemala
A intermediate light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 61km NW of Sola, Vanuatu
A intermediate light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 Balleny Islands region
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 33km W of Nuqui, Colombia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 276km S of Kute, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 63km NNW of Port-Olry, Vanuatu
A deep minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 123km WNW of L'Esperance Rock, New Zealand
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 148km N of Calama, Chile
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 193km ESE of Enarotali, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 90km W of Harian, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 170km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Adak, Alaska
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 171km SSE of Naze, Japan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km E of Hualian, Taiwan
A intermediate moderate 6.2 magnitude earthquake was reported Tuesday morning on Jul 12 98km NNW of Isangel, Vanuatu
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 218km S of Verkhoyansk, Russia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 20km ENE of Chepen, Peru
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 95km NNE of Chignik Lake, Alaska
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 9km S of San Vicente Pacaya, Guatemala
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 69km SW of Ocos, Guatemala
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 65km SW of Ocos, Guatemala
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 21km SSW of Somotillo, Nicaragua
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 5km NNW of Taron, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 32km SE of Soe, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 99km NE of Hihifo, Tonga
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 134km NNW of Labuhankananga, Indonesia
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 28km NNE of Bharatpur, Nepal
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 133km ESE of Kirakira, Solomon Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 South of Panama
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 168km WNW of Bristol Island, South Sandwich Islands
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 89km ENE of Villa Rica, Peru
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 7km ENE of Berekua, Dominica
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 55km SSE of Ofunato, Japan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 290km N of Tobelo, Indonesia
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Western Indian-Antarctic Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 193km NNW of Saumlaki, Indonesia
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 160km NE of Ndoi Island, Fiji
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 111km WSW of Porgera, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 3km W of Agoo, Philippines
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 122km ENE of Ndoi Island, Fiji
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 167km SSE of Naze, Japan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 67km NNW of Dukat, Russia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 177km ESE of Hachijo-jima, Japan
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 68km SE of Caburan, Philippines
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 23km S of Puerto El Triunfo, El Salvador
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 Off the east coast of the North Island of New Zealand
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Carlsberg Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 44km S of Sola, Vanuatu
A shallow light 4.34 magnitude earthquake was reported Tuesday morning on Jul 12 52km W of West Yellowstone, Montana
A deep light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 221km NE of Ndoi Island, Fiji
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Central Mid-Atlantic Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 136km NE of Lambasa, Fiji
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 69km NE of Isangel, Vanuatu
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 176km SSE of Naze, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 82km SSW of Corinto, Nicaragua
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 17km W of Auki, Solomon Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 169km SSE of Naze, Japan
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 176km SSE of Naze, Japan
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 165km SSE of Naze, Japan
A deep light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Ndoi Island, Fiji
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Southern East Pacific Rise
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 148km S of Puerto El Triunfo, El Salvador
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 32km NNE of Tumbagaan, Philippines
A shallow light 5.7 magnitude earthquake was reported Tuesday morning on Jul 12 Central East Pacific Rise
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Southern East Pacific Rise
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 119km WNW of Sabang, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 142km SE of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 140km NNW of Finschhafen, Papua New Guinea
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 150km NNW of Neiafu, Tonga
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNE of Sulangan, Philippines
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 74km ENE of Sulangan, Philippines
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 27km NNE of Ambunti, Papua New Guinea
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 51km NE of Bayabas, Philippines
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 245km WNW of Bandon, Oregon
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 97km E of Shikotan, Russia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 45km WSW of Lebu, Chile
A deep light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 291km NNE of Ndoi Island, Fiji
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 55km E of , Azerbaijan
A deep light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 252km ESE of Lambasa, Fiji
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 85km NE of Palue, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 102km SSE of Lata, Solomon Islands
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Central East Pacific Rise
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 70km NNW of Hihifo, Tonga
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 15km SSW of Yatsushiro, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 East of the Kuril Islands
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Kepulauan Barat Daya, Indonesia
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 210km NW of Saumlaki, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 70km SE of Pangai, Tonga
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 161km NE of Isangel, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 56km NNE of Grande Anse, Guadeloupe
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 125km SSE of Kirakira, Solomon Islands
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 191km NNW of Tobelo, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 50km N of Agrihan, Northern Mariana Islands
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 176km ESE of Modayag, Indonesia
In [33]:
def not_eq_to_sentence(earth_dict):
mag = earth_dict['mag']
date= date_in_words(earth_dict)
place = earth_dict['place']
type_of_event = earth_dict['type']
return("There was also a magnitude" + " " + str(mag) + " " + type_of_event + " " + "on" + " " + date + " "+ place)
print(not_eq_to_sentence(earthquake))
There was also a magnitude 1.87 earthquake on Jul 12 2km SW of Highland Park, California
In [34]:
for item in earthquakes:
if item['mag'] >= 4.0:
print(eq_to_sentence(item))
if item['type'] != 'earthquake':
print(not_eq_to_sentence(item))
#There was also a magnitude MAGNITUDE TYPE_OF_EVENT on DATE LOCATION.
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 249km E of Nord, Greenland
There was also a magnitude 1.1 explosion on Jul 12 15km SSW of Chilliwack, Canada
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 56km NW of Hachijo-jima, Japan
There was also a magnitude 1.04 explosion on Jul 12 6km ENE of Sumas, Washington
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 48km NW of Hachijo-jima, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 204km SSW of Ushuaia, Argentina
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 51km NW of Hachijo-jima, Japan
There was also a magnitude 1.5 quarry blast on Jul 12 6km NE of San Ysidro, CA
A intermediate light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 83km S of Bengkulu, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 189km NNE of Chichi-shima, Japan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 14km WSW of Healy, Alaska
There was also a magnitude 1.1 quarry blast on Jul 12 13km SE of Tehachapi, CA
There was also a magnitude 2.27 quarry blast on Jul 12 5km E of Butte, Montana
There was also a magnitude 1.06 quarry blast on Jul 12 6km SSW of Mojave, CA
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 114km ESE of Iwaki, Japan
There was also a magnitude 1.35 explosion on Jul 12 3km ENE of Lewisville, Washington
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 75km W of Coquimbo, Chile
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 51km SSW of Karangbadar Kidul, Indonesia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 21km WSW of Ovalle, Chile
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 148km NNE of Dobo, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 22km SW of Corinto, Nicaragua
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 260km ENE of Dili, East Timor
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 57km WNW of Hachijo-jima, Japan
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 53km NW of Hachijo-jima, Japan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 77km S of Tanaga Volcano, Alaska
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 54km WNW of Hachijo-jima, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 31km SE of Propicia, Ecuador
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 34km NE of Marigot, Dominica
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 50km NW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 53km NW of Hachijo-jima, Japan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 181km SSE of Naze, Japan
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 123km WSW of Hihifo, Tonga
A shallow moderate 6.3 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Rosa Zarate, Ecuador
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Rosa Zarate, Ecuador
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 19km SSW of Antofagasta, Chile
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 2km SE of Chaman, Pakistan
There was also a magnitude 1.73 explosion on Jul 12 12km S of Princeton, Canada
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 153km N of Calama, Chile
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 87km SSW of Semisopochnoi Island, Alaska
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 186km ENE of Neiafu, Tonga
There was also a magnitude 1.97 explosion on Jul 12 5km SSE of Princeton, Canada
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 20km ESE of Taron, Papua New Guinea
A intermediate light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 60km NE of Port-Olry, Vanuatu
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 152km W of Sinabang, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 112km NNE of Hihifo, Tonga
A shallow light 6.0 magnitude earthquake was reported Tuesday morning on Jul 12 140km NE of Hihifo, Tonga
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 109km SSW of Unalaska, Alaska
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 112km S of Unalaska, Alaska
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 14km WNW of Bonjol, Indonesia
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 59km SSW of Puerto San Jose, Guatemala
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 79km WSW of Sungaipenuh, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 0km NNW of Borbon, Philippines
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 141km ENE of Bitung, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 111km N of Finschhafen, Papua New Guinea
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Southeast of Easter Island
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 154km WSW of Sinabang, Indonesia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 17km SW of Norsup, Vanuatu
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 60km W of San Antonio de los Cobres, Argentina
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 54km S of Port-Vila, Vanuatu
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 72km SSW of Puerto El Triunfo, El Salvador
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 175km E of Arzak, China
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 65km N of Namuac, Philippines
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 8km ESE of Tinyahuarco, Peru
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 15km NW of Uto, Japan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 North of Svalbard
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 28km SSW of Shishmaref, Alaska
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 71km ESE of Sarangani, Philippines
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 15km W of Antalya, Turkey
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km NW of Fairview, Oklahoma
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 23km SE of Murupara, New Zealand
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 37km ENE of Iwaki, Japan
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 6km N of Aurora, Philippines
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 30km NW of Fairview, Oklahoma
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 137km SW of Kiska Volcano, Alaska
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Fairview, Oklahoma
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 19km NE of Omama, Japan
There was also a magnitude 1.74 explosion on Jul 12 1km SE of Princeton, Canada
There was also a magnitude 1.11 quarry blast on Jul 12 0km S of Quarry near Atascadero, CA
There was also a magnitude 1.35 quarry blast on Jul 12 7km SSE of Home Gardens, CA
There was also a magnitude 1.41 quarry blast on Jul 12 5km E of Butte, Montana
There was also a magnitude 1.16 quarry blast on Jul 12 12km SE of Santa Ynez, CA
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 34km SW of Ashkasham, Afghanistan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 195km WNW of Abepura, Indonesia
There was also a magnitude 1.23 quarry blast on Jul 12 25km W of Ludlow, CA
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 230km ENE of Socorro Island, Mexico
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
There was also a magnitude 1.83 explosion on Jul 12 30km SW of La Pine, Oregon
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 50km S of Sukamenak, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 80km ENE of Taniwel, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 97km W of Murghob, Tajikistan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 136km SSW of Severo-Kuril'sk, Russia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 152km NNE of Esperance, Australia
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 37km N of Manado, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 38km NW of Bahia de Caraquez, Ecuador
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 132km W of Attu Station, Alaska
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 46km WNW of Bahia de Caraquez, Ecuador
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Scotia Sea
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 130km SE of Iquique, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Off the coast of Aisen, Chile
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 19km NW of Hawthorne, Nevada
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 19km NW of Hawthorne, Nevada
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 138km W of Ambunti, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 37km W of Ovalle, Chile
There was also a magnitude 1.6 quarry blast on Jul 12 17km NNE of Apple Valley, CA
There was also a magnitude 1.32 quarry blast on Jul 12 5km S of Mojave, CA
There was also a magnitude 1.41 quarry blast on Jul 12 9km NNW of Big Bear Lake, CA
There was also a magnitude 1.46 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.48 explosion on Jul 12 29km ESE of Florence, Oregon
There was also a magnitude 1.14 quarry blast on Jul 12 10km N of Big Bear City, CA
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 149km ENE of Dili, East Timor
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 109km ESE of Hirara, Japan
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 149km ENE of Dili, East Timor
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Jarm, Afghanistan
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 100km W of Kandrian, Papua New Guinea
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 17km SE of Roshtqal'a, Tajikistan
There was also a magnitude 1.15 explosion on Jul 12 3km ENE of Fern Prairie, Washington
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 56km N of Bandar 'Abbas, Iran
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 47km NW of Ovalle, Chile
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 81km ESE of Iquique, Chile
There was also a magnitude 1.67 explosion on Jul 12 2km SSW of Princeton, Canada
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 2km W of Tamisan, Philippines
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 20km WNW of Ain Bessem, Algeria
There was also a magnitude 1.89 quarry blast on Jul 12 2km SE of Quarry near Aromas, CA
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 152km SSW of Panguna, Papua New Guinea
There was also a magnitude 1.35 quarry blast on Jul 12 5km NNE of Butte, Montana
There was also a magnitude 1.08 quarry blast on Jul 12 10km NNW of Big Bear City, CA
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 45km S of Farsan, Iran
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 South of Tonga
A deep light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 102km NNW of Nggilat, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 24km E of Neiafu, Tonga
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 93km SE of Hirara, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 33km E of Propicia, Ecuador
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 53km E of Neiafu, Tonga
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 19km ENE of Pedernales, Ecuador
A shallow light 5.9 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 74km NNE of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 14km ENE of Hasaki, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Off the coast of Oregon
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 295km N of Chichi-shima, Japan
There was also a magnitude 1.67 explosion on Jul 12 15km NNE of Quincy, Washington
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 31km SSE of Sary-Tash, Kyrgyzstan
There was also a magnitude 1.4 quarry blast on Jul 12 4km SE of Home Gardens, CA
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 52km NE of Tobelo, Indonesia
There was also a magnitude 1.45 explosion on Jul 12 7km ESE of La Pine, Oregon
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 192km SSE of L'Esperance Rock, New Zealand
There was also a magnitude 1.26 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 28km NW of Ancud, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 26km WNW of Murghob, Tajikistan
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 153km NNE of Farallon de Pajaros, Northern Mariana Islands
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 161km N of Dofa, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 49km E of Ulsan, South Korea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 168km SE of Modayag, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 116km E of Yairipok, India
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 80km W of Iquique, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 23km NNE of Pinotepa de Don Luis, Mexico
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 113km ESE of Iquique, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 189km WNW of Abepura, Indonesia
There was also a magnitude 1.91 explosion on Jul 12 6km S of Princeton, Canada
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 21km SW of Sary-Tash, Kyrgyzstan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 86km ENE of Tadine, New Caledonia
A deep light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 107km SSW of Ndoi Island, Fiji
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 33km ENE of Camana, Peru
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 42km SW of Attu Station, Alaska
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 119km W of Attu Station, Alaska
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 88km S of Raoul Island, New Zealand
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 59km WSW of Ile Hunter, New Caledonia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 0km NE of Kurihashi, Japan
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 76km WNW of Havelu, Tonga
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 40km NW of Tobelo, Indonesia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 North of Ascension Island
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 South of Panama
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 94km W of Lata, Solomon Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 131km E of Yamada, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 50km SSE of Sola, Vanuatu
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 77km NNW of Naze, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 33km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 96km N of Naze, Japan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 2km SSW of Iwase, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 54km SSW of Nemuro, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 52km WNW of Illapel, Chile
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 38km SW of Ocos, Guatemala
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 149km W of Sinabang, Indonesia
There was also a magnitude 2.24 quarry blast on Jul 12 37km NNW of Lovell, Wyoming
There was also a magnitude 1.99 explosion on Jul 12 1km SW of Princeton, Canada
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Tanaga Volcano, Alaska
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 33km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 152km N of Calama, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 47km NNE of Roshtqal'a, Tajikistan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNW of Tilaran, Costa Rica
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 4km E of Fortuna, Costa Rica
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 124km WNW of Havelu, Tonga
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Kepulauan Barat Daya, Indonesia
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 78km WNW of San Antonio de los Cobres, Argentina
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 South Shetland Islands
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 65km S of Bogorawatu, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNW of Querecotillo, Peru
A intermediate light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 126km SSE of Isangel, Vanuatu
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 13km NE of Borazjan, Iran
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 57km SSE of Shikotan, Russia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 16km ESE of Oarai, Japan
There was also a magnitude 1.46 explosion on Jul 12 22km WSW of Morton, Washington
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 85km NE of Hihifo, Tonga
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 35km SW of Ovalle, Chile
There was also a magnitude 1.96 explosion on Jul 12 4km S of Princeton, Canada
There was also a magnitude 1.45 quarry blast on Jul 12 6km SE of Bonita, CA
There was also a magnitude 1.31 quarry blast on Jul 12 13km SE of Tehachapi, CA
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 119km SE of Phek, India
There was also a magnitude 1.69 quarry blast on Jul 12 6km ESE of Butte, Montana
There was also a magnitude 2.02 quarry blast on Jul 12 26km ESE of Saint Maries, Idaho
There was also a magnitude 1.27 explosion on Jul 12 19km NNW of Philomath, Oregon
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
There was also a magnitude 1.91 explosion on Jul 12 12km ESE of Ocean Park, Washington
There was also a magnitude 1.23 quarry blast on Jul 12 6km ENE of Three Forks, Montana
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 58km NE of Tobelo, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 West Chile Rise
There was also a magnitude 1.25 quarry blast on Jul 12 9km NNW of Big Bear City, CA
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 27km SE of Gharm, Tajikistan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 21km SSW of Farkhar, Afghanistan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 76km E of Hualian, Taiwan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 36km WNW of Kota Ternate, Indonesia
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 5km SSE of Kunisaki-shi, Japan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 29km S of Sary-Tash, Kyrgyzstan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 22km WNW of Agrihan, Northern Mariana Islands
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 73km WSW of Neiafu, Tonga
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 26km WNW of Nagano-shi, Japan
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 32km NW of Fairview, Oklahoma
There was also a magnitude 1.39 explosion on Jul 12 3km SE of Gold Bar, Washington
There was also a magnitude 1.34 quarry blast on Jul 12 2km SE of Home Gardens, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 30km W of Dera Ghazi Khan, Pakistan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Central East Pacific Rise
There was also a magnitude 1.4 quarry blast on Jul 12 13km E of Quarry near Portola Valley, CA
There was also a magnitude 1.29 quarry blast on Jul 12 1km SSE of Quarry near Aromas, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 52km SW of Taron, Papua New Guinea
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 126km N of Lae, Papua New Guinea
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 147km NNW of Ozernovskiy, Russia
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 41km S of Pimpi, Indonesia
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 2km N of Lakatoro, Vanuatu
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 16km ESE of Bunobogu, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 70km SW of San Juan del Sur, Nicaragua
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 92km SW of Karakul, Tajikistan
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 58km NNW of Road Town, British Virgin Islands
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 16km ENE of Bojnurd, Iran
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Mid-Indian Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 76km SSW of Kirakira, Solomon Islands
There was also a magnitude 2.15 explosion on Jul 12 7km S of Princeton, Canada
There was also a magnitude 1.41 quarry blast on Jul 12 4km SE of Home Gardens, CA
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 162km E of Miyako, Japan
There was also a magnitude 1.09 quarry blast on Jul 12 9km ESE of Coto De Caza, CA
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 173km SSE of Adak, Alaska
There was also a magnitude 1.25 quarry blast on Jul 12 5km NNW of Lake Elsinore, CA
There was also a magnitude 2.26 explosion on Jul 12 5km ENE of Medford, Oregon
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 106km S of Puerto San Jose, Guatemala
There was also a magnitude 1.03 quarry blast on Jul 12 10km N of Victorville, CA
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 203km WSW of Nikol'skoye, Russia
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 173km NW of Ishikawa, Japan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 78km SE of Cold Bay, Alaska
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 41km NE of Dipayal, Nepal
A intermediate light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 138km NW of Sand Point, Alaska
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 32km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Balleny Islands region
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 145km N of Calama, Chile
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 7km NNW of Pinotepa de Don Luis, Mexico
There was also a magnitude 1.64 quarry blast on Jul 12 5km NNW of Boron, CA
There was also a magnitude 1.57 explosion on Jul 12 4km ESE of Kelso, Washington
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 57km WNW of Ovalle, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 21km S of Sary-Tash, Kyrgyzstan
There was also a magnitude 1.37 quarry blast on Jul 12 46km NNW of Los Algodones, B.C., MX
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 76km WNW of Port-Olry, Vanuatu
There was also a magnitude 1.1 explosion on Jul 12 16km ESE of Enumclaw, Washington
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Sary-Tash, Kyrgyzstan
There was also a magnitude 1.75 explosion on Jul 12 16km S of Highland, Washington
There was also a magnitude 1.12 quarry blast on Jul 12 4km WNW of Grand Terrace, CA
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 135km ENE of Chichi-shima, Japan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 4km W of Tursunzoda, Tajikistan
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 89km W of San Antonio de los Cobres, Argentina
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 179km NNW of Dobo, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 64km N of Port-Olry, Vanuatu
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 129km SSW of `Ohonua, Tonga
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 93km SSE of Esso, Russia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 26km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 19km W of Isangel, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 15km S of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 South Indian Ocean
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 23km NNE of Mendoza, Argentina
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 36km SW of Kaliandak, Indonesia
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 15km N of Aratoca, Colombia
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 74km NE of Petropavlovsk-Kamchatskiy, Russia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 25km ESE of General Luna, Philippines
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 73km WNW of Calingasta, Argentina
There was also a magnitude 1.56 quarry blast on Jul 12 45km NE of Holtville, CA
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 93km SSE of Makry Gialos, Greece
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 East of the Kuril Islands
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 37km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 96km SSE of Makry Gialos, Greece
A shallow light 5.7 magnitude earthquake was reported Tuesday morning on Jul 12 18km NNE of Pinotepa de Don Luis, Mexico
There was also a magnitude 1.13 explosion on Jul 12 25km SSW of Morton, Washington
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 40km SE of Sary-Tash, Kyrgyzstan
There was also a magnitude 1.32 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.07 quarry blast on Jul 12 13km SE of Tehachapi, CA
There was also a magnitude 1.9 explosion on Jul 12 5km NNW of Albany, Oregon
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 68km SSW of Uyuni, Bolivia
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 22km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 38km SE of Sary-Tash, Kyrgyzstan
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 8km W of Goroka, Papua New Guinea
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 20km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 40km SSE of Sary-Tash, Kyrgyzstan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 29km SW of Illapel, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 26km SE of Sary-Tash, Kyrgyzstan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 181km WNW of Saumlaki, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 18km N of Yongchang, China
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km ESE of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 217km E of Hachijo-jima, Japan
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 11km SSE of Wana, Pakistan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 34km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 47km NNW of Joetsu, Japan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 40km WNW of Kashiwazaki, Japan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 10km NNW of Pasaje, Ecuador
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 41km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 Fiji region
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 28km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 39km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 28km S of Sary-Tash, Kyrgyzstan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 24km NE of Raojan, Bangladesh
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 29km SSW of Sary-Tash, Kyrgyzstan
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 112km E of Iwaki, Japan
There was also a magnitude 1.86 explosion on Jul 12 1km SSW of Princeton, Canada
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 225km NE of Socorro Island, Mexico
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 33km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 32km S of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 52km NNE of Karakul, Tajikistan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 117km NNW of Dobo, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 34km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 46km ESE of Sary-Tash, Kyrgyzstan
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 125km NNE of Calama, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 36km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 206km SW of Merizo Village, Guam
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 9km SSE of Sary-Tash, Kyrgyzstan
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 200km SW of Merizo Village, Guam
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 31km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 43km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 87km SW of Puerto Madero, Mexico
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 12km SW of Sary-Tash, Kyrgyzstan
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 30km S of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 38km SSE of Sary-Tash, Kyrgyzstan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 60km NE of Karakul, Tajikistan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 52km ESE of Sary-Tash, Kyrgyzstan
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 30km S of Sary-Tash, Kyrgyzstan
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 43km ESE of Sary-Tash, Kyrgyzstan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 38km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 41km SE of Sary-Tash, Kyrgyzstan
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 27km ESE of Sary-Tash, Kyrgyzstan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 50km NNE of Karakul, Tajikistan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 44km SE of Sary-Tash, Kyrgyzstan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 45km SE of Shohimardon, Uzbekistan
A shallow moderate 6.4 magnitude earthquake was reported Tuesday morning on Jul 12 28km SSE of Sary-Tash, Kyrgyzstan
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 81km S of Angoram, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 126km NNW of Dobo, Indonesia
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 22km ESE of Farkhar, Afghanistan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Carlsberg Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 145km NNE of Tobelo, Indonesia
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 77km SSW of Calama, Chile
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 93km S of Kuh Sefid, Iran
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 253km ESE of Yigo Village, Guam
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 241km NW of Saumlaki, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 West of Macquarie Island
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 143km SSW of Merizo Village, Guam
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 118km NE of Calama, Chile
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 148km NW of Arawa, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 162km NW of Tobelo, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 185km W of Tual, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 3km NW of Magdug, Philippines
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 6km NNE of Korukoy, Turkey
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 26km NW of Nagano-shi, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 252km NE of Fais, Micronesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 213km E of Tadine, New Caledonia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 121km NNW of Dobo, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 38km WNW of Illapel, Chile
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 151km SE of Furnas, Portugal
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
There was also a magnitude 1.58 quarry blast on Jul 12 45km NNW of Los Algodones, B.C., MX
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 35km NNE of Little Sitkin Island, Alaska
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 38km SSW of Shizunai, Japan
A intermediate light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 114km NE of Diego de Almagro, Chile
There was also a magnitude 1.68 explosion on Jul 12 3km SSE of Princeton, Canada
There was also a magnitude 1.19 quarry blast on Jul 12 8km SSW of Mojave, CA
There was also a magnitude 1.78 quarry blast on Jul 12 10km NNW of Big Bear Lake, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 39km SSE of Shizunai, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 109km ESE of Sola, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 18km S of Ocos, Guatemala
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 130km NW of Kota Ternate, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 91km E of Bristol Island, South Sandwich Islands
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 220km NE of Dili, East Timor
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 46km SSW of Brooklyn, New Zealand
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 89km S of Semisopochnoi Island, Alaska
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 137km ENE of Tadine, New Caledonia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 104km WSW of Manismata, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 123km NW of Kota Ternate, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 13km N of Aratoca, Colombia
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 76km S of Manzanillo, Mexico
A shallow light 5.8 magnitude earthquake was reported Tuesday morning on Jul 12 93km SSE of Yonakuni, Japan
There was also a magnitude 1.25 explosion on Jul 12 13km NE of Abbotsford, Canada
There was also a magnitude 1.84 explosion on Jul 12 5km E of White Salmon, Washington
There was also a magnitude 1.11 quarry blast on Jul 12 1km SE of Quarry near Aromas, CA
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 132km N of Visokoi Island, South Georgia and the South Sandwich Islands
There was also a magnitude 1.31 quarry blast on Jul 12 13km SE of Tehachapi, CA
There was also a magnitude 1.22 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Off the east coast of Honshu, Japan
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 165km NE of Enarotali, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 3km E of Salcedo, Philippines
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 94km S of Raoul Island, New Zealand
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 2km SSW of Sarzana, Italy
A intermediate light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 45km NNW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 129km N of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 175km NNE of Raoul Island, New Zealand
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 196km E of Amahai, Indonesia
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNE of Aratoca, Colombia
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 Scotia Sea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Reykjanes Ridge
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 10km NNW of Abdanan, Iran
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 181km NNW of Sola, Vanuatu
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 112km W of Port-Vila, Vanuatu
There was also a magnitude 1.34 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 250km SE of Lambasa, Fiji
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 241km SE of Sarangani, Philippines
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 37km NNW of Maindong, China
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 130km N of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 163km N of Tobelo, Indonesia
There was also a magnitude 1.08 explosion on Jul 12 2km ENE of Eatonville, Washington
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Tecoanapa, Mexico
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 105km NNW of Bristol Island, South Sandwich Islands
There was also a magnitude 1.94 quarry blast on Jul 12 5km ENE of Butte, Montana
There was also a magnitude 1.27 explosion on Jul 12 7km SSE of Eatonville, Washington
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 212km NW of Farallon de Pajaros, Northern Mariana Islands
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 13km WNW of Ayaviri, Peru
There was also a magnitude 1.62 explosion on Jul 12 3km S of Princeton, Canada
There was also a magnitude 1.64 explosion on Jul 12 30km ESE of Florence, Oregon
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 8km W of Khvoy, Iran
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
There was also a magnitude 1.87 quarry blast on Jul 12 6km W of Colonial Heights, Tennessee
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 264km SE of Pondaguitan, Philippines
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 71km WSW of Muisne, Ecuador
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 270km NW of Farallon de Pajaros, Northern Mariana Islands
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 80km NNW of Monywa, Burma
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 47km SW of Kota Ternate, Indonesia
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 37km SSW of Iwo Jima, Japan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 10km WSW of Ciudad Sandino, Nicaragua
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 44km W of Ovalle, Chile
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 45km W of Ovalle, Chile
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 223km SE of Saparua, Indonesia
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 174km WSW of Sibolga, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 63km S of Hihifo, Tonga
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 5km ENE of Pitogo, Philippines
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 112km S of Kirakira, Solomon Islands
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 177km SW of Sibolga, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 178km WSW of Sibolga, Indonesia
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 20km ESE of San Francisco del Mar, Mexico
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 217km SSE of Raoul Island, New Zealand
There was also a magnitude 1.8 explosion on Jul 12 15km S of Princeton, Canada
There was also a magnitude 1.44 explosion on Jul 12 5km SE of Gold Bar, Washington
A deep light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 236km WNW of Tual, Indonesia
There was also a magnitude 1.06 quarry blast on Jul 12 6km SSW of Mojave, CA
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
There was also a magnitude 1.92 quarry blast on Jul 12 11km N of Oroville, California
A deep moderate 6.3 magnitude earthquake was reported Tuesday morning on Jul 12 68km WNW of Namatanai, Papua New Guinea
A shallow moderate 6.1 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 184km WSW of Sibolga, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 38km N of Turkmenbasy, Turkmenistan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 177km WSW of Sibolga, Indonesia
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 67km SSE of Muara Siberut, Indonesia
A deep light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 27km W of Pacocha, Peru
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 21km SE of Wellington, New Zealand
A deep light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 13km S of Ndoi Island, Fiji
A intermediate light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 123km E of Kimbe, Papua New Guinea
A deep light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 181km WSW of L'Esperance Rock, New Zealand
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 98km SSW of Bengkulu, Indonesia
A intermediate light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 211km NNW of Saumlaki, Indonesia
There was also a magnitude 1.98 explosion on Jul 12 4km NNW of Bend, Oregon
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 7km SE of Antofagasta, Chile
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 64km NNE of Port-Vila, Vanuatu
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 23km SSE of Junin, Ecuador
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 228km SE of Lambasa, Fiji
There was also a magnitude 1.44 quarry blast on Jul 12 46km NE of Holtville, CA
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 86km NE of Norsup, Vanuatu
There was also a magnitude 1.71 explosion on Jul 12 3km WSW of Sweet Home, Oregon
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 82km W of Constitucion, Chile
There was also a magnitude 1.33 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.85 explosion on Jul 12 2km E of Granite Falls, Washington
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 20km S of Hukumati Dahanah-ye Ghori, Afghanistan
There was also a magnitude 1.23 quarry blast on Jul 12 13km W of Mojave, CA
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 223km NNE of Ndoi Island, Fiji
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 38km WSW of Tugu Hilir, Indonesia
There was also a magnitude 1.77 quarry blast on Jul 12 7km SSE of Home Gardens, CA
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 56km S of Molibagu, Indonesia
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 130km NE of San Pedro de Atacama, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 99km W of San Antonio de los Cobres, Argentina
There was also a magnitude 1.25 quarry blast on Jul 12 4km ENE of Tehachapi, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 30km ENE of Nanae, Japan
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 18km NE of Norsup, Vanuatu
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 129km NE of Tadine, New Caledonia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 33km NW of La Puerta de San Jose, Argentina
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 211km ENE of Dili, East Timor
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 75km ESE of Luwuk, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 23km ENE of Santa Ana, Ecuador
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 82km SW of Vaini, Tonga
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 239km NE of Fais, Micronesia
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 48km WNW of San Antonio de los Cobres, Argentina
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 190km WSW of Hachijo-jima, Japan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 21km NE of Yilan, Taiwan
A shallow light 6.0 magnitude earthquake was reported Tuesday morning on Jul 12 90km SW of Isangel, Vanuatu
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 126km NE of Tadine, New Caledonia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Off the west coast of northern Sumatra
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 75km WSW of Coquimbo, Chile
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 77km SSW of Nikolski, Alaska
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 94km W of Tobelo, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 60km NE of Taitung City, Taiwan
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 75km ESE of Iwaki, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 162km ENE of L'Esperance Rock, New Zealand
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 126km N of Calama, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 58km S of Kokopo, Papua New Guinea
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 Ascension Island region
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Ascension Island region
There was also a magnitude 1.29 other event on Jul 12 10km SW of Bridgeport, Washington
There was also a magnitude 1.95 explosion on Jul 12 1km SSW of Princeton, Canada
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 54km WSW of Sabtang, Philippines
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 116km SW of Isangel, Vanuatu
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 110km WNW of Tobelo, Indonesia
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 150km ESE of Iquique, Chile
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 25km ENE of Linares, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 9km NE of Zonda, Argentina
There was also a magnitude 1.36 other event on Jul 12 10km SW of Bridgeport, Washington
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 134km ENE of Tadine, New Caledonia
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 121km SW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 127km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 96km S of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 92km SSW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Northern Mid-Atlantic Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 187km S of Kokopo, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 89km S of Isangel, Vanuatu
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 121km SW of Isangel, Vanuatu
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 106km SW of Isangel, Vanuatu
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 90km SSW of Isangel, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 105km SSW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 127km ENE of L'Esperance Rock, New Zealand
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 112km S of Isangel, Vanuatu
A shallow moderate 6.3 magnitude earthquake was reported Tuesday morning on Jul 12 83km SSW of Isangel, Vanuatu
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 79km SW of Isangel, Vanuatu
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 124km NE of Tadine, New Caledonia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Scotia Sea
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 61km SSW of Juli, Peru
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 118km ESE of Bitung, Indonesia
There was also a magnitude 1.27 other event on Jul 12 30km ESE of Sweet Home, Oregon
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 136km NE of Aksu, China
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 264km WNW of Saumlaki, Indonesia
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Ascension Island region
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 91km ENE of Norsup, Vanuatu
A shallow light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 124km WNW of Bengkulu, Indonesia
There was also a magnitude 1.74 explosion on Jul 12 9km S of Princeton, Canada
A deep light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 118km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 204km WSW of Puerto Natales, Chile
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 221km NNW of Saumlaki, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Izu Islands, Japan region
There was also a magnitude 1.22 explosion on Jul 12 8km E of Yacolt, Washington
A intermediate light 5.5 magnitude earthquake was reported Tuesday morning on Jul 12 78km W of San Antonio de los Cobres, Argentina
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 35km NE of Jarm, Afghanistan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 27km NW of Ayaviri, Peru
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 51km SSW of Mendi, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 92km NW of Port-Vila, Vanuatu
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 7km W of Uto, Japan
A intermediate light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 115km W of San Antonio de los Cobres, Argentina
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 213km S of Punta de Burica, Panama
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 23km ENE of Lata, Solomon Islands
A intermediate light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 105km SSW of Kota Ternate, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 138km NW of Kota Ternate, Indonesia
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 143km S of False Pass, Alaska
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 22km ENE of Oarai, Japan
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 Southern East Pacific Rise
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 97km ENE of Keelung, Taiwan
A shallow light 5.7 magnitude earthquake was reported Tuesday morning on Jul 12 112km SSE of Lata, Solomon Islands
There was also a magnitude 1.99 explosion on Jul 12 26km WSW of Cheney, Washington
There was also a magnitude 1.57 explosion on Jul 12 8km WNW of Junction City, Oregon
There was also a magnitude 1.48 quarry blast on Jul 12 4km SE of Home Gardens, CA
There was also a magnitude 1.66 explosion on Jul 12 14km NNW of Philomath, Oregon
There was also a magnitude 1.85 quarry blast on Jul 12 4km ENE of Butte, Montana
There was also a magnitude 1.63 quarry blast on Jul 12 0km E of Quarry near Salinas, CA
There was also a magnitude 1.27 quarry blast on Jul 12 10km NNW of Big Bear City, CA
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 127km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 102km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 152km NNW of Tanahmerah, Indonesia
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 91km E of Namie, Japan
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 70km S of Vinchina, Argentina
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 202km E of Hachijo-jima, Japan
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 94km NNE of Palue, Indonesia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 123km SSW of Isangel, Vanuatu
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 44km E of Kerman, Iran
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 99km E of Kimbe, Papua New Guinea
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 29km WSW of Ashkasham, Afghanistan
A intermediate light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 Kepulauan Barat Daya, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 149km E of Neiafu, Tonga
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 61km W of Ovalle, Chile
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 22km WSW of Coquimbo, Chile
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 56km SSW of Calama, Chile
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 153km W of Longyearbyen, Svalbard and Jan Mayen
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 55km ESE of Tarata, Peru
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 14km SSE of Somotillo, Nicaragua
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 211km S of Muara Siberut, Indonesia
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Pacific-Antarctic Ridge
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 91km E of Naze, Japan
There was also a magnitude 1.36 quarry blast on Jul 12 2km SE of Home Gardens, CA
There was also a magnitude 1.24 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.48 quarry blast on Jul 12 0km SE of Quarry near Vallejo, CA
There was also a magnitude 1.35 explosion on Jul 12 28km SW of Morton, Washington
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 79km NNW of Tobelo, Indonesia
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 81km SE of Kirakira, Solomon Islands
A intermediate minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 115km N of Tobelo, Indonesia
There was also a magnitude 1.16 quarry blast on Jul 12 6km SSW of Mojave, CA
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 76km ESE of Kandrian, Papua New Guinea
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 9km WSW of Juliaca, Peru
There was also a magnitude 1.09 explosion on Jul 12 28km SW of Morton, Washington
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 88km ESE of Bristol Island, South Sandwich Islands
There was also a magnitude 2.08 quarry blast on Jul 12 16km SW of Kemmerer, Wyoming
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 83km NW of Finschhafen, Papua New Guinea
There was also a magnitude 1.15 explosion on Jul 12 25km SW of Morton, Washington
There was also a magnitude 1.3 explosion on Jul 12 25km SW of Morton, Washington
There was also a magnitude 1.07 quarry blast on Jul 12 13km WNW of Searles Valley, CA
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 119km SSW of Isangel, Vanuatu
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 129km SSW of Isangel, Vanuatu
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 280km NNW of Saumlaki, Indonesia
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 22km ENE of Nanae, Japan
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 14km WSW of Ovalle, Chile
A deep light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 17km SSE of Ndoi Island, Fiji
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 65km NW of Kota Ternate, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 4km SSW of Ceva-i-Ra, Fiji
There was also a magnitude 1.33 quarry blast on Jul 12 12km WNW of Whitehall, Montana
There was also a magnitude 2.14 explosion on Jul 12 5km S of Princeton, Canada
There was also a magnitude 1.56 quarry blast on Jul 12 1km NW of Quarry near Salinas, CA
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 66km SE of Palaiochora, Greece
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Kuril Islands
There was also a magnitude 1.29 quarry blast on Jul 12 4km SSE of Home Gardens, CA
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 131km SSW of Isangel, Vanuatu
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 135km S of False Pass, Alaska
A shallow light 4.9 magnitude earthquake was reported Tuesday morning on Jul 12 122km SSE of Lorengau, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 298km WNW of Neiafu, Tonga
There was also a magnitude 1.25 quarry blast on Jul 12 5km ENE of Butte, Montana
There was also a magnitude 1.12 quarry blast on Jul 12 2km SW of Quarry near San Rafael, CA
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 164km SW of Merizo Village, Guam
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 42km ESE of Pucallpa, Peru
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 3km NE of Finca Corredor, Panama
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 221km WSW of Riverton, New Zealand
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 11km SW of Auki, Solomon Islands
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 90km WNW of Vallenar, Chile
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 10km NNW of Iztapa, Guatemala
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 174km W of Lata, Solomon Islands
A shallow light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 31km WSW of Pueblo Nuevo Tiquisate, Guatemala
A intermediate light 5.4 magnitude earthquake was reported Tuesday morning on Jul 12 61km NW of Sola, Vanuatu
A intermediate light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 Balleny Islands region
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 33km W of Nuqui, Colombia
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 276km S of Kute, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 63km NNW of Port-Olry, Vanuatu
A deep minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 123km WNW of L'Esperance Rock, New Zealand
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
There was also a magnitude 1.35 explosion on Jul 12 14km WSW of Cashmere, Washington
There was also a magnitude 1.1 explosion on Jul 12 4km N of Fern Prairie, Washington
There was also a magnitude 1.57 quarry blast on Jul 12 46km NE of Holtville, CA
A intermediate light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 148km N of Calama, Chile
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Southern Mid-Atlantic Ridge
A shallow light 5.2 magnitude earthquake was reported Tuesday morning on Jul 12 193km ESE of Enarotali, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 90km W of Harian, Indonesia
There was also a magnitude 1.44 quarry blast on Jul 12 11km E of Quarry near Portola Valley, CA
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 170km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
There was also a magnitude 1.33 quarry blast on Jul 12 3km SSE of Quarry near Aromas, CA
There was also a magnitude 1.35 quarry blast on Jul 12 4km ENE of Rancho San Diego, CA
There was also a magnitude 1.03 quarry blast on Jul 12 10km ESE of Coto De Caza, CA
There was also a magnitude 1.17 quarry blast on Jul 12 6km SSW of Mojave, CA
There was also a magnitude 1.36 quarry blast on Jul 12 13km SE of Tehachapi, CA
There was also a magnitude 1.05 explosion on Jul 12 5km E of Yoncalla, Oregon
A shallow light 5.1 magnitude earthquake was reported Tuesday morning on Jul 12 39km SW of Adak, Alaska
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 171km SSE of Naze, Japan
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 30km E of Hualian, Taiwan
A intermediate moderate 6.2 magnitude earthquake was reported Tuesday morning on Jul 12 98km NNW of Isangel, Vanuatu
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 218km S of Verkhoyansk, Russia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 20km ENE of Chepen, Peru
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 95km NNE of Chignik Lake, Alaska
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 9km S of San Vicente Pacaya, Guatemala
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 69km SW of Ocos, Guatemala
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 65km SW of Ocos, Guatemala
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 21km SSW of Somotillo, Nicaragua
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 5km NNW of Taron, Papua New Guinea
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 32km SE of Soe, Indonesia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 99km NE of Hihifo, Tonga
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 134km NNW of Labuhankananga, Indonesia
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 28km NNE of Bharatpur, Nepal
There was also a magnitude 1.11 quarry blast on Jul 12 5km NNW of Boron, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 133km ESE of Kirakira, Solomon Islands
There was also a magnitude 1.13 explosion on Jul 12 10km NNW of Philomath, Oregon
There was also a magnitude 2.18 quarry blast on Jul 12 46km NE of Holtville, CA
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 South of Panama
There was also a magnitude 2.38 explosion on Jul 12 1km WNW of Princeton, Canada
There was also a magnitude 1.65 quarry blast on Jul 12 1km W of Tijuana, B.C., MX
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 168km WNW of Bristol Island, South Sandwich Islands
There was also a magnitude 1.26 explosion on Jul 12 13km S of Morton, Washington
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 89km ENE of Villa Rica, Peru
There was also a magnitude 1.09 quarry blast on Jul 12 5km S of Mojave, CA
There was also a magnitude 1.75 quarry blast on Jul 12 5km E of Butte, Montana
A intermediate light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 7km ENE of Berekua, Dominica
A shallow light 4.1 magnitude earthquake was reported Tuesday morning on Jul 12 55km SSE of Ofunato, Japan
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 290km N of Tobelo, Indonesia
A shallow light 5.0 magnitude earthquake was reported Tuesday morning on Jul 12 Western Indian-Antarctic Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 193km NNW of Saumlaki, Indonesia
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 160km NE of Ndoi Island, Fiji
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 111km WSW of Porgera, Papua New Guinea
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 3km W of Agoo, Philippines
A deep light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 122km ENE of Ndoi Island, Fiji
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 167km SSE of Naze, Japan
There was also a magnitude 1.53 quarry blast on Jul 12 9km NNW of Big Bear Lake, CA
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 67km NNW of Dukat, Russia
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 177km ESE of Hachijo-jima, Japan
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A intermediate light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 68km SE of Caburan, Philippines
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 23km S of Puerto El Triunfo, El Salvador
A shallow light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 Off the east coast of the North Island of New Zealand
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Carlsberg Ridge
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Southwest Indian Ridge
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 44km S of Sola, Vanuatu
A shallow light 4.34 magnitude earthquake was reported Tuesday morning on Jul 12 52km W of West Yellowstone, Montana
A deep light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 221km NE of Ndoi Island, Fiji
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Central Mid-Atlantic Ridge
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 136km NE of Lambasa, Fiji
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 69km NE of Isangel, Vanuatu
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 176km SSE of Naze, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 82km SSW of Corinto, Nicaragua
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 17km W of Auki, Solomon Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 169km SSE of Naze, Japan
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 176km SSE of Naze, Japan
A shallow light 5.6 magnitude earthquake was reported Tuesday morning on Jul 12 165km SSE of Naze, Japan
A deep light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 27km SSE of Ndoi Island, Fiji
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 Southern East Pacific Rise
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 148km S of Puerto El Triunfo, El Salvador
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 32km NNE of Tumbagaan, Philippines
A shallow light 5.7 magnitude earthquake was reported Tuesday morning on Jul 12 Central East Pacific Rise
A shallow light 4.8 magnitude earthquake was reported Tuesday morning on Jul 12 Southern East Pacific Rise
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 119km WNW of Sabang, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 142km SE of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 140km NNW of Finschhafen, Papua New Guinea
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 150km NNW of Neiafu, Tonga
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 12km NNE of Sulangan, Philippines
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 74km ENE of Sulangan, Philippines
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 27km NNE of Ambunti, Papua New Guinea
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 51km NE of Bayabas, Philippines
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 245km WNW of Bandon, Oregon
A shallow light 5.3 magnitude earthquake was reported Tuesday morning on Jul 12 97km E of Shikotan, Russia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 45km WSW of Lebu, Chile
A deep light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 291km NNE of Ndoi Island, Fiji
A shallow minor 4.0 magnitude earthquake was reported Tuesday morning on Jul 12 55km E of , Azerbaijan
A deep light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 252km ESE of Lambasa, Fiji
A intermediate light 4.2 magnitude earthquake was reported Tuesday morning on Jul 12 85km NE of Palue, Indonesia
A shallow light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 102km SSE of Lata, Solomon Islands
A deep light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 South of the Fiji Islands
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 Central East Pacific Rise
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 70km NNW of Hihifo, Tonga
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 15km SSW of Yatsushiro, Japan
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 East of the Kuril Islands
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 Kepulauan Barat Daya, Indonesia
A intermediate light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 210km NW of Saumlaki, Indonesia
A shallow light 4.6 magnitude earthquake was reported Tuesday morning on Jul 12 70km SE of Pangai, Tonga
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 161km NE of Isangel, Vanuatu
A shallow light 4.3 magnitude earthquake was reported Tuesday morning on Jul 12 56km NNE of Grande Anse, Guadeloupe
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 125km SSE of Kirakira, Solomon Islands
A shallow light 4.7 magnitude earthquake was reported Tuesday morning on Jul 12 191km NNW of Tobelo, Indonesia
A intermediate light 4.4 magnitude earthquake was reported Tuesday morning on Jul 12 50km N of Agrihan, Northern Mariana Islands
A shallow light 4.5 magnitude earthquake was reported Tuesday morning on Jul 12 176km ESE of Modayag, Indonesia
In [ ]:
In [ ]:
In [ ]:
Content source: mercybenzaquen/foundations-homework
Similar notebooks: