In [23]:
!pip install pandas


Requirement already satisfied (use --upgrade to upgrade): pandas in /usr/local/lib/python3.5/site-packages
Requirement already satisfied (use --upgrade to upgrade): python-dateutil>=2 in /usr/local/lib/python3.5/site-packages (from pandas)
Requirement already satisfied (use --upgrade to upgrade): numpy>=1.7.0 in /usr/local/lib/python3.5/site-packages (from pandas)
Requirement already satisfied (use --upgrade to upgrade): pytz>=2011k in /usr/local/lib/python3.5/site-packages (from pandas)
Requirement already satisfied (use --upgrade to upgrade): six>=1.5 in /usr/local/lib/python3.5/site-packages (from python-dateutil>=2->pandas)

In [30]:
import pandas as pd

In [31]:
df = pd.read_csv("http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/1.0_month.csv")
df.head()


Out[31]:
time latitude longitude depth mag magType nst gap dmin rms ... updated place type horizontalError depthError magError magNst status locationSource magSource
0 2016-06-21T17:16:53.000Z 56.5391 -157.9624 79.80 2.90 ml NaN NaN NaN 0.54 ... 2016-06-21T17:49:32.989Z 58km ENE of Chignik Lake, Alaska earthquake 1.20 1.1 NaN NaN automatic ak ak
1 2016-06-21T17:12:09.010Z -3.5234 151.8394 366.37 6.10 mwp NaN 17.0 0.73800 1.07 ... 2016-06-21T17:37:03.184Z 67km WNW of Namatanai, Papua New Guinea earthquake 8.00 6.5 0.037 84.0 reviewed us us
2 2016-06-21T17:07:45.920Z 36.4982 -98.4676 5.00 3.00 mb_lg NaN 53.0 0.16700 0.42 ... 2016-06-21T17:15:53.566Z 18km WSW of Helena, Oklahoma earthquake 1.30 2.0 0.098 27.0 reviewed us us
3 2016-06-21T17:07:13.480Z 33.8910 -116.8645 13.89 1.31 ml 51.0 48.0 0.07062 0.21 ... 2016-06-21T17:18:15.090Z 4km SSE of Banning, CA earthquake 0.25 0.7 0.224 28.0 automatic ci ci
4 2016-06-21T17:06:47.000Z 62.7057 -149.2677 58.30 1.60 ml NaN NaN NaN 0.40 ... 2016-06-21T17:48:16.895Z 60km NE of Talkeetna, Alaska earthquake 0.50 0.9 NaN NaN automatic ak ak

5 rows × 22 columns


In [32]:
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 [171]:
earthquakes


Out[171]:
[{'depth': 79.8,
  'depthError': 1.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13674195',
  'latitude': 56.5391,
  'locationSource': 'ak',
  'longitude': -157.9624,
  'mag': 2.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '58km ENE of Chignik Lake, Alaska',
  'rms': 0.54,
  'status': 'automatic',
  'time': '2016-06-21T17:16:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:49:32.989Z'},
 {'depth': 366.37,
  'depthError': 6.5,
  'dmin': 0.738,
  'gap': 17.0,
  'horizontalError': 8.0,
  'id': 'us200065sc',
  'latitude': -3.5234,
  'locationSource': 'us',
  'longitude': 151.8394,
  'mag': 6.1,
  'magError': 0.037000000000000005,
  'magNst': 84.0,
  'magSource': 'us',
  'magType': 'mwp',
  'net': 'us',
  'nst': nan,
  'place': '67km WNW of Namatanai, Papua New Guinea',
  'rms': 1.07,
  'status': 'reviewed',
  'time': '2016-06-21T17:12:09.010Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:37:03.184Z'},
 {'depth': 5.0,
  'depthError': 2.0,
  'dmin': 0.16699999999999998,
  'gap': 53.0,
  'horizontalError': 1.3,
  'id': 'us200065sb',
  'latitude': 36.4982,
  'locationSource': 'us',
  'longitude': -98.4676,
  'mag': 3.0,
  'magError': 0.098,
  'magNst': 27.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '18km WSW of Helena, Oklahoma',
  'rms': 0.42,
  'status': 'reviewed',
  'time': '2016-06-21T17:07:45.920Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:15:53.566Z'},
 {'depth': 13.89,
  'depthError': 0.7,
  'dmin': 0.07062,
  'gap': 48.0,
  'horizontalError': 0.25,
  'id': 'ci37394207',
  'latitude': 33.891,
  'locationSource': 'ci',
  'longitude': -116.8645,
  'mag': 1.31,
  'magError': 0.22399999999999998,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 51.0,
  'place': '4km SSE of Banning, CA',
  'rms': 0.21,
  'status': 'automatic',
  'time': '2016-06-21T17:07:13.480Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:18:15.090Z'},
 {'depth': 58.3,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13674193',
  'latitude': 62.7057,
  'locationSource': 'ak',
  'longitude': -149.2677,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km NE of Talkeetna, Alaska',
  'rms': 0.4,
  'status': 'automatic',
  'time': '2016-06-21T17:06:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:48:16.895Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': 0.418,
  'gap': 95.08,
  'horizontalError': nan,
  'id': 'nn00548791',
  'latitude': 37.8188,
  'locationSource': 'nn',
  'longitude': -115.1361,
  'mag': 2.0,
  'magError': 0.72,
  'magNst': 6.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 22.0,
  'place': '50km N of Alamo, Nevada',
  'rms': nan,
  'status': 'automatic',
  'time': '2016-06-21T16:59:20.778Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:01:08.446Z'},
 {'depth': 17.82,
  'depthError': 1.29,
  'dmin': 0.1303,
  'gap': 73.0,
  'horizontalError': 0.56,
  'id': 'ci37394191',
  'latitude': 34.054333299999996,
  'locationSource': 'ci',
  'longitude': -117.26283329999998,
  'mag': 1.25,
  'magError': 0.304,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 24.0,
  'place': '1km NNW of Loma Linda, CA',
  'rms': 0.25,
  'status': 'automatic',
  'time': '2016-06-21T16:50:29.740Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:54:13.879Z'},
 {'depth': 98.1,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13673758',
  'latitude': 61.7122,
  'locationSource': 'ak',
  'longitude': -151.849,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '95km W of Willow, Alaska',
  'rms': 0.67,
  'status': 'automatic',
  'time': '2016-06-21T16:49:08.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:48:16.245Z'},
 {'depth': 17.32,
  'depthError': 17.29,
  'dmin': 0.4282,
  'gap': 268.0,
  'horizontalError': 1.79,
  'id': 'hv61305876',
  'latitude': 18.826499899999998,
  'locationSource': 'hv',
  'longitude': -155.170166,
  'mag': 1.91,
  'magError': 0.08,
  'magNst': 4.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 43.0,
  'place': '53km SE of Pahala, Hawaii',
  'rms': 0.15,
  'status': 'automatic',
  'time': '2016-06-21T16:28:01.950Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:31:23.160Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 16.229,
  'gap': 32.0,
  'horizontalError': 9.5,
  'id': 'us200065s1',
  'latitude': 22.6551,
  'locationSource': 'us',
  'longitude': -45.2011,
  'mag': 6.1,
  'magError': 0.036000000000000004,
  'magNst': 74.0,
  'magSource': 'us',
  'magType': 'mwb',
  'net': 'us',
  'nst': nan,
  'place': 'Northern Mid-Atlantic Ridge',
  'rms': 1.09,
  'status': 'reviewed',
  'time': '2016-06-21T16:26:35.090Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:55:25.941Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 16.381,
  'gap': 78.0,
  'horizontalError': 10.6,
  'id': 'us200065qz',
  'latitude': 22.5765,
  'locationSource': 'us',
  'longitude': -44.9955,
  'mag': 4.9,
  'magError': 0.037000000000000005,
  'magNst': 232.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Northern Mid-Atlantic Ridge',
  'rms': 0.78,
  'status': 'reviewed',
  'time': '2016-06-21T16:12:54.600Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:41:59.535Z'},
 {'depth': 0.0,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13673752',
  'latitude': 65.3949,
  'locationSource': 'ak',
  'longitude': -144.7566,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '8km SSW of Circle Hot Springs Station, Alaska',
  'rms': 0.81,
  'status': 'automatic',
  'time': '2016-06-21T16:02:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:27:53.564Z'},
 {'depth': 114.1,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13673748',
  'latitude': 61.0895,
  'locationSource': 'ak',
  'longitude': -152.3802,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '70km NNE of Redoubt Volcano, Alaska',
  'rms': 0.99,
  'status': 'automatic',
  'time': '2016-06-21T15:39:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:27:52.904Z'},
 {'depth': 1.3,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13673318',
  'latitude': 60.4449,
  'locationSource': 'ak',
  'longitude': -153.8801,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km W of Redoubt Volcano, Alaska',
  'rms': 0.28,
  'status': 'automatic',
  'time': '2016-06-21T15:16:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:53:03.872Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.4,
  'id': 'ak13673317',
  'latitude': 58.4828,
  'locationSource': 'ak',
  'longitude': -154.5162,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km NNW of Larsen Bay, Alaska',
  'rms': 0.69,
  'status': 'automatic',
  'time': '2016-06-21T15:13:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:53:03.206Z'},
 {'depth': 31.44,
  'depthError': 4.8,
  'dmin': 0.385,
  'gap': 47.0,
  'horizontalError': 7.7,
  'id': 'us200065qm',
  'latitude': 0.9690000000000001,
  'locationSource': 'us',
  'longitude': 97.3807,
  'mag': 4.8,
  'magError': 0.069,
  'magNst': 64.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '177km WSW of Sibolga, Indonesia',
  'rms': 0.94,
  'status': 'reviewed',
  'time': '2016-06-21T14:52:37.780Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:49:40.493Z'},
 {'depth': 126.0,
  'depthError': 0.9,
  'dmin': 0.34585138,
  'gap': 298.8,
  'horizontalError': 1.9,
  'id': 'pr16173005',
  'latitude': 18.139,
  'locationSource': 'pr',
  'longitude': -67.7393,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 6.0,
  'place': '55km WSW of Stella, Puerto Rico',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-21T14:44:00.900Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:55:54.335Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13672884',
  'latitude': 61.3118,
  'locationSource': 'ak',
  'longitude': -152.502,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '93km N of Redoubt Volcano, Alaska',
  'rms': 0.7,
  'status': 'automatic',
  'time': '2016-06-21T14:26:29.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:17:35.789Z'},
 {'depth': 28.49,
  'depthError': 3.1,
  'dmin': 2.9389999999999996,
  'gap': 153.0,
  'horizontalError': 6.4,
  'id': 'us200065qj',
  'latitude': -2.1581,
  'locationSource': 'us',
  'longitude': 99.44200000000001,
  'mag': 5.3,
  'magError': 0.06,
  'magNst': 93.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '67km SSE of Muara Siberut, Indonesia',
  'rms': 0.62,
  'status': 'reviewed',
  'time': '2016-06-21T14:10:24.030Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:58:53.725Z'},
 {'depth': 91.8,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13672878',
  'latitude': 60.3167,
  'locationSource': 'ak',
  'longitude': -152.2985,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '30km SE of Redoubt Volcano, Alaska',
  'rms': 0.51,
  'status': 'automatic',
  'time': '2016-06-21T14:05:14.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:45:18.891Z'},
 {'depth': 1.1,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.1,
  'id': 'ak13672876',
  'latitude': 62.9373,
  'locationSource': 'ak',
  'longitude': -156.054,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '23km W of McGrath, Alaska',
  'rms': 0.13,
  'status': 'automatic',
  'time': '2016-06-21T13:50:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:45:18.242Z'},
 {'depth': 3.34,
  'depthError': 2.35,
  'dmin': 0.2973,
  'gap': 114.0,
  'horizontalError': 0.68,
  'id': 'nc72653886',
  'latitude': 39.492168400000004,
  'locationSource': 'nc',
  'longitude': -122.10900120000001,
  'mag': 1.01,
  'magError': nan,
  'magNst': 1.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 6.0,
  'place': '8km ESE of Willows, California',
  'rms': 0.11,
  'status': 'automatic',
  'time': '2016-06-21T13:42:50.540Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:43:03.115Z'},
 {'depth': 74.4,
  'depthError': 1.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.0,
  'id': 'ak13672874',
  'latitude': 60.3916,
  'locationSource': 'ak',
  'longitude': -152.1791,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '32km ESE of Redoubt Volcano, Alaska',
  'rms': 0.12,
  'status': 'automatic',
  'time': '2016-06-21T13:38:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:07:49.536Z'},
 {'depth': 5.749,
  'depthError': 6.2,
  'dmin': nan,
  'gap': 83.0,
  'horizontalError': 1.3,
  'id': 'us200065qc',
  'latitude': 36.7128,
  'locationSource': 'tul',
  'longitude': -98.3972,
  'mag': 2.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'tul',
  'magType': 'ml',
  'net': 'us',
  'nst': nan,
  'place': '5km SW of Cherokee, Oklahoma',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-21T13:27:11.200Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:48:25.740Z'},
 {'depth': 0.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13672872',
  'latitude': 62.5886,
  'locationSource': 'ak',
  'longitude': -152.5976,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '131km WNW of Talkeetna, Alaska',
  'rms': 0.45,
  'status': 'automatic',
  'time': '2016-06-21T13:12:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:07:48.812Z'},
 {'depth': 49.9,
  'depthError': 1.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.4,
  'id': 'ak13672871',
  'latitude': 59.8172,
  'locationSource': 'ak',
  'longitude': -151.1428,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '12km NE of Fritz Creek, Alaska',
  'rms': 0.09,
  'status': 'automatic',
  'time': '2016-06-21T12:57:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:31:32.593Z'},
 {'depth': 20.1,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13672866',
  'latitude': 61.3551,
  'locationSource': 'ak',
  'longitude': -146.4368,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '25km N of Valdez, Alaska',
  'rms': 0.84,
  'status': 'automatic',
  'time': '2016-06-21T12:09:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:58:08.166Z'},
 {'depth': 2.0,
  'depthError': 0.37,
  'dmin': 0.004608,
  'gap': 76.0,
  'horizontalError': 0.22,
  'id': 'nc72653866',
  'latitude': 38.837833399999994,
  'locationSource': 'nc',
  'longitude': -122.82966609999998,
  'mag': 1.35,
  'magError': 0.19,
  'magNst': 6.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 24.0,
  'place': '9km W of Cobb, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-21T12:06:54.240Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:23:02.888Z'},
 {'depth': 2.92,
  'depthError': 0.43,
  'dmin': 0.05935,
  'gap': 122.0,
  'horizontalError': 0.45,
  'id': 'ci37394007',
  'latitude': 33.8246667,
  'locationSource': 'ci',
  'longitude': -117.87883329999998,
  'mag': 1.26,
  'magError': 0.228,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 23.0,
  'place': '2km SE of Anaheim, CA',
  'rms': 0.23,
  'status': 'automatic',
  'time': '2016-06-21T11:43:14.710Z',
  'type': 'earthquake',
  'updated': '2016-06-21T11:46:57.038Z'},
 {'depth': 565.03,
  'depthError': 5.3,
  'dmin': 5.724,
  'gap': 51.0,
  'horizontalError': 9.3,
  'id': 'us200065q4',
  'latitude': -23.4166,
  'locationSource': 'us',
  'longitude': 179.0773,
  'mag': 5.3,
  'magError': 0.027999999999999997,
  'magNst': 422.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'South of the Fiji Islands',
  'rms': 0.91,
  'status': 'reviewed',
  'time': '2016-06-21T11:40:40.260Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:01:05.707Z'},
 {'depth': -0.44,
  'depthError': 0.52,
  'dmin': 0.010020000000000001,
  'gap': 159.0,
  'horizontalError': 0.34,
  'id': 'nc72653841',
  'latitude': 38.7993317,
  'locationSource': 'nc',
  'longitude': -122.80183410000001,
  'mag': 1.28,
  'magError': 0.18,
  'magNst': 4.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '4km WNW of The Geysers, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-21T11:33:39.190Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:04:03.689Z'},
 {'depth': 11.8,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13672428',
  'latitude': 63.5079,
  'locationSource': 'ak',
  'longitude': -147.3387,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '81km E of Cantwell, Alaska',
  'rms': 0.85,
  'status': 'automatic',
  'time': '2016-06-21T11:31:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:29:43.542Z'},
 {'depth': 9.8,
  'depthError': 0.47,
  'dmin': 0.1196,
  'gap': 50.0,
  'horizontalError': 0.25,
  'id': 'ci37393959',
  'latitude': 33.3898333,
  'locationSource': 'ci',
  'longitude': -116.426,
  'mag': 1.13,
  'magError': 0.159,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 47.0,
  'place': '16km NNW of Borrego Springs, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-21T10:45:15.430Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:17:39.900Z'},
 {'depth': 10.4,
  'depthError': 0.7,
  'dmin': 0.051,
  'gap': 42.12,
  'horizontalError': nan,
  'id': 'nn00548770',
  'latitude': 38.5791,
  'locationSource': 'nn',
  'longitude': -118.50299999999999,
  'mag': 2.6,
  'magError': 0.44,
  'magNst': 8.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 23.0,
  'place': '12km ENE of Hawthorne, Nevada',
  'rms': 0.1755,
  'status': 'reviewed',
  'time': '2016-06-21T10:44:10.618Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:38:34.004Z'},
 {'depth': 19.7,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13672000',
  'latitude': 60.9906,
  'locationSource': 'ak',
  'longitude': -148.1479,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '37km NE of Whittier, Alaska',
  'rms': 0.55,
  'status': 'automatic',
  'time': '2016-06-21T10:33:48.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T11:17:23.813Z'},
 {'depth': 35.0,
  'depthError': 2.0,
  'dmin': 1.4369999999999998,
  'gap': 132.0,
  'horizontalError': 8.2,
  'id': 'us200065pv',
  'latitude': -17.5552,
  'locationSource': 'us',
  'longitude': -71.5892,
  'mag': 4.3,
  'magError': 0.154,
  'magNst': 12.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '27km W of Pacocha, Peru',
  'rms': 0.82,
  'status': 'reviewed',
  'time': '2016-06-21T10:25:51.250Z',
  'type': 'earthquake',
  'updated': '2016-06-21T11:08:43.477Z'},
 {'depth': 32.6,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13671998',
  'latitude': 61.5235,
  'locationSource': 'ak',
  'longitude': -147.429,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '72km NW of Valdez, Alaska',
  'rms': 1.18,
  'status': 'automatic',
  'time': '2016-06-21T10:08:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T10:45:35.267Z'},
 {'depth': 38.7,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13671996',
  'latitude': 61.7411,
  'locationSource': 'ak',
  'longitude': -149.6874,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '13km NNW of Meadow Lakes, Alaska',
  'rms': 0.28,
  'status': 'automatic',
  'time': '2016-06-21T09:43:18.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T10:45:34.256Z'},
 {'depth': 4.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13671990',
  'latitude': 61.2967,
  'locationSource': 'ak',
  'longitude': -146.4575,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '19km NNW of Valdez, Alaska',
  'rms': 0.77,
  'status': 'automatic',
  'time': '2016-06-21T09:13:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T10:07:39.360Z'},
 {'depth': 599.3,
  'depthError': 5.6,
  'dmin': 4.301,
  'gap': 54.0,
  'horizontalError': 7.6,
  'id': 'us200065nk',
  'latitude': -20.7688,
  'locationSource': 'us',
  'longitude': -178.6928,
  'mag': 4.7,
  'magError': 0.045,
  'magNst': 149.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '13km S of Ndoi Island, Fiji',
  'rms': 0.99,
  'status': 'reviewed',
  'time': '2016-06-21T09:04:21.500Z',
  'type': 'earthquake',
  'updated': '2016-06-21T10:43:15.132Z'},
 {'depth': 6.9,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13671985',
  'latitude': 63.5503,
  'locationSource': 'ak',
  'longitude': -151.1165,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km W of Cantwell, Alaska',
  'rms': 0.75,
  'status': 'automatic',
  'time': '2016-06-21T08:52:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T09:32:08.930Z'},
 {'depth': 67.25,
  'depthError': 7.6,
  'dmin': 1.778,
  'gap': 64.0,
  'horizontalError': 11.1,
  'id': 'us200065nh',
  'latitude': -5.6622,
  'locationSource': 'us',
  'longitude': 151.1465,
  'mag': 5.0,
  'magError': 0.055999999999999994,
  'magNst': 101.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '111km E of Kimbe, Papua New Guinea',
  'rms': 0.8,
  'status': 'reviewed',
  'time': '2016-06-21T08:38:33.160Z',
  'type': 'earthquake',
  'updated': '2016-06-21T08:59:31.102Z'},
 {'depth': 12.86,
  'depthError': 0.61,
  'dmin': 0.08825,
  'gap': 22.0,
  'horizontalError': 0.21,
  'id': 'ci37393935',
  'latitude': 33.8591667,
  'locationSource': 'ci',
  'longitude': -117.056,
  'mag': 1.5,
  'magError': 0.214,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 47.0,
  'place': '10km NE of Nuevo, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-21T08:28:50.490Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:17:35.420Z'},
 {'depth': 58.3,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13671981',
  'latitude': 62.7501,
  'locationSource': 'ak',
  'longitude': -149.4883,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '57km NNE of Talkeetna, Alaska',
  'rms': 0.87,
  'status': 'automatic',
  'time': '2016-06-21T08:25:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T08:55:48.282Z'},
 {'depth': -0.66,
  'depthError': 2.21,
  'dmin': 0.1,
  'gap': 81.0,
  'horizontalError': 0.32,
  'id': 'mb80156509',
  'latitude': 46.658666700000005,
  'locationSource': 'mb',
  'longitude': -112.26583329999998,
  'mag': 2.01,
  'magError': 0.158,
  'magNst': 6.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 24.0,
  'place': '13km WNW of Helena West Side, Montana',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-21T08:02:41.430Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:48:55.430Z'},
 {'depth': 1.16,
  'depthError': 0.46,
  'dmin': 0.01188,
  'gap': 106.0,
  'horizontalError': 0.35,
  'id': 'nc72653786',
  'latitude': 38.8186684,
  'locationSource': 'nc',
  'longitude': -122.7679977,
  'mag': 1.34,
  'magError': 0.02,
  'magNst': 4.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '3km W of Cobb, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-21T08:01:36.540Z',
  'type': 'earthquake',
  'updated': '2016-06-21T10:21:04.369Z'},
 {'depth': 1.4,
  'depthError': 5.4,
  'dmin': 0.276,
  'gap': 61.87,
  'horizontalError': nan,
  'id': 'nn00548762',
  'latitude': 37.8494,
  'locationSource': 'nn',
  'longitude': -118.2129,
  'mag': 1.0,
  'magError': 0.25,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 16.0,
  'place': '54km NNE of Dixon Lane-Meadow Creek, California',
  'rms': 0.14300000000000002,
  'status': 'reviewed',
  'time': '2016-06-21T07:54:38.880Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:09:04.185Z'},
 {'depth': 5.25,
  'depthError': 0.72,
  'dmin': 0.0246,
  'gap': 100.0,
  'horizontalError': 0.48,
  'id': 'nc72653781',
  'latitude': 37.6413345,
  'locationSource': 'nc',
  'longitude': -118.9316635,
  'mag': 1.53,
  'magError': 0.23,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 14.0,
  'place': '3km ESE of Mammoth Lakes, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-21T07:54:05.980Z',
  'type': 'earthquake',
  'updated': '2016-06-21T09:55:03.280Z'},
 {'depth': 498.2,
  'depthError': 8.6,
  'dmin': 3.5669999999999997,
  'gap': 83.0,
  'horizontalError': 11.0,
  'id': 'us200065ne',
  'latitude': -31.7891,
  'locationSource': 'us',
  'longitude': 179.1626,
  'mag': 5.2,
  'magError': 0.086,
  'magNst': 44.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': "188km WSW of L'Esperance Rock, New Zealand",
  'rms': 1.24,
  'status': 'reviewed',
  'time': '2016-06-21T07:51:44.890Z',
  'type': 'earthquake',
  'updated': '2016-06-21T08:09:32.978Z'},
 {'depth': 26.0,
  'depthError': 9.0,
  'dmin': 0.41771661,
  'gap': 302.4,
  'horizontalError': 2.4,
  'id': 'pr16173004',
  'latitude': 18.7714,
  'locationSource': 'pr',
  'longitude': -64.9412,
  'mag': 2.1,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '47km N of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-21T07:39:19.200Z',
  'type': 'earthquake',
  'updated': '2016-06-21T11:36:57.299Z'},
 {'depth': 21.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13671565',
  'latitude': 62.092,
  'locationSource': 'ak',
  'longitude': -149.14,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '36km NNW of Sutton-Alpine, Alaska',
  'rms': 0.8,
  'status': 'automatic',
  'time': '2016-06-21T07:16:22.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T07:50:11.700Z'},
 {'depth': 9.5,
  'depthError': 1.6,
  'dmin': 0.109,
  'gap': 74.37,
  'horizontalError': nan,
  'id': 'nn00548759',
  'latitude': 38.3476,
  'locationSource': 'nn',
  'longitude': -118.5692,
  'mag': 1.1,
  'magError': 0.17,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 18.0,
  'place': '20km SSE of Hawthorne, Nevada',
  'rms': 0.0966,
  'status': 'reviewed',
  'time': '2016-06-21T07:11:51.827Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:47:20.213Z'},
 {'depth': 4.07,
  'depthError': 6.2,
  'dmin': 0.192,
  'gap': 28.0,
  'horizontalError': 1.3,
  'id': 'us200065nc',
  'latitude': 35.8706,
  'locationSource': 'us',
  'longitude': -97.2357,
  'mag': 2.5,
  'magError': 0.083,
  'magNst': 38.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '8km SSE of Langston, Oklahoma',
  'rms': 0.53,
  'status': 'reviewed',
  'time': '2016-06-21T07:07:33.780Z',
  'type': 'earthquake',
  'updated': '2016-06-21T07:27:31.537Z'},
 {'depth': 24.0,
  'depthError': 13.8,
  'dmin': 0.91179001,
  'gap': 331.2,
  'horizontalError': 1.9,
  'id': 'pr16173003',
  'latitude': 19.2479,
  'locationSource': 'pr',
  'longitude': -64.7417,
  'mag': 2.4,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '92km N of Road Town, British Virgin Islands',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-21T07:03:38.300Z',
  'type': 'earthquake',
  'updated': '2016-06-21T08:29:52.307Z'},
 {'depth': 8.39,
  'depthError': 0.68,
  'dmin': 0.04342,
  'gap': 72.0,
  'horizontalError': 0.41,
  'id': 'nc72653766',
  'latitude': 37.901001,
  'locationSource': 'nc',
  'longitude': -121.97916409999998,
  'mag': 1.41,
  'magError': 0.17,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 14.0,
  'place': '5km SW of Clayton, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-21T07:01:57.410Z',
  'type': 'earthquake',
  'updated': '2016-06-21T09:29:03.215Z'},
 {'depth': 7.59,
  'depthError': 0.96,
  'dmin': 0.06092,
  'gap': 193.0,
  'horizontalError': 0.56,
  'id': 'nc72653761',
  'latitude': 37.5378342,
  'locationSource': 'nc',
  'longitude': -118.86883540000001,
  'mag': 1.24,
  'magError': 0.14,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '15km SSE of Mammoth Lakes, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-21T06:58:45.330Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:03:15.102Z'},
 {'depth': 37.8,
  'depthError': 1.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13671564',
  'latitude': 61.4926,
  'locationSource': 'ak',
  'longitude': -149.9769,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '3km SSW of Big Lake, Alaska',
  'rms': 0.35,
  'status': 'automatic',
  'time': '2016-06-21T06:52:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T07:50:09.258Z'},
 {'depth': 0.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13671562',
  'latitude': 61.0454,
  'locationSource': 'ak',
  'longitude': -148.436,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '33km NNE of Whittier, Alaska',
  'rms': 0.77,
  'status': 'automatic',
  'time': '2016-06-21T06:42:01.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T07:15:10.813Z'},
 {'depth': 57.2,
  'depthError': 1.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13671554',
  'latitude': 58.0351,
  'locationSource': 'ak',
  'longitude': -153.6593,
  'mag': 2.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '58km NNE of Larsen Bay, Alaska',
  'rms': 0.53,
  'status': 'automatic',
  'time': '2016-06-21T06:20:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T07:16:22.305Z'},
 {'depth': 6.6,
  'depthError': 4.2,
  'dmin': 0.311,
  'gap': 46.7,
  'horizontalError': nan,
  'id': 'nn00548755',
  'latitude': 38.1379,
  'locationSource': 'nn',
  'longitude': -117.8292,
  'mag': 1.3,
  'magError': 0.11,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 17.0,
  'place': '53km W of Tonopah, Nevada',
  'rms': 0.1011,
  'status': 'reviewed',
  'time': '2016-06-21T06:12:13.300Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:40:56.167Z'},
 {'depth': 3.3,
  'depthError': 6.4,
  'dmin': 0.27,
  'gap': 122.87,
  'horizontalError': nan,
  'id': 'nn00548754',
  'latitude': 39.5678,
  'locationSource': 'nn',
  'longitude': -119.0879,
  'mag': 1.1,
  'magError': 0.12,
  'magNst': 7.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 14.0,
  'place': '14km ESE of Fernley, Nevada',
  'rms': 0.1051,
  'status': 'reviewed',
  'time': '2016-06-21T06:06:33.628Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:31:09.107Z'},
 {'depth': 10.0,
  'depthError': 2.0,
  'dmin': 0.324,
  'gap': 226.0,
  'horizontalError': 10.9,
  'id': 'us200065q8',
  'latitude': 27.9463,
  'locationSource': 'us',
  'longitude': 85.5702,
  'mag': 3.6,
  'magError': 0.289,
  'magNst': 3.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '26km N of Nagarkot, Nepal',
  'rms': 1.26,
  'status': 'reviewed',
  'time': '2016-06-21T05:49:46.560Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:57:10.784Z'},
 {'depth': 0.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13671550',
  'latitude': 61.6216,
  'locationSource': 'ak',
  'longitude': -151.2698,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '66km WSW of Willow, Alaska',
  'rms': 0.71,
  'status': 'automatic',
  'time': '2016-06-21T05:33:36.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T06:03:00.250Z'},
 {'depth': 5.0,
  'depthError': 0.5,
  'dmin': 0.07096691,
  'gap': 190.8,
  'horizontalError': 0.7,
  'id': 'pr16173002',
  'latitude': 17.9901,
  'locationSource': 'pr',
  'longitude': -66.555,
  'mag': 1.9,
  'magError': 0.0,
  'magNst': 5.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 8.0,
  'place': '4km SSW of Aguilita, Puerto Rico',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-21T05:21:55.200Z',
  'type': 'earthquake',
  'updated': '2016-06-21T08:28:57.111Z'},
 {'depth': 139.57,
  'depthError': 6.9,
  'dmin': 3.8710000000000004,
  'gap': 47.0,
  'horizontalError': 8.1,
  'id': 'us200065n7',
  'latitude': -6.3098,
  'locationSource': 'us',
  'longitude': 130.3333,
  'mag': 5.2,
  'magError': 0.068,
  'magNst': 71.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '211km NNW of Saumlaki, Indonesia',
  'rms': 0.91,
  'status': 'reviewed',
  'time': '2016-06-21T04:53:17.960Z',
  'type': 'earthquake',
  'updated': '2016-06-21T05:09:56.754Z'},
 {'depth': 10.73,
  'depthError': 1.59,
  'dmin': 0.1319,
  'gap': 101.0,
  'horizontalError': 0.38,
  'id': 'nc72653731',
  'latitude': 37.5031662,
  'locationSource': 'nc',
  'longitude': -118.6551666,
  'mag': 1.59,
  'magError': 0.18,
  'magNst': 15.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 15.0,
  'place': '23km NW of West Bishop, California',
  'rms': 0.04,
  'status': 'automatic',
  'time': '2016-06-21T04:36:08.590Z',
  'type': 'earthquake',
  'updated': '2016-06-21T05:57:03.883Z'},
 {'depth': 7.5,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13671131',
  'latitude': 63.5216,
  'locationSource': 'ak',
  'longitude': -151.1213,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km W of Cantwell, Alaska',
  'rms': 0.7,
  'status': 'automatic',
  'time': '2016-06-21T04:20:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:53:51.443Z'},
 {'depth': 44.0,
  'depthError': 8.6,
  'dmin': 0.75368652,
  'gap': 270.0,
  'horizontalError': 3.2,
  'id': 'pr16173000',
  'latitude': 19.124000000000002,
  'locationSource': 'pr',
  'longitude': -64.902,
  'mag': 2.6,
  'magError': 0.0,
  'magNst': 8.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 15.0,
  'place': '83km NNW of Road Town, British Virgin Islands',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-21T04:18:56.500Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:50:47.201Z'},
 {'depth': 5.0,
  'depthError': 0.4,
  'dmin': 0.07006859,
  'gap': 108.0,
  'horizontalError': 0.3,
  'id': 'pr16173001',
  'latitude': 17.9857,
  'locationSource': 'pr',
  'longitude': -66.5621,
  'mag': 2.5,
  'magError': 0.0,
  'magNst': 19.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 20.0,
  'place': '5km SW of Aguilita, Puerto Rico',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-21T04:16:56.100Z',
  'type': 'earthquake',
  'updated': '2016-06-21T05:16:57.074Z'},
 {'depth': 51.3,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13671128',
  'latitude': 60.6379,
  'locationSource': 'ak',
  'longitude': -150.4889,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '18km NE of Sterling, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-21T04:15:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:53:48.559Z'},
 {'depth': 100.0,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13671125',
  'latitude': 58.6707,
  'locationSource': 'ak',
  'longitude': -154.0442,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '125km N of Larsen Bay, Alaska',
  'rms': 0.56,
  'status': 'automatic',
  'time': '2016-06-21T04:01:56.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:53:47.929Z'},
 {'depth': 12.81,
  'depthError': 0.74,
  'dmin': 0.06872,
  'gap': 68.0,
  'horizontalError': 0.34,
  'id': 'ci37393767',
  'latitude': 34.0748333,
  'locationSource': 'ci',
  'longitude': -117.26716670000002,
  'mag': 1.14,
  'magError': 0.192,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 40.0,
  'place': '3km N of Loma Linda, CA',
  'rms': 0.21,
  'status': 'automatic',
  'time': '2016-06-21T03:59:36.020Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:10:03.940Z'},
 {'depth': 1.0,
  'depthError': 0.8,
  'dmin': 0.098,
  'gap': 81.0,
  'horizontalError': 0.33,
  'id': 'mb80156494',
  'latitude': 46.6588333,
  'locationSource': 'mb',
  'longitude': -112.2706667,
  'mag': 2.85,
  'magError': 0.20600000000000002,
  'magNst': 13.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 26.0,
  'place': '13km WNW of Helena West Side, Montana',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-21T03:46:08.880Z',
  'type': 'earthquake',
  'updated': '2016-06-21T12:14:40.477Z'},
 {'depth': 0.1,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13670710',
  'latitude': 63.5391,
  'locationSource': 'ak',
  'longitude': -147.3065,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '83km ENE of Cantwell, Alaska',
  'rms': 0.62,
  'status': 'automatic',
  'time': '2016-06-21T03:22:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:19:00.587Z'},
 {'depth': 14.55,
  'depthError': 0.35,
  'dmin': 0.1092,
  'gap': 25.0,
  'horizontalError': 0.18,
  'id': 'ci37393751',
  'latitude': 34.074,
  'locationSource': 'ci',
  'longitude': -117.27516670000001,
  'mag': 2.07,
  'magError': 0.132,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 88.0,
  'place': '3km NNW of Loma Linda, CA',
  'rms': 0.21,
  'status': 'automatic',
  'time': '2016-06-21T03:22:10.580Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:32:52.810Z'},
 {'depth': 9.21,
  'depthError': 1.37,
  'dmin': 0.047689999999999996,
  'gap': 54.0,
  'horizontalError': 0.35,
  'id': 'ci37393743',
  'latitude': 33.1066667,
  'locationSource': 'ci',
  'longitude': -115.87833329999998,
  'mag': 1.67,
  'magError': 0.2,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 38.0,
  'place': '22km SSE of Salton City, CA',
  'rms': 0.29,
  'status': 'reviewed',
  'time': '2016-06-21T03:21:25.740Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:19:49.240Z'},
 {'depth': 1.5,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13670708',
  'latitude': 65.9394,
  'locationSource': 'ak',
  'longitude': -147.0461,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '105km SW of Fort Yukon, Alaska',
  'rms': 0.61,
  'status': 'automatic',
  'time': '2016-06-21T03:19:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:44:22.957Z'},
 {'depth': -1.46,
  'depthError': 31.61,
  'dmin': 0.03563,
  'gap': 156.0,
  'horizontalError': 0.69,
  'id': 'uw61171236',
  'latitude': 44.0996667,
  'locationSource': 'uw',
  'longitude': -121.34666670000001,
  'mag': 1.98,
  'magError': 0.158,
  'magNst': 29.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 16.0,
  'place': '5km NNW of Bend, Oregon',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-21T02:41:43.330Z',
  'type': 'explosion',
  'updated': '2016-06-21T17:05:37.680Z'},
 {'depth': 58.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13670692',
  'latitude': 61.443000000000005,
  'locationSource': 'ak',
  'longitude': -151.0296,
  'mag': 3.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '57km W of Big Lake, Alaska',
  'rms': 0.57,
  'status': 'automatic',
  'time': '2016-06-21T02:11:34.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:37:41.259Z'},
 {'depth': 55.2,
  'depthError': 1.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13670282',
  'latitude': 62.231,
  'locationSource': 'ak',
  'longitude': -149.5123,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '19km ENE of Y, Alaska',
  'rms': 0.22,
  'status': 'automatic',
  'time': '2016-06-21T01:38:22.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:03:07.400Z'},
 {'depth': 30.5,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13670280',
  'latitude': 60.8851,
  'locationSource': 'ak',
  'longitude': -150.8646,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '31km NE of Nikiski, Alaska',
  'rms': 0.57,
  'status': 'automatic',
  'time': '2016-06-21T01:30:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:03:06.673Z'},
 {'depth': 10.9,
  'depthError': 0.56,
  'dmin': 0.063,
  'gap': 70.0,
  'horizontalError': 0.45,
  'id': 'mb80156474',
  'latitude': 44.7426667,
  'locationSource': 'mb',
  'longitude': -111.75283329999999,
  'mag': 1.46,
  'magError': 0.09699999999999999,
  'magNst': 8.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 14.0,
  'place': '52km W of West Yellowstone, Montana',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-21T00:53:22.880Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:44:54.280Z'},
 {'depth': 10.11,
  'depthError': 0.36,
  'dmin': 0.051829999999999994,
  'gap': 29.0,
  'horizontalError': 0.15,
  'id': 'ci37393647',
  'latitude': 33.9506667,
  'locationSource': 'ci',
  'longitude': -117.235,
  'mag': 2.34,
  'magError': 0.222,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 87.0,
  'place': '3km NNW of Moreno Valley, CA',
  'rms': 0.19,
  'status': 'automatic',
  'time': '2016-06-21T00:43:36.790Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:13:30.019Z'},
 {'depth': 10.04,
  'depthError': 0.81,
  'dmin': 0.04533,
  'gap': 88.0,
  'horizontalError': 0.68,
  'id': 'ci37393639',
  'latitude': 34.07,
  'locationSource': 'ci',
  'longitude': -118.42200000000001,
  'mag': 1.13,
  'magError': 0.34700000000000003,
  'magNst': 6.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 12.0,
  'place': '1km NNW of Century City, CA',
  'rms': 0.26,
  'status': 'reviewed',
  'time': '2016-06-21T00:14:55.340Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:28:59.870Z'},
 {'depth': 5.0,
  'depthError': 1.8,
  'dmin': 0.02,
  'gap': 81.0,
  'horizontalError': 1.2,
  'id': 'us200065m9',
  'latitude': 36.4519,
  'locationSource': 'us',
  'longitude': -98.735,
  'mag': 2.9,
  'magError': 0.061,
  'magNst': 69.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '30km NW of Fairview, Oklahoma',
  'rms': 0.63,
  'status': 'reviewed',
  'time': '2016-06-21T00:10:30.740Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:29:48.538Z'},
 {'depth': 2.3,
  'depthError': 0.43,
  'dmin': 0.1036,
  'gap': 58.0,
  'horizontalError': 0.2,
  'id': 'ci37393631',
  'latitude': 36.0406667,
  'locationSource': 'ci',
  'longitude': -117.363,
  'mag': 2.52,
  'magError': 0.114,
  'magNst': 75.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '31km N of Searles Valley, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-21T00:04:44.630Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:13:21.680Z'},
 {'depth': 10.74,
  'depthError': 0.32,
  'dmin': 0.061,
  'gap': 70.0,
  'horizontalError': 0.44,
  'id': 'mb80156454',
  'latitude': 44.771,
  'locationSource': 'mb',
  'longitude': -111.72883329999999,
  'mag': 1.64,
  'magError': 0.14800000000000002,
  'magNst': 8.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 23.0,
  'place': '50km WNW of West Yellowstone, Montana',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-20T23:58:30.120Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:18:22.890Z'},
 {'depth': 11.86,
  'depthError': 0.39,
  'dmin': 0.061,
  'gap': 96.0,
  'horizontalError': 0.31,
  'id': 'mb80156449',
  'latitude': 44.7428333,
  'locationSource': 'mb',
  'longitude': -111.74916670000002,
  'mag': 1.88,
  'magError': 0.1,
  'magNst': 9.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 25.0,
  'place': '51km W of West Yellowstone, Montana',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-20T23:30:05.630Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:03:41.340Z'},
 {'depth': 216.5,
  'depthError': 8.5,
  'dmin': 3.7,
  'gap': 80.0,
  'horizontalError': 11.0,
  'id': 'us200065m1',
  'latitude': -17.2388,
  'locationSource': 'us',
  'longitude': 168.4476,
  'mag': 4.7,
  'magError': 0.09300000000000001,
  'magNst': 35.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '56km NNE of Port-Vila, Vanuatu',
  'rms': 1.12,
  'status': 'reviewed',
  'time': '2016-06-20T23:27:23.550Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:38:02.511Z'},
 {'depth': 0.87,
  'depthError': 0.32,
  'dmin': 0.03218,
  'gap': 103.0,
  'horizontalError': 0.27,
  'id': 'ci37393599',
  'latitude': 36.0181667,
  'locationSource': 'ci',
  'longitude': -117.804,
  'mag': 1.6,
  'magError': 0.172,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 17.0,
  'place': '13km NE of Little Lake, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-20T23:24:38.390Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:20:33.611Z'},
 {'depth': 4.5,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13669867',
  'latitude': 64.968,
  'locationSource': 'ak',
  'longitude': -147.3769,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '20km NNE of Badger, Alaska',
  'rms': 0.86,
  'status': 'automatic',
  'time': '2016-06-20T23:02:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:52:15.615Z'},
 {'depth': 12.2,
  'depthError': 7.6,
  'dmin': 0.271,
  'gap': 170.74,
  'horizontalError': nan,
  'id': 'nn00548744',
  'latitude': 39.601,
  'locationSource': 'nn',
  'longitude': -119.0644,
  'mag': 1.3,
  'magError': 0.27,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '16km E of Fernley, Nevada',
  'rms': 0.1446,
  'status': 'reviewed',
  'time': '2016-06-20T22:56:41.353Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:52:26.404Z'},
 {'depth': 12.95,
  'depthError': 2.13,
  'dmin': 0.1463,
  'gap': 246.0,
  'horizontalError': 1.04,
  'id': 'nc72653631',
  'latitude': 39.336,
  'locationSource': 'nc',
  'longitude': -122.78933329999998,
  'mag': 1.57,
  'magError': 0.242,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 6.0,
  'place': '21km NNE of Upper Lake, California',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-20T22:49:14.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:19:03.457Z'},
 {'depth': 21.36,
  'depthError': 0.98,
  'dmin': 0.1687,
  'gap': 193.0,
  'horizontalError': 0.72,
  'id': 'ci37393591',
  'latitude': 32.5345,
  'locationSource': 'ci',
  'longitude': -115.281,
  'mag': 1.85,
  'magError': 0.198,
  'magNst': 18.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '8km ESE of Puebla, B.C., MX',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-20T22:45:49.380Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:03:32.855Z'},
 {'depth': 34.0,
  'depthError': 2.1,
  'dmin': 0.36381769,
  'gap': 187.2,
  'horizontalError': 1.2,
  'id': 'pr16172009',
  'latitude': 18.5351,
  'locationSource': 'pr',
  'longitude': -65.5895,
  'mag': 3.2,
  'magError': 0.0,
  'magNst': 18.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 19.0,
  'place': '22km NE of Luquillo, Puerto Rico',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-20T22:41:35.500Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:20:19.115Z'},
 {'depth': 536.53,
  'depthError': 7.5,
  'dmin': 3.035,
  'gap': 118.0,
  'horizontalError': 13.5,
  'id': 'us200065lp',
  'latitude': -17.6227,
  'locationSource': 'us',
  'longitude': -178.7657,
  'mag': 4.4,
  'magError': 0.064,
  'magNst': 70.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '238km SE of Lambasa, Fiji',
  'rms': 0.91,
  'status': 'reviewed',
  'time': '2016-06-20T22:29:38.700Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:16:37.717Z'},
 {'depth': 7.01,
  'depthError': 0.8,
  'dmin': 0.058710000000000005,
  'gap': 156.0,
  'horizontalError': 0.39,
  'id': 'nc72653626',
  'latitude': 37.5383333,
  'locationSource': 'nc',
  'longitude': -118.86433329999998,
  'mag': 1.15,
  'magError': 0.331,
  'magNst': 15.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 16.0,
  'place': '15km SE of Mammoth Lakes, California',
  'rms': 0.02,
  'status': 'reviewed',
  'time': '2016-06-20T22:24:36.600Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:07:02.224Z'},
 {'depth': 0.11,
  'depthError': 0.61,
  'dmin': 0.015080000000000001,
  'gap': 171.0,
  'horizontalError': 0.31,
  'id': 'nc72653621',
  'latitude': 38.757831599999996,
  'locationSource': 'nc',
  'longitude': -122.7133331,
  'mag': 1.22,
  'magError': 0.1,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '4km ESE of The Geysers, California',
  'rms': 0.04,
  'status': 'automatic',
  'time': '2016-06-20T22:16:02.980Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:01:04.209Z'},
 {'depth': 20.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13669458',
  'latitude': 61.4308,
  'locationSource': 'ak',
  'longitude': -146.6473,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '37km NNW of Valdez, Alaska',
  'rms': 0.68,
  'status': 'automatic',
  'time': '2016-06-20T22:06:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:45:34.212Z'},
 {'depth': -0.65,
  'depthError': 31.61,
  'dmin': 0.1639,
  'gap': 116.0,
  'horizontalError': 0.96,
  'id': 'uw61171081',
  'latitude': 44.4123333,
  'locationSource': 'uw',
  'longitude': -122.76516670000001,
  'mag': 1.77,
  'magError': 0.14800000000000002,
  'magNst': 8.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 5.0,
  'place': '2km NW of Sweet Home, Oregon',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-20T21:57:39.350Z',
  'type': 'explosion',
  'updated': '2016-06-21T17:07:44.190Z'},
 {'depth': 30.4,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13669455',
  'latitude': 61.5631,
  'locationSource': 'ak',
  'longitude': -146.4893,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '48km N of Valdez, Alaska',
  'rms': 0.85,
  'status': 'automatic',
  'time': '2016-06-20T21:47:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:13:35.262Z'},
 {'depth': 6.79,
  'depthError': 0.24,
  'dmin': 0.05342,
  'gap': 164.0,
  'horizontalError': 0.32,
  'id': 'uw61171056',
  'latitude': 46.6113333,
  'locationSource': 'uw',
  'longitude': -119.8435,
  'mag': 1.1,
  'magError': 0.095,
  'magNst': 4.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 8.0,
  'place': '9km SE of Desert Aire, Washington',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-20T21:46:38.860Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:12:53.010Z'},
 {'depth': 0.0,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13669453',
  'latitude': 63.4847,
  'locationSource': 'ak',
  'longitude': -147.8505,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '55km E of Cantwell, Alaska',
  'rms': 0.68,
  'status': 'automatic',
  'time': '2016-06-20T21:28:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:13:33.106Z'},
 {'depth': 10.19,
  'depthError': 0.5,
  'dmin': 0.01163,
  'gap': 206.0,
  'horizontalError': 0.68,
  'id': 'nc72653611',
  'latitude': 37.6488333,
  'locationSource': 'nc',
  'longitude': -122.4755,
  'mag': 1.11,
  'magError': 0.027000000000000003,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '3km SSW of Colma, California',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T21:26:39.320Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:41:03.324Z'},
 {'depth': 22.0,
  'depthError': 5.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 4.2,
  'id': 'us200065l7',
  'latitude': -35.45,
  'locationSource': 'guc',
  'longitude': -73.26,
  'mag': 4.3,
  'magError': 0.177,
  'magNst': 9.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '77km W of Constitucion, Chile',
  'rms': 1.01,
  'status': 'reviewed',
  'time': '2016-06-20T21:25:31.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:54:20.207Z'},
 {'depth': -0.29,
  'depthError': 31.61,
  'dmin': 0.013009999999999999,
  'gap': 126.0,
  'horizontalError': 0.31,
  'id': 'nc72653606',
  'latitude': 37.323,
  'locationSource': 'nc',
  'longitude': -122.1015,
  'mag': 1.33,
  'magError': 0.287,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '11km E of Quarry near Portola Valley, CA',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-20T21:11:43.170Z',
  'type': 'quarry blast',
  'updated': '2016-06-21T00:42:50.928Z'},
 {'depth': -0.65,
  'depthError': 31.61,
  'dmin': 0.1137,
  'gap': 93.0,
  'horizontalError': 0.42,
  'id': 'uw61171021',
  'latitude': 48.082,
  'locationSource': 'uw',
  'longitude': -121.9395,
  'mag': 1.85,
  'magError': 0.12300000000000001,
  'magNst': 26.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 11.0,
  'place': '2km E of Granite Falls, Washington',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-20T21:08:25.330Z',
  'type': 'explosion',
  'updated': '2016-06-20T21:32:49.690Z'},
 {'depth': 0.0,
  'depthError': 0.0,
  'dmin': 0.28300000000000003,
  'gap': 165.03,
  'horizontalError': nan,
  'id': 'nn00548719',
  'latitude': 36.9539,
  'locationSource': 'nn',
  'longitude': -117.5885,
  'mag': 1.4,
  'magError': 0.23,
  'magNst': 12.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 22.0,
  'place': '57km NE of Lone Pine, California',
  'rms': 0.1388,
  'status': 'reviewed',
  'time': '2016-06-20T21:05:12.880Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:30:09.221Z'},
 {'depth': 3.4,
  'depthError': 3.2,
  'dmin': 0.271,
  'gap': 59.77,
  'horizontalError': nan,
  'id': 'nn00548716',
  'latitude': 37.916,
  'locationSource': 'nn',
  'longitude': -117.5916,
  'mag': 1.1,
  'magError': 0.12,
  'magNst': 7.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 15.0,
  'place': '35km WSW of Tonopah, Nevada',
  'rms': 0.1041,
  'status': 'reviewed',
  'time': '2016-06-20T20:39:28.782Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:17:10.970Z'},
 {'depth': 1.19,
  'depthError': 0.18,
  'dmin': 0.0077280000000000005,
  'gap': 48.0,
  'horizontalError': 0.13,
  'id': 'hv61304631',
  'latitude': 19.4043333,
  'locationSource': 'hv',
  'longitude': -155.2798333,
  'mag': 1.82,
  'magError': 0.08900000000000001,
  'magNst': 10.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 22.0,
  'place': '5km WSW of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-20T20:28:49.910Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:51:40.630Z'},
 {'depth': 8.4,
  'depthError': 4.4,
  'dmin': 1.262,
  'gap': 70.0,
  'horizontalError': 5.1,
  'id': 'us200065ky',
  'latitude': 35.7107,
  'locationSource': 'us',
  'longitude': 68.4557,
  'mag': 4.4,
  'magError': 0.114,
  'magNst': 22.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '21km S of Hukumati Dahanah-ye Ghori, Afghanistan',
  'rms': 0.89,
  'status': 'reviewed',
  'time': '2016-06-20T20:27:13.590Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:25:09.246Z'},
 {'depth': -1.01,
  'depthError': 31.61,
  'dmin': 0.06018,
  'gap': 37.0,
  'horizontalError': 0.3,
  'id': 'ci37393487',
  'latitude': 35.048333299999996,
  'locationSource': 'ci',
  'longitude': -118.32033329999999,
  'mag': 1.23,
  'magError': 0.135,
  'magNst': 13.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 27.0,
  'place': '13km W of Mojave, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-20T20:14:52.160Z',
  'type': 'quarry blast',
  'updated': '2016-06-21T16:58:28.916Z'},
 {'depth': 2.6630000000000003,
  'depthError': 0.16,
  'dmin': 0.00583,
  'gap': 87.0,
  'horizontalError': 0.17,
  'id': 'hv61304576',
  'latitude': 19.3995,
  'locationSource': 'hv',
  'longitude': -155.26,
  'mag': 2.47,
  'magError': 0.17300000000000001,
  'magNst': 17.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 35.0,
  'place': '4km SW of Volcano, Hawaii',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-20T20:11:59.110Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:52:43.040Z'},
 {'depth': 5.07,
  'depthError': 0.44,
  'dmin': 0.02505,
  'gap': 91.0,
  'horizontalError': 0.39,
  'id': 'nc72653576',
  'latitude': 37.6413345,
  'locationSource': 'nc',
  'longitude': -118.93233490000001,
  'mag': 1.58,
  'magError': 0.36,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 16.0,
  'place': '8km SSE of Mammoth Lakes, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T20:08:28.100Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:33:17.731Z'},
 {'depth': 1.82,
  'depthError': 0.36,
  'dmin': 0.009693,
  'gap': 64.0,
  'horizontalError': 0.2,
  'id': 'nc72653561',
  'latitude': 38.8250008,
  'locationSource': 'nc',
  'longitude': -122.79783629999999,
  'mag': 1.33,
  'magError': 0.03,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 22.0,
  'place': '6km W of Cobb, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T20:08:07.810Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:05:02.036Z'},
 {'depth': 4.59,
  'depthError': 0.4,
  'dmin': 0.026010000000000002,
  'gap': 103.0,
  'horizontalError': 0.48,
  'id': 'nc72653571',
  'latitude': 37.6405,
  'locationSource': 'nc',
  'longitude': -118.93333329999999,
  'mag': 1.36,
  'magError': 0.46299999999999997,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '3km ESE of Mammoth Lakes, California',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-20T20:07:43.780Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:26:02.278Z'},
 {'depth': 5.22,
  'depthError': 0.55,
  'dmin': 0.02323,
  'gap': 88.0,
  'horizontalError': 0.33,
  'id': 'nc72653566',
  'latitude': 37.6435013,
  'locationSource': 'nc',
  'longitude': -118.9325027,
  'mag': 1.52,
  'magError': 0.14,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 17.0,
  'place': '3km E of Mammoth Lakes, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T20:07:16.440Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:35:03.508Z'},
 {'depth': 6.51,
  'depthError': 0.26,
  'dmin': 0.0515,
  'gap': 135.0,
  'horizontalError': 0.28,
  'id': 'uw61170991',
  'latitude': 46.6098333,
  'locationSource': 'uw',
  'longitude': -119.84916670000001,
  'mag': 1.24,
  'magError': 0.094,
  'magNst': 8.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 10.0,
  'place': '9km SE of Desert Aire, Washington',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T20:07:02.260Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:17:05.160Z'},
 {'depth': 4.87,
  'depthError': 0.66,
  'dmin': 0.02584,
  'gap': 79.0,
  'horizontalError': 0.48,
  'id': 'nc72653556',
  'latitude': 37.64049910000001,
  'locationSource': 'nc',
  'longitude': -118.93283079999999,
  'mag': 1.79,
  'magError': 0.38,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 19.0,
  'place': '5km SE of Mammoth Lakes, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-20T20:06:45.350Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:10:02.418Z'},
 {'depth': 2.12,
  'depthError': 0.84,
  'dmin': 0.006455,
  'gap': 86.0,
  'horizontalError': 0.47,
  'id': 'nc72653541',
  'latitude': 38.8298333,
  'locationSource': 'nc',
  'longitude': -122.80933329999999,
  'mag': 1.66,
  'magError': nan,
  'magNst': 1.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '7km W of Cobb, California',
  'rms': 0.02,
  'status': 'reviewed',
  'time': '2016-06-20T19:52:15.880Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:15:04.444Z'},
 {'depth': 2.61,
  'depthError': 0.41,
  'dmin': 0.008551000000000001,
  'gap': 106.0,
  'horizontalError': 0.27,
  'id': 'nc72653536',
  'latitude': 38.8069992,
  'locationSource': 'nc',
  'longitude': -122.8184967,
  'mag': 1.21,
  'magError': 0.12,
  'magNst': 6.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 24.0,
  'place': '6km WNW of The Geysers, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-20T19:27:27.610Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:27:05.096Z'},
 {'depth': 1.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13669443',
  'latitude': 61.2939,
  'locationSource': 'ak',
  'longitude': -152.4974,
  'mag': 2.4,
  '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-06-20T19:22:55.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:59:23.958Z'},
 {'depth': 9.1,
  'depthError': 4.4,
  'dmin': 0.337,
  'gap': 159.53,
  'horizontalError': nan,
  'id': 'nn00548706',
  'latitude': 38.3855,
  'locationSource': 'nn',
  'longitude': -118.9048,
  'mag': 1.1,
  'magError': 0.1,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 10.0,
  'place': '28km WSW of Hawthorne, Nevada',
  'rms': 0.0856,
  'status': 'reviewed',
  'time': '2016-06-20T19:19:08.865Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:02:56.287Z'},
 {'depth': 0.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13669436',
  'latitude': 61.3621,
  'locationSource': 'ak',
  'longitude': -140.0937,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '155km WNW of Haines Junction, Canada',
  'rms': 0.83,
  'status': 'automatic',
  'time': '2016-06-20T18:59:33.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:00:37.301Z'},
 {'depth': 7.81,
  'depthError': 0.42,
  'dmin': 0.1155,
  'gap': 44.0,
  'horizontalError': 0.12,
  'id': 'ci37393407',
  'latitude': 34.4306667,
  'locationSource': 'ci',
  'longitude': -116.49666670000002,
  'mag': 2.33,
  'magError': 0.147,
  'magNst': 103.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 66.0,
  'place': '36km N of Yucca Valley, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-20T18:56:40.290Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:49:07.279Z'},
 {'depth': 66.63,
  'depthError': 1.51,
  'dmin': 0.18899999999999997,
  'gap': 117.0,
  'horizontalError': 1.01,
  'id': 'uw61170916',
  'latitude': 49.4111667,
  'locationSource': 'uw',
  'longitude': -124.0545,
  'mag': 2.09,
  'magError': 0.114,
  'magNst': 11.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 17.0,
  'place': '21km ENE of Parksville, Canada',
  'rms': 0.43,
  'status': 'reviewed',
  'time': '2016-06-20T18:45:17.430Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:12:55.400Z'},
 {'depth': 4.58,
  'depthError': 1.35,
  'dmin': 0.05239,
  'gap': 168.0,
  'horizontalError': 1.02,
  'id': 'nc72653516',
  'latitude': 36.0828323,
  'locationSource': 'nc',
  'longitude': -120.6585007,
  'mag': 1.22,
  'magError': 0.12,
  'magNst': 3.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '27km WSW of Coalinga, California',
  'rms': 0.09,
  'status': 'automatic',
  'time': '2016-06-20T18:28:48.910Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:46:02.996Z'},
 {'depth': -0.18,
  'depthError': 1.38,
  'dmin': 0.07253,
  'gap': 107.0,
  'horizontalError': 0.5,
  'id': 'uu60151832',
  'latitude': 40.5053333,
  'locationSource': 'uu',
  'longitude': -112.15666670000002,
  'mag': 1.76,
  'magError': 0.055,
  'magNst': 3.0,
  'magSource': 'uu',
  'magType': 'md',
  'net': 'uu',
  'nst': 8.0,
  'place': '10km W of Herriman, Utah',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-20T18:22:30.930Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:57:34.610Z'},
 {'depth': 3.2,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13669033',
  'latitude': 61.1774,
  'locationSource': 'ak',
  'longitude': -151.8784,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km NNW of Nikiski, Alaska',
  'rms': 0.62,
  'status': 'automatic',
  'time': '2016-06-20T18:05:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:49:39.140Z'},
 {'depth': 2.06,
  'depthError': 1.17,
  'dmin': 0.01069,
  'gap': 148.0,
  'horizontalError': 0.83,
  'id': 'nc72653496',
  'latitude': 38.762664799999996,
  'locationSource': 'nc',
  'longitude': -122.715332,
  'mag': 1.18,
  'magError': 0.21,
  'magNst': 4.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 6.0,
  'place': '3km ESE of The Geysers, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T17:36:54.010Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:30:03.744Z'},
 {'depth': 27.721999999999998,
  'depthError': 0.92,
  'dmin': 0.01708,
  'gap': 54.0,
  'horizontalError': 0.55,
  'id': 'hv61304496',
  'latitude': 19.389833300000003,
  'locationSource': 'hv',
  'longitude': -155.6156667,
  'mag': 1.59,
  'magError': 0.062,
  'magNst': 14.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 28.0,
  'place': '24km NW of Pahala, Hawaii',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T17:29:37.930Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:27:17.050Z'},
 {'depth': 12.46,
  'depthError': 0.55,
  'dmin': 0.04854,
  'gap': 85.0,
  'horizontalError': 0.3,
  'id': 'ci37393255',
  'latitude': 33.4758333,
  'locationSource': 'ci',
  'longitude': -116.43799999999999,
  'mag': 1.06,
  'magError': 0.187,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 39.0,
  'place': '24km ESE of Anza, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-20T17:12:52.370Z',
  'type': 'earthquake',
  'updated': '2016-06-21T13:22:13.740Z'},
 {'depth': -0.67,
  'depthError': 31.61,
  'dmin': 0.03318,
  'gap': 52.0,
  'horizontalError': 0.28,
  'id': 'ci37393239',
  'latitude': 33.820666700000004,
  'locationSource': 'ci',
  'longitude': -117.48466670000002,
  'mag': 1.77,
  'magError': 0.168,
  'magNst': 85.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 56.0,
  'place': '7km SSE of Home Gardens, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-20T17:02:06.180Z',
  'type': 'quarry blast',
  'updated': '2016-06-20T17:20:00.738Z'},
 {'depth': 103.34,
  'depthError': 1.0,
  'dmin': 1.449,
  'gap': 41.0,
  'horizontalError': 7.1,
  'id': 'us200065ju',
  'latitude': -0.1219,
  'locationSource': 'us',
  'longitude': 123.8969,
  'mag': 4.7,
  'magError': 0.066,
  'magNst': 69.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '56km S of Molibagu, Indonesia',
  'rms': 1.07,
  'status': 'reviewed',
  'time': '2016-06-20T16:30:37.300Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:23:10.527Z'},
 {'depth': 202.03,
  'depthError': 4.5,
  'dmin': 1.1740000000000002,
  'gap': 64.0,
  'horizontalError': 9.0,
  'id': 'us200065js',
  'latitude': -22.0769,
  'locationSource': 'us',
  'longitude': -67.3264,
  'mag': 4.1,
  'magError': 0.214,
  'magNst': 6.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '130km NE of San Pedro de Atacama, Chile',
  'rms': 0.83,
  'status': 'reviewed',
  'time': '2016-06-20T16:30:07.940Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:56:23.835Z'},
 {'depth': 211.6,
  'depthError': 6.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 9.3,
  'id': 'us200065jr',
  'latitude': -24.194000000000003,
  'locationSource': 'guc',
  'longitude': -67.3,
  'mag': 4.3,
  'magError': 0.306,
  'magNst': 3.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '99km W of San Antonio de los Cobres, Argentina',
  'rms': 1.04,
  'status': 'reviewed',
  'time': '2016-06-20T16:19:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:32:58.058Z'},
 {'depth': 4.59,
  'depthError': 85.51,
  'dmin': 0.1129,
  'gap': 81.0,
  'horizontalError': 2.92,
  'id': 'uw61170791',
  'latitude': 48.9461667,
  'locationSource': 'uw',
  'longitude': -125.12183329999999,
  'mag': 1.53,
  'magError': 0.078,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 7.0,
  'place': '31km E of Ucluelet, Canada',
  'rms': 1.02,
  'status': 'reviewed',
  'time': '2016-06-20T15:54:30.610Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:51:33.000Z'},
 {'depth': 7.18,
  'depthError': 0.76,
  'dmin': 0.09669,
  'gap': 103.0,
  'horizontalError': 0.21,
  'id': 'nc72653486',
  'latitude': 37.843166700000005,
  'locationSource': 'nc',
  'longitude': -118.48616670000001,
  'mag': 1.54,
  'magError': 0.161,
  'magNst': 24.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 29.0,
  'place': '47km ENE of Mammoth Lakes, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-20T15:44:39.200Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:38:02.499Z'},
 {'depth': 17.64,
  'depthError': 3.7,
  'dmin': 0.9229999999999999,
  'gap': 82.0,
  'horizontalError': 4.2,
  'id': 'us200065je',
  'latitude': 41.9725,
  'locationSource': 'us',
  'longitude': 141.0288,
  'mag': 4.6,
  'magError': 0.091,
  'magNst': 36.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '30km ENE of Nanae, Japan',
  'rms': 1.04,
  'status': 'reviewed',
  'time': '2016-06-20T15:10:09.680Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:30:53.603Z'},
 {'depth': 124.1,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13668619',
  'latitude': 63.1256,
  'locationSource': 'ak',
  'longitude': -150.8866,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '97km NNW of Talkeetna, Alaska',
  'rms': 0.3,
  'status': 'automatic',
  'time': '2016-06-20T15:06:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:58:39.821Z'},
 {'depth': 0.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13668618',
  'latitude': 65.3436,
  'locationSource': 'ak',
  'longitude': -144.8752,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '16km SSW of Circle Hot Springs Station, Alaska',
  'rms': 0.74,
  'status': 'automatic',
  'time': '2016-06-20T15:01:30.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:58:39.057Z'},
 {'depth': 12.55,
  'depthError': 0.22,
  'dmin': 0.058210000000000005,
  'gap': 19.0,
  'horizontalError': 0.11,
  'id': 'ci37393095',
  'latitude': 33.649,
  'locationSource': 'ci',
  'longitude': -116.74183329999998,
  'mag': 1.88,
  'magError': 0.21,
  'magNst': 75.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 70.0,
  'place': '10km SSW of Idyllwild, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-20T14:52:20.420Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:53:39.405Z'},
 {'depth': 10.6,
  'depthError': 2.9,
  'dmin': 0.152,
  'gap': 215.73,
  'horizontalError': nan,
  'id': 'nn00548717',
  'latitude': 41.9125,
  'locationSource': 'nn',
  'longitude': -119.5959,
  'mag': 1.4,
  'magError': 0.26,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '69km ESE of Lakeview, Oregon',
  'rms': 0.1704,
  'status': 'reviewed',
  'time': '2016-06-20T14:48:27.979Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:46:06.993Z'},
 {'depth': 10.71,
  'depthError': 0.58,
  'dmin': 0.057999999999999996,
  'gap': 91.0,
  'horizontalError': 0.42,
  'id': 'mb80156394',
  'latitude': 44.744833299999996,
  'locationSource': 'mb',
  'longitude': -111.74483329999998,
  'mag': 1.32,
  'magError': 0.063,
  'magNst': 6.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 19.0,
  'place': '51km W of West Yellowstone, Montana',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-20T14:45:26.580Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:23:31.870Z'},
 {'depth': 39.367,
  'depthError': 0.81,
  'dmin': 0.04634,
  'gap': 204.0,
  'horizontalError': 0.77,
  'id': 'hv61304331',
  'latitude': 19.2413333,
  'locationSource': 'hv',
  'longitude': -155.1146667,
  'mag': 1.83,
  'magError': 0.122,
  'magNst': 21.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 40.0,
  'place': '24km SSE of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-20T14:41:05.160Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:14:30.990Z'},
 {'depth': 7.93,
  'depthError': 0.83,
  'dmin': 0.02455,
  'gap': 170.0,
  'horizontalError': 1.57,
  'id': 'nc72653471',
  'latitude': 36.229332,
  'locationSource': 'nc',
  'longitude': -120.3249969,
  'mag': 2.01,
  'magError': 0.1,
  'magNst': 8.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 15.0,
  'place': '10km NNE of Coalinga, California',
  'rms': 0.17,
  'status': 'automatic',
  'time': '2016-06-20T14:12:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:14:03.014Z'},
 {'depth': 6.9,
  'depthError': 1.8,
  'dmin': 0.127,
  'gap': 93.22,
  'horizontalError': nan,
  'id': 'nn00548664',
  'latitude': 37.4662,
  'locationSource': 'nn',
  'longitude': -118.3723,
  'mag': 1.0,
  'magError': 0.42,
  'magNst': 6.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 17.0,
  'place': '9km NNE of Dixon Lane-Meadow Creek, California',
  'rms': 0.1736,
  'status': 'reviewed',
  'time': '2016-06-20T14:03:52.195Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:36:07.162Z'},
 {'depth': 10.12,
  'depthError': 1.18,
  'dmin': 0.053,
  'gap': 196.0,
  'horizontalError': 0.75,
  'id': 'nc72653466',
  'latitude': 37.46400070000001,
  'locationSource': 'nc',
  'longitude': -118.3785019,
  'mag': 1.35,
  'magError': 0.11,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 10.0,
  'place': '9km NNE of Dixon Lane-Meadow Creek, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-20T14:03:52.030Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:05:28.759Z'},
 {'depth': 14.26,
  'depthError': 0.39,
  'dmin': 0.053829999999999996,
  'gap': 99.0,
  'horizontalError': 0.22,
  'id': 'ci37141780',
  'latitude': 33.4926667,
  'locationSource': 'ci',
  'longitude': -116.47866670000002,
  'mag': 1.0,
  'magError': 0.126,
  'magNst': 11.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 26.0,
  'place': '19km ESE of Anza, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-20T13:59:38.560Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:46:50.644Z'},
 {'depth': 9.86,
  'depthError': 0.33,
  'dmin': 0.07322000000000001,
  'gap': 64.0,
  'horizontalError': 0.18,
  'id': 'ci37393015',
  'latitude': 33.4715,
  'locationSource': 'ci',
  'longitude': -116.48766670000002,
  'mag': 1.27,
  'magError': 0.16399999999999998,
  'magNst': 36.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 51.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-20T13:59:08.680Z',
  'type': 'earthquake',
  'updated': '2016-06-21T15:39:40.230Z'},
 {'depth': 8.71,
  'depthError': 0.38,
  'dmin': 0.02247,
  'gap': 159.0,
  'horizontalError': 0.61,
  'id': 'nc72653451',
  'latitude': 36.230835,
  'locationSource': 'nc',
  'longitude': -120.3268356,
  'mag': 2.11,
  'magError': 0.14,
  'magNst': 10.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 15.0,
  'place': '10km NNE of Coalinga, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-20T13:49:22.190Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:32:03.883Z'},
 {'depth': 62.51,
  'depthError': 4.3,
  'dmin': 5.496,
  'gap': 60.0,
  'horizontalError': 8.9,
  'id': 'us200065i3',
  'latitude': -15.9657,
  'locationSource': 'us',
  'longitude': 167.5168,
  'mag': 5.0,
  'magError': 0.055999999999999994,
  'magNst': 102.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '18km NE of Norsup, Vanuatu',
  'rms': 1.02,
  'status': 'reviewed',
  'time': '2016-06-20T13:41:52.990Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:35:15.981Z'},
 {'depth': 6.71,
  'depthError': 0.3,
  'dmin': 0.0588,
  'gap': 192.0,
  'horizontalError': 0.39,
  'id': 'nc72653446',
  'latitude': 35.8408333,
  'locationSource': 'nc',
  'longitude': -121.3915,
  'mag': 1.7,
  'magError': 0.191,
  'magNst': 26.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '28km NW of San Simeon, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-20T12:57:25.230Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:52:02.736Z'},
 {'depth': 5.51,
  'depthError': 2.4,
  'dmin': 0.1319,
  'gap': 219.0,
  'horizontalError': 1.22,
  'id': 'ci37392951',
  'latitude': 33.9276667,
  'locationSource': 'ci',
  'longitude': -118.85083329999999,
  'mag': 1.73,
  'magError': 0.29,
  'magNst': 21.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 15.0,
  'place': '9km SSW of Malibu, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-20T12:51:18.100Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:24:30.265Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.935,
  'gap': 85.0,
  'horizontalError': 6.9,
  'id': 'us200065hm',
  'latitude': -20.6751,
  'locationSource': 'us',
  'longitude': 168.5473,
  'mag': 5.2,
  'magError': 0.094,
  'magNst': 37.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '118km NE of Tadine, New Caledonia',
  'rms': 1.19,
  'status': 'reviewed',
  'time': '2016-06-20T12:49:37.100Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:06:00.962Z'},
 {'depth': -1.84,
  'depthError': 1.18,
  'dmin': 0.2357,
  'gap': 49.0,
  'horizontalError': 0.44,
  'id': 'ci37392943',
  'latitude': 36.3991667,
  'locationSource': 'ci',
  'longitude': -117.52733329999998,
  'mag': 2.02,
  'magError': 0.168,
  'magNst': 37.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 25.0,
  'place': '41km WSW of Stovepipe Wells, CA',
  'rms': 0.34,
  'status': 'reviewed',
  'time': '2016-06-20T12:49:24.750Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:58.791Z'},
 {'depth': 73.2,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13668213',
  'latitude': 62.2355,
  'locationSource': 'ak',
  'longitude': -151.0252,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '48km WSW of Talkeetna, Alaska',
  'rms': 0.39,
  'status': 'automatic',
  'time': '2016-06-20T12:40:38.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:14:40.028Z'},
 {'depth': 12.97,
  'depthError': 0.91,
  'dmin': 0.07098,
  'gap': 101.0,
  'horizontalError': 0.34,
  'id': 'nc72653401',
  'latitude': 37.424,
  'locationSource': 'nc',
  'longitude': -118.51783329999999,
  'mag': 1.28,
  'magError': 0.22399999999999998,
  'magNst': 18.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '9km NW of West Bishop, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-20T11:28:07.910Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:50.505Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13667809',
  'latitude': 63.7344,
  'locationSource': 'ak',
  'longitude': -147.7927,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '59km ESE of Healy, Alaska',
  'rms': 0.52,
  'status': 'automatic',
  'time': '2016-06-20T11:19:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T12:07:38.760Z'},
 {'depth': 32.58,
  'depthError': 6.9,
  'dmin': 3.662,
  'gap': 79.0,
  'horizontalError': 12.7,
  'id': 'us200065h9',
  'latitude': 11.435,
  'locationSource': 'us',
  'longitude': 141.826,
  'mag': 4.8,
  'magError': 0.067,
  'magNst': 69.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '233km NE of Fais, Micronesia',
  'rms': 0.82,
  'status': 'reviewed',
  'time': '2016-06-20T11:18:46.120Z',
  'type': 'earthquake',
  'updated': '2016-06-20T12:19:43.683Z'},
 {'depth': 0.62,
  'depthError': 2.74,
  'dmin': 0.06093,
  'gap': 101.0,
  'horizontalError': 0.63,
  'id': 'nc72653396',
  'latitude': 39.0245,
  'locationSource': 'nc',
  'longitude': -123.4671667,
  'mag': 1.2,
  'magError': 0.12,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '8km W of Boonville, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-20T11:15:01.350Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:58:01.652Z'},
 {'depth': 3.55,
  'depthError': 6.65,
  'dmin': 0.174,
  'gap': 141.0,
  'horizontalError': 0.46,
  'id': 'mb80156369',
  'latitude': 44.8136667,
  'locationSource': 'mb',
  'longitude': -113.0921667,
  'mag': 1.54,
  'magError': 0.09300000000000001,
  'magNst': 6.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 13.0,
  'place': '44km WNW of Lima, Montana',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-20T11:11:30.280Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:01:11.160Z'},
 {'depth': 1.58,
  'depthError': 0.57,
  'dmin': 0.013059999999999999,
  'gap': 125.0,
  'horizontalError': 0.33,
  'id': 'nc72653386',
  'latitude': 38.8185005,
  'locationSource': 'nc',
  'longitude': -122.76316829999999,
  'mag': 1.32,
  'magError': 0.1,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '3km W of Cobb, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T10:53:56.070Z',
  'type': 'earthquake',
  'updated': '2016-06-20T12:07:04.436Z'},
 {'depth': 11.19,
  'depthError': 0.37,
  'dmin': 0.04439,
  'gap': 117.0,
  'horizontalError': 0.43,
  'id': 'ci37392887',
  'latitude': 34.0785,
  'locationSource': 'ci',
  'longitude': -118.41316670000002,
  'mag': 1.18,
  'magError': 0.16699999999999998,
  'magNst': 31.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 20.0,
  'place': '1km WNW of Beverly Hills, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-20T10:49:43.180Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:25:37.580Z'},
 {'depth': 116.9,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13667798',
  'latitude': 59.3491,
  'locationSource': 'ak',
  'longitude': -153.5742,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '88km ESE of Old Iliamna, Alaska',
  'rms': 0.39,
  'status': 'automatic',
  'time': '2016-06-20T10:39:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T11:34:03.385Z'},
 {'depth': 33.9,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13667799',
  'latitude': 61.119,
  'locationSource': 'ak',
  'longitude': -150.6317,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '40km WSW of Anchorage, Alaska',
  'rms': 0.56,
  'status': 'automatic',
  'time': '2016-06-20T10:39:05.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T11:34:02.305Z'},
 {'depth': 1.43,
  'depthError': 0.41,
  'dmin': 0.007592,
  'gap': 142.0,
  'horizontalError': 0.3,
  'id': 'nc72653376',
  'latitude': 38.8248329,
  'locationSource': 'nc',
  'longitude': -122.84449769999999,
  'mag': 1.02,
  'magError': 0.16,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '9km NW of The Geysers, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T10:38:39.510Z',
  'type': 'earthquake',
  'updated': '2016-06-20T11:14:03.256Z'},
 {'depth': 2.87,
  'depthError': 0.45,
  'dmin': 0.07449,
  'gap': 52.0,
  'horizontalError': 0.18,
  'id': 'ci37392879',
  'latitude': 34.1381667,
  'locationSource': 'ci',
  'longitude': -116.42466670000002,
  'mag': 1.85,
  'magError': 0.136,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 53.0,
  'place': '3km NNE of Yucca Valley, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-20T10:29:09.770Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:25:46.350Z'},
 {'depth': 15.1,
  'depthError': 34.3,
  'dmin': 0.271,
  'gap': 279.61,
  'horizontalError': nan,
  'id': 'nn00548730',
  'latitude': 38.3999,
  'locationSource': 'nn',
  'longitude': -118.7933,
  'mag': 1.2,
  'magError': 0.09,
  'magNst': 2.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 4.0,
  'place': '20km SW of Hawthorne, Nevada',
  'rms': 0.0041,
  'status': 'reviewed',
  'time': '2016-06-20T09:33:08.622Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:37:23.025Z'},
 {'depth': 15.5,
  'depthError': 20.6,
  'dmin': 0.298,
  'gap': 289.25,
  'horizontalError': nan,
  'id': 'nn00548728',
  'latitude': 38.3853,
  'locationSource': 'nn',
  'longitude': -118.8437,
  'mag': 1.1,
  'magError': 0.05,
  'magNst': 2.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '24km SW of Hawthorne, Nevada',
  'rms': 0.0367,
  'status': 'reviewed',
  'time': '2016-06-20T09:32:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:37:20.101Z'},
 {'depth': 6.7589999999999995,
  'depthError': 0.59,
  'dmin': 0.03414,
  'gap': 85.0,
  'horizontalError': 0.27,
  'id': 'hv61304246',
  'latitude': 19.3146667,
  'locationSource': 'hv',
  'longitude': -155.2165,
  'mag': 1.37,
  'magError': 0.166,
  'magNst': 18.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 42.0,
  'place': '13km S of Volcano, Hawaii',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T09:28:05.710Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:41:30.470Z'},
 {'depth': 8.1,
  'depthError': 2.4,
  'dmin': 0.332,
  'gap': 48.93,
  'horizontalError': nan,
  'id': 'nn00548649',
  'latitude': 38.3801,
  'locationSource': 'nn',
  'longitude': -118.9063,
  'mag': 1.3,
  'magError': 0.23,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 19.0,
  'place': '29km WSW of Hawthorne, Nevada',
  'rms': 0.1942,
  'status': 'reviewed',
  'time': '2016-06-20T09:12:30.081Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:47.481Z'},
 {'depth': 6.956,
  'depthError': 0.47,
  'dmin': 0.037739999999999996,
  'gap': 86.0,
  'horizontalError': 0.24,
  'id': 'hv61304231',
  'latitude': 19.3176667,
  'locationSource': 'hv',
  'longitude': -155.2135,
  'mag': 3.57,
  'magError': 0.247,
  'magNst': 33.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 47.0,
  'place': '12km SSE of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-20T09:03:20.770Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:36:39.428Z'},
 {'depth': 33.6,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13667398',
  'latitude': 61.69,
  'locationSource': 'ak',
  'longitude': -149.9323,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '8km SE of Willow, Alaska',
  'rms': 0.31,
  'status': 'automatic',
  'time': '2016-06-20T09:00:56.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T09:47:28.403Z'},
 {'depth': 19.0,
  'depthError': 16.6,
  'dmin': 0.94862094,
  'gap': 331.2,
  'horizontalError': 8.3,
  'id': 'pr16172008',
  'latitude': 19.3061,
  'locationSource': 'pr',
  'longitude': -64.988,
  'mag': 2.0,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '105km NNW of Road Town, British Virgin Islands',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-20T08:52:45.900Z',
  'type': 'earthquake',
  'updated': '2016-06-20T12:35:43.192Z'},
 {'depth': 4.34,
  'depthError': 6.4,
  'dmin': 0.013000000000000001,
  'gap': 40.0,
  'horizontalError': 2.3,
  'id': 'us200065gx',
  'latitude': 36.4382,
  'locationSource': 'us',
  'longitude': -98.7296,
  'mag': 3.7,
  'magError': 0.05,
  'magNst': 105.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '29km NW of Fairview, Oklahoma',
  'rms': 0.6,
  'status': 'reviewed',
  'time': '2016-06-20T08:50:46.510Z',
  'type': 'earthquake',
  'updated': '2016-06-20T10:52:34.751Z'},
 {'depth': 22.8,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13667006',
  'latitude': 63.2376,
  'locationSource': 'ak',
  'longitude': -136.696,
  'mag': 2.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '56km SW of Mayo, Canada',
  'rms': 0.88,
  'status': 'reviewed',
  'time': '2016-06-20T08:49:40.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:50:57.500Z'},
 {'depth': 12.0,
  'depthError': 9.7,
  'dmin': 0.44376775,
  'gap': 302.4,
  'horizontalError': 4.5,
  'id': 'pr16172007',
  'latitude': 18.7903,
  'locationSource': 'pr',
  'longitude': -65.0419,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '51km NNW of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-20T08:48:26.600Z',
  'type': 'earthquake',
  'updated': '2016-06-20T12:33:52.129Z'},
 {'depth': 8.83,
  'depthError': 1.27,
  'dmin': 0.1355,
  'gap': 73.0,
  'horizontalError': 0.34,
  'id': 'ci37392847',
  'latitude': 33.7855,
  'locationSource': 'ci',
  'longitude': -116.036,
  'mag': 1.05,
  'magError': 0.171,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 36.0,
  'place': '17km NE of Coachella, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-20T08:47:46.040Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:27:54.710Z'},
 {'depth': 219.74,
  'depthError': 8.5,
  'dmin': 1.685,
  'gap': 83.0,
  'horizontalError': 8.6,
  'id': 'us200065gt',
  'latitude': -23.9986,
  'locationSource': 'us',
  'longitude': -66.7364,
  'mag': 4.5,
  'magError': 0.067,
  'magNst': 65.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '48km WNW of San Antonio de los Cobres, Argentina',
  'rms': 1.38,
  'status': 'reviewed',
  'time': '2016-06-20T08:34:22.610Z',
  'type': 'earthquake',
  'updated': '2016-06-20T08:55:44.597Z'},
 {'depth': 11.24,
  'depthError': 0.51,
  'dmin': 0.03408,
  'gap': 92.0,
  'horizontalError': 0.83,
  'id': 'uw61170691',
  'latitude': 47.9511667,
  'locationSource': 'uw',
  'longitude': -119.76716670000002,
  'mag': 1.29,
  'magError': 0.10400000000000001,
  'magNst': 9.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 9.0,
  'place': '9km SW of Bridgeport, Washington',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-20T08:33:12.800Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:26:05.740Z'},
 {'depth': 8.6,
  'depthError': 4.8,
  'dmin': 0.332,
  'gap': 48.99,
  'horizontalError': nan,
  'id': 'nn00548647',
  'latitude': 38.38,
  'locationSource': 'nn',
  'longitude': -118.9083,
  'mag': 1.4,
  'magError': 0.31,
  'magNst': 10.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 23.0,
  'place': '29km WSW of Hawthorne, Nevada',
  'rms': 0.1525,
  'status': 'reviewed',
  'time': '2016-06-20T08:20:56.986Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:45.385Z'},
 {'depth': 8.75,
  'depthError': 0.58,
  'dmin': 0.08221,
  'gap': 110.0,
  'horizontalError': 0.23,
  'id': 'nc72653356',
  'latitude': 39.9271667,
  'locationSource': 'nc',
  'longitude': -120.45616670000001,
  'mag': 1.74,
  'magError': 0.498,
  'magNst': 15.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 13.0,
  'place': '12km N of Portola, California',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-20T08:14:57.420Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:43.030Z'},
 {'depth': 10.1,
  'depthError': 4.7,
  'dmin': 0.32899999999999996,
  'gap': 88.65,
  'horizontalError': nan,
  'id': 'nn00548642',
  'latitude': 38.3781,
  'locationSource': 'nn',
  'longitude': -118.9007,
  'mag': 1.2,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 15.0,
  'place': '29km SW of Hawthorne, Nevada',
  'rms': 0.1526,
  'status': 'reviewed',
  'time': '2016-06-20T08:11:15.953Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:40.799Z'},
 {'depth': 344.81,
  'depthError': 7.7,
  'dmin': 1.739,
  'gap': 79.0,
  'horizontalError': 9.5,
  'id': 'us200065gq',
  'latitude': 32.3976,
  'locationSource': 'us',
  'longitude': 137.9325,
  'mag': 4.3,
  'magError': 0.048,
  'magNst': 121.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '190km WSW of Hachijo-jima, Japan',
  'rms': 0.77,
  'status': 'reviewed',
  'time': '2016-06-20T08:06:26.170Z',
  'type': 'earthquake',
  'updated': '2016-06-20T10:33:24.940Z'},
 {'depth': 11.4,
  'depthError': 1.4,
  'dmin': 0.13699999999999998,
  'gap': 56.03,
  'horizontalError': nan,
  'id': 'nn00548641',
  'latitude': 38.3734,
  'locationSource': 'nn',
  'longitude': -118.9034,
  'mag': 2.2,
  'magError': 0.35,
  'magNst': 15.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 33.0,
  'place': '29km SW of Hawthorne, Nevada',
  'rms': 0.14400000000000002,
  'status': 'reviewed',
  'time': '2016-06-20T08:04:38.313Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:58:24.016Z'},
 {'depth': 2.61,
  'depthError': 0.34,
  'dmin': 0.003204,
  'gap': 72.0,
  'horizontalError': 0.33,
  'id': 'hv61304151',
  'latitude': 19.4106674,
  'locationSource': 'hv',
  'longitude': -155.2839966,
  'mag': 1.94,
  'magError': 0.12,
  'magNst': 10.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 16.0,
  'place': '5km WSW of Volcano, Hawaii',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-20T08:04:14.180Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:59:08.370Z'},
 {'depth': 48.5,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13666996',
  'latitude': 62.1793,
  'locationSource': 'ak',
  'longitude': -150.2596,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '17km SSW of Talkeetna, Alaska',
  'rms': 0.42,
  'status': 'automatic',
  'time': '2016-06-20T08:03:27.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T08:37:18.190Z'},
 {'depth': 13.8,
  'depthError': 4.8,
  'dmin': 0.325,
  'gap': 87.75,
  'horizontalError': nan,
  'id': 'nn00548639',
  'latitude': 38.3761,
  'locationSource': 'nn',
  'longitude': -118.8936,
  'mag': 1.3,
  'magError': 0.16,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 17.0,
  'place': '28km SW of Hawthorne, Nevada',
  'rms': 0.1107,
  'status': 'reviewed',
  'time': '2016-06-20T07:55:33.348Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:27.391Z'},
 {'depth': 113.8,
  'depthError': 5.6,
  'dmin': 0.39,
  'gap': 37.0,
  'horizontalError': 6.6,
  'id': 'us200065gk',
  'latitude': 24.8853,
  'locationSource': 'us',
  'longitude': 121.9164,
  'mag': 4.4,
  'magError': 0.075,
  'magNst': 51.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '21km NE of Yilan, Taiwan',
  'rms': 0.85,
  'status': 'reviewed',
  'time': '2016-06-20T07:53:30.430Z',
  'type': 'earthquake',
  'updated': '2016-06-20T09:44:39.688Z'},
 {'depth': 13.3,
  'depthError': 4.0,
  'dmin': 0.327,
  'gap': 56.47,
  'horizontalError': nan,
  'id': 'nn00548675',
  'latitude': 38.3769,
  'locationSource': 'nn',
  'longitude': -118.8955,
  'mag': 1.8,
  'magError': 0.35,
  'magNst': 8.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 20.0,
  'place': '28km SW of Hawthorne, Nevada',
  'rms': 0.1486,
  'status': 'reviewed',
  'time': '2016-06-20T07:45:07.633Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:36:10.975Z'},
 {'depth': 12.0,
  'depthError': 8.8,
  'dmin': 0.94412936,
  'gap': 327.6,
  'horizontalError': 6.2,
  'id': 'pr16172006',
  'latitude': 19.3015,
  'locationSource': 'pr',
  'longitude': -64.9213,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '103km NNW of Road Town, British Virgin Islands',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T07:44:51.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T12:32:31.877Z'},
 {'depth': 10.2,
  'depthError': 2.5,
  'dmin': 0.32799999999999996,
  'gap': 48.9,
  'horizontalError': nan,
  'id': 'nn00548636',
  'latitude': 38.3762,
  'locationSource': 'nn',
  'longitude': -118.906,
  'mag': 1.9,
  'magError': 0.53,
  'magNst': 12.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 25.0,
  'place': '29km SW of Hawthorne, Nevada',
  'rms': 0.1541,
  'status': 'reviewed',
  'time': '2016-06-20T07:43:57.838Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:55:38.216Z'},
 {'depth': 4.45,
  'depthError': 0.31,
  'dmin': 0.052860000000000004,
  'gap': 23.0,
  'horizontalError': 0.12,
  'id': 'ci37392783',
  'latitude': 33.9346667,
  'locationSource': 'ci',
  'longitude': -116.8425,
  'mag': 1.24,
  'magError': 0.168,
  'magNst': 54.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 65.0,
  'place': '3km ENE of Banning, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-20T07:38:58.380Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:50:01.610Z'},
 {'depth': 2.66,
  'depthError': 0.39,
  'dmin': 0.007837,
  'gap': 76.0,
  'horizontalError': 0.23,
  'id': 'nc72653326',
  'latitude': 38.8161659,
  'locationSource': 'nc',
  'longitude': -122.8061676,
  'mag': 1.65,
  'magError': 0.09,
  'magNst': 9.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 28.0,
  'place': '6km NW of The Geysers, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-20T07:30:23.680Z',
  'type': 'earthquake',
  'updated': '2016-06-20T08:00:03.739Z'},
 {'depth': 68.1,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13666992',
  'latitude': 62.5126,
  'locationSource': 'ak',
  'longitude': -151.0352,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '52km WNW of Talkeetna, Alaska',
  'rms': 0.75,
  'status': 'automatic',
  'time': '2016-06-20T07:14:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T08:00:15.829Z'},
 {'depth': 56.0,
  'depthError': 2.1,
  'dmin': 0.35034296,
  'gap': 345.6,
  'horizontalError': 9.6,
  'id': 'pr16172005',
  'latitude': 18.5568,
  'locationSource': 'pr',
  'longitude': -64.2778,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '39km ENE of Road Town, British Virgin Islands',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-20T05:56:25.200Z',
  'type': 'earthquake',
  'updated': '2016-06-20T07:47:01.280Z'},
 {'depth': 16.76,
  'depthError': 0.49,
  'dmin': 0.06932999999999999,
  'gap': 111.0,
  'horizontalError': 0.25,
  'id': 'ci37392751',
  'latitude': 34.9776667,
  'locationSource': 'ci',
  'longitude': -118.88833329999999,
  'mag': 1.05,
  'magError': 0.06,
  'magNst': 8.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 14.0,
  'place': '5km NE of Grapevine, CA',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T05:46:40.780Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:38:59.741Z'},
 {'depth': 1.99,
  'depthError': 0.42,
  'dmin': 0.009325,
  'gap': 82.0,
  'horizontalError': 0.35,
  'id': 'hv61303931',
  'latitude': 19.4058342,
  'locationSource': 'hv',
  'longitude': -155.2901611,
  'mag': 1.53,
  'magError': 0.48,
  'magNst': 4.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 17.0,
  'place': '6km WSW of Volcano, Hawaii',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-20T05:37:37.850Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:02:14.190Z'},
 {'depth': 45.1,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13666987',
  'latitude': 59.8685,
  'locationSource': 'ak',
  'longitude': -150.5274,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '45km ENE of Fritz Creek, Alaska',
  'rms': 0.57,
  'status': 'automatic',
  'time': '2016-06-20T05:34:27.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T06:21:29.630Z'},
 {'depth': 1.64,
  'depthError': 0.3,
  'dmin': 0.0035450000000000004,
  'gap': 84.0,
  'horizontalError': 0.22,
  'id': 'nc72653316',
  'latitude': 38.8078346,
  'locationSource': 'nc',
  'longitude': -122.8248367,
  'mag': 2.09,
  'magError': 0.13,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 22.0,
  'place': '6km WNW of The Geysers, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-20T05:23:18.630Z',
  'type': 'earthquake',
  'updated': '2016-06-20T06:28:03.464Z'},
 {'depth': 95.4,
  'depthError': 1.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13666985',
  'latitude': 60.1585,
  'locationSource': 'ak',
  'longitude': -151.8947,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '40km SW of Cohoe, Alaska',
  'rms': 0.68,
  'status': 'automatic',
  'time': '2016-06-20T05:19:18.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T05:52:36.121Z'},
 {'depth': 8.69,
  'depthError': 0.54,
  'dmin': 0.03743,
  'gap': 48.0,
  'horizontalError': 0.2,
  'id': 'ci37392735',
  'latitude': 33.249333299999996,
  'locationSource': 'ci',
  'longitude': -116.8005,
  'mag': 1.05,
  'magError': 0.114,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 35.0,
  'place': '4km WNW of Lake Henshaw, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-20T04:41:12.120Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:46:34.850Z'},
 {'depth': 10.08,
  'depthError': 0.41,
  'dmin': 0.064,
  'gap': 60.0,
  'horizontalError': 0.23,
  'id': 'mb80156324',
  'latitude': 44.7423333,
  'locationSource': 'mb',
  'longitude': -111.7535,
  'mag': 3.4,
  'magError': 0.28300000000000003,
  'magNst': 29.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 57.0,
  'place': '54km W of West Yellowstone, Montana',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-20T04:35:23.850Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:53:35.375Z'},
 {'depth': 90.8,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13666978',
  'latitude': 62.5849,
  'locationSource': 'ak',
  'longitude': -151.503,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '77km WNW of Talkeetna, Alaska',
  'rms': 0.8,
  'status': 'automatic',
  'time': '2016-06-20T04:33:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T05:14:57.846Z'},
 {'depth': 2.2,
  'depthError': 0.26,
  'dmin': 0.04267,
  'gap': 24.0,
  'horizontalError': 0.12,
  'id': 'ci37392727',
  'latitude': 34.305,
  'locationSource': 'ci',
  'longitude': -116.91766670000001,
  'mag': 1.81,
  'magError': 0.157,
  'magNst': 83.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 72.0,
  'place': '7km N of Big Bear Lake, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-20T04:33:18.670Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:20:15.220Z'},
 {'depth': 100.1,
  'depthError': 1.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.0,
  'id': 'ak13666976',
  'latitude': 59.8577,
  'locationSource': 'ak',
  'longitude': -152.9502,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '63km W of Anchor Point, Alaska',
  'rms': 0.35,
  'status': 'automatic',
  'time': '2016-06-20T04:30:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T05:14:57.215Z'},
 {'depth': 1.4,
  'depthError': 0.25,
  'dmin': 0.04278,
  'gap': 24.0,
  'horizontalError': 0.09,
  'id': 'ci37392719',
  'latitude': 34.3051667,
  'locationSource': 'ci',
  'longitude': -116.91916670000002,
  'mag': 3.08,
  'magError': 0.195,
  'magNst': 207.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 109.0,
  'place': '7km N of Big Bear Lake, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-20T04:21:14.710Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:22:33.403Z'},
 {'depth': 21.0,
  'depthError': 4.0,
  'dmin': 0.18595126,
  'gap': 208.8,
  'horizontalError': 3.0,
  'id': 'pr16172001',
  'latitude': 18.1644,
  'locationSource': 'pr',
  'longitude': -64.9479,
  'mag': 2.5,
  'magError': 0.0,
  'magNst': 8.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 11.0,
  'place': '19km S of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-20T04:16:01.100Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:29:13.178Z'},
 {'depth': 45.1,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13666573',
  'latitude': 61.7706,
  'locationSource': 'ak',
  'longitude': -150.3337,
  'mag': 2.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '15km W of Willow, Alaska',
  'rms': 0.54,
  'status': 'automatic',
  'time': '2016-06-20T04:04:29.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:44:07.808Z'},
 {'depth': 23.1,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 2.4,
  'id': 'ak13666574',
  'latitude': 53.9985,
  'locationSource': 'ak',
  'longitude': -164.1205,
  'mag': 2.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '105km SSW of False Pass, Alaska',
  'rms': 0.6,
  'status': 'reviewed',
  'time': '2016-06-20T04:03:00.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:50:50.404Z'},
 {'depth': 15.0,
  'depthError': 3.6,
  'dmin': 0.27488448,
  'gap': 205.2,
  'horizontalError': 2.0,
  'id': 'pr16172004',
  'latitude': 18.4596,
  'locationSource': 'pr',
  'longitude': -65.6443,
  'mag': 2.5,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '12km NE of Luquillo, Puerto Rico',
  'rms': 0.34,
  'status': 'reviewed',
  'time': '2016-06-20T03:57:47.300Z',
  'type': 'earthquake',
  'updated': '2016-06-20T07:46:25.432Z'},
 {'depth': 6.58,
  'depthError': 0.84,
  'dmin': 0.057679999999999995,
  'gap': 159.0,
  'horizontalError': 0.39,
  'id': 'nc72653276',
  'latitude': 37.5428352,
  'locationSource': 'nc',
  'longitude': -118.8710022,
  'mag': 1.3,
  'magError': 0.15,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 14.0,
  'place': '14km SE of Mammoth Lakes, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-20T03:57:05.480Z',
  'type': 'earthquake',
  'updated': '2016-06-20T05:14:02.257Z'},
 {'depth': 10.0,
  'depthError': 1.7,
  'dmin': 1.411,
  'gap': 20.0,
  'horizontalError': 7.3,
  'id': 'us200065g0',
  'latitude': -20.224,
  'locationSource': 'us',
  'longitude': 168.7298,
  'mag': 6.0,
  'magError': 0.051,
  'magNst': 37.0,
  'magSource': 'us',
  'magType': 'mwc',
  'net': 'us',
  'nst': nan,
  'place': '93km SW of Isangel, Vanuatu',
  'rms': 1.38,
  'status': 'reviewed',
  'time': '2016-06-20T03:50:54.570Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:02:35.040Z'},
 {'depth': 1.41,
  'depthError': 0.42,
  'dmin': 0.01491,
  'gap': 43.0,
  'horizontalError': 0.22,
  'id': 'nc72653266',
  'latitude': 38.81733320000001,
  'locationSource': 'nc',
  'longitude': -122.7608337,
  'mag': 1.19,
  'magError': 0.2,
  'magNst': 4.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 17.0,
  'place': '3km W of Cobb, California',
  'rms': 0.04,
  'status': 'automatic',
  'time': '2016-06-20T03:48:53.740Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:48:03.193Z'},
 {'depth': 11.0,
  'depthError': 0.6,
  'dmin': 0.14552708,
  'gap': 270.0,
  'horizontalError': 1.1,
  'id': 'pr16172003',
  'latitude': 18.27,
  'locationSource': 'pr',
  'longitude': -64.6276,
  'mag': 2.1,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '16km S of Road Town, British Virgin Islands',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-20T03:44:19.900Z',
  'type': 'earthquake',
  'updated': '2016-06-20T07:45:20.868Z'},
 {'depth': 5.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13666564',
  'latitude': 61.3895,
  'locationSource': 'ak',
  'longitude': -150.5008,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '32km WSW of Big Lake, Alaska',
  'rms': 0.74,
  'status': 'automatic',
  'time': '2016-06-20T03:41:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:42:49.568Z'},
 {'depth': 0.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13666559',
  'latitude': 63.7324,
  'locationSource': 'ak',
  'longitude': -147.7404,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '61km ESE of Healy, Alaska',
  'rms': 0.6,
  'status': 'automatic',
  'time': '2016-06-20T03:27:31.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:03:23.694Z'},
 {'depth': 31.8,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13666554',
  'latitude': 61.7299,
  'locationSource': 'ak',
  'longitude': -148.5993,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '15km ESE of Sutton-Alpine, Alaska',
  'rms': 0.44,
  'status': 'automatic',
  'time': '2016-06-20T03:06:14.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:03:26.056Z'},
 {'depth': 177.0,
  'depthError': 5.3,
  'dmin': 1.50916968,
  'gap': 334.8,
  'horizontalError': 8.8,
  'id': 'pr16172002',
  'latitude': 18.9911,
  'locationSource': 'pr',
  'longitude': -68.6064,
  'mag': 3.4,
  'magError': 0.0,
  'magNst': 9.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 15.0,
  'place': '38km N of Otra Banda, Dominican Republic',
  'rms': 0.5,
  'status': 'reviewed',
  'time': '2016-06-20T02:22:33.500Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:36:25.248Z'},
 {'depth': 10.6,
  'depthError': 3.1,
  'dmin': 0.377,
  'gap': 104.31,
  'horizontalError': nan,
  'id': 'nn00548626',
  'latitude': 38.7122,
  'locationSource': 'nn',
  'longitude': -119.6211,
  'mag': 1.2,
  'magError': 0.26,
  'magNst': 14.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 18.0,
  'place': '22km SSE of Gardnerville Ranchos, Nevada',
  'rms': 0.1708,
  'status': 'reviewed',
  'time': '2016-06-20T02:18:55.575Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:35:05.315Z'},
 {'depth': 8.3,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13666540',
  'latitude': 63.5314,
  'locationSource': 'ak',
  'longitude': -151.1092,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '108km W of Cantwell, Alaska',
  'rms': 0.76,
  'status': 'automatic',
  'time': '2016-06-20T02:10:41.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T02:46:55.395Z'},
 {'depth': 30.63,
  'depthError': 5.4,
  'dmin': 4.084,
  'gap': 173.0,
  'horizontalError': 7.6,
  'id': 'us200065fr',
  'latitude': 2.0536,
  'locationSource': 'us',
  'longitude': 93.5581,
  'mag': 4.6,
  'magError': 0.114,
  'magNst': 23.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Off the west coast of northern Sumatra',
  'rms': 0.47,
  'status': 'reviewed',
  'time': '2016-06-20T02:10:35.250Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:24:22.181Z'},
 {'depth': 0.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13666538',
  'latitude': 63.7357,
  'locationSource': 'ak',
  'longitude': -147.7432,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '61km ESE of Healy, Alaska',
  'rms': 0.32,
  'status': 'automatic',
  'time': '2016-06-20T02:09:45.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T02:46:52.953Z'},
 {'depth': 3.0,
  'depthError': 9.6,
  'dmin': 0.16169675,
  'gap': 324.0,
  'horizontalError': 0.8,
  'id': 'pr16172000',
  'latitude': 17.8565,
  'locationSource': 'pr',
  'longitude': -67.1761,
  'mag': 1.6,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '13km S of Pole Ojea, Puerto Rico',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-20T01:49:02.200Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:08:42.349Z'},
 {'depth': 7.63,
  'depthError': 0.46,
  'dmin': 0.0562,
  'gap': 84.0,
  'horizontalError': 0.34,
  'id': 'ci37392615',
  'latitude': 32.9045,
  'locationSource': 'ci',
  'longitude': -115.494,
  'mag': 1.5,
  'magError': 0.14800000000000002,
  'magNst': 21.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 20.0,
  'place': '9km SSE of Brawley, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-20T01:42:51.170Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:48:00.111Z'},
 {'depth': 11.5,
  'depthError': 4.9,
  'dmin': 0.589,
  'gap': 152.0,
  'horizontalError': 5.9,
  'id': 'us200065fp',
  'latitude': -30.226,
  'locationSource': 'us',
  'longitude': -72.0803,
  'mag': 4.5,
  'magError': 0.15,
  'magNst': 13.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '77km WSW of Coquimbo, Chile',
  'rms': 0.86,
  'status': 'reviewed',
  'time': '2016-06-20T01:31:21.390Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:12:29.040Z'},
 {'depth': 5.06,
  'depthError': 1.35,
  'dmin': 0.001614,
  'gap': 56.0,
  'horizontalError': 0.85,
  'id': 'hv61303736',
  'latitude': 19.4106674,
  'locationSource': 'hv',
  'longitude': -155.27999880000002,
  'mag': 1.77,
  'magError': 0.17,
  'magNst': 6.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 10.0,
  'place': '4km WSW of Volcano, Hawaii',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-20T01:26:06.460Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:03:15.190Z'},
 {'depth': 44.15,
  'depthError': 13.0,
  'dmin': 0.654,
  'gap': 188.0,
  'horizontalError': 8.4,
  'id': 'us200065fm',
  'latitude': 52.251999999999995,
  'locationSource': 'us',
  'longitude': -169.3746,
  'mag': 4.0,
  'magError': 0.076,
  'magNst': 47.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '83km SSW of Nikolski, Alaska',
  'rms': 1.37,
  'status': 'reviewed',
  'time': '2016-06-20T01:25:38.360Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:03:25.381Z'},
 {'depth': 5.77,
  'depthError': 1.14,
  'dmin': 0.0704,
  'gap': 49.0,
  'horizontalError': 0.26,
  'id': 'nc72653221',
  'latitude': 38.505166700000004,
  'locationSource': 'nc',
  'longitude': -122.65433329999999,
  'mag': 1.44,
  'magError': 0.23600000000000002,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '8km NE of Santa Rosa, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-20T01:23:03.510Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:30:03.290Z'},
 {'depth': 84.13,
  'depthError': 10.1,
  'dmin': 2.762,
  'gap': 138.0,
  'horizontalError': 10.6,
  'id': 'us200065fj',
  'latitude': 3.5008,
  'locationSource': 'us',
  'longitude': 127.9003,
  'mag': 4.5,
  'magError': 0.145,
  'magNst': 14.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '196km N of Tobelo, Indonesia',
  'rms': 1.08,
  'status': 'reviewed',
  'time': '2016-06-20T00:59:54.670Z',
  'type': 'earthquake',
  'updated': '2016-06-20T01:22:19.314Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.376,
  'gap': 38.0,
  'horizontalError': 4.4,
  'id': 'us200065fh',
  'latitude': 23.1147,
  'locationSource': 'us',
  'longitude': 121.5753,
  'mag': 4.3,
  'magError': 0.061,
  'magNst': 26.0,
  'magSource': 'us',
  'magType': 'mwr',
  'net': 'us',
  'nst': nan,
  'place': '59km NE of Taitung City, Taiwan',
  'rms': 1.07,
  'status': 'reviewed',
  'time': '2016-06-20T00:39:43.850Z',
  'type': 'earthquake',
  'updated': '2016-06-20T01:10:56.783Z'},
 {'depth': 1.72,
  'depthError': 0.29,
  'dmin': 0.005801,
  'gap': 80.0,
  'horizontalError': 0.22,
  'id': 'nc72653201',
  'latitude': 38.8214989,
  'locationSource': 'nc',
  'longitude': -122.84216310000001,
  'mag': 1.64,
  'magError': 0.08,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 30.0,
  'place': '8km WNW of The Geysers, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-20T00:29:58.720Z',
  'type': 'earthquake',
  'updated': '2016-06-20T01:01:02.543Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 1.516,
  'gap': 131.0,
  'horizontalError': 8.4,
  'id': 'us200065fc',
  'latitude': -30.6967,
  'locationSource': 'us',
  'longitude': -177.4051,
  'mag': 4.6,
  'magError': 0.107,
  'magNst': 26.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': "164km ENE of L'Esperance Rock, New Zealand",
  'rms': 1.27,
  'status': 'reviewed',
  'time': '2016-06-19T23:56:55.900Z',
  'type': 'earthquake',
  'updated': '2016-06-20T01:16:53.742Z'},
 {'depth': 70.0,
  'depthError': 10.6,
  'dmin': 1.15433514,
  'gap': 284.4,
  'horizontalError': 4.6,
  'id': 'pr16171012',
  'latitude': 19.482,
  'locationSource': 'pr',
  'longitude': -65.23,
  'mag': 3.4,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 11.0,
  'place': '130km NNW of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-19T23:30:45.900Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:39:12.860Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 3.594,
  'gap': 30.0,
  'horizontalError': 8.7,
  'id': 'us200065f4',
  'latitude': -5.6761,
  'locationSource': 'us',
  'longitude': -11.5305,
  'mag': 5.4,
  'magError': 0.03,
  'magNst': 388.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Ascension Island region',
  'rms': 0.95,
  'status': 'reviewed',
  'time': '2016-06-19T23:13:44.780Z',
  'type': 'earthquake',
  'updated': '2016-06-21T16:05:48.040Z'},
 {'depth': 3.8,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13665761',
  'latitude': 64.9758,
  'locationSource': 'ak',
  'longitude': -147.3401,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '21km NNE of Badger, Alaska',
  'rms': 0.74,
  'status': 'automatic',
  'time': '2016-06-19T23:12:48.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T23:58:55.566Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 3.562,
  'gap': 45.0,
  'horizontalError': 7.5,
  'id': 'us200065f3',
  'latitude': -5.6411,
  'locationSource': 'us',
  'longitude': -11.6013,
  'mag': 4.8,
  'magError': 0.111,
  'magNst': 25.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Ascension Island region',
  'rms': 1.2,
  'status': 'reviewed',
  'time': '2016-06-19T22:52:23.790Z',
  'type': 'earthquake',
  'updated': '2016-06-19T23:13:45.333Z'},
 {'depth': 6.2,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13665384',
  'latitude': 63.4459,
  'locationSource': 'ak',
  'longitude': -155.0841,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km NNE of McGrath, Alaska',
  'rms': 0.72,
  'status': 'automatic',
  'time': '2016-06-19T22:38:02.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T23:23:16.220Z'},
 {'depth': 0.1,
  'depthError': 7.7,
  'dmin': 0.963,
  'gap': 142.07,
  'horizontalError': 6.85,
  'id': 'nn00548615',
  'latitude': 39.5518,
  'locationSource': 'nn',
  'longitude': -115.8833,
  'mag': 1.6,
  'magError': 0.15,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '7km ENE of Eureka, Nevada',
  'rms': 0.2809,
  'status': 'reviewed',
  'time': '2016-06-19T22:17:32.439Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:10:27.672Z'},
 {'depth': 1.85,
  'depthError': 0.42,
  'dmin': 0.01154,
  'gap': 65.0,
  'horizontalError': 0.24,
  'id': 'nc72653181',
  'latitude': 38.819999700000004,
  'locationSource': 'nc',
  'longitude': -122.7636642,
  'mag': 1.1,
  'magError': 0.09,
  'magNst': 6.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '3km W of Cobb, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-19T22:15:35.930Z',
  'type': 'earthquake',
  'updated': '2016-06-19T23:20:03.678Z'},
 {'depth': 9.81,
  'depthError': 0.82,
  'dmin': 0.04857,
  'gap': 133.0,
  'horizontalError': 0.39,
  'id': 'uw61170546',
  'latitude': 47.9365,
  'locationSource': 'uw',
  'longitude': -119.77133329999998,
  'mag': 1.29,
  'magError': 0.055999999999999994,
  'magNst': 9.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 7.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-19T22:14:06.320Z',
  'type': 'other event',
  'updated': '2016-06-20T18:49:16.550Z'},
 {'depth': 11.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13665367',
  'latitude': 62.7583,
  'locationSource': 'ak',
  'longitude': -150.3731,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '50km NNW of Talkeetna, Alaska',
  'rms': 0.6,
  'status': 'automatic',
  'time': '2016-06-19T22:11:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:47.751Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13665365',
  'latitude': 63.7288,
  'locationSource': 'ak',
  'longitude': -147.7353,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km ESE of Healy, Alaska',
  'rms': 0.4,
  'status': 'automatic',
  'time': '2016-06-19T22:02:57.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:49.093Z'},
 {'depth': 0.4,
  'depthError': 0.15,
  'dmin': 0.004169,
  'gap': 27.0,
  'horizontalError': 0.08,
  'id': 'nc72653171',
  'latitude': 38.8093333,
  'locationSource': 'nc',
  'longitude': -122.7825,
  'mag': 1.43,
  'magError': 0.23800000000000002,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 45.0,
  'place': '4km NNW of The Geysers, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-19T21:56:56.910Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:45:58.169Z'},
 {'depth': 35.1,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13665340',
  'latitude': 59.799,
  'locationSource': 'ak',
  'longitude': -151.1443,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '11km NE of Fritz Creek, Alaska',
  'rms': 0.61,
  'status': 'automatic',
  'time': '2016-06-19T21:54:45.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:49:11.380Z'},
 {'depth': 6.3,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13665339',
  'latitude': 63.5316,
  'locationSource': 'ak',
  'longitude': -151.1575,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '111km W of Cantwell, Alaska',
  'rms': 0.68,
  'status': 'automatic',
  'time': '2016-06-19T21:37:35.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:07:27.112Z'},
 {'depth': 5.26,
  'depthError': 10.12,
  'dmin': 0.6022,
  'gap': 213.0,
  'horizontalError': 4.02,
  'id': 'uw61170526',
  'latitude': 49.446999999999996,
  'locationSource': 'uw',
  'longitude': -120.51633329999999,
  'mag': 1.95,
  'magError': 0.134,
  'magNst': 7.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 9.0,
  'place': '1km SSW of Princeton, Canada',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-19T21:15:42.910Z',
  'type': 'explosion',
  'updated': '2016-06-20T18:41:27.770Z'},
 {'depth': 10.26,
  'depthError': 0.3,
  'dmin': 0.07662000000000001,
  'gap': 37.0,
  'horizontalError': 0.18,
  'id': 'ci37392439',
  'latitude': 33.4643333,
  'locationSource': 'ci',
  'longitude': -116.48433329999999,
  'mag': 1.83,
  'magError': 0.15,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 61.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T21:08:58.100Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:47:45.680Z'},
 {'depth': 12.47,
  'depthError': 0.78,
  'dmin': 0.06901,
  'gap': 94.0,
  'horizontalError': 0.3,
  'id': 'ci37392431',
  'latitude': 36.0888333,
  'locationSource': 'ci',
  'longitude': -118.34766670000002,
  'mag': 1.37,
  'magError': 0.19,
  'magNst': 16.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 24.0,
  'place': '36km W of Coso Junction, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-19T20:48:27.260Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:43:18.779Z'},
 {'depth': 35.2,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13665336',
  'latitude': 60.3323,
  'locationSource': 'ak',
  'longitude': -141.3915,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '64km ENE of Cape Yakataga, Alaska',
  'rms': 0.73,
  'status': 'automatic',
  'time': '2016-06-19T20:47:25.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T21:28:19.262Z'},
 {'depth': 35.889,
  'depthError': 0.87,
  'dmin': 0.1509,
  'gap': 256.0,
  'horizontalError': 0.74,
  'id': 'hv61303351',
  'latitude': 19.7905,
  'locationSource': 'hv',
  'longitude': -154.89700000000002,
  'mag': 2.09,
  'magError': 0.078,
  'magNst': 18.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 46.0,
  'place': "20km E of Papa'ikou, Hawaii",
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-19T20:33:35.120Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:41:34.920Z'},
 {'depth': 20.0,
  'depthError': 2.0,
  'dmin': 0.11498436,
  'gap': 194.4,
  'horizontalError': 1.2,
  'id': 'pr16171011',
  'latitude': 18.4328,
  'locationSource': 'pr',
  'longitude': -67.369,
  'mag': 1.7,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '16km NW of Rincon, Puerto Rico',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-19T20:32:52.400Z',
  'type': 'earthquake',
  'updated': '2016-06-20T00:01:21.017Z'},
 {'depth': 62.3,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13665328',
  'latitude': 60.4993,
  'locationSource': 'ak',
  'longitude': -151.0145,
  'mag': 2.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '2km ENE of Soldotna, Alaska',
  'rms': 0.66,
  'status': 'automatic',
  'time': '2016-06-19T20:23:14.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T20:59:38.330Z'},
 {'depth': 1.82,
  'depthError': 0.61,
  'dmin': 0.03925,
  'gap': 117.0,
  'horizontalError': 0.24,
  'id': 'nc72653146',
  'latitude': 36.6101667,
  'locationSource': 'nc',
  'longitude': -121.21166670000001,
  'mag': 1.21,
  'magError': 0.294,
  'magNst': 18.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 21.0,
  'place': '23km NNE of Soledad, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-19T20:14:27.870Z',
  'type': 'earthquake',
  'updated': '2016-06-21T08:10:02.993Z'},
 {'depth': 87.1,
  'depthError': 1.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 6.5,
  'id': 'ak13665325',
  'latitude': 51.7659,
  'locationSource': 'ak',
  'longitude': -178.7016,
  'mag': 2.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '40km WSW of Tanaga Volcano, Alaska',
  'rms': 0.77,
  'status': 'reviewed',
  'time': '2016-06-19T20:10:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T04:04:55.265Z'},
 {'depth': 120.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': nan,
  'id': 'ak13665322',
  'latitude': 63.062,
  'locationSource': 'ak',
  'longitude': -150.9106,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '91km NNW of Talkeetna, Alaska',
  'rms': nan,
  'status': 'automatic',
  'time': '2016-06-19T19:56:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T20:20:56.477Z'},
 {'depth': 1.33,
  'depthError': 0.14,
  'dmin': 0.008231,
  'gap': 38.0,
  'horizontalError': 0.13,
  'id': 'hv61303286',
  'latitude': 19.404,
  'locationSource': 'hv',
  'longitude': -155.2788333,
  'mag': 1.95,
  'magError': 0.175,
  'magNst': 12.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 24.0,
  'place': '5km SW of Volcano, Hawaii',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-19T19:47:35.510Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:32:16.680Z'},
 {'depth': 1.64,
  'depthError': 0.47,
  'dmin': 0.1047,
  'gap': 28.0,
  'horizontalError': 0.19,
  'id': 'ci37392391',
  'latitude': 34.164666700000005,
  'locationSource': 'ci',
  'longitude': -116.84299999999999,
  'mag': 1.72,
  'magError': 0.13699999999999998,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 69.0,
  'place': '11km S of Big Bear City, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-19T19:41:44.290Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:47:50.400Z'},
 {'depth': 25.0,
  'depthError': 15.3,
  'dmin': 0.64588869,
  'gap': 280.8,
  'horizontalError': 1.8,
  'id': 'pr16171010',
  'latitude': 18.9564,
  'locationSource': 'pr',
  'longitude': -65.2677,
  'mag': 1.8,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '72km N of Culebra, Puerto Rico',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-19T19:30:03.400Z',
  'type': 'earthquake',
  'updated': '2016-06-20T00:00:19.797Z'},
 {'depth': 6.95,
  'depthError': 1.44,
  'dmin': 0.1438,
  'gap': 81.0,
  'horizontalError': 0.4,
  'id': 'ci37392367',
  'latitude': 32.889166700000004,
  'locationSource': 'ci',
  'longitude': -116.22316670000001,
  'mag': 1.02,
  'magError': 0.159,
  'magNst': 17.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 21.0,
  'place': '28km NW of Ocotillo, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-19T19:08:36.570Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:47:54.930Z'},
 {'depth': 14.57,
  'depthError': 1.54,
  'dmin': 0.2377,
  'gap': 74.0,
  'horizontalError': 0.6,
  'id': 'nc72653141',
  'latitude': 40.8321667,
  'locationSource': 'nc',
  'longitude': -122.13633329999999,
  'mag': 1.75,
  'magError': 0.14800000000000002,
  'magNst': 13.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 11.0,
  'place': '22km NNE of Bella Vista, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-19T19:03:05.140Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:53:03.373Z'},
 {'depth': 16.0,
  'depthError': 1.1,
  'dmin': 0.28027437,
  'gap': 270.0,
  'horizontalError': 1.2,
  'id': 'pr16171009',
  'latitude': 17.7835,
  'locationSource': 'pr',
  'longitude': -66.8216,
  'mag': 1.8,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '22km SSE of Guanica, Puerto Rico',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-19T18:50:24.400Z',
  'type': 'earthquake',
  'updated': '2016-06-19T20:00:28.659Z'},
 {'depth': 1.5,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13664947',
  'latitude': 60.3079,
  'locationSource': 'ak',
  'longitude': -153.4663,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '44km WSW of Redoubt Volcano, Alaska',
  'rms': 0.64,
  'status': 'automatic',
  'time': '2016-06-19T18:43:21.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T19:42:38.458Z'},
 {'depth': 18.45,
  'depthError': 3.7,
  'dmin': 2.681,
  'gap': 24.0,
  'horizontalError': 7.3,
  'id': 'us200065ep',
  'latitude': 20.1391,
  'locationSource': 'us',
  'longitude': 121.3941,
  'mag': 5.4,
  'magError': 0.063,
  'magNst': 24.0,
  'magSource': 'us',
  'magType': 'mwb',
  'net': 'us',
  'nst': nan,
  'place': '54km WSW of Sabtang, Philippines',
  'rms': 0.96,
  'status': 'reviewed',
  'time': '2016-06-19T18:20:50.710Z',
  'type': 'earthquake',
  'updated': '2016-06-20T01:56:36.000Z'},
 {'depth': 3.25,
  'depthError': 1.08,
  'dmin': 0.07914,
  'gap': 115.0,
  'horizontalError': 0.35,
  'id': 'ci37392295',
  'latitude': 33.923333299999996,
  'locationSource': 'ci',
  'longitude': -116.01983329999999,
  'mag': 1.02,
  'magError': 0.122,
  'magNst': 16.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 13.0,
  'place': '24km SSE of Twentynine Palms, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-19T18:12:24.290Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:47:46.087Z'},
 {'depth': 48.9,
  'depthError': 2.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13664932',
  'latitude': 56.3185,
  'locationSource': 'ak',
  'longitude': -156.5375,
  'mag': 3.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '79km NW of Chirikof Island, Alaska',
  'rms': 0.55,
  'status': 'automatic',
  'time': '2016-06-19T18:03:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T19:03:59.466Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13664929',
  'latitude': 63.4381,
  'locationSource': 'ak',
  'longitude': -151.4537,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '125km W of Cantwell, Alaska',
  'rms': 0.98,
  'status': 'automatic',
  'time': '2016-06-19T17:53:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T18:25:01.846Z'},
 {'depth': 39.177,
  'depthError': 0.89,
  'dmin': 0.03458,
  'gap': 237.0,
  'horizontalError': 1.22,
  'id': 'hv61303206',
  'latitude': 19.252833300000002,
  'locationSource': 'hv',
  'longitude': -155.1176667,
  'mag': 1.82,
  'magError': 0.10800000000000001,
  'magNst': 15.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 34.0,
  'place': '23km SSE of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-19T17:38:05.980Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:40:26.210Z'},
 {'depth': 1.77,
  'depthError': 4.69,
  'dmin': 0.09437000000000001,
  'gap': 238.0,
  'horizontalError': 2.31,
  'id': 'nc72653131',
  'latitude': 37.428000000000004,
  'locationSource': 'nc',
  'longitude': -121.23899999999999,
  'mag': 1.09,
  'magError': 0.257,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '10km WSW of Patterson, California',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-19T17:37:18.460Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:06:02.220Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 1.2790000000000001,
  'gap': 109.0,
  'horizontalError': 6.9,
  'id': 'us200065el',
  'latitude': -20.2524,
  'locationSource': 'us',
  'longitude': 168.4357,
  'mag': 4.8,
  'magError': 0.125,
  'magNst': 20.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '116km SW of Isangel, Vanuatu',
  'rms': 0.79,
  'status': 'reviewed',
  'time': '2016-06-19T17:30:48.240Z',
  'type': 'earthquake',
  'updated': '2016-06-19T17:47:54.519Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 3.0,
  'id': 'us200065k4',
  'latitude': 47.2669,
  'locationSource': 'csem',
  'longitude': -0.6721,
  'mag': 3.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ldg',
  'magType': 'ml',
  'net': 'us',
  'nst': nan,
  'place': '4km SW of Saint-Lambert-du-Lattay, France',
  'rms': 0.9,
  'status': 'reviewed',
  'time': '2016-06-19T17:27:36.400Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:17:27.225Z'},
 {'depth': 16.09,
  'depthError': 0.35,
  'dmin': 0.07572999999999999,
  'gap': 60.0,
  'horizontalError': 0.21,
  'id': 'ci37392231',
  'latitude': 33.6966667,
  'locationSource': 'ci',
  'longitude': -116.80433329999998,
  'mag': 1.11,
  'magError': 0.22699999999999998,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 45.0,
  'place': '9km WSW of Idyllwild, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-19T17:15:12.310Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:49:02.930Z'},
 {'depth': 26.2,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13664559',
  'latitude': 61.3446,
  'locationSource': 'ak',
  'longitude': -149.7141,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '17km NE of Anchorage, Alaska',
  'rms': 0.53,
  'status': 'automatic',
  'time': '2016-06-19T17:03:16.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T17:46:10.240Z'},
 {'depth': 14.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13664555',
  'latitude': 60.6976,
  'locationSource': 'ak',
  'longitude': -147.329,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '71km SW of Valdez, Alaska',
  'rms': 0.81,
  'status': 'automatic',
  'time': '2016-06-19T16:59:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T17:46:09.189Z'},
 {'depth': 85.93,
  'depthError': 7.9,
  'dmin': 1.19,
  'gap': 159.0,
  'horizontalError': 8.4,
  'id': 'us200065ee',
  'latitude': 1.9234,
  'locationSource': 'us',
  'longitude': 127.0351,
  'mag': 4.5,
  'magError': 0.115,
  'magNst': 22.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '110km WNW of Tobelo, Indonesia',
  'rms': 1.16,
  'status': 'reviewed',
  'time': '2016-06-19T16:50:33.520Z',
  'type': 'earthquake',
  'updated': '2016-06-19T18:50:42.208Z'},
 {'depth': 13.6,
  'depthError': 2.2,
  'dmin': 0.43700000000000006,
  'gap': 56.01,
  'horizontalError': 2.44,
  'id': 'nn00548566',
  'latitude': 38.9623,
  'locationSource': 'nn',
  'longitude': -116.6453,
  'mag': 2.3,
  'magError': 0.37,
  'magNst': 9.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 12.0,
  'place': '69km SSE of Austin, Nevada',
  'rms': 0.2336,
  'status': 'reviewed',
  'time': '2016-06-19T16:39:42.555Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:08:51.211Z'},
 {'depth': 32.902,
  'depthError': 1.56,
  'dmin': 0.1577,
  'gap': 191.0,
  'horizontalError': 0.89,
  'id': 'hv61303161',
  'latitude': 19.9251667,
  'locationSource': 'hv',
  'longitude': -155.39966669999998,
  'mag': 1.85,
  'magError': 0.025,
  'magNst': 5.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 12.0,
  'place': "19km SSE of Honoka'a, Hawaii",
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-19T16:38:51.610Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:54:51.600Z'},
 {'depth': 6.43,
  'depthError': 5.4,
  'dmin': 0.139,
  'gap': 109.0,
  'horizontalError': 1.5,
  'id': 'us200065e8',
  'latitude': 36.854,
  'locationSource': 'us',
  'longitude': -97.3443,
  'mag': 3.2,
  'magError': 0.052000000000000005,
  'magNst': 98.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '7km NW of Blackwell, Oklahoma',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-19T16:31:54.770Z',
  'type': 'earthquake',
  'updated': '2016-06-19T18:13:39.040Z'},
 {'depth': 20.778000000000002,
  'depthError': 1.83,
  'dmin': 0.013319999999999999,
  'gap': 132.0,
  'horizontalError': 1.74,
  'id': 'hv61303151',
  'latitude': 19.387166699999998,
  'locationSource': 'hv',
  'longitude': -155.2158333,
  'mag': 1.25,
  'magError': 0.11599999999999999,
  'magNst': 6.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 11.0,
  'place': '5km SSE of Volcano, Hawaii',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-19T16:30:41.460Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:17:56.860Z'},
 {'depth': 118.73,
  'depthError': 8.2,
  'dmin': 0.643,
  'gap': 45.0,
  'horizontalError': 5.8,
  'id': 'us200065e4',
  'latitude': -20.81,
  'locationSource': 'us',
  'longitude': -68.8455,
  'mag': 4.1,
  'magError': 0.19699999999999998,
  'magNst': 7.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '150km ESE of Iquique, Chile',
  'rms': 1.09,
  'status': 'reviewed',
  'time': '2016-06-19T16:18:19.680Z',
  'type': 'earthquake',
  'updated': '2016-06-19T18:10:34.338Z'},
 {'depth': 0.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13664542',
  'latitude': 64.7885,
  'locationSource': 'ak',
  'longitude': -147.5897,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '2km WSW of Badger, Alaska',
  'rms': 0.65,
  'status': 'automatic',
  'time': '2016-06-19T16:15:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T17:09:38.755Z'},
 {'depth': 7.02,
  'depthError': 1.03,
  'dmin': 0.1412,
  'gap': 87.0,
  'horizontalError': 0.27,
  'id': 'ci37392103',
  'latitude': 33.0206667,
  'locationSource': 'ci',
  'longitude': -116.35233329999998,
  'mag': 1.01,
  'magError': 0.096,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 29.0,
  'place': '24km ESE of Julian, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T15:56:10.350Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:59:35.645Z'},
 {'depth': 3.1,
  'depthError': 0.51,
  'dmin': 0.07992,
  'gap': 48.0,
  'horizontalError': 0.15,
  'id': 'ci37392087',
  'latitude': 33.923,
  'locationSource': 'ci',
  'longitude': -116.02216670000001,
  'mag': 1.54,
  'magError': 0.126,
  'magNst': 45.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 43.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-19T15:51:26.690Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:38:25.360Z'},
 {'depth': 42.3,
  'depthError': 5.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.6,
  'id': 'ak13664169',
  'latitude': 61.2445,
  'locationSource': 'ak',
  'longitude': -148.3544,
  'mag': 2.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '49km SE of Butte, Alaska',
  'rms': 1.13,
  'status': 'automatic',
  'time': '2016-06-19T15:36:34.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:30:58.573Z'},
 {'depth': 47.1,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13664164',
  'latitude': 62.3567,
  'locationSource': 'ak',
  'longitude': -147.7278,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '85km NE of Sutton-Alpine, Alaska',
  'rms': 0.32,
  'status': 'automatic',
  'time': '2016-06-19T15:35:57.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:29:37.403Z'},
 {'depth': 92.46,
  'depthError': 4.8,
  'dmin': 0.087,
  'gap': 73.0,
  'horizontalError': 6.1,
  'id': 'us200065dw',
  'latitude': -35.8008,
  'locationSource': 'us',
  'longitude': -71.3205,
  'mag': 4.6,
  'magError': 0.04,
  'magNst': 183.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '25km ENE of Linares, Chile',
  'rms': 0.78,
  'status': 'reviewed',
  'time': '2016-06-19T14:58:23.210Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:12:31.018Z'},
 {'depth': 23.6,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13664153',
  'latitude': 64.7031,
  'locationSource': 'ak',
  'longitude': -151.3676,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '48km SW of Manley Hot Springs, Alaska',
  'rms': 0.56,
  'status': 'automatic',
  'time': '2016-06-19T14:29:30.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T15:12:01.790Z'},
 {'depth': 9.6,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13664148',
  'latitude': 64.6369,
  'locationSource': 'ak',
  'longitude': -147.0628,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '2km S of Eielson Air Force Base, Alaska',
  'rms': 0.86,
  'status': 'automatic',
  'time': '2016-06-19T14:22:20.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T15:12:00.930Z'},
 {'depth': 50.0,
  'depthError': 140.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 20.9,
  'id': 'ak13664145',
  'latitude': 50.1433,
  'locationSource': 'ak',
  'longitude': 179.5834,
  'mag': 3.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '155km SW of Amatignak Island, Alaska',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-19T14:19:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:27:12.109Z'},
 {'depth': 12.0,
  'depthError': 3.9,
  'dmin': 0.62343081,
  'gap': 324.0,
  'horizontalError': 2.7,
  'id': 'pr16171008',
  'latitude': 18.954,
  'locationSource': 'pr',
  'longitude': -64.692,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '60km N of Road Town, British Virgin Islands',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-19T14:11:07.300Z',
  'type': 'earthquake',
  'updated': '2016-06-19T17:31:22.761Z'},
 {'depth': 5.93,
  'depthError': 31.61,
  'dmin': 0.8444,
  'gap': 160.0,
  'horizontalError': 0.47,
  'id': 'ci37392023',
  'latitude': 31.578666700000003,
  'locationSource': 'ci',
  'longitude': -115.61,
  'mag': 3.15,
  'magError': 0.134,
  'magNst': 70.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 18.0,
  'place': '83km SSW of Alberto Oviedo Mota, B.C., MX',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-19T13:56:29.900Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:33:22.420Z'},
 {'depth': 9.1,
  'depthError': 2.8,
  'dmin': 0.11,
  'gap': 74.47,
  'horizontalError': 1.88,
  'id': 'nn00548549',
  'latitude': 38.3477,
  'locationSource': 'nn',
  'longitude': -118.5705,
  'mag': 1.0,
  'magError': 0.25,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 16.0,
  'place': '20km SSE of Hawthorne, Nevada',
  'rms': 0.1063,
  'status': 'reviewed',
  'time': '2016-06-19T13:54:16.032Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:07:43.649Z'},
 {'depth': -0.18,
  'depthError': 0.43,
  'dmin': 0.02114,
  'gap': 52.0,
  'horizontalError': 0.14,
  'id': 'nc72653081',
  'latitude': 38.8023333,
  'locationSource': 'nc',
  'longitude': -122.7575,
  'mag': 1.24,
  'magError': 0.135,
  'magNst': 8.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 30.0,
  'place': '2km N of The Geysers, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-19T13:51:29.030Z',
  'type': 'earthquake',
  'updated': '2016-06-21T07:15:04.904Z'},
 {'depth': 16.0,
  'depthError': 1.7,
  'dmin': 0.381784,
  'gap': 302.4,
  'horizontalError': 1.6,
  'id': 'pr16171007',
  'latitude': 18.7688,
  'locationSource': 'pr',
  'longitude': -67.5019,
  'mag': 2.8,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 8.0,
  'place': '52km NW of Aguadilla, Puerto Rico',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-19T13:44:09.600Z',
  'type': 'earthquake',
  'updated': '2016-06-19T18:18:32.040Z'},
 {'depth': 79.3,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13663775',
  'latitude': 60.4487,
  'locationSource': 'ak',
  'longitude': -152.1381,
  'mag': 3.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '33km E of Redoubt Volcano, Alaska',
  'rms': 0.46,
  'status': 'automatic',
  'time': '2016-06-19T13:34:44.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T14:00:33.574Z'},
 {'depth': 11.5,
  'depthError': 25.3,
  'dmin': 0.40299999999999997,
  'gap': 164.52,
  'horizontalError': 4.2,
  'id': 'nn00548585',
  'latitude': 38.6378,
  'locationSource': 'nn',
  'longitude': -119.8179,
  'mag': 1.0,
  'magError': 0.0,
  'magNst': 1.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 6.0,
  'place': '28km SSW of Gardnerville Ranchos, Nevada',
  'rms': 0.1657,
  'status': 'reviewed',
  'time': '2016-06-19T13:31:52.327Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:09:38.835Z'},
 {'depth': 158.57,
  'depthError': 7.4,
  'dmin': 1.859,
  'gap': 94.0,
  'horizontalError': 9.3,
  'id': 'us200065dq',
  'latitude': -31.4937,
  'locationSource': 'us',
  'longitude': -68.6574,
  'mag': 4.3,
  'magError': 0.218,
  'magNst': 6.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '9km NE of Zonda, Argentina',
  'rms': 0.7,
  'status': 'reviewed',
  'time': '2016-06-19T13:30:05.180Z',
  'type': 'earthquake',
  'updated': '2016-06-19T14:16:56.381Z'},
 {'depth': 12.51,
  'depthError': 0.53,
  'dmin': nan,
  'gap': 99.0,
  'horizontalError': 0.45,
  'id': 'uw61170371',
  'latitude': 47.9478333,
  'locationSource': 'uw',
  'longitude': -119.77233329999999,
  'mag': 1.36,
  'magError': 0.11800000000000001,
  'magNst': 7.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 10.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-19T13:09:48.840Z',
  'type': 'other event',
  'updated': '2016-06-20T18:24:50.820Z'},
 {'depth': 26.54,
  'depthError': 0.66,
  'dmin': 0.05675,
  'gap': 164.0,
  'horizontalError': 0.47,
  'id': 'nc72653071',
  'latitude': 40.378666700000004,
  'locationSource': 'nc',
  'longitude': -124.289,
  'mag': 2.01,
  'magError': 0.41,
  'magNst': 19.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 19.0,
  'place': '20km SW of Rio Dell, California',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-19T13:04:40.790Z',
  'type': 'earthquake',
  'updated': '2016-06-21T05:16:01.796Z'},
 {'depth': 5.06,
  'depthError': 0.46,
  'dmin': 0.00877,
  'gap': 86.0,
  'horizontalError': 0.23,
  'id': 'nc72653061',
  'latitude': 36.5013333,
  'locationSource': 'nc',
  'longitude': -121.081,
  'mag': 1.46,
  'magError': 0.192,
  'magNst': 19.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '23km ENE of Soledad, California',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-19T12:27:52.760Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:18:04.248Z'},
 {'depth': 4.32,
  'depthError': 0.49,
  'dmin': 0.009531999999999999,
  'gap': 83.0,
  'horizontalError': 0.28,
  'id': 'nc72653056',
  'latitude': 36.505,
  'locationSource': 'nc',
  'longitude': -121.0875,
  'mag': 1.14,
  'magError': 0.18600000000000003,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 13.0,
  'place': '23km ENE of Soledad, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-19T12:24:56.950Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:56:04.196Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 9.341000000000001,
  'gap': 66.0,
  'horizontalError': 12.1,
  'id': 'us200065dm',
  'latitude': -20.3791,
  'locationSource': 'us',
  'longitude': 168.5712,
  'mag': 4.9,
  'magError': 0.085,
  'magNst': 43.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '117km SW of Isangel, Vanuatu',
  'rms': 1.95,
  'status': 'reviewed',
  'time': '2016-06-19T12:17:54.000Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:13:47.826Z'},
 {'depth': 9.21,
  'depthError': 1.08,
  'dmin': 0.1509,
  'gap': 48.0,
  'horizontalError': 0.28,
  'id': 'ci37391967',
  'latitude': 33.3305,
  'locationSource': 'ci',
  'longitude': -116.17966670000001,
  'mag': 1.09,
  'magError': 0.122,
  'magNst': 31.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 41.0,
  'place': '17km SSW of Oasis, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-19T12:13:16.920Z',
  'type': 'earthquake',
  'updated': '2016-06-21T14:13:14.513Z'},
 {'depth': 10.74,
  'depthError': 0.81,
  'dmin': 0.057,
  'gap': 95.0,
  'horizontalError': 0.58,
  'id': 'mb80156269',
  'latitude': 44.7443333,
  'locationSource': 'mb',
  'longitude': -111.74316670000002,
  'mag': 1.01,
  'magError': 0.138,
  'magNst': 6.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 13.0,
  'place': '51km W of West Yellowstone, Montana',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-19T12:09:08.760Z',
  'type': 'earthquake',
  'updated': '2016-06-19T15:06:50.030Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 9.012,
  'gap': 100.0,
  'horizontalError': 13.3,
  'id': 'us200065dl',
  'latitude': -20.3168,
  'locationSource': 'us',
  'longitude': 168.9164,
  'mag': 4.7,
  'magError': 0.12300000000000001,
  'magNst': 20.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '92km SSW of Isangel, Vanuatu',
  'rms': 0.66,
  'status': 'reviewed',
  'time': '2016-06-19T12:08:40.130Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:10:08.802Z'},
 {'depth': 25.0,
  'depthError': 21.3,
  'dmin': 0.99263839,
  'gap': 284.4,
  'horizontalError': 1.2,
  'id': 'pr16171005',
  'latitude': 19.4375,
  'locationSource': 'pr',
  'longitude': -67.3647,
  'mag': 3.3,
  'magError': 0.0,
  'magNst': 12.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 13.0,
  'place': '108km NNW of San Antonio, Puerto Rico',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-19T11:45:44.100Z',
  'type': 'earthquake',
  'updated': '2016-06-19T12:12:05.778Z'},
 {'depth': 8.0,
  'depthError': 10.0,
  'dmin': 0.90729844,
  'gap': 313.2,
  'horizontalError': 6.8,
  'id': 'pr16171006',
  'latitude': 19.2448,
  'locationSource': 'pr',
  'longitude': -64.7389,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '92km N of Road Town, British Virgin Islands',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-19T11:13:57.900Z',
  'type': 'earthquake',
  'updated': '2016-06-19T15:54:42.175Z'},
 {'depth': 2.23,
  'depthError': 0.55,
  'dmin': 0.07687999999999999,
  'gap': 52.0,
  'horizontalError': 0.27,
  'id': 'ci37391935',
  'latitude': 33.9265,
  'locationSource': 'ci',
  'longitude': -116.0236667,
  'mag': 1.65,
  'magError': 0.125,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 44.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-19T10:34:04.980Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:50:20.840Z'},
 {'depth': 10.0,
  'depthError': 1.5,
  'dmin': 9.33,
  'gap': 84.0,
  'horizontalError': 10.2,
  'id': 'us200065de',
  'latitude': -20.3981,
  'locationSource': 'us',
  'longitude': 168.5879,
  'mag': 4.9,
  'magError': 0.071,
  'magNst': 63.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '117km SW of Isangel, Vanuatu',
  'rms': 1.46,
  'status': 'reviewed',
  'time': '2016-06-19T10:31:51.930Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:05:45.047Z'},
 {'depth': 1.98,
  'depthError': 0.48,
  'dmin': 0.07941000000000001,
  'gap': 52.0,
  'horizontalError': 0.22,
  'id': 'ci37391927',
  'latitude': 33.9235,
  'locationSource': 'ci',
  'longitude': -116.022,
  'mag': 1.82,
  'magError': 0.11,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 49.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T10:26:17.290Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:50:25.930Z'},
 {'depth': 94.0,
  'depthError': 2.8,
  'dmin': 0.87855235,
  'gap': 259.2,
  'horizontalError': 2.5,
  'id': 'pr16171002',
  'latitude': 19.1439,
  'locationSource': 'pr',
  'longitude': -65.7098,
  'mag': 3.2,
  'magError': 0.0,
  'magNst': 11.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 11.0,
  'place': '80km N of Vieques, Puerto Rico',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-19T10:20:03.700Z',
  'type': 'earthquake',
  'updated': '2016-06-19T10:39:38.330Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 9.39,
  'gap': 55.0,
  'horizontalError': 11.5,
  'id': 'us200065m0',
  'latitude': -20.2822,
  'locationSource': 'us',
  'longitude': 168.4902,
  'mag': 5.1,
  'magError': 0.06,
  'magNst': 92.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '114km SW of Isangel, Vanuatu',
  'rms': 1.04,
  'status': 'reviewed',
  'time': '2016-06-19T10:04:26.990Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:59:23.510Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 9.089,
  'gap': 84.0,
  'horizontalError': 10.8,
  'id': 'us200065da',
  'latitude': -20.261,
  'locationSource': 'us',
  'longitude': 168.8158,
  'mag': 4.8,
  'magError': 0.071,
  'magNst': 62.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '91km SSW of Isangel, Vanuatu',
  'rms': 0.62,
  'status': 'reviewed',
  'time': '2016-06-19T10:03:23.830Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:28:55.551Z'},
 {'depth': 10.79,
  'depthError': 0.5,
  'dmin': 0.07149,
  'gap': 78.0,
  'horizontalError': 0.21,
  'id': 'ci37391879',
  'latitude': 33.4658333,
  'locationSource': 'ci',
  'longitude': -116.47666670000001,
  'mag': 1.03,
  'magError': 0.166,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 43.0,
  'place': '21km ESE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T09:58:21.630Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:50:32.670Z'},
 {'depth': 10.24,
  'depthError': 0.38,
  'dmin': 0.07527,
  'gap': 29.0,
  'horizontalError': 0.21,
  'id': 'ci37391871',
  'latitude': 33.4673333,
  'locationSource': 'ci',
  'longitude': -116.486,
  'mag': 1.31,
  'magError': 0.182,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 56.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-19T09:55:18.980Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:51:40.300Z'},
 {'depth': 10.2,
  'depthError': 0.9,
  'dmin': 0.114,
  'gap': 39.92,
  'horizontalError': 0.68,
  'id': 'nn00548526',
  'latitude': 38.353,
  'locationSource': 'nn',
  'longitude': -118.5697,
  'mag': 1.9,
  'magError': 0.25,
  'magNst': 29.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 39.0,
  'place': '19km SSE of Hawthorne, Nevada',
  'rms': 0.1992,
  'status': 'reviewed',
  'time': '2016-06-19T09:48:18.673Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:06:48.474Z'},
 {'depth': 13.0,
  'depthError': 1.9,
  'dmin': 13.944,
  'gap': 67.0,
  'horizontalError': 10.6,
  'id': 'us200065d1',
  'latitude': -20.2987,
  'locationSource': 'us',
  'longitude': 169.08900000000003,
  'mag': 6.3,
  'magError': 0.028999999999999998,
  'magNst': 116.0,
  'magSource': 'us',
  'magType': 'mwc',
  'net': 'us',
  'nst': nan,
  'place': '84km SSW of Isangel, Vanuatu',
  'rms': 1.08,
  'status': 'reviewed',
  'time': '2016-06-19T09:47:23.600Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:46:09.166Z'},
 {'depth': 10.0,
  'depthError': 1.5,
  'dmin': 9.078,
  'gap': 83.0,
  'horizontalError': 9.3,
  'id': 'us200065cw',
  'latitude': -20.0337,
  'locationSource': 'us',
  'longitude': 168.7691,
  'mag': 4.8,
  'magError': 0.057999999999999996,
  'magNst': 92.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '74km SW of Isangel, Vanuatu',
  'rms': 1.08,
  'status': 'reviewed',
  'time': '2016-06-19T09:47:03.620Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:04:36.390Z'},
 {'depth': 1.0,
  'depthError': 0.48,
  'dmin': 0.009423,
  'gap': 94.0,
  'horizontalError': 0.31,
  'id': 'nc72653016',
  'latitude': 38.8288345,
  'locationSource': 'nc',
  'longitude': -122.74383540000001,
  'mag': 1.17,
  'magError': 0.02,
  'magNst': 4.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '1km WNW of Cobb, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-19T09:46:51.840Z',
  'type': 'earthquake',
  'updated': '2016-06-19T10:29:03.347Z'},
 {'depth': -0.16,
  'depthError': 1.29,
  'dmin': 0.2339,
  'gap': 93.0,
  'horizontalError': 0.4,
  'id': 'ci37391847',
  'latitude': 36.1653333,
  'locationSource': 'ci',
  'longitude': -118.02466670000001,
  'mag': 1.01,
  'magError': 0.16699999999999998,
  'magNst': 14.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 10.0,
  'place': '13km S of Olancha, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-19T09:39:42.580Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:49:41.249Z'},
 {'depth': 1.11,
  'depthError': 0.61,
  'dmin': 0.1656,
  'gap': 216.0,
  'horizontalError': 0.49,
  'id': 'ci37391823',
  'latitude': 32.4991667,
  'locationSource': 'ci',
  'longitude': -115.6425,
  'mag': 1.48,
  'magError': 0.149,
  'magNst': 20.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 13.0,
  'place': '10km SSW of Progreso, B.C., MX',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-19T09:22:09.100Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:50:18.402Z'},
 {'depth': 17.7,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13662352',
  'latitude': 61.8991,
  'locationSource': 'ak',
  'longitude': -148.5119,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '21km ENE of Sutton-Alpine, Alaska',
  'rms': 0.58,
  'status': 'automatic',
  'time': '2016-06-19T09:10:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T09:55:13.187Z'},
 {'depth': 2.95,
  'depthError': 0.42,
  'dmin': 0.07816000000000001,
  'gap': 47.0,
  'horizontalError': 0.16,
  'id': 'ci37391791',
  'latitude': 33.924833299999996,
  'locationSource': 'ci',
  'longitude': -116.02216670000001,
  'mag': 1.64,
  'magError': 0.132,
  'magNst': 46.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 50.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-19T09:05:35.770Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:50:22.769Z'},
 {'depth': 14.43,
  'depthError': 0.27,
  'dmin': 0.05454,
  'gap': 81.0,
  'horizontalError': 0.18,
  'id': 'ci37391775',
  'latitude': 33.4861667,
  'locationSource': 'ci',
  'longitude': -116.4735,
  'mag': 1.09,
  'magError': 0.091,
  'magNst': 20.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 34.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-19T08:47:44.780Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:41:33.956Z'},
 {'depth': 11.04,
  'depthError': 0.64,
  'dmin': 0.059000000000000004,
  'gap': 69.0,
  'horizontalError': 0.41,
  'id': 'mb80156249',
  'latitude': 44.741833299999996,
  'locationSource': 'mb',
  'longitude': -111.74716670000001,
  'mag': 1.1,
  'magError': 0.16399999999999998,
  'magNst': 3.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 14.0,
  'place': '51km W of West Yellowstone, Montana',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-19T08:35:27.200Z',
  'type': 'earthquake',
  'updated': '2016-06-19T14:15:30.800Z'},
 {'depth': 39.486999999999995,
  'depthError': 1.25,
  'dmin': 0.03953,
  'gap': 225.0,
  'horizontalError': 1.09,
  'id': 'hv61302756',
  'latitude': 19.2473333,
  'locationSource': 'hv',
  'longitude': -155.1188333,
  'mag': 1.8,
  'magError': 0.092,
  'magNst': 15.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 32.0,
  'place': '23km SSE of Volcano, Hawaii',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-19T08:34:57.610Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:49:05.290Z'},
 {'depth': 13.0,
  'depthError': 6.8,
  'dmin': 0.50485319,
  'gap': 316.8,
  'horizontalError': 5.0,
  'id': 'pr16171004',
  'latitude': 18.9013,
  'locationSource': 'pr',
  'longitude': -64.4555,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 5.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 5.0,
  'place': '56km NNE of Road Town, British Virgin Islands',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-19T08:06:42.100Z',
  'type': 'earthquake',
  'updated': '2016-06-19T12:10:33.093Z'},
 {'depth': 81.4,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13662349',
  'latitude': 62.843999999999994,
  'locationSource': 'ak',
  'longitude': -149.8158,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '59km NNE of Talkeetna, Alaska',
  'rms': 0.99,
  'status': 'automatic',
  'time': '2016-06-19T07:42:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T08:18:29.488Z'},
 {'depth': 12.32,
  'depthError': 0.78,
  'dmin': 0.07639,
  'gap': 133.0,
  'horizontalError': 0.54,
  'id': 'ci37391759',
  'latitude': 32.8358333,
  'locationSource': 'ci',
  'longitude': -115.6075,
  'mag': 1.34,
  'magError': 0.217,
  'magNst': 10.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 13.0,
  'place': '4km WSW of Imperial, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-19T07:40:00.250Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:33:28.212Z'},
 {'depth': 7.73,
  'depthError': 0.99,
  'dmin': 0.07336000000000001,
  'gap': 67.0,
  'horizontalError': 0.31,
  'id': 'ci37391743',
  'latitude': 34.3106667,
  'locationSource': 'ci',
  'longitude': -116.9875,
  'mag': 1.05,
  'magError': 0.187,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 24.0,
  'place': '10km NW of Big Bear Lake, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-19T07:23:34.300Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:51:00.837Z'},
 {'depth': 16.0,
  'depthError': 0.8,
  'dmin': 0.05659386,
  'gap': 111.6,
  'horizontalError': 0.4,
  'id': 'pr16171003',
  'latitude': 18.148,
  'locationSource': 'pr',
  'longitude': -67.0337,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 5.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 5.0,
  'place': '6km WSW of Maricao, Puerto Rico',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-19T07:15:55.400Z',
  'type': 'earthquake',
  'updated': '2016-06-19T12:09:37.905Z'},
 {'depth': 3.07,
  'depthError': 1.7,
  'dmin': 0.0598,
  'gap': 96.0,
  'horizontalError': 0.26,
  'id': 'nc72652996',
  'latitude': 37.420333299999996,
  'locationSource': 'nc',
  'longitude': -121.434,
  'mag': 1.04,
  'magError': 0.096,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '27km WSW of Patterson, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-19T07:11:41.600Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:22:04.108Z'},
 {'depth': 22.1,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13661993',
  'latitude': 61.6701,
  'locationSource': 'ak',
  'longitude': -149.6175,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '5km N of Meadow Lakes, Alaska',
  'rms': 0.82,
  'status': 'automatic',
  'time': '2016-06-19T07:08:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T07:48:23.570Z'},
 {'depth': 2.9,
  'depthError': 0.41,
  'dmin': 0.08123,
  'gap': 48.0,
  'horizontalError': 0.17,
  'id': 'ci37391727',
  'latitude': 33.921833299999996,
  'locationSource': 'ci',
  'longitude': -116.023,
  'mag': 2.62,
  'magError': 0.09300000000000001,
  'magNst': 79.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 56.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-19T07:03:38.930Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:17:51.253Z'},
 {'depth': 2.95,
  'depthError': 0.36,
  'dmin': 0.07766,
  'gap': 47.0,
  'horizontalError': 0.13,
  'id': 'ci37391719',
  'latitude': 33.9255,
  'locationSource': 'ci',
  'longitude': -116.02283329999999,
  'mag': 2.66,
  'magError': 0.135,
  'magNst': 124.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 59.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-19T07:03:10.740Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:09:23.183Z'},
 {'depth': 2.52,
  'depthError': 0.42,
  'dmin': 0.07971,
  'gap': 52.0,
  'horizontalError': 0.22,
  'id': 'ci37391711',
  'latitude': 33.923333299999996,
  'locationSource': 'ci',
  'longitude': -116.02266670000002,
  'mag': 1.64,
  'magError': 0.111,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 42.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T07:01:26.520Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:53:26.586Z'},
 {'depth': 3.23,
  'depthError': 0.91,
  'dmin': 0.07743,
  'gap': 85.0,
  'horizontalError': 0.32,
  'id': 'ci37391703',
  'latitude': 33.9251667,
  'locationSource': 'ci',
  'longitude': -116.02016670000002,
  'mag': 1.05,
  'magError': 0.102,
  'magNst': 15.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '24km SSE of Twentynine Palms, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-19T06:55:46.950Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:24:51.955Z'},
 {'depth': 172.02,
  'depthError': 6.3,
  'dmin': 0.9129999999999999,
  'gap': 104.0,
  'horizontalError': 6.0,
  'id': 'us200065ce',
  'latitude': -16.7038,
  'locationSource': 'us',
  'longitude': -69.7313,
  'mag': 4.6,
  'magError': 0.073,
  'magNst': 55.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '61km SSW of Juli, Peru',
  'rms': 0.89,
  'status': 'reviewed',
  'time': '2016-06-19T06:33:13.690Z',
  'type': 'earthquake',
  'updated': '2016-06-19T07:09:15.730Z'},
 {'depth': -0.33,
  'depthError': 0.73,
  'dmin': 0.06121,
  'gap': 102.0,
  'horizontalError': 0.48,
  'id': 'ci37391687',
  'latitude': 34.3606667,
  'locationSource': 'ci',
  'longitude': -119.88133329999998,
  'mag': 1.75,
  'magError': 0.13699999999999998,
  'magNst': 19.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 23.0,
  'place': '6km SSW of Isla Vista, CA',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-19T06:30:56.640Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:16:17.244Z'},
 {'depth': 9.09,
  'depthError': 1.12,
  'dmin': 0.06867999999999999,
  'gap': 104.0,
  'horizontalError': 0.36,
  'id': 'nc72652981',
  'latitude': 37.414,
  'locationSource': 'nc',
  'longitude': -118.523,
  'mag': 1.24,
  'magError': 0.47100000000000003,
  'magNst': 13.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 13.0,
  'place': '8km NW of West Bishop, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-19T06:01:58.680Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:03:03.684Z'},
 {'depth': 16.8,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13661987',
  'latitude': 64.792,
  'locationSource': 'ak',
  'longitude': -148.9872,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '24km NNE of North Nenana, Alaska',
  'rms': 0.42,
  'status': 'automatic',
  'time': '2016-06-19T05:57:11.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T06:40:16.255Z'},
 {'depth': 2.96,
  'depthError': 3.4,
  'dmin': 0.391,
  'gap': 83.0,
  'horizontalError': 3.5,
  'id': 'us200065cb',
  'latitude': 36.9571,
  'locationSource': 'us',
  'longitude': -104.8443,
  'mag': 2.9,
  'magError': 0.066,
  'magNst': 42.0,
  'magSource': 'us',
  'magType': 'ml',
  'net': 'us',
  'nst': nan,
  'place': '36km W of Raton, New Mexico',
  'rms': 0.26,
  'status': 'reviewed',
  'time': '2016-06-19T05:46:10.440Z',
  'type': 'earthquake',
  'updated': '2016-06-19T06:40:36.190Z'},
 {'depth': 3.15,
  'depthError': 1.05,
  'dmin': 0.07762000000000001,
  'gap': 52.0,
  'horizontalError': 0.32,
  'id': 'ci37391655',
  'latitude': 33.9255,
  'locationSource': 'ci',
  'longitude': -116.02266670000002,
  'mag': 1.44,
  'magError': 0.132,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-19T05:43:28.370Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:52:07.780Z'},
 {'depth': 0.0,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13661985',
  'latitude': 63.5245,
  'locationSource': 'ak',
  'longitude': -147.0869,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '87km SW of Delta Junction, Alaska',
  'rms': 0.7,
  'status': 'automatic',
  'time': '2016-06-19T05:34:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T06:06:41.468Z'},
 {'depth': 4.34,
  'depthError': 0.88,
  'dmin': 0.07733999999999999,
  'gap': 114.0,
  'horizontalError': 0.42,
  'id': 'ci37391647',
  'latitude': 33.9258333,
  'locationSource': 'ci',
  'longitude': -116.02283329999999,
  'mag': 1.0,
  'magError': 0.084,
  'magNst': 15.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 17.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T05:33:50.400Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:52:05.624Z'},
 {'depth': 2.84,
  'depthError': 0.51,
  'dmin': 0.07998999999999999,
  'gap': 47.0,
  'horizontalError': 0.21,
  'id': 'ci37391631',
  'latitude': 33.9235,
  'locationSource': 'ci',
  'longitude': -116.02466670000001,
  'mag': 1.82,
  'magError': 0.151,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 44.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T05:15:44.880Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:53:12.610Z'},
 {'depth': 10.09,
  'depthError': 0.23,
  'dmin': 0.07544,
  'gap': 22.0,
  'horizontalError': 0.11,
  'id': 'ci37391623',
  'latitude': 33.464833299999995,
  'locationSource': 'ci',
  'longitude': -116.48283329999998,
  'mag': 1.88,
  'magError': 0.18899999999999997,
  'magNst': 79.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 85.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-19T05:10:50.040Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:08:25.593Z'},
 {'depth': 24.34,
  'depthError': 0.64,
  'dmin': 0.08853,
  'gap': 88.0,
  'horizontalError': 0.45,
  'id': 'nc72652971',
  'latitude': 40.9028333,
  'locationSource': 'nc',
  'longitude': -123.62183329999999,
  'mag': 2.21,
  'magError': 0.215,
  'magNst': 19.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '4km S of Willow Creek, California',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-19T05:05:25.180Z',
  'type': 'earthquake',
  'updated': '2016-06-21T05:01:02.761Z'},
 {'depth': 26.01,
  'depthError': 4.3,
  'dmin': 1.23,
  'gap': 48.0,
  'horizontalError': 6.3,
  'id': 'us200065c7',
  'latitude': 1.0081,
  'locationSource': 'us',
  'longitude': 126.1584,
  'mag': 5.2,
  'magError': 0.046,
  'magNst': 156.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '118km ESE of Bitung, Indonesia',
  'rms': 1.18,
  'status': 'reviewed',
  'time': '2016-06-19T05:00:11.660Z',
  'type': 'earthquake',
  'updated': '2016-06-19T05:21:34.337Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': 0.945,
  'gap': 95.13,
  'horizontalError': 7.05,
  'id': 'nn00548522',
  'latitude': 39.582,
  'locationSource': 'nn',
  'longitude': -115.8309,
  'mag': 1.7,
  'magError': 0.24,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '13km NE of Eureka, Nevada',
  'rms': 0.3146,
  'status': 'reviewed',
  'time': '2016-06-19T04:36:30.367Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:06:54.752Z'},
 {'depth': 1.77,
  'depthError': 0.41,
  'dmin': 0.005734,
  'gap': 75.0,
  'horizontalError': 0.23,
  'id': 'nc72652966',
  'latitude': 38.83900070000001,
  'locationSource': 'nc',
  'longitude': -122.82816310000001,
  'mag': 1.03,
  'magError': 0.11,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 16.0,
  'place': '9km WNW of Cobb, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-19T04:34:09.030Z',
  'type': 'earthquake',
  'updated': '2016-06-19T05:33:04.516Z'},
 {'depth': 12.75,
  'depthError': 0.75,
  'dmin': 0.07017000000000001,
  'gap': 60.0,
  'horizontalError': 0.34,
  'id': 'nc72652961',
  'latitude': 37.4243333,
  'locationSource': 'nc',
  'longitude': -118.51683329999999,
  'mag': 1.8,
  'magError': 0.149,
  'magNst': 22.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 27.0,
  'place': '8km NW of West Bishop, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-19T04:22:54.220Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:11:03.415Z'},
 {'depth': 11.14,
  'depthError': 1.04,
  'dmin': 0.07044,
  'gap': 138.0,
  'horizontalError': 0.36,
  'id': 'nc72652956',
  'latitude': 37.4265,
  'locationSource': 'nc',
  'longitude': -118.51733329999999,
  'mag': 1.69,
  'magError': 0.294,
  'magNst': 10.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 8.0,
  'place': '9km NW of West Bishop, California',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-19T04:21:51.030Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:20:04.103Z'},
 {'depth': 14.0,
  'depthError': 2.6,
  'dmin': 0.141,
  'gap': 140.89,
  'horizontalError': 2.23,
  'id': 'nn00548561',
  'latitude': 37.4161,
  'locationSource': 'nn',
  'longitude': -118.5263,
  'mag': 1.7,
  'magError': 0.73,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 10.0,
  'place': '8km NW of West Bishop, California',
  'rms': 0.0947,
  'status': 'reviewed',
  'time': '2016-06-19T04:21:50.705Z',
  'type': 'earthquake',
  'updated': '2016-06-20T03:08:26.496Z'},
 {'depth': 3.76,
  'depthError': 2.41,
  'dmin': 0.039310000000000005,
  'gap': 86.0,
  'horizontalError': 0.82,
  'id': 'nc72652951',
  'latitude': 37.6111667,
  'locationSource': 'nc',
  'longitude': -122.43766670000001,
  'mag': 1.0,
  'magError': 0.159,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '3km SW of San Bruno, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-19T04:11:58.170Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:33:03.639Z'},
 {'depth': 7.42,
  'depthError': 0.47,
  'dmin': 0.04541,
  'gap': 26.0,
  'horizontalError': 0.17,
  'id': 'ci37391591',
  'latitude': 33.5875,
  'locationSource': 'ci',
  'longitude': -116.818,
  'mag': 1.85,
  'magError': 0.16399999999999998,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 66.0,
  'place': '14km WNW of Anza, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-19T03:39:11.980Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:53:17.690Z'},
 {'depth': 70.9,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13661276',
  'latitude': 61.6538,
  'locationSource': 'ak',
  'longitude': -151.3477,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '70km W of Willow, Alaska',
  'rms': 0.51,
  'status': 'automatic',
  'time': '2016-06-19T03:30:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T04:21:30.817Z'},
 {'depth': 77.0,
  'depthError': 13.2,
  'dmin': 0.90999338,
  'gap': 313.2,
  'horizontalError': 9.7,
  'id': 'pr16171001',
  'latitude': 19.3038,
  'locationSource': 'pr',
  'longitude': -64.3797,
  'mag': 3.3,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 8.0,
  'place': '101km NNE of Road Town, British Virgin Islands',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-19T03:17:22.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T08:06:44.953Z'},
 {'depth': 6.86,
  'depthError': 2.46,
  'dmin': nan,
  'gap': 133.0,
  'horizontalError': 1.38,
  'id': 'uw61170321',
  'latitude': 44.341666700000005,
  'locationSource': 'uw',
  'longitude': -122.36200000000001,
  'mag': 1.27,
  'magError': 0.141,
  'magNst': 3.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 6.0,
  'place': '30km ESE of Sweet Home, Oregon',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-19T03:05:10.130Z',
  'type': 'other event',
  'updated': '2016-06-20T18:21:06.840Z'},
 {'depth': 10.0,
  'depthError': 1.7,
  'dmin': 4.756,
  'gap': 88.0,
  'horizontalError': 7.7,
  'id': 'us200065bu',
  'latitude': 42.0752,
  'locationSource': 'us',
  'longitude': 81.3044,
  'mag': 4.4,
  'magError': 0.114,
  'magNst': 22.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '136km NE of Aksu, China',
  'rms': 0.67,
  'status': 'reviewed',
  'time': '2016-06-19T03:05:09.850Z',
  'type': 'earthquake',
  'updated': '2016-06-19T03:39:51.479Z'},
 {'depth': 123.9,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13661269',
  'latitude': 59.9464,
  'locationSource': 'ak',
  'longitude': -152.9074,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km S of Redoubt Volcano, Alaska',
  'rms': 0.3,
  'status': 'automatic',
  'time': '2016-06-19T02:08:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T02:38:56.513Z'},
 {'depth': 2.9,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13661266',
  'latitude': 61.3099,
  'locationSource': 'ak',
  'longitude': -152.4963,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '92km N of Redoubt Volcano, Alaska',
  'rms': 0.59,
  'status': 'automatic',
  'time': '2016-06-19T02:06:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T02:38:58.012Z'},
 {'depth': 3.6,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13661265',
  'latitude': 61.3129,
  'locationSource': 'ak',
  'longitude': -152.491,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '93km N of Redoubt Volcano, Alaska',
  'rms': 0.76,
  'status': 'automatic',
  'time': '2016-06-19T02:04:57.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T02:38:57.395Z'},
 {'depth': 11.67,
  'depthError': 1.29,
  'dmin': 0.035769999999999996,
  'gap': 99.0,
  'horizontalError': 0.52,
  'id': 'uw61170291',
  'latitude': 47.9493333,
  'locationSource': 'uw',
  'longitude': -119.76983329999999,
  'mag': 1.1,
  'magError': 0.076,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 7.0,
  'place': '9km SW of Bridgeport, Washington',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-19T01:42:05.840Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:53:44.960Z'},
 {'depth': 5.0,
  'depthError': 2.0,
  'dmin': 0.161,
  'gap': 51.0,
  'horizontalError': 1.7,
  'id': 'us200065bi',
  'latitude': 36.5594,
  'locationSource': 'us',
  'longitude': -98.4973,
  'mag': 3.2,
  'magError': 0.078,
  'magNst': 43.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '20km W of Helena, Oklahoma',
  'rms': 0.39,
  'status': 'reviewed',
  'time': '2016-06-19T01:34:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T01:44:59.171Z'},
 {'depth': 101.23,
  'depthError': 11.1,
  'dmin': 5.335,
  'gap': 100.0,
  'horizontalError': 7.2,
  'id': 'us200065bh',
  'latitude': -7.2148,
  'locationSource': 'us',
  'longitude': 129.0335,
  'mag': 4.4,
  'magError': 0.139,
  'magNst': 15.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '264km WNW of Saumlaki, Indonesia',
  'rms': 1.09,
  'status': 'reviewed',
  'time': '2016-06-19T01:27:42.220Z',
  'type': 'earthquake',
  'updated': '2016-06-19T01:49:08.955Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 10.765,
  'gap': 68.0,
  'horizontalError': 10.6,
  'id': 'us200065bg',
  'latitude': -31.9009,
  'locationSource': 'us',
  'longitude': 57.2,
  'mag': 5.3,
  'magError': 0.063,
  'magNst': 85.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Southwest Indian Ridge',
  'rms': 0.74,
  'status': 'reviewed',
  'time': '2016-06-19T01:16:11.240Z',
  'type': 'earthquake',
  'updated': '2016-06-19T01:35:45.326Z'},
 {'depth': 20.0,
  'depthError': 18.7,
  'dmin': 0.89382371,
  'gap': 298.8,
  'horizontalError': 1.9,
  'id': 'pr16171000',
  'latitude': 19.2031,
  'locationSource': 'pr',
  'longitude': -65.373,
  'mag': 2.5,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '98km NNE of Luquillo, Puerto Rico',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-19T01:13:46.800Z',
  'type': 'earthquake',
  'updated': '2016-06-19T03:19:44.521Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 3.5860000000000003,
  'gap': 51.0,
  'horizontalError': 9.8,
  'id': 'us200065bf',
  'latitude': -5.6736,
  'locationSource': 'us',
  'longitude': -11.5433,
  'mag': 4.9,
  'magError': 0.081,
  'magNst': 48.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Ascension Island region',
  'rms': 0.91,
  'status': 'reviewed',
  'time': '2016-06-19T01:12:13.220Z',
  'type': 'earthquake',
  'updated': '2016-06-19T01:29:48.658Z'},
 {'depth': 12.63,
  'depthError': 0.51,
  'dmin': 0.1081,
  'gap': 29.0,
  'horizontalError': 0.2,
  'id': 'ci37391543',
  'latitude': 33.4031667,
  'locationSource': 'ci',
  'longitude': -116.44783329999999,
  'mag': 1.68,
  'magError': 0.175,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 63.0,
  'place': '18km NNW of Borrego Springs, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-19T00:50:23.280Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:53:25.090Z'},
 {'depth': 2.89,
  'depthError': 1.25,
  'dmin': 0.0971,
  'gap': 134.0,
  'horizontalError': 0.6,
  'id': 'ci37391535',
  'latitude': 37.0861667,
  'locationSource': 'ci',
  'longitude': -117.412,
  'mag': 1.12,
  'magError': 0.168,
  'magNst': 7.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 11.0,
  'place': '59km NNW of Stovepipe Wells, CA',
  'rms': 0.26,
  'status': 'reviewed',
  'time': '2016-06-19T00:46:26.670Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:31:27.801Z'},
 {'depth': 3.51,
  'depthError': 1.09,
  'dmin': 0.08152999999999999,
  'gap': 81.0,
  'horizontalError': 0.33,
  'id': 'ci37391527',
  'latitude': 34.7011667,
  'locationSource': 'ci',
  'longitude': -116.24783329999998,
  'mag': 1.41,
  'magError': 0.193,
  'magNst': 21.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 11.0,
  'place': '8km WSW of Ludlow, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-19T00:38:31.880Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:52:54.609Z'},
 {'depth': 9.29,
  'depthError': 0.39,
  'dmin': 0.05455,
  'gap': 69.0,
  'horizontalError': 0.19,
  'id': 'ci37391519',
  'latitude': 33.4776667,
  'locationSource': 'ci',
  'longitude': -116.54016670000001,
  'mag': 1.33,
  'magError': 0.156,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 51.0,
  'place': '15km SE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-19T00:32:40.400Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:54:30.520Z'},
 {'depth': 0.3,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13660911',
  'latitude': 60.1449,
  'locationSource': 'ak',
  'longitude': -141.3734,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '59km E of Cape Yakataga, Alaska',
  'rms': 0.77,
  'status': 'automatic',
  'time': '2016-06-19T00:30:51.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T00:59:21.989Z'},
 {'depth': 7.64,
  'depthError': 0.57,
  'dmin': 0.03112,
  'gap': 56.0,
  'horizontalError': 0.34,
  'id': 'ci37391511',
  'latitude': 34.471166700000005,
  'locationSource': 'ci',
  'longitude': -117.98183329999999,
  'mag': 1.02,
  'magError': 0.225,
  'magNst': 29.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '6km S of Littlerock, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-19T00:22:34.510Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:53:05.250Z'},
 {'depth': 3.38,
  'depthError': 2.13,
  'dmin': 0.2094,
  'gap': 71.0,
  'horizontalError': 0.32,
  'id': 'uw61170166',
  'latitude': 48.3,
  'locationSource': 'uw',
  'longitude': -121.86683329999998,
  'mag': 2.29,
  'magError': 0.14400000000000002,
  'magNst': 46.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 17.0,
  'place': '18km NE of Arlington Heights, Washington',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-18T23:54:35.530Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:52:40.931Z'},
 {'depth': 59.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13660896',
  'latitude': 59.5944,
  'locationSource': 'ak',
  'longitude': -152.2854,
  'mag': 3.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '32km SW of Anchor Point, Alaska',
  'rms': 0.69,
  'status': 'automatic',
  'time': '2016-06-18T23:22:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T00:23:25.907Z'},
 {'depth': 0.0,
  'depthError': 30.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13660894',
  'latitude': 64.9819,
  'locationSource': 'ak',
  'longitude': -147.3346,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '22km NNE of Badger, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-18T23:07:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T23:45:05.729Z'},
 {'depth': 19.07,
  'depthError': 0.54,
  'dmin': 0.1367,
  'gap': 269.0,
  'horizontalError': 1.85,
  'id': 'nc72652896',
  'latitude': 40.2996674,
  'locationSource': 'nc',
  'longitude': -124.4606705,
  'mag': 2.25,
  'magError': 0.12,
  'magNst': 6.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 15.0,
  'place': '34km SSW of Ferndale, California',
  'rms': 0.11,
  'status': 'automatic',
  'time': '2016-06-18T23:02:48.690Z',
  'type': 'earthquake',
  'updated': '2016-06-19T00:27:05.719Z'},
 {'depth': 196.97,
  'depthError': 8.8,
  'dmin': 5.796,
  'gap': 59.0,
  'horizontalError': 12.2,
  'id': 'us200065aw',
  'latitude': -15.6537,
  'locationSource': 'us',
  'longitude': 168.1264,
  'mag': 4.8,
  'magError': 0.086,
  'magNst': 42.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '91km ENE of Norsup, Vanuatu',
  'rms': 0.92,
  'status': 'reviewed',
  'time': '2016-06-18T22:34:00.950Z',
  'type': 'earthquake',
  'updated': '2016-06-18T22:53:14.951Z'},
 {'depth': 2.08,
  'depthError': 0.15,
  'dmin': 0.003939,
  'gap': 57.0,
  'horizontalError': 0.11,
  'id': 'nc72652886',
  'latitude': 38.834,
  'locationSource': 'nc',
  'longitude': -122.77216670000001,
  'mag': 1.21,
  'magError': 0.171,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 44.0,
  'place': '4km WNW of Cobb, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-18T22:33:06.120Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:33:07.489Z'},
 {'depth': 7.84,
  'depthError': 0.69,
  'dmin': 0.09502000000000001,
  'gap': 134.0,
  'horizontalError': 0.28,
  'id': 'nc72652871',
  'latitude': 38.7213333,
  'locationSource': 'nc',
  'longitude': -122.35883329999999,
  'mag': 1.24,
  'magError': 0.203,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '18km NNE of Angwin, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-18T21:44:21.930Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:07:04.224Z'},
 {'depth': 73.0,
  'depthError': 1.8,
  'dmin': 0.74560169,
  'gap': 324.0,
  'horizontalError': 1.4,
  'id': 'pr16170006',
  'latitude': 17.9993,
  'locationSource': 'pr',
  'longitude': -68.1536,
  'mag': 3.2,
  'magError': 0.0,
  'magNst': 8.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 14.0,
  'place': '63km SE of Boca de Yuma, Dominican Republic',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-18T21:41:24.300Z',
  'type': 'earthquake',
  'updated': '2016-06-18T23:54:54.192Z'},
 {'depth': 7.4,
  'depthError': 0.74,
  'dmin': 0.2026,
  'gap': 110.0,
  'horizontalError': 0.38,
  'id': 'nc72652861',
  'latitude': 35.9816667,
  'locationSource': 'nc',
  'longitude': -119.75416670000001,
  'mag': 2.17,
  'magError': 0.183,
  'magNst': 50.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 68.0,
  'place': '18km E of Kettleman City, California',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-18T21:34:28.520Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:34:03.492Z'},
 {'depth': 5.33,
  'depthError': 6.0,
  'dmin': 0.043,
  'gap': 40.0,
  'horizontalError': 3.0,
  'id': 'us200065as',
  'latitude': 35.5543,
  'locationSource': 'us',
  'longitude': -97.11399999999999,
  'mag': 3.2,
  'magError': 0.054000000000000006,
  'magNst': 88.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '8km NNE of Harrah, Oklahoma',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-18T21:33:15.820Z',
  'type': 'earthquake',
  'updated': '2016-06-18T21:45:15.812Z'},
 {'depth': 11.24,
  'depthError': 0.87,
  'dmin': 0.0845,
  'gap': 127.0,
  'horizontalError': 0.37,
  'id': 'nc72652856',
  'latitude': 38.7125,
  'locationSource': 'nc',
  'longitude': -122.36616670000001,
  'mag': 1.63,
  'magError': 0.379,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 21.0,
  'place': '16km NNE of Angwin, California',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-18T21:30:11.160Z',
  'type': 'earthquake',
  'updated': '2016-06-21T02:53:03.584Z'},
 {'depth': 36.251999999999995,
  'depthError': 1.03,
  'dmin': 0.1235,
  'gap': 170.0,
  'horizontalError': 0.77,
  'id': 'hv61302256',
  'latitude': 19.807833300000002,
  'locationSource': 'hv',
  'longitude': -155.81916669999998,
  'mag': 1.96,
  'magError': 0.063,
  'magNst': 11.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 20.0,
  'place': '13km S of Waikoloa Village, Hawaii',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-18T21:19:49.580Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:23:16.860Z'},
 {'depth': 47.31,
  'depthError': 6.3,
  'dmin': 1.9809999999999999,
  'gap': 119.0,
  'horizontalError': 7.4,
  'id': 'us200065ap',
  'latitude': -3.3746,
  'locationSource': 'us',
  'longitude': 101.2296,
  'mag': 5.5,
  'magError': 0.048,
  'magNst': 149.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '124km WNW of Bengkulu, Indonesia',
  'rms': 0.83,
  'status': 'reviewed',
  'time': '2016-06-18T21:15:51.930Z',
  'type': 'earthquake',
  'updated': '2016-06-19T01:56:32.000Z'},
 {'depth': -0.53,
  'depthError': 31.61,
  'dmin': 0.5778,
  'gap': 202.0,
  'horizontalError': 2.1,
  'id': 'uw61170106',
  'latitude': 49.3733333,
  'locationSource': 'uw',
  'longitude': -120.49583329999999,
  'mag': 1.74,
  'magError': 0.17800000000000002,
  'magNst': 3.0,
  'magSource': 'uw',
  'magType': 'md',
  'net': 'uw',
  'nst': 8.0,
  'place': '9km S of Princeton, Canada',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-18T21:11:48.050Z',
  'type': 'explosion',
  'updated': '2016-06-20T17:40:03.660Z'},
 {'depth': 440.92,
  'depthError': 10.3,
  'dmin': 2.912,
  'gap': 97.0,
  'horizontalError': 11.0,
  'id': 'us200065ax',
  'latitude': 30.4807,
  'locationSource': 'us',
  'longitude': 138.3348,
  'mag': 4.1,
  'magError': 0.114,
  'magNst': 21.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Izu Islands, Japan region',
  'rms': 1.06,
  'status': 'reviewed',
  'time': '2016-06-18T20:43:14.870Z',
  'type': 'earthquake',
  'updated': '2016-06-18T23:15:54.925Z'},
 {'depth': 35.19,
  'depthError': 6.3,
  'dmin': 1.18,
  'gap': 85.0,
  'horizontalError': 8.5,
  'id': 'us200065al',
  'latitude': -20.4707,
  'locationSource': 'us',
  'longitude': 168.6937,
  'mag': 5.0,
  'magError': 0.07200000000000001,
  'magNst': 62.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '118km SSW of Isangel, Vanuatu',
  'rms': 1.08,
  'status': 'reviewed',
  'time': '2016-06-18T20:38:08.810Z',
  'type': 'earthquake',
  'updated': '2016-06-18T22:55:08.998Z'},
 {'depth': 14.93,
  'depthError': 5.8,
  'dmin': 1.85,
  'gap': 171.0,
  'horizontalError': 5.0,
  'id': 'us200065af',
  'latitude': -52.3223,
  'locationSource': 'us',
  'longitude': -75.3086,
  'mag': 4.4,
  'magError': 0.14400000000000002,
  'magNst': 14.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '204km WSW of Puerto Natales, Chile',
  'rms': 0.8,
  'status': 'reviewed',
  'time': '2016-06-18T20:31:02.780Z',
  'type': 'earthquake',
  'updated': '2016-06-18T22:30:50.505Z'},
 {'depth': 3.892,
  'depthError': 0.64,
  'dmin': 0.01524,
  'gap': 143.0,
  'horizontalError': 0.54,
  'id': 'hv61302226',
  'latitude': 19.418,
  'locationSource': 'hv',
  'longitude': -155.6261667,
  'mag': 1.46,
  'magError': 0.19399999999999998,
  'magNst': 3.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 8.0,
  'place': '25km E of Honaunau-Napoopoo, Hawaii',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-18T20:27:53.170Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:30:10.240Z'},
 {'depth': 134.23,
  'depthError': 8.0,
  'dmin': 2.011,
  'gap': 74.0,
  'horizontalError': 8.0,
  'id': 'us200065aa',
  'latitude': -6.0974,
  'locationSource': 'us',
  'longitude': 130.5612,
  'mag': 4.4,
  'magError': 0.095,
  'magNst': 32.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '221km NNW of Saumlaki, Indonesia',
  'rms': 0.87,
  'status': 'reviewed',
  'time': '2016-06-18T20:02:29.770Z',
  'type': 'earthquake',
  'updated': '2016-06-18T21:18:34.978Z'},
 {'depth': 3.73,
  'depthError': 0.39,
  'dmin': 0.0074930000000000005,
  'gap': 75.0,
  'horizontalError': 0.26,
  'id': 'nc72652796',
  'latitude': 38.816166700000004,
  'locationSource': 'nc',
  'longitude': -122.8075,
  'mag': 1.04,
  'magError': 0.071,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 38.0,
  'place': '6km NW of The Geysers, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-18T19:45:19.880Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:00:04.382Z'},
 {'depth': 12.25,
  'depthError': 0.33,
  'dmin': 0.01637,
  'gap': 27.0,
  'horizontalError': 0.17,
  'id': 'ci37391311',
  'latitude': 33.5803333,
  'locationSource': 'ci',
  'longitude': -116.72916670000001,
  'mag': 1.39,
  'magError': 0.21600000000000003,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 49.0,
  'place': '6km WNW of Anza, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-18T19:29:26.760Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:54:43.790Z'},
 {'depth': 64.5,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13659885',
  'latitude': 60.8166,
  'locationSource': 'ak',
  'longitude': -151.1686,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '15km NNE of Nikiski, Alaska',
  'rms': 0.65,
  'status': 'automatic',
  'time': '2016-06-18T19:26:04.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T19:57:15.635Z'},
 {'depth': 7.25,
  'depthError': 0.49,
  'dmin': 0.029330000000000002,
  'gap': 109.0,
  'horizontalError': 0.3,
  'id': 'nc72652781',
  'latitude': 38.5681667,
  'locationSource': 'nc',
  'longitude': -122.6935,
  'mag': 1.18,
  'magError': 0.23800000000000002,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '7km NE of Larkfield-Wikiup, California',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-18T19:18:53.620Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:44:03.162Z'},
 {'depth': -0.72,
  'depthError': 31.61,
  'dmin': 0.09639,
  'gap': 267.0,
  'horizontalError': 1.51,
  'id': 'uw61170061',
  'latitude': 45.8795,
  'locationSource': 'uw',
  'longitude': -122.304,
  'mag': 1.22,
  'magError': 0.133,
  'magNst': 9.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 6.0,
  'place': '8km E of Yacolt, Washington',
  'rms': 0.29,
  'status': 'reviewed',
  'time': '2016-06-18T19:08:03.900Z',
  'type': 'explosion',
  'updated': '2016-06-20T17:29:09.490Z'},
 {'depth': 2.86,
  'depthError': 0.9,
  'dmin': 0.09351,
  'gap': 43.0,
  'horizontalError': 0.28,
  'id': 'ci37391215',
  'latitude': 34.2783333,
  'locationSource': 'ci',
  'longitude': -117.03200000000001,
  'mag': 1.25,
  'magError': 0.19699999999999998,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 45.0,
  'place': '11km NE of Running Springs, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-18T18:29:49.790Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:55:48.770Z'},
 {'depth': 8.4,
  'depthError': 6.4,
  'dmin': 0.34,
  'gap': 149.24,
  'horizontalError': 5.69,
  'id': 'nn00548492',
  'latitude': 38.8607,
  'locationSource': 'nn',
  'longitude': -116.7463,
  'mag': 1.9,
  'magError': 0.0,
  'magNst': 1.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 9.0,
  'place': '75km SSE of Austin, Nevada',
  'rms': 0.1916,
  'status': 'reviewed',
  'time': '2016-06-18T18:28:33.039Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:51:18.908Z'},
 {'depth': 22.02,
  'depthError': 0.35,
  'dmin': 0.1274,
  'gap': 68.0,
  'horizontalError': 0.25,
  'id': 'nc72652741',
  'latitude': 40.5755,
  'locationSource': 'nc',
  'longitude': -123.682,
  'mag': 1.69,
  'magError': 0.13699999999999998,
  'magNst': 15.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '35km E of Hydesville, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-18T18:19:23.820Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:42:02.145Z'},
 {'depth': 93.6,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13659875',
  'latitude': 60.3061,
  'locationSource': 'ak',
  'longitude': -152.3177,
  'mag': 2.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '30km SE of Redoubt Volcano, Alaska',
  'rms': 0.47,
  'status': 'automatic',
  'time': '2016-06-18T18:18:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T18:43:22.812Z'},
 {'depth': 2.29,
  'depthError': 0.35,
  'dmin': 0.021330000000000002,
  'gap': 169.0,
  'horizontalError': 0.56,
  'id': 'hv61302046',
  'latitude': 19.3825,
  'locationSource': 'hv',
  'longitude': -155.6201667,
  'mag': 1.14,
  'magError': 0.289,
  'magNst': 4.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 5.0,
  'place': '24km NW of Pahala, Hawaii',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-18T17:50:11.790Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:33:22.710Z'},
 {'depth': 167.25,
  'depthError': 6.6,
  'dmin': 1.604,
  'gap': 26.0,
  'horizontalError': 5.3,
  'id': 'us2000659j',
  'latitude': -24.2117,
  'locationSource': 'us',
  'longitude': -67.0875,
  'mag': 5.5,
  'magError': 0.03,
  'magNst': 387.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '78km W of San Antonio de los Cobres, Argentina',
  'rms': 1.21,
  'status': 'reviewed',
  'time': '2016-06-18T17:29:44.860Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:33:49.040Z'},
 {'depth': 15.0,
  'depthError': 1.7,
  'dmin': 0.08623827,
  'gap': 93.6,
  'horizontalError': 0.6,
  'id': 'pr16170005',
  'latitude': 18.0629,
  'locationSource': 'pr',
  'longitude': -66.8762,
  'mag': 1.9,
  'magError': 0.0,
  'magNst': 7.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 11.0,
  'place': '4km NW of Yauco, Puerto Rico',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-18T17:14:55.400Z',
  'type': 'earthquake',
  'updated': '2016-06-18T21:37:43.340Z'},
 {'depth': 113.42,
  'depthError': 7.2,
  'dmin': 0.621,
  'gap': 82.0,
  'horizontalError': 5.7,
  'id': 'us2000659f',
  'latitude': 37.0462,
  'locationSource': 'us',
  'longitude': 71.1686,
  'mag': 4.3,
  'magError': 0.109,
  'magNst': 24.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '35km NE of Jarm, Afghanistan',
  'rms': 1.08,
  'status': 'reviewed',
  'time': '2016-06-18T16:54:27.310Z',
  'type': 'earthquake',
  'updated': '2016-06-18T17:16:44.254Z'},
 {'depth': 0.8,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13659540',
  'latitude': 62.5583,
  'locationSource': 'ak',
  'longitude': -149.5225,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '40km NE of Talkeetna, Alaska',
  'rms': 0.78,
  'status': 'automatic',
  'time': '2016-06-18T16:47:25.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T17:30:27.115Z'},
 {'depth': 0.0,
  'depthError': 11.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 47.5,
  'id': 'ak13659538',
  'latitude': 58.8555,
  'locationSource': 'ak',
  'longitude': -142.7146,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '135km S of Cape Yakataga, Alaska',
  'rms': 0.11,
  'status': 'automatic',
  'time': '2016-06-18T16:33:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T17:30:26.201Z'},
 {'depth': 7.99,
  'depthError': 0.23,
  'dmin': 0.041030000000000004,
  'gap': 37.0,
  'horizontalError': 0.1,
  'id': 'nc72652701',
  'latitude': 37.3603333,
  'locationSource': 'nc',
  'longitude': -121.71983329999999,
  'mag': 1.69,
  'magError': 0.23800000000000002,
  'magNst': 48.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 51.0,
  'place': '8km ESE of East Foothills, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-18T16:27:37.990Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:09:03.414Z'},
 {'depth': 10.1,
  'depthError': 3.3,
  'dmin': 0.051,
  'gap': 172.12,
  'horizontalError': 6.81,
  'id': 'nn00548463',
  'latitude': 40.6559,
  'locationSource': 'nn',
  'longitude': -119.4722,
  'mag': 1.1,
  'magError': 0.25,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 4.0,
  'place': '11km NW of Gerlach-Empire, Nevada',
  'rms': 0.0891,
  'status': 'reviewed',
  'time': '2016-06-18T16:24:10.587Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:50:25.182Z'},
 {'depth': 3.98,
  'depthError': 0.52,
  'dmin': 0.09134,
  'gap': 65.0,
  'horizontalError': 0.18,
  'id': 'ci37391071',
  'latitude': 35.4451667,
  'locationSource': 'ci',
  'longitude': -118.14466670000002,
  'mag': 1.37,
  'magError': 0.204,
  'magNst': 21.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 22.0,
  'place': '35km ESE of Bodfish, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-18T16:12:43.780Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:14:44.701Z'},
 {'depth': 0.1,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13659534',
  'latitude': 60.1219,
  'locationSource': 'ak',
  'longitude': -141.3298,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '61km E of Cape Yakataga, Alaska',
  'rms': 0.87,
  'status': 'automatic',
  'time': '2016-06-18T16:09:02.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T16:54:28.033Z'},
 {'depth': 8.11,
  'depthError': 3.8,
  'dmin': 0.156,
  'gap': 44.0,
  'horizontalError': 1.2,
  'id': 'us20006594',
  'latitude': 35.8194,
  'locationSource': 'us',
  'longitude': -97.2645,
  'mag': 2.8,
  'magError': 0.078,
  'magNst': 43.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '13km S of Langston, Oklahoma',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-18T16:05:56.240Z',
  'type': 'earthquake',
  'updated': '2016-06-18T16:19:52.650Z'},
 {'depth': 50.0,
  'depthError': 30.2,
  'dmin': 1.93227618,
  'gap': 331.2,
  'horizontalError': 4.7,
  'id': 'pr16170004',
  'latitude': 19.7826,
  'locationSource': 'pr',
  'longitude': -68.9001,
  'mag': 3.4,
  'magError': 0.0,
  'magNst': 8.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 13.0,
  'place': '78km NE of Santa Barbara de Samana, Dominican Republic',
  'rms': 0.5,
  'status': 'reviewed',
  'time': '2016-06-18T15:53:18.500Z',
  'type': 'earthquake',
  'updated': '2016-06-18T20:58:51.034Z'},
 {'depth': 3.96,
  'depthError': 1.03,
  'dmin': 0.1133,
  'gap': 184.0,
  'horizontalError': 0.52,
  'id': 'ci37391039',
  'latitude': 32.5416667,
  'locationSource': 'ci',
  'longitude': -115.6835,
  'mag': 2.13,
  'magError': 0.135,
  'magNst': 4.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '10km WSW of Progreso, B.C., MX',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-18T15:35:15.010Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:44:03.056Z'},
 {'depth': 7.43,
  'depthError': 0.76,
  'dmin': 0.1021,
  'gap': 183.0,
  'horizontalError': 0.42,
  'id': 'ci37391031',
  'latitude': 32.5536667,
  'locationSource': 'ci',
  'longitude': -115.68333329999999,
  'mag': 2.36,
  'magError': 0.159,
  'magNst': 65.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 29.0,
  'place': '10km WSW of Progreso, B.C., MX',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-18T15:34:33.570Z',
  'type': 'earthquake',
  'updated': '2016-06-20T15:36:28.426Z'},
 {'depth': 195.43,
  'depthError': 11.4,
  'dmin': 2.991,
  'gap': 111.0,
  'horizontalError': 9.6,
  'id': 'us2000658y',
  'latitude': -14.7257,
  'locationSource': 'us',
  'longitude': -70.7828,
  'mag': 4.5,
  'magError': 0.09300000000000001,
  'magNst': 34.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '27km NW of Ayaviri, Peru',
  'rms': 1.2,
  'status': 'reviewed',
  'time': '2016-06-18T15:06:58.240Z',
  'type': 'earthquake',
  'updated': '2016-06-18T15:21:22.296Z'},
 {'depth': 4.91,
  'depthError': 0.13,
  'dmin': 0.017519999999999997,
  'gap': 35.0,
  'horizontalError': 0.1,
  'id': 'nc72652676',
  'latitude': 37.839,
  'locationSource': 'nc',
  'longitude': -122.22966670000001,
  'mag': 2.04,
  'magError': 0.165,
  'magNst': 61.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 103.0,
  'place': '1km N of Piedmont, California',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-18T14:59:25.160Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:35:04.133Z'},
 {'depth': 38.4,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13659204',
  'latitude': 60.4957,
  'locationSource': 'ak',
  'longitude': -150.8224,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '5km SW of Sterling, Alaska',
  'rms': 0.19,
  'status': 'automatic',
  'time': '2016-06-18T14:54:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T15:44:06.843Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 10.672,
  'gap': 96.0,
  'horizontalError': 12.1,
  'id': 'us2000658x',
  'latitude': -31.8124,
  'locationSource': 'us',
  'longitude': 57.1454,
  'mag': 4.8,
  'magError': 0.10300000000000001,
  'magNst': 29.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Southwest Indian Ridge',
  'rms': 0.62,
  'status': 'reviewed',
  'time': '2016-06-18T14:52:38.150Z',
  'type': 'earthquake',
  'updated': '2016-06-18T15:26:18.494Z'},
 {'depth': 6.952000000000001,
  'depthError': 0.84,
  'dmin': 0.04608,
  'gap': 85.0,
  'horizontalError': 0.4,
  'id': 'hv61301941',
  'latitude': 19.3335,
  'locationSource': 'hv',
  'longitude': -155.1755,
  'mag': 1.4,
  'magError': 0.15,
  'magNst': 18.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 39.0,
  'place': '12km SSE of Volcano, Hawaii',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-18T14:52:28.210Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:59:43.340Z'},
 {'depth': 0.966,
  'depthError': 0.09,
  'dmin': 0.002537,
  'gap': 101.0,
  'horizontalError': 0.16,
  'id': 'hv61301936',
  'latitude': 19.383,
  'locationSource': 'hv',
  'longitude': -155.2508333,
  'mag': 1.98,
  'magError': 0.124,
  'magNst': 3.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 24.0,
  'place': '5km SSW of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-18T14:36:52.910Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:12:56.560Z'},
 {'depth': 12.59,
  'depthError': 0.44,
  'dmin': 0.04626,
  'gap': 29.0,
  'horizontalError': 0.19,
  'id': 'ci37390991',
  'latitude': 33.482,
  'locationSource': 'ci',
  'longitude': -116.45066670000001,
  'mag': 1.82,
  'magError': 0.17,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 70.0,
  'place': '22km ESE of Anza, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-18T13:49:49.260Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:55:58.050Z'},
 {'depth': -1.97,
  'depthError': 1.3,
  'dmin': 0.1287,
  'gap': 248.0,
  'horizontalError': 1.99,
  'id': 'nc72652656',
  'latitude': 40.2786667,
  'locationSource': 'nc',
  'longitude': -121.35533329999998,
  'mag': 1.75,
  'magError': 0.051,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '10km WSW of Chester, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-18T13:37:17.700Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:31:03.385Z'},
 {'depth': 4.7,
  'depthError': 0.45,
  'dmin': 0.045489999999999996,
  'gap': 55.0,
  'horizontalError': 0.22,
  'id': 'nc72652646',
  'latitude': 35.5503333,
  'locationSource': 'nc',
  'longitude': -120.85466670000001,
  'mag': 1.14,
  'magError': 0.419,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 29.0,
  'place': '12km NNE of Cayucos, California',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-18T13:36:03.340Z',
  'type': 'earthquake',
  'updated': '2016-06-21T01:33:04.130Z'},
 {'depth': 4.63,
  'depthError': 31.61,
  'dmin': 1.902,
  'gap': 314.0,
  'horizontalError': 6.01,
  'id': 'nc72652641',
  'latitude': 40.6485,
  'locationSource': 'nc',
  'longitude': -126.82383329999999,
  'mag': 2.88,
  'magError': 0.115,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 17.0,
  'place': '216km W of Ferndale, California',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-18T13:26:14.190Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:46:02.700Z'},
 {'depth': 7.12,
  'depthError': 0.88,
  'dmin': 0.1225,
  'gap': 64.0,
  'horizontalError': 0.31,
  'id': 'nc72652636',
  'latitude': 39.157,
  'locationSource': 'nc',
  'longitude': -123.15633329999999,
  'mag': 1.66,
  'magError': 0.129,
  'magNst': 18.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 14.0,
  'place': '2km NNE of Talmage, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-18T13:14:14.290Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:59:02.655Z'},
 {'depth': 13.8,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13659198',
  'latitude': 61.3614,
  'locationSource': 'ak',
  'longitude': -146.197,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '26km NNE of Valdez, Alaska',
  'rms': 0.94,
  'status': 'automatic',
  'time': '2016-06-18T13:05:34.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:53:09.287Z'},
 {'depth': 12.55,
  'depthError': 0.67,
  'dmin': 0.07753,
  'gap': 81.0,
  'horizontalError': 0.28,
  'id': 'nc72652631',
  'latitude': 37.9496667,
  'locationSource': 'nc',
  'longitude': -122.02816670000001,
  'mag': 1.21,
  'magError': 0.195,
  'magNst': 18.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 26.0,
  'place': '2km E of Pleasant Hill, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-18T13:05:00.510Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:28:02.944Z'},
 {'depth': 3.15,
  'depthError': 1.91,
  'dmin': 0.062439999999999996,
  'gap': 262.0,
  'horizontalError': 1.51,
  'id': 'uu60151152',
  'latitude': 44.837166700000004,
  'locationSource': 'uu',
  'longitude': -110.79583329999998,
  'mag': 1.02,
  'magError': 0.408,
  'magNst': 3.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 8.0,
  'place': '31km NE of West Yellowstone, Montana',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-18T11:49:00.640Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:58:51.030Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 1.168,
  'gap': 60.0,
  'horizontalError': 5.6,
  'id': 'us2000658i',
  'latitude': 32.6761,
  'locationSource': 'us',
  'longitude': 130.5804,
  'mag': 4.8,
  'magError': 0.045,
  'magNst': 156.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '8km W of Uto, Japan',
  'rms': 0.69,
  'status': 'reviewed',
  'time': '2016-06-18T11:46:56.040Z',
  'type': 'earthquake',
  'updated': '2016-06-18T12:07:53.785Z'},
 {'depth': 45.0,
  'depthError': 2.1,
  'dmin': 0.10420457,
  'gap': 208.8,
  'horizontalError': 1.7,
  'id': 'pr16170003',
  'latitude': 18.5559,
  'locationSource': 'pr',
  'longitude': -67.0525,
  'mag': 1.9,
  'magError': 0.0,
  'magNst': 5.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 6.0,
  'place': '6km NNW of Isabela, Puerto Rico',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-18T11:40:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T16:18:02.681Z'},
 {'depth': 4.39,
  'depthError': 0.45,
  'dmin': 0.0898,
  'gap': 73.0,
  'horizontalError': 0.16,
  'id': 'ci37390911',
  'latitude': 35.4466667,
  'locationSource': 'ci',
  'longitude': -118.14316670000001,
  'mag': 1.1,
  'magError': 0.127,
  'magNst': 14.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 20.0,
  'place': '35km ESE of Bodfish, CA',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-18T11:26:59.150Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:47:40.253Z'},
 {'depth': 2.99,
  'depthError': 20.96,
  'dmin': 0.1418,
  'gap': 81.0,
  'horizontalError': 0.71,
  'id': 'uw61169921',
  'latitude': 48.479833299999996,
  'locationSource': 'uw',
  'longitude': -121.7225,
  'mag': 1.19,
  'magError': 0.13699999999999998,
  'magNst': 7.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 8.0,
  'place': '9km W of Rockport, Washington',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-18T11:19:38.470Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:11:20.200Z'},
 {'depth': 12.0,
  'depthError': 0.67,
  'dmin': 0.05542999999999999,
  'gap': 78.0,
  'horizontalError': 0.45,
  'id': 'nm60147411',
  'latitude': 36.664333299999996,
  'locationSource': 'nm',
  'longitude': -89.5381667,
  'mag': 1.1,
  'magError': 0.045,
  'magNst': 3.0,
  'magSource': 'nm',
  'magType': 'md',
  'net': 'nm',
  'nst': 13.0,
  'place': '8km N of New Madrid, Missouri',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-18T11:10:11.700Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:45:46.100Z'},
 {'depth': 1.58,
  'depthError': 0.53,
  'dmin': 0.1675,
  'gap': 49.0,
  'horizontalError': 0.19,
  'id': 'ci37390895',
  'latitude': 34.613833299999996,
  'locationSource': 'ci',
  'longitude': -116.58383329999998,
  'mag': 1.59,
  'magError': 0.10800000000000001,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 33.0,
  'place': '40km ENE of Lucerne Valley, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-18T10:56:02.950Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:57:19.150Z'},
 {'depth': 1.8,
  'depthError': 0.64,
  'dmin': 0.08476,
  'gap': 40.0,
  'horizontalError': 0.27,
  'id': 'ci37390887',
  'latitude': 35.072166700000004,
  'locationSource': 'ci',
  'longitude': -118.31266670000001,
  'mag': 1.94,
  'magError': 0.153,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 39.0,
  'place': '13km W of Mojave, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-18T10:45:37.220Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:55:59.666Z'},
 {'depth': 1.2,
  'depthError': 0.14,
  'dmin': 0.01151,
  'gap': 36.0,
  'horizontalError': 0.11,
  'id': 'nc72652596',
  'latitude': 38.8178333,
  'locationSource': 'nc',
  'longitude': -122.76716670000002,
  'mag': 1.28,
  'magError': 0.136,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 39.0,
  'place': '3km W of Cobb, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-18T10:41:52.420Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:01:03.656Z'},
 {'depth': 2.23,
  'depthError': 0.22,
  'dmin': 0.00952,
  'gap': 113.0,
  'horizontalError': 0.48,
  'id': 'ci37390879',
  'latitude': 33.1858333,
  'locationSource': 'ci',
  'longitude': -115.61016670000001,
  'mag': 1.16,
  'magError': 0.17800000000000002,
  'magNst': 23.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '10km SW of Niland, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-18T10:32:15.970Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:41:06.001Z'},
 {'depth': 191.56,
  'depthError': 8.4,
  'dmin': 1.528,
  'gap': 55.0,
  'horizontalError': 8.0,
  'id': 'us2000658g',
  'latitude': -24.3346,
  'locationSource': 'us',
  'longitude': -67.4535,
  'mag': 4.8,
  'magError': 0.14400000000000002,
  'magNst': 20.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '115km W of San Antonio de los Cobres, Argentina',
  'rms': 0.93,
  'status': 'reviewed',
  'time': '2016-06-18T10:24:52.720Z',
  'type': 'earthquake',
  'updated': '2016-06-18T10:45:58.237Z'},
 {'depth': 23.72,
  'depthError': 31.61,
  'dmin': 0.2777,
  'gap': 132.0,
  'horizontalError': 0.98,
  'id': 'uu60151147',
  'latitude': 39.5776667,
  'locationSource': 'uu',
  'longitude': -111.405,
  'mag': 1.05,
  'magError': 0.11800000000000001,
  'magNst': 2.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 14.0,
  'place': '5km NE of Mount Pleasant, Utah',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-18T10:24:46.600Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:57:46.190Z'},
 {'depth': 4.97,
  'depthError': 0.42,
  'dmin': 0.01549,
  'gap': 57.0,
  'horizontalError': 0.22,
  'id': 'ci37390871',
  'latitude': 33.8011667,
  'locationSource': 'ci',
  'longitude': -117.85416670000001,
  'mag': 1.63,
  'magError': 0.153,
  'magNst': 60.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 54.0,
  'place': '2km W of Orange, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-18T10:09:10.130Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:36:47.741Z'},
 {'depth': 1.31,
  'depthError': 0.6,
  'dmin': 0.010459999999999999,
  'gap': 105.0,
  'horizontalError': 0.37,
  'id': 'nc72652581',
  'latitude': 38.8218346,
  'locationSource': 'nc',
  'longitude': -122.79683689999999,
  'mag': 1.12,
  'magError': 0.41,
  'magNst': 3.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 10.0,
  'place': '6km W of Cobb, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-18T09:58:22.470Z',
  'type': 'earthquake',
  'updated': '2016-06-18T10:28:02.381Z'},
 {'depth': 20.8,
  'depthError': 1.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13658229',
  'latitude': 60.4777,
  'locationSource': 'ak',
  'longitude': -151.1422,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '4km WSW of Soldotna, Alaska',
  'rms': 0.73,
  'status': 'reviewed',
  'time': '2016-06-18T09:17:29.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T19:57:14.739Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 2.447,
  'gap': 152.0,
  'horizontalError': 7.5,
  'id': 'us2000658b',
  'latitude': 6.1375,
  'locationSource': 'us',
  'longitude': -82.5052,
  'mag': 4.6,
  'magError': 0.05,
  'magNst': 118.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '213km S of Punta de Burica, Panama',
  'rms': 1.0,
  'status': 'reviewed',
  'time': '2016-06-18T09:15:46.300Z',
  'type': 'earthquake',
  'updated': '2016-06-18T09:50:02.197Z'},
 {'depth': 152.12,
  'depthError': 8.1,
  'dmin': 6.09,
  'gap': 102.0,
  'horizontalError': 12.7,
  'id': 'us20006589',
  'latitude': -10.6106,
  'locationSource': 'us',
  'longitude': 166.0176,
  'mag': 4.5,
  'magError': 0.07400000000000001,
  'magNst': 54.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '23km ENE of Lata, Solomon Islands',
  'rms': 0.52,
  'status': 'reviewed',
  'time': '2016-06-18T09:01:34.560Z',
  'type': 'earthquake',
  'updated': '2016-06-18T09:24:54.914Z'},
 {'depth': 5.65,
  'depthError': 0.39,
  'dmin': 0.027339999999999996,
  'gap': 47.0,
  'horizontalError': 0.17,
  'id': 'ci37390839',
  'latitude': 33.5076667,
  'locationSource': 'ci',
  'longitude': -116.4525,
  'mag': 1.18,
  'magError': 0.132,
  'magNst': 41.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 48.0,
  'place': '21km ESE of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-18T08:47:11.020Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:11:20.030Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13658222',
  'latitude': 62.0427,
  'locationSource': 'ak',
  'longitude': -140.9943,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '176km SE of Tok, Alaska',
  'rms': 0.78,
  'status': 'automatic',
  'time': '2016-06-18T08:45:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T09:45:50.145Z'},
 {'depth': 13.64,
  'depthError': 0.5,
  'dmin': 0.09567,
  'gap': 59.0,
  'horizontalError': 0.25,
  'id': 'ci37390831',
  'latitude': 34.1046667,
  'locationSource': 'ci',
  'longitude': -117.31616670000001,
  'mag': 1.13,
  'magError': 0.147,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 51.0,
  'place': '3km N of Colton, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-18T08:43:11.440Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:58:26.690Z'},
 {'depth': 7.0,
  'depthError': 5.0,
  'dmin': 0.544,
  'gap': 179.51,
  'horizontalError': 3.29,
  'id': 'nn00548434',
  'latitude': 40.036,
  'locationSource': 'nn',
  'longitude': -118.8173,
  'mag': 1.0,
  'magError': 0.58,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 8.0,
  'place': '33km WSW of Lovelock, Nevada',
  'rms': 0.1286,
  'status': 'reviewed',
  'time': '2016-06-18T08:32:42.328Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:49:48.300Z'},
 {'depth': 95.71,
  'depthError': 8.4,
  'dmin': 0.9329999999999999,
  'gap': 85.0,
  'horizontalError': 8.3,
  'id': 'us2000657z',
  'latitude': -0.0403,
  'locationSource': 'us',
  'longitude': 126.8971,
  'mag': 4.7,
  'magError': 0.13699999999999998,
  'magNst': 16.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '105km SSW of Kota Ternate, Indonesia',
  'rms': 0.92,
  'status': 'reviewed',
  'time': '2016-06-18T07:47:37.280Z',
  'type': 'earthquake',
  'updated': '2016-06-18T08:02:29.468Z'},
 {'depth': 47.4,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13657905',
  'latitude': 60.6212,
  'locationSource': 'ak',
  'longitude': -151.0947,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '9km N of Ridgeway, Alaska',
  'rms': 0.44,
  'status': 'automatic',
  'time': '2016-06-18T07:45:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T08:26:00.274Z'},
 {'depth': 33.03,
  'depthError': 0.51,
  'dmin': 0.09657,
  'gap': 46.0,
  'horizontalError': 0.28,
  'id': 'nc72652561',
  'latitude': 40.3415,
  'locationSource': 'nc',
  'longitude': -123.4895,
  'mag': 2.09,
  'magError': 0.14300000000000002,
  'magNst': 20.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 28.0,
  'place': '35km SW of Hayfork, California',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-18T07:28:46.260Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:59:03.513Z'},
 {'depth': 7.91,
  'depthError': 0.45,
  'dmin': 0.046830000000000004,
  'gap': 24.0,
  'horizontalError': 0.17,
  'id': 'ci37390783',
  'latitude': 33.584,
  'locationSource': 'ci',
  'longitude': -116.819,
  'mag': 1.88,
  'magError': 0.168,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 75.0,
  'place': '14km WNW of Anza, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-18T07:24:16.530Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:58:35.760Z'},
 {'depth': 89.0,
  'depthError': 0.3,
  'dmin': 0.21379904,
  'gap': 237.6,
  'horizontalError': 0.6,
  'id': 'pr16170001',
  'latitude': 18.5692,
  'locationSource': 'pr',
  'longitude': -67.3103,
  'mag': 3.3,
  'magError': 0.0,
  'magNst': 16.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 18.0,
  'place': '22km NW of Aguadilla, Puerto Rico',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-18T07:16:41.700Z',
  'type': 'earthquake',
  'updated': '2016-06-18T07:38:17.606Z'},
 {'depth': 27.3,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657902',
  'latitude': 59.0677,
  'locationSource': 'ak',
  'longitude': -151.004,
  'mag': 2.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '71km SSE of Homer, Alaska',
  'rms': 0.63,
  'status': 'automatic',
  'time': '2016-06-18T07:16:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T07:48:31.688Z'},
 {'depth': 64.0,
  'depthError': 21.5,
  'dmin': 0.92077317,
  'gap': 331.2,
  'horizontalError': 11.9,
  'id': 'pr16170002',
  'latitude': 19.2572,
  'locationSource': 'pr',
  'longitude': -64.72399999999999,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '93km N of Road Town, British Virgin Islands',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-18T07:00:52.800Z',
  'type': 'earthquake',
  'updated': '2016-06-18T08:07:44.909Z'},
 {'depth': 2.696,
  'depthError': 0.21,
  'dmin': 0.009861,
  'gap': 98.0,
  'horizontalError': 0.38,
  'id': 'hv61301561',
  'latitude': 19.3651667,
  'locationSource': 'hv',
  'longitude': -155.2103333,
  'mag': 2.08,
  'magError': 0.079,
  'magNst': 3.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 26.0,
  'place': '7km SSE of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-18T06:49:55.550Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:52:13.730Z'},
 {'depth': 98.9,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13657900',
  'latitude': 62.9637,
  'locationSource': 'ak',
  'longitude': -150.4018,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '72km NNW of Talkeetna, Alaska',
  'rms': 0.27,
  'status': 'automatic',
  'time': '2016-06-18T06:46:09.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T07:48:28.435Z'},
 {'depth': 9.77,
  'depthError': 0.51,
  'dmin': 0.07422000000000001,
  'gap': 79.0,
  'horizontalError': 0.28,
  'id': 'ci37390735',
  'latitude': 33.462166700000004,
  'locationSource': 'ci',
  'longitude': -116.47616670000001,
  'mag': 1.08,
  'magError': 0.175,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 43.0,
  'place': '21km ESE of Anza, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-18T06:39:41.510Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:58:48.460Z'},
 {'depth': 2.75,
  'depthError': 0.27,
  'dmin': 0.01212,
  'gap': 124.0,
  'horizontalError': 0.37,
  'id': 'hv61301546',
  'latitude': 19.366332999999997,
  'locationSource': 'hv',
  'longitude': -155.2053375,
  'mag': 1.7,
  'magError': 0.08,
  'magNst': 7.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 17.0,
  'place': '7km SSE of Volcano, Hawaii',
  'rms': 0.19,
  'status': 'automatic',
  'time': '2016-06-18T06:39:24.770Z',
  'type': 'earthquake',
  'updated': '2016-06-18T06:42:19.770Z'},
 {'depth': 9.77,
  'depthError': 0.47,
  'dmin': 0.06267,
  'gap': 57.0,
  'horizontalError': 0.23,
  'id': 'ci37390703',
  'latitude': 33.464,
  'locationSource': 'ci',
  'longitude': -116.45016670000001,
  'mag': 1.28,
  'magError': 0.18899999999999997,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 45.0,
  'place': '23km ESE of Anza, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-18T06:05:15.760Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:00:02.250Z'},
 {'depth': 0.11900000000000001,
  'depthError': 0.56,
  'dmin': 0.1016,
  'gap': 179.0,
  'horizontalError': 1.08,
  'id': 'hv61301526',
  'latitude': 19.3651667,
  'locationSource': 'hv',
  'longitude': -155.8613333,
  'mag': 1.35,
  'magError': 0.07200000000000001,
  'magNst': 9.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 18.0,
  'place': '10km S of Honaunau-Napoopoo, Hawaii',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-18T06:03:02.860Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:51:13.700Z'},
 {'depth': 36.819,
  'depthError': 1.41,
  'dmin': 0.2182,
  'gap': 253.0,
  'horizontalError': 0.89,
  'id': 'hv61301426',
  'latitude': 19.0676667,
  'locationSource': 'hv',
  'longitude': -155.1718333,
  'mag': 1.97,
  'magError': 0.152,
  'magNst': 15.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 26.0,
  'place': '35km ESE of Pahala, Hawaii',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-18T05:44:28.350Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:45:37.510Z'},
 {'depth': 3.33,
  'depthError': 0.42,
  'dmin': 0.05458,
  'gap': 82.0,
  'horizontalError': 0.14,
  'id': 'ci37390639',
  'latitude': 35.8986667,
  'locationSource': 'ci',
  'longitude': -117.67966670000001,
  'mag': 1.28,
  'magError': 0.141,
  'magNst': 13.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 18.0,
  'place': '21km ESE of Little Lake, CA',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-18T04:55:00.980Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:41:06.464Z'},
 {'depth': 1.1,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.3,
  'id': 'ak13657891',
  'latitude': 65.9287,
  'locationSource': 'ak',
  'longitude': -147.0641,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '107km SW of Fort Yukon, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-18T04:54:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T05:23:04.049Z'},
 {'depth': 11.36,
  'depthError': 0.26,
  'dmin': 0.06785,
  'gap': 24.0,
  'horizontalError': 0.11,
  'id': 'ci37390623',
  'latitude': 33.4655,
  'locationSource': 'ci',
  'longitude': -116.46833329999998,
  'mag': 1.9,
  'magError': 0.16,
  'magNst': 77.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 86.0,
  'place': '22km ESE of Anza, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-18T04:38:05.520Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:29:45.860Z'},
 {'depth': 57.36,
  'depthError': 10.1,
  'dmin': 1.252,
  'gap': 150.0,
  'horizontalError': 9.6,
  'id': 'us2000657m',
  'latitude': 1.6858,
  'locationSource': 'us',
  'longitude': 126.5033,
  'mag': 4.5,
  'magError': 0.135,
  'magNst': 16.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '138km NW of Kota Ternate, Indonesia',
  'rms': 1.08,
  'status': 'reviewed',
  'time': '2016-06-18T04:35:12.060Z',
  'type': 'earthquake',
  'updated': '2016-06-18T04:51:39.286Z'},
 {'depth': 2.52,
  'depthError': 0.17,
  'dmin': 0.006723000000000001,
  'gap': 85.0,
  'horizontalError': 0.2,
  'id': 'ci37390607',
  'latitude': 33.1781667,
  'locationSource': 'ci',
  'longitude': -115.60766670000001,
  'mag': 1.76,
  'magError': 0.14800000000000002,
  'magNst': 39.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '10km NW of Calipatria, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-18T04:29:26.110Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:01:38.000Z'},
 {'depth': 3.03,
  'depthError': 0.83,
  'dmin': 0.23399999999999999,
  'gap': 53.0,
  'horizontalError': 0.23,
  'id': 'ci37390591',
  'latitude': 35.532166700000005,
  'locationSource': 'ci',
  'longitude': -116.85916670000002,
  'mag': 2.08,
  'magError': 0.245,
  'magNst': 30.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 27.0,
  'place': '34km NNW of Fort Irwin, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-18T04:26:52.650Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:49:14.486Z'},
 {'depth': 6.8,
  'depthError': 4.2,
  'dmin': 0.358,
  'gap': 182.05,
  'horizontalError': 2.25,
  'id': 'nn00548455',
  'latitude': 38.7317,
  'locationSource': 'nn',
  'longitude': -119.5868,
  'mag': 1.2,
  'magError': 0.07,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 13.0,
  'place': '21km SE of Gardnerville Ranchos, Nevada',
  'rms': 0.1551,
  'status': 'reviewed',
  'time': '2016-06-18T04:20:11.024Z',
  'type': 'earthquake',
  'updated': '2016-06-19T16:50:13.127Z'},
 {'depth': 7.16,
  'depthError': 0.36,
  'dmin': 0.04406,
  'gap': 41.0,
  'horizontalError': 0.13,
  'id': 'nm60147401',
  'latitude': 36.4718333,
  'locationSource': 'nm',
  'longitude': -89.5805,
  'mag': 2.12,
  'magError': 0.20199999999999999,
  'magNst': 19.0,
  'magSource': 'nm',
  'magType': 'md',
  'net': 'nm',
  'nst': 34.0,
  'place': '11km ENE of Portageville, Missouri',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-18T04:13:07.280Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:12:35.005Z'},
 {'depth': 5.957999999999999,
  'depthError': 0.7,
  'dmin': 0.03651,
  'gap': 154.0,
  'horizontalError': 0.46,
  'id': 'hv61301321',
  'latitude': 19.3475,
  'locationSource': 'hv',
  'longitude': -155.10516669999998,
  'mag': 1.5,
  'magError': 0.091,
  'magNst': 10.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 31.0,
  'place': '16km ESE of Volcano, Hawaii',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-18T04:12:12.810Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:59:52.480Z'},
 {'depth': 27.8,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13657573',
  'latitude': 61.568999999999996,
  'locationSource': 'ak',
  'longitude': -149.7034,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '8km NW of Knik-Fairview, Alaska',
  'rms': 0.42,
  'status': 'reviewed',
  'time': '2016-06-18T04:07:27.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T19:20:21.745Z'},
 {'depth': 5.86,
  'depthError': 0.21,
  'dmin': 0.02298,
  'gap': 108.0,
  'horizontalError': 0.1,
  'id': 'nc72652496',
  'latitude': 35.682333299999996,
  'locationSource': 'nc',
  'longitude': -121.1255,
  'mag': 1.87,
  'magError': 0.22699999999999998,
  'magNst': 51.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 60.0,
  'place': '7km NE of San Simeon, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-18T03:44:28.610Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:19:03.269Z'},
 {'depth': 10.42,
  'depthError': 0.34,
  'dmin': 0.07572000000000001,
  'gap': 49.0,
  'horizontalError': 0.23,
  'id': 'ci37390575',
  'latitude': 33.4615,
  'locationSource': 'ci',
  'longitude': -116.47816670000002,
  'mag': 1.28,
  'magError': 0.175,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 44.0,
  'place': '21km ESE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-18T03:39:35.340Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:00:19.480Z'},
 {'depth': 86.1,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657570',
  'latitude': 62.5223,
  'locationSource': 'ak',
  'longitude': -151.2719,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '64km WNW of Talkeetna, Alaska',
  'rms': 0.42,
  'status': 'automatic',
  'time': '2016-06-18T03:35:34.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T04:05:09.333Z'},
 {'depth': 50.8,
  'depthError': 2.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13657569',
  'latitude': 59.5139,
  'locationSource': 'ak',
  'longitude': -152.4526,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '45km SW of Anchor Point, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-18T03:30:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T04:05:05.950Z'},
 {'depth': 20.58,
  'depthError': 1.13,
  'dmin': 0.1739,
  'gap': 194.0,
  'horizontalError': 0.69,
  'id': 'ci37390551',
  'latitude': 32.528,
  'locationSource': 'ci',
  'longitude': -115.279,
  'mag': 1.62,
  'magError': 0.22399999999999998,
  'magNst': 12.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '8km ESE of Puebla, B.C., MX',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-18T03:18:23.870Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:42:10.652Z'},
 {'depth': 6.46,
  'depthError': 0.28,
  'dmin': 0.04022,
  'gap': 55.0,
  'horizontalError': 0.12,
  'id': 'nc72652481',
  'latitude': 36.4733333,
  'locationSource': 'nc',
  'longitude': -121.05516670000002,
  'mag': 1.95,
  'magError': 0.201,
  'magNst': 51.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 54.0,
  'place': '23km NE of Greenfield, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-18T03:14:32.440Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:20:02.976Z'},
 {'depth': 2.8,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13657565',
  'latitude': 63.3023,
  'locationSource': 'ak',
  'longitude': -151.8232,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '139km NW of Talkeetna, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-18T03:09:54.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T04:05:04.891Z'},
 {'depth': 8.34,
  'depthError': 0.65,
  'dmin': 0.04715,
  'gap': 80.0,
  'horizontalError': 0.25,
  'id': 'ci37390527',
  'latitude': 33.4763333,
  'locationSource': 'ci',
  'longitude': -116.431,
  'mag': 1.12,
  'magError': 0.175,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 44.0,
  'place': '24km SSW of La Quinta, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-18T02:51:34.140Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:58:51.485Z'},
 {'depth': 13.3,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13657562',
  'latitude': 60.588,
  'locationSource': 'ak',
  'longitude': -148.5431,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '22km SSE of Whittier, Alaska',
  'rms': 0.69,
  'status': 'automatic',
  'time': '2016-06-18T02:12:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:48:01.900Z'},
 {'depth': 46.9,
  'depthError': 1.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657561',
  'latitude': 61.597,
  'locationSource': 'ak',
  'longitude': -149.8314,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '3km S of Houston, Alaska',
  'rms': 0.17,
  'status': 'automatic',
  'time': '2016-06-18T02:06:36.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:48:01.024Z'},
 {'depth': 76.0,
  'depthError': 10.5,
  'dmin': 0.8758574,
  'gap': 306.0,
  'horizontalError': 7.5,
  'id': 'pr16170000',
  'latitude': 19.2702,
  'locationSource': 'pr',
  'longitude': -64.3892,
  'mag': 3.0,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 10.0,
  'place': '97km NNE of Road Town, British Virgin Islands',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-18T01:56:01.900Z',
  'type': 'earthquake',
  'updated': '2016-06-18T04:00:30.587Z'},
 {'depth': 11.32,
  'depthError': 0.56,
  'dmin': 0.0714,
  'gap': 76.0,
  'horizontalError': 0.27,
  'id': 'ci37390471',
  'latitude': 33.4676667,
  'locationSource': 'ci',
  'longitude': -116.4793333,
  'mag': 1.19,
  'magError': 0.161,
  'magNst': 21.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-18T01:42:06.220Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:59:14.334Z'},
 {'depth': 10.71,
  'depthError': 0.32,
  'dmin': 0.07587,
  'gap': 22.0,
  'horizontalError': 0.11,
  'id': 'ci37390463',
  'latitude': 33.4635,
  'locationSource': 'ci',
  'longitude': -116.48166670000002,
  'mag': 2.76,
  'magError': 0.15,
  'magNst': 163.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 93.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-18T01:40:54.240Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:10:32.080Z'},
 {'depth': 1.86,
  'depthError': 0.24,
  'dmin': 0.002635,
  'gap': 110.0,
  'horizontalError': 0.35,
  'id': 'ci37390447',
  'latitude': 33.174833299999996,
  'locationSource': 'ci',
  'longitude': -115.61583329999999,
  'mag': 1.05,
  'magError': 0.259,
  'magNst': 3.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 9.0,
  'place': '11km WNW of Calipatria, CA',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-18T01:17:21.110Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:52:39.337Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 1.295,
  'gap': 145.0,
  'horizontalError': 6.8,
  'id': 'us2000656w',
  'latitude': 53.56399999999999,
  'locationSource': 'us',
  'longitude': -163.4906,
  'mag': 5.0,
  'magError': 0.034,
  'magNst': 283.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '143km S of False Pass, Alaska',
  'rms': 1.03,
  'status': 'reviewed',
  'time': '2016-06-18T01:12:49.670Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:15.199Z'},
 {'depth': 2.65,
  'depthError': 0.39,
  'dmin': 0.0026,
  'gap': 193.0,
  'horizontalError': 1.65,
  'id': 'ci37390439',
  'latitude': 33.183,
  'locationSource': 'ci',
  'longitude': -115.62566670000001,
  'mag': 1.28,
  'magError': 0.455,
  'magNst': 3.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 8.0,
  'place': '12km WSW of Niland, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-18T01:04:45.420Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:13:57.052Z'},
 {'depth': 16.4,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13657128',
  'latitude': 61.7215,
  'locationSource': 'ak',
  'longitude': -148.4567,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '22km ESE of Sutton-Alpine, Alaska',
  'rms': 0.53,
  'status': 'automatic',
  'time': '2016-06-18T00:58:27.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T01:34:16.496Z'},
 {'depth': 54.8,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13657126',
  'latitude': 61.2212,
  'locationSource': 'ak',
  'longitude': -150.3489,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '24km W of Anchorage, Alaska',
  'rms': 0.18,
  'status': 'automatic',
  'time': '2016-06-18T00:47:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T01:34:18.583Z'},
 {'depth': 99.5,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13657124',
  'latitude': 59.9261,
  'locationSource': 'ak',
  'longitude': -152.5344,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '42km WNW of Anchor Point, Alaska',
  'rms': 0.17,
  'status': 'automatic',
  'time': '2016-06-18T00:38:39.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T01:34:17.934Z'},
 {'depth': 2.24,
  'depthError': 0.22,
  'dmin': 0.008454000000000001,
  'gap': 87.0,
  'horizontalError': 0.25,
  'id': 'ci37390399',
  'latitude': 33.1813333,
  'locationSource': 'ci',
  'longitude': -115.60666670000002,
  'mag': 1.51,
  'magError': 0.275,
  'magNst': 11.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 14.0,
  'place': '10km SW of Niland, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-18T00:30:32.650Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:40:11.102Z'},
 {'depth': 2.42,
  'depthError': 0.19,
  'dmin': 0.009497,
  'gap': 106.0,
  'horizontalError': 0.3,
  'id': 'ci37390391',
  'latitude': 33.1863333,
  'locationSource': 'ci',
  'longitude': -115.6115,
  'mag': 1.27,
  'magError': 0.442,
  'magNst': 10.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 11.0,
  'place': '10km SW of Niland, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-18T00:22:17.540Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:25:47.180Z'},
 {'depth': 2.09,
  'depthError': 0.29,
  'dmin': 0.005179,
  'gap': 168.0,
  'horizontalError': 0.75,
  'id': 'ci37370197',
  'latitude': 33.1758333,
  'locationSource': 'ci',
  'longitude': -115.6215,
  'mag': 1.16,
  'magError': 0.16399999999999998,
  'magNst': 2.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 7.0,
  'place': '11km WNW of Calipatria, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-18T00:18:36.780Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:21:15.989Z'},
 {'depth': 2.92,
  'depthError': 0.99,
  'dmin': 0.03986,
  'gap': 187.0,
  'horizontalError': 1.22,
  'id': 'ci37390383',
  'latitude': 33.1563333,
  'locationSource': 'ci',
  'longitude': -115.6578333,
  'mag': 1.05,
  'magError': 0.16399999999999998,
  'magNst': 2.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 8.0,
  'place': '14km NNW of Westmorland, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-18T00:18:25.810Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:21:28.408Z'},
 {'depth': 2.4130000000000003,
  'depthError': 0.17,
  'dmin': 0.005196,
  'gap': 44.0,
  'horizontalError': 0.14,
  'id': 'hv61301126',
  'latitude': 19.3941667,
  'locationSource': 'hv',
  'longitude': -155.279,
  'mag': 2.17,
  'magError': 0.22899999999999998,
  'magNst': 15.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 24.0,
  'place': '5km SW of Volcano, Hawaii',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-18T00:08:36.010Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:05:58.930Z'},
 {'depth': 14.9,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13656809',
  'latitude': 65.8922,
  'locationSource': 'ak',
  'longitude': -147.3089,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '117km N of College, Alaska',
  'rms': 0.51,
  'status': 'automatic',
  'time': '2016-06-17T23:55:20.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:20:59.455Z'},
 {'depth': 11.79,
  'depthError': 4.5,
  'dmin': 0.5579999999999999,
  'gap': 124.0,
  'horizontalError': 3.9,
  'id': 'us2000656l',
  'latitude': 36.3959,
  'locationSource': 'us',
  'longitude': 140.8515,
  'mag': 4.3,
  'magError': 0.14800000000000002,
  'magNst': 13.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '24km ENE of Oarai, Japan',
  'rms': 0.69,
  'status': 'reviewed',
  'time': '2016-06-17T23:50:12.890Z',
  'type': 'earthquake',
  'updated': '2016-06-20T21:45:14.649Z'},
 {'depth': 0.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.1,
  'id': 'ak13656804',
  'latitude': 65.903,
  'locationSource': 'ak',
  'longitude': -147.0597,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km SW of Fort Yukon, Alaska',
  'rms': 0.84,
  'status': 'automatic',
  'time': '2016-06-17T23:48:41.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:21:01.102Z'},
 {'depth': 26.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13656803',
  'latitude': 60.9077,
  'locationSource': 'ak',
  'longitude': -147.0695,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '46km WSW of Valdez, Alaska',
  'rms': 0.55,
  'status': 'automatic',
  'time': '2016-06-17T23:48:35.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:21:00.404Z'},
 {'depth': 11.51,
  'depthError': 0.61,
  'dmin': 0.1562,
  'gap': 80.0,
  'horizontalError': 0.29,
  'id': 'nc72652416',
  'latitude': 36.5335,
  'locationSource': 'nc',
  'longitude': -120.68416670000002,
  'mag': 1.78,
  'magError': 0.253,
  'magNst': 23.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 28.0,
  'place': '36km SW of Mendota, California',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T23:39:49.390Z',
  'type': 'earthquake',
  'updated': '2016-06-18T03:34:03.187Z'},
 {'depth': 0.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13656795',
  'latitude': 61.2869,
  'locationSource': 'ak',
  'longitude': -152.5665,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '89km N of Redoubt Volcano, Alaska',
  'rms': 0.66,
  'status': 'automatic',
  'time': '2016-06-17T23:24:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:21:01.908Z'},
 {'depth': 2.22,
  'depthError': 0.22,
  'dmin': 0.01677,
  'gap': 52.0,
  'horizontalError': 0.14,
  'id': 'nc72652411',
  'latitude': 38.803000000000004,
  'locationSource': 'nc',
  'longitude': -122.738,
  'mag': 1.55,
  'magError': 0.218,
  'magNst': 9.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 39.0,
  'place': '2km SSW of Cobb, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-17T23:24:04.120Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:54:03.080Z'},
 {'depth': 8.0,
  'depthError': 13.9,
  'dmin': 0.80668713,
  'gap': 334.8,
  'horizontalError': 9.7,
  'id': 'pr16169012',
  'latitude': 18.8708,
  'locationSource': 'pr',
  'longitude': -64.1368,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '71km NE of Road Town, British Virgin Islands',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T23:17:27.800Z',
  'type': 'earthquake',
  'updated': '2016-06-18T03:58:07.059Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 15.179,
  'gap': 99.0,
  'horizontalError': 3.8,
  'id': 'us2000656j',
  'latitude': -41.9824,
  'locationSource': 'us',
  'longitude': -105.257,
  'mag': 4.9,
  'magError': 0.051,
  'magNst': 119.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Southern East Pacific Rise',
  'rms': 0.71,
  'status': 'reviewed',
  'time': '2016-06-17T23:15:44.570Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:04:44.987Z'},
 {'depth': 9.6,
  'depthError': 0.4,
  'dmin': 0.0747,
  'gap': 29.0,
  'horizontalError': 0.18,
  'id': 'ci37390335',
  'latitude': 33.465,
  'locationSource': 'ci',
  'longitude': -116.48166670000002,
  'mag': 1.99,
  'magError': 0.188,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 68.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-17T23:03:16.630Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:02:11.790Z'},
 {'depth': 232.68,
  'depthError': 6.8,
  'dmin': 1.065,
  'gap': 88.0,
  'horizontalError': 8.1,
  'id': 'us2000656g',
  'latitude': 25.4859,
  'locationSource': 'us',
  'longitude': 122.6516,
  'mag': 4.3,
  'magError': 0.063,
  'magNst': 72.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '99km ENE of Keelung, Taiwan',
  'rms': 0.8,
  'status': 'reviewed',
  'time': '2016-06-17T22:55:42.640Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:39:31.329Z'},
 {'depth': 53.5,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13656486',
  'latitude': 61.6276,
  'locationSource': 'ak',
  'longitude': -149.838,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '1km WSW of Houston, Alaska',
  'rms': 0.21,
  'status': 'automatic',
  'time': '2016-06-17T22:38:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:44:44.061Z'},
 {'depth': 0.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13656483',
  'latitude': 59.9219,
  'locationSource': 'ak',
  'longitude': -148.80200000000002,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '41km ESE of Seward, Alaska',
  'rms': 0.8,
  'status': 'automatic',
  'time': '2016-06-17T21:59:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T22:34:35.978Z'},
 {'depth': 3.8,
  'depthError': 0.6,
  'dmin': 0.08185,
  'gap': 108.0,
  'horizontalError': 0.19,
  'id': 'ci37390311',
  'latitude': 33.9213333,
  'locationSource': 'ci',
  'longitude': -116.0236667,
  'mag': 1.04,
  'magError': 0.11699999999999999,
  'magNst': 18.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 25.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T21:59:02.190Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:04:36.569Z'},
 {'depth': 8.11,
  'depthError': 0.44,
  'dmin': 0.03015,
  'gap': 57.0,
  'horizontalError': 0.26,
  'id': 'ci37390295',
  'latitude': 34.472,
  'locationSource': 'ci',
  'longitude': -117.979,
  'mag': 1.46,
  'magError': 0.235,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 22.0,
  'place': '6km S of Littlerock, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-17T21:38:51.880Z',
  'type': 'earthquake',
  'updated': '2016-06-20T13:59:52.808Z'},
 {'depth': 56.81,
  'depthError': 6.2,
  'dmin': 6.6339999999999995,
  'gap': 45.0,
  'horizontalError': 6.9,
  'id': 'us20006567',
  'latitude': -11.5902,
  'locationSource': 'us',
  'longitude': 166.3349,
  'mag': 5.2,
  'magError': 0.042,
  'magNst': 187.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '111km SSE of Lata, Solomon Islands',
  'rms': 1.12,
  'status': 'reviewed',
  'time': '2016-06-17T21:26:19.120Z',
  'type': 'earthquake',
  'updated': '2016-06-19T01:56:29.000Z'},
 {'depth': 1.99,
  'depthError': 0.33,
  'dmin': 0.060110000000000004,
  'gap': 81.0,
  'horizontalError': 0.21,
  'id': 'ci37390271',
  'latitude': 35.541,
  'locationSource': 'ci',
  'longitude': -117.2935,
  'mag': 2.74,
  'magError': 0.18,
  'magNst': 123.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 29.0,
  'place': '26km SSE of Trona, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-17T20:59:34.200Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:06:19.510Z'},
 {'depth': 8.94,
  'depthError': 2.67,
  'dmin': 0.2092,
  'gap': 100.0,
  'horizontalError': 0.3,
  'id': 'nc72652381',
  'latitude': 38.2235,
  'locationSource': 'nc',
  'longitude': -119.33333329999999,
  'mag': 1.64,
  'magError': 0.20600000000000002,
  'magNst': 15.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '9km WSW of Bridgeport, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-17T20:59:25.400Z',
  'type': 'earthquake',
  'updated': '2016-06-21T17:25:04.544Z'},
 {'depth': 10.85,
  'depthError': 0.59,
  'dmin': 0.034789999999999995,
  'gap': 186.0,
  'horizontalError': 0.51,
  'id': 'ci37390247',
  'latitude': 32.646666700000004,
  'locationSource': 'ci',
  'longitude': -115.7675,
  'mag': 1.43,
  'magError': 0.122,
  'magNst': 14.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '19km WNW of Progreso, B.C., MX',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-17T20:46:38.670Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:14:07.987Z'},
 {'depth': 6.3,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13656161',
  'latitude': 64.6999,
  'locationSource': 'ak',
  'longitude': -146.8774,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '9km ENE of Eielson Air Force Base, Alaska',
  'rms': 0.78,
  'status': 'automatic',
  'time': '2016-06-17T20:22:05.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:48:53.032Z'},
 {'depth': 12.183,
  'depthError': 0.32,
  'dmin': 0.0109,
  'gap': 50.0,
  'horizontalError': 0.33,
  'id': 'hv61300921',
  'latitude': 19.4001667,
  'locationSource': 'hv',
  'longitude': -155.2546667,
  'mag': 2.05,
  'magError': 0.264,
  'magNst': 16.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 46.0,
  'place': '3km SSW of Volcano, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-17T20:22:01.600Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:17:08.400Z'},
 {'depth': -0.41,
  'depthError': 31.61,
  'dmin': 0.5199,
  'gap': 133.0,
  'horizontalError': 0.96,
  'id': 'uw61169756',
  'latitude': 47.356333299999996,
  'locationSource': 'uw',
  'longitude': -117.876,
  'mag': 1.99,
  'magError': 0.23199999999999998,
  'magNst': 8.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 17.0,
  'place': '26km WSW of Cheney, Washington',
  'rms': 0.48,
  'status': 'reviewed',
  'time': '2016-06-17T20:18:26.180Z',
  'type': 'explosion',
  'updated': '2016-06-20T17:03:26.420Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13656158',
  'latitude': 63.5613,
  'locationSource': 'ak',
  'longitude': -147.4313,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '78km ENE of Cantwell, Alaska',
  'rms': 0.59,
  'status': 'automatic',
  'time': '2016-06-17T20:04:41.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:48:54.815Z'},
 {'depth': 120.3,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13656156',
  'latitude': 63.1678,
  'locationSource': 'ak',
  'longitude': -150.7143,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '91km WSW of Cantwell, Alaska',
  'rms': 0.47,
  'status': 'automatic',
  'time': '2016-06-17T20:02:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:48:54.113Z'},
 {'depth': 11.04,
  'depthError': 0.51,
  'dmin': 0.06429,
  'gap': 55.0,
  'horizontalError': 0.35,
  'id': 'ci37390183',
  'latitude': 32.7011667,
  'locationSource': 'ci',
  'longitude': -115.96633329999999,
  'mag': 1.39,
  'magError': 0.23,
  'magNst': 21.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 17.0,
  'place': '4km SE of Ocotillo, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T19:44:36.240Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:51:44.010Z'},
 {'depth': 8.53,
  'depthError': 0.47,
  'dmin': 0.004393,
  'gap': 132.0,
  'horizontalError': 0.35,
  'id': 'ci37390175',
  'latitude': 32.653,
  'locationSource': 'ci',
  'longitude': -115.7235,
  'mag': 1.21,
  'magError': 0.204,
  'magNst': 7.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '15km WNW of Progreso, B.C., MX',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-17T19:41:59.250Z',
  'type': 'earthquake',
  'updated': '2016-06-20T16:03:46.805Z'},
 {'depth': -0.64,
  'depthError': 31.61,
  'dmin': 0.2353,
  'gap': 201.0,
  'horizontalError': 2.96,
  'id': 'uw61169736',
  'latitude': 44.2468333,
  'locationSource': 'uw',
  'longitude': -123.30616670000002,
  'mag': 1.57,
  'magError': 0.087,
  'magNst': 9.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 6.0,
  'place': '8km WNW of Junction City, Oregon',
  'rms': 0.46,
  'status': 'reviewed',
  'time': '2016-06-17T19:37:56.690Z',
  'type': 'explosion',
  'updated': '2016-06-17T20:09:28.040Z'},
 {'depth': -0.54,
  'depthError': 31.61,
  'dmin': 0.05301,
  'gap': 55.0,
  'horizontalError': 0.34,
  'id': 'ci37390167',
  'latitude': 33.85,
  'locationSource': 'ci',
  'longitude': -117.49533329999998,
  'mag': 1.48,
  'magError': 0.145,
  'magNst': 32.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 43.0,
  'place': '4km SE of Home Gardens, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-17T19:22:23.080Z',
  'type': 'quarry blast',
  'updated': '2016-06-20T16:00:43.301Z'},
 {'depth': -0.47,
  'depthError': 31.61,
  'dmin': 0.1291,
  'gap': 268.0,
  'horizontalError': 5.48,
  'id': 'uw61169726',
  'latitude': 44.6501667,
  'locationSource': 'uw',
  'longitude': -123.461,
  'mag': 1.66,
  'magError': 0.162,
  'magNst': 3.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 3.0,
  'place': '14km NNW of Philomath, Oregon',
  'rms': 0.29,
  'status': 'reviewed',
  'time': '2016-06-17T19:16:39.960Z',
  'type': 'explosion',
  'updated': '2016-06-17T20:06:39.160Z'},
 {'depth': 35.5,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13656150',
  'latitude': 60.4469,
  'locationSource': 'ak',
  'longitude': -150.3307,
  'mag': 2.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '25km ESE of Sterling, Alaska',
  'rms': 0.88,
  'status': 'automatic',
  'time': '2016-06-17T19:14:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T19:42:57.753Z'},
 {'depth': 9.94,
  'depthError': 0.22,
  'dmin': 0.052660000000000005,
  'gap': 159.0,
  'horizontalError': 0.12,
  'id': 'nc72652351',
  'latitude': 35.8485,
  'locationSource': 'nc',
  'longitude': -121.33683329999998,
  'mag': 2.49,
  'magError': 0.184,
  'magNst': 83.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 86.0,
  'place': '26km NNW of San Simeon, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-17T19:10:39.330Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:13:01.994Z'},
 {'depth': 3.29,
  'depthError': 0.21,
  'dmin': 0.009409,
  'gap': 48.0,
  'horizontalError': 0.15,
  'id': 'nc72652346',
  'latitude': 38.8018333,
  'locationSource': 'nc',
  'longitude': -122.8211667,
  'mag': 1.09,
  'magError': 0.11599999999999999,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 42.0,
  'place': '6km WNW of The Geysers, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T19:04:17.120Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:55:02.632Z'},
 {'depth': -2.0,
  'depthError': 31.61,
  'dmin': 0.198,
  'gap': 100.0,
  'horizontalError': 0.5,
  'id': 'mb80155734',
  'latitude': 46.0195,
  'locationSource': 'mb',
  'longitude': -112.475,
  'mag': 1.85,
  'magError': 0.162,
  'magNst': 6.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 10.0,
  'place': '4km ENE of Butte, Montana',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T19:00:15.120Z',
  'type': 'quarry blast',
  'updated': '2016-06-17T22:37:33.900Z'},
 {'depth': 55.5,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13656145',
  'latitude': 60.7779,
  'locationSource': 'ak',
  'longitude': -151.2108,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '10km NNE of Nikiski, Alaska',
  'rms': 0.79,
  'status': 'automatic',
  'time': '2016-06-17T18:50:43.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T19:42:59.365Z'},
 {'depth': 0.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13656144',
  'latitude': 64.0235,
  'locationSource': 'ak',
  'longitude': -154.5547,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '91km SSE of Ruby, Alaska',
  'rms': 0.62,
  'status': 'automatic',
  'time': '2016-06-17T18:48:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T19:42:58.752Z'},
 {'depth': 12.42,
  'depthError': 0.47,
  'dmin': 0.04893,
  'gap': 84.0,
  'horizontalError': 0.24,
  'id': 'ci37390127',
  'latitude': 33.4766667,
  'locationSource': 'ci',
  'longitude': -116.4435,
  'mag': 1.01,
  'magError': 0.18899999999999997,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 35.0,
  'place': '23km ESE of Anza, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T18:43:27.520Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:51:39.811Z'},
 {'depth': -0.27,
  'depthError': 31.61,
  'dmin': 0.026389999999999997,
  'gap': 57.0,
  'horizontalError': 0.19,
  'id': 'nc72652336',
  'latitude': 36.749,
  'locationSource': 'nc',
  'longitude': -121.59166670000002,
  'mag': 1.63,
  'magError': 0.222,
  'magNst': 33.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 37.0,
  'place': '0km E of Quarry near Salinas, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-17T18:18:50.760Z',
  'type': 'quarry blast',
  'updated': '2016-06-17T22:53:06.432Z'},
 {'depth': 11.05,
  'depthError': 0.45,
  'dmin': 0.07697999999999999,
  'gap': 44.0,
  'horizontalError': 0.2,
  'id': 'ci37390095',
  'latitude': 33.4616667,
  'locationSource': 'ci',
  'longitude': -116.48100000000001,
  'mag': 1.37,
  'magError': 0.22399999999999998,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 41.0,
  'place': '21km ESE of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-17T18:04:35.280Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:52:51.810Z'},
 {'depth': 2.61,
  'depthError': 0.16,
  'dmin': 0.01347,
  'gap': 56.0,
  'horizontalError': 0.11,
  'id': 'nc72652321',
  'latitude': 38.805,
  'locationSource': 'nc',
  'longitude': -122.81266670000001,
  'mag': 1.91,
  'magError': 0.16699999999999998,
  'magNst': 26.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 61.0,
  'place': '5km WNW of The Geysers, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-17T18:03:11.100Z',
  'type': 'earthquake',
  'updated': '2016-06-18T01:58:02.951Z'},
 {'depth': 3.77,
  'depthError': 0.72,
  'dmin': 0.03921,
  'gap': 91.0,
  'horizontalError': 0.27,
  'id': 'nc72652306',
  'latitude': 37.7906667,
  'locationSource': 'nc',
  'longitude': -121.8455,
  'mag': 1.09,
  'magError': 0.265,
  'magNst': 9.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '6km ESE of Blackhawk, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-17T17:33:32.260Z',
  'type': 'earthquake',
  'updated': '2016-06-17T22:40:02.438Z'},
 {'depth': 16.51,
  'depthError': 0.59,
  'dmin': 0.09289,
  'gap': 109.0,
  'horizontalError': 0.42,
  'id': 'uw61169681',
  'latitude': 44.6118333,
  'locationSource': 'uw',
  'longitude': -122.7775,
  'mag': 1.67,
  'magError': 0.18100000000000002,
  'magNst': 10.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 8.0,
  'place': '13km NE of Lebanon, Oregon',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-17T17:25:20.580Z',
  'type': 'earthquake',
  'updated': '2016-06-17T18:17:33.350Z'},
 {'depth': 36.0,
  'depthError': 14.3,
  'dmin': 0.85878941,
  'gap': 270.0,
  'horizontalError': 3.2,
  'id': 'pr16169009',
  'latitude': 19.2175,
  'locationSource': 'pr',
  'longitude': -64.958,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 9.0,
  'place': '95km NNW of Road Town, British Virgin Islands',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-17T17:16:16.600Z',
  'type': 'earthquake',
  'updated': '2016-06-17T18:03:45.392Z'},
 {'depth': 12.1,
  'depthError': 0.47,
  'dmin': 0.005751,
  'gap': 90.0,
  'horizontalError': 0.36,
  'id': 'nc72652301',
  'latitude': 40.247,
  'locationSource': 'nc',
  'longitude': -124.16533329999999,
  'mag': 1.0,
  'magError': 0.239,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 10.0,
  'place': '28km S of Rio Dell, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-17T17:14:04.580Z',
  'type': 'earthquake',
  'updated': '2016-06-17T22:57:03.501Z'},
 {'depth': 11.0,
  'depthError': 6.0,
  'dmin': 0.81297533,
  'gap': 277.2,
  'horizontalError': 4.4,
  'id': 'pr16169011',
  'latitude': 19.1678,
  'locationSource': 'pr',
  'longitude': -64.9972,
  'mag': 2.4,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 7.0,
  'place': '91km N of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-17T16:58:28.300Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:53:31.282Z'},
 {'depth': 0.77,
  'depthError': 1.7,
  'dmin': 0.1355,
  'gap': 81.0,
  'horizontalError': 0.29,
  'id': 'nc72652286',
  'latitude': 38.9856667,
  'locationSource': 'nc',
  'longitude': -123.38433329999998,
  'mag': 1.14,
  'magError': 0.13699999999999998,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 8.0,
  'place': '3km SSW of Boonville, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-17T16:44:44.250Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:01:02.575Z'},
 {'depth': 98.9,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13656079',
  'latitude': 60.4558,
  'locationSource': 'ak',
  'longitude': -152.2309,
  'mag': 3.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '28km E of Redoubt Volcano, Alaska',
  'rms': 0.51,
  'status': 'automatic',
  'time': '2016-06-17T16:41:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:24:55.216Z'},
 {'depth': 39.0,
  'depthError': 12.9,
  'dmin': 0.81836522,
  'gap': 280.8,
  'horizontalError': 3.3,
  'id': 'pr16169010',
  'latitude': 19.1758,
  'locationSource': 'pr',
  'longitude': -64.96300000000001,
  'mag': 2.6,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 7.0,
  'place': '91km NNW of Road Town, British Virgin Islands',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-17T16:29:38.500Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:06:07.174Z'},
 {'depth': 80.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': nan,
  'id': 'ak13656076',
  'latitude': 60.0841,
  'locationSource': 'ak',
  'longitude': -152.6223,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '45km S of Redoubt Volcano, Alaska',
  'rms': nan,
  'status': 'automatic',
  'time': '2016-06-17T16:28:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T16:53:09.220Z'},
 {'depth': 10.4,
  'depthError': 3.6,
  'dmin': 0.122,
  'gap': 215.51,
  'horizontalError': 6.98,
  'id': 'nn00548396',
  'latitude': 41.9055,
  'locationSource': 'nn',
  'longitude': -119.6433,
  'mag': 1.6,
  'magError': 0.26,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '66km ESE of Lakeview, Oregon',
  'rms': 0.1358,
  'status': 'reviewed',
  'time': '2016-06-17T16:15:17.852Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:39:00.382Z'},
 {'depth': 2.4,
  'depthError': 0.2,
  'dmin': 0.0067480000000000005,
  'gap': 49.0,
  'horizontalError': 0.15,
  'id': 'nc72652276',
  'latitude': 38.8411667,
  'locationSource': 'nc',
  'longitude': -122.8275,
  'mag': 1.52,
  'magError': 0.152,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 42.0,
  'place': '9km WNW of Cobb, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-17T16:13:45.400Z',
  'type': 'earthquake',
  'updated': '2016-06-18T00:09:03.684Z'},
 {'depth': 5.3,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13656074',
  'latitude': 61.3178,
  'locationSource': 'ak',
  'longitude': -152.4902,
  'mag': 1.5,
  '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-06-17T16:10:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T16:53:08.205Z'},
 {'depth': 12.7,
  'depthError': 0.5,
  'dmin': 0.03863,
  'gap': 119.0,
  'horizontalError': 0.41,
  'id': 'ci37389983',
  'latitude': 33.9398333,
  'locationSource': 'ci',
  'longitude': -118.4745,
  'mag': 1.62,
  'magError': 0.172,
  'magNst': 36.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 23.0,
  'place': '5km SSW of Marina del Rey, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-17T16:06:48.550Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:56:32.519Z'},
 {'depth': -1.41,
  'depthError': 31.61,
  'dmin': 0.04779,
  'gap': 45.0,
  'horizontalError': 0.25,
  'id': 'ci37389967',
  'latitude': 34.3396667,
  'locationSource': 'ci',
  'longitude': -116.88433329999998,
  'mag': 1.27,
  'magError': 0.111,
  'magNst': 38.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 46.0,
  'place': '10km NNW of Big Bear City, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T16:03:15.000Z',
  'type': 'quarry blast',
  'updated': '2016-06-17T23:48:01.197Z'},
 {'depth': 6.78,
  'depthError': 0.68,
  'dmin': 0.08671,
  'gap': 88.0,
  'horizontalError': 0.26,
  'id': 'ci37389951',
  'latitude': 35.6148333,
  'locationSource': 'ci',
  'longitude': -118.28166670000002,
  'mag': 1.25,
  'magError': 0.267,
  'magNst': 16.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 13.0,
  'place': '17km E of Lake Isabella, CA',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T15:49:46.290Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:19:23.323Z'},
 {'depth': 8.8,
  'depthError': 4.6,
  'dmin': 0.12300000000000001,
  'gap': 216.72,
  'horizontalError': 6.53,
  'id': 'nn00548395',
  'latitude': 41.8977,
  'locationSource': 'nn',
  'longitude': -119.6474,
  'mag': 1.0,
  'magError': 0.14,
  'magNst': 2.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 4.0,
  'place': '66km ESE of Lakeview, Oregon',
  'rms': 0.1146,
  'status': 'reviewed',
  'time': '2016-06-17T15:43:56.175Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:38:54.481Z'},
 {'depth': 1.35,
  'depthError': 0.17,
  'dmin': 0.007384999999999999,
  'gap': 67.0,
  'horizontalError': 0.11,
  'id': 'nc72652266',
  'latitude': 38.816,
  'locationSource': 'nc',
  'longitude': -122.81016670000001,
  'mag': 1.46,
  'magError': 0.09699999999999999,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 42.0,
  'place': '6km NW of The Geysers, California',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-17T15:26:59.060Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:43:02.611Z'},
 {'depth': 9.4,
  'depthError': 3.4,
  'dmin': 0.11900000000000001,
  'gap': 215.19,
  'horizontalError': 4.56,
  'id': 'nn00548394',
  'latitude': 41.9069,
  'locationSource': 'nn',
  'longitude': -119.6468,
  'mag': 1.3,
  'magError': 0.29,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '65km ESE of Lakeview, Oregon',
  'rms': 0.2275,
  'status': 'reviewed',
  'time': '2016-06-17T15:07:58.632Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:38:48.653Z'},
 {'depth': 100.8,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13656068',
  'latitude': 62.9787,
  'locationSource': 'ak',
  'longitude': -150.796,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '81km NNW of Talkeetna, Alaska',
  'rms': 0.32,
  'status': 'automatic',
  'time': '2016-06-17T15:04:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T15:41:31.991Z'},
 {'depth': 10.2,
  'depthError': 2.4,
  'dmin': 0.109,
  'gap': 213.54,
  'horizontalError': 3.77,
  'id': 'nn00548369',
  'latitude': 41.9149,
  'locationSource': 'nn',
  'longitude': -119.6566,
  'mag': 1.7,
  'magError': 0.25,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '64km ESE of Lakeview, Oregon',
  'rms': 0.1368,
  'status': 'reviewed',
  'time': '2016-06-17T15:01:37.497Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:37:38.450Z'},
 {'depth': 11.16,
  'depthError': 0.45,
  'dmin': 0.03107,
  'gap': 29.0,
  'horizontalError': 0.13,
  'id': 'ci37389919',
  'latitude': 33.3538333,
  'locationSource': 'ci',
  'longitude': -116.34883329999998,
  'mag': 2.28,
  'magError': 0.165,
  'magNst': 106.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 78.0,
  'place': '11km NNE of Borrego Springs, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-17T15:00:38.560Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:43:20.500Z'},
 {'depth': 10.0,
  'depthError': 2.7,
  'dmin': 0.134,
  'gap': 128.98,
  'horizontalError': 3.33,
  'id': 'nn00548368',
  'latitude': 41.8875,
  'locationSource': 'nn',
  'longitude': -119.6372,
  'mag': 1.9,
  'magError': 0.27,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 6.0,
  'place': '67km ESE of Lakeview, Oregon',
  'rms': 0.1336,
  'status': 'reviewed',
  'time': '2016-06-17T14:59:23.176Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:37:32.590Z'},
 {'depth': 9.91,
  'depthError': 0.42,
  'dmin': 0.06667999999999999,
  'gap': 75.0,
  'horizontalError': 0.26,
  'id': 'ci37389911',
  'latitude': 33.4785,
  'locationSource': 'ci',
  'longitude': -116.48483329999999,
  'mag': 1.07,
  'magError': 0.17600000000000002,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 39.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-17T14:51:41.950Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:19:41.256Z'},
 {'depth': 0.0,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13656067',
  'latitude': 65.4058,
  'locationSource': 'ak',
  'longitude': -144.8457,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '10km SW of Circle Hot Springs Station, Alaska',
  'rms': 0.9,
  'status': 'automatic',
  'time': '2016-06-17T14:50:43.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T15:41:31.066Z'},
 {'depth': 8.75,
  'depthError': 9.04,
  'dmin': 0.3229,
  'gap': 251.0,
  'horizontalError': 0.73,
  'id': 'uw61169621',
  'latitude': 46.549833299999996,
  'locationSource': 'uw',
  'longitude': -121.4425,
  'mag': 1.08,
  'magError': 0.22,
  'magNst': 7.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 5.0,
  'place': '18km ESE of Packwood, Washington',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T14:46:06.320Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:51:54.900Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.977,
  'gap': 153.0,
  'horizontalError': 4.9,
  'id': 'us20006520',
  'latitude': -20.6163,
  'locationSource': 'us',
  'longitude': 168.5269,
  'mag': 4.7,
  'magError': 0.12300000000000001,
  'magNst': 20.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '123km NNE of Tadine, New Caledonia',
  'rms': 0.57,
  'status': 'reviewed',
  'time': '2016-06-17T14:39:35.390Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:51:27.321Z'},
 {'depth': 17.96,
  'depthError': 0.57,
  'dmin': 0.2193,
  'gap': 53.0,
  'horizontalError': 0.2,
  'id': 'se60147326',
  'latitude': 35.3501667,
  'locationSource': 'se',
  'longitude': -84.8731667,
  'mag': 2.59,
  'magError': 0.146,
  'magNst': 19.0,
  'magSource': 'se',
  'magType': 'md',
  'net': 'se',
  'nst': 33.0,
  'place': '12km N of Hopewell, Tennessee',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-17T14:38:15.320Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:19:20.331Z'},
 {'depth': 6.74,
  'depthError': 1.01,
  'dmin': 0.08635,
  'gap': 109.0,
  'horizontalError': 0.6,
  'id': 'ci37389895',
  'latitude': 35.6151667,
  'locationSource': 'ci',
  'longitude': -118.2815,
  'mag': 1.04,
  'magError': 0.25,
  'magNst': 10.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 9.0,
  'place': '17km E of Lake Isabella, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T14:16:19.530Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:38:03.173Z'},
 {'depth': 7.67,
  'depthError': 0.53,
  'dmin': 0.08517000000000001,
  'gap': 64.0,
  'horizontalError': 0.15,
  'id': 'ci37389887',
  'latitude': 35.6163333,
  'locationSource': 'ci',
  'longitude': -118.28116670000001,
  'mag': 2.28,
  'magError': 0.18899999999999997,
  'magNst': 61.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '17km E of Lake Isabella, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T14:14:11.840Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:44:17.031Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13655768',
  'latitude': 63.0229,
  'locationSource': 'ak',
  'longitude': -151.5394,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '106km NW of Talkeetna, Alaska',
  'rms': 0.67,
  'status': 'automatic',
  'time': '2016-06-17T14:06:07.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:34:57.961Z'},
 {'depth': 3.93,
  'depthError': 1.67,
  'dmin': 0.08221,
  'gap': 82.0,
  'horizontalError': 0.53,
  'id': 'ci37389871',
  'latitude': 34.3898333,
  'locationSource': 'ci',
  'longitude': -119.417,
  'mag': 1.59,
  'magError': 0.252,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 15.0,
  'place': '9km E of Carpinteria, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-17T14:02:49.710Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:38:11.209Z'},
 {'depth': 6.21,
  'depthError': 0.72,
  'dmin': 0.0863,
  'gap': 87.0,
  'horizontalError': 0.25,
  'id': 'ci37389863',
  'latitude': 35.6151667,
  'locationSource': 'ci',
  'longitude': -118.28133329999999,
  'mag': 1.47,
  'magError': 0.252,
  'magNst': 16.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 15.0,
  'place': '17km E of Lake Isabella, CA',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T13:55:51.570Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:38:30.572Z'},
 {'depth': -1.55,
  'depthError': 9.07,
  'dmin': 0.00838,
  'gap': 225.0,
  'horizontalError': 1.51,
  'id': 'uw61169606',
  'latitude': 46.1961667,
  'locationSource': 'uw',
  'longitude': -122.20116670000002,
  'mag': 1.1,
  'magError': 0.057999999999999996,
  'magNst': 3.0,
  'magSource': 'uw',
  'magType': 'md',
  'net': 'uw',
  'nst': 5.0,
  'place': '37km NNE of Amboy, Washington',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-17T13:53:30.590Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:48:02.580Z'},
 {'depth': 7.55,
  'depthError': 0.62,
  'dmin': 0.08681,
  'gap': 88.0,
  'horizontalError': 0.19,
  'id': 'ci37389847',
  'latitude': 35.6151667,
  'locationSource': 'ci',
  'longitude': -118.28299999999999,
  'mag': 1.89,
  'magError': 0.271,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 27.0,
  'place': '17km E of Lake Isabella, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T13:46:34.770Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:39:13.930Z'},
 {'depth': 7.0,
  'depthError': 0.33,
  'dmin': 0.09532,
  'gap': 27.0,
  'horizontalError': 0.08,
  'id': 'ci37389823',
  'latitude': 34.2021667,
  'locationSource': 'ci',
  'longitude': -116.83133329999998,
  'mag': 3.07,
  'magError': 0.136,
  'magNst': 205.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 115.0,
  'place': '7km S of Big Bear City, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T13:39:59.470Z',
  'type': 'earthquake',
  'updated': '2016-06-17T14:03:05.592Z'},
 {'depth': 3.2,
  'depthError': 9.2,
  'dmin': 0.9129999999999999,
  'gap': 97.92,
  'horizontalError': 3.7,
  'id': 'nn00548353',
  'latitude': 39.5857,
  'locationSource': 'nn',
  'longitude': -115.7756,
  'mag': 1.4,
  'magError': 0.0,
  'magNst': 1.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 6.0,
  'place': '17km ENE of Eureka, Nevada',
  'rms': 0.1334,
  'status': 'reviewed',
  'time': '2016-06-17T13:21:05.447Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:38:01.688Z'},
 {'depth': 0.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13655758',
  'latitude': 61.2959,
  'locationSource': 'ak',
  'longitude': -152.4331,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '91km NW of Nikiski, Alaska',
  'rms': 0.63,
  'status': 'automatic',
  'time': '2016-06-17T13:00:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:33:13.196Z'},
 {'depth': 3.77,
  'depthError': 1.49,
  'dmin': 0.1861,
  'gap': 65.0,
  'horizontalError': 0.35,
  'id': 'ci37389751',
  'latitude': 32.9938333,
  'locationSource': 'ci',
  'longitude': -116.23683329999999,
  'mag': 1.42,
  'magError': 0.172,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 35.0,
  'place': '19km SSW of Ocotillo Wells, CA',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-17T12:25:26.040Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:18:48.190Z'},
 {'depth': 3.5,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13655461',
  'latitude': 59.9026,
  'locationSource': 'ak',
  'longitude': -147.4287,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '80km NW of Middleton Island, Alaska',
  'rms': 0.77,
  'status': 'automatic',
  'time': '2016-06-17T12:14:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T12:59:48.502Z'},
 {'depth': 68.3,
  'depthError': 2.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.4,
  'id': 'ak13655460',
  'latitude': 59.8709,
  'locationSource': 'ak',
  'longitude': -151.516,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '19km NW of Fritz Creek, Alaska',
  'rms': 0.13,
  'status': 'automatic',
  'time': '2016-06-17T12:12:40.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T12:59:47.579Z'},
 {'depth': 1.78,
  'depthError': 0.16,
  'dmin': 0.005717,
  'gap': 45.0,
  'horizontalError': 0.12,
  'id': 'nc72652226',
  'latitude': 38.803000000000004,
  'locationSource': 'nc',
  'longitude': -122.79166670000001,
  'mag': 1.73,
  'magError': 0.268,
  'magNst': 21.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 54.0,
  'place': '4km NW of The Geysers, California',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-17T12:04:52.010Z',
  'type': 'earthquake',
  'updated': '2016-06-17T21:44:02.293Z'},
 {'depth': 35.0,
  'depthError': 2.0,
  'dmin': 1.806,
  'gap': 117.0,
  'horizontalError': 7.0,
  'id': 'us20006519',
  'latitude': 33.2778,
  'locationSource': 'us',
  'longitude': 141.9599,
  'mag': 4.6,
  'magError': 0.05,
  'magNst': 117.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '202km E of Hachijo-jima, Japan',
  'rms': 0.87,
  'status': 'reviewed',
  'time': '2016-06-17T11:50:12.690Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:30:04.199Z'},
 {'depth': 2.94,
  'depthError': 0.5,
  'dmin': 0.008889,
  'gap': 107.0,
  'horizontalError': 0.3,
  'id': 'nc72652221',
  'latitude': 38.8061676,
  'locationSource': 'nc',
  'longitude': -122.8183365,
  'mag': 1.02,
  'magError': 0.06,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '6km WNW of The Geysers, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-17T11:49:42.150Z',
  'type': 'earthquake',
  'updated': '2016-06-17T12:20:02.648Z'},
 {'depth': 1.98,
  'depthError': 0.37,
  'dmin': 0.07199,
  'gap': 56.0,
  'horizontalError': 0.24,
  'id': 'ci37389695',
  'latitude': 36.0788333,
  'locationSource': 'ci',
  'longitude': -117.87533329999998,
  'mag': 1.52,
  'magError': 0.198,
  'magNst': 22.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '8km ENE of Coso Junction, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T11:22:43.530Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:18:44.806Z'},
 {'depth': 278.09,
  'depthError': 9.5,
  'dmin': 1.252,
  'gap': 46.0,
  'horizontalError': 9.4,
  'id': 'us20006517',
  'latitude': -7.707999999999999,
  'locationSource': 'us',
  'longitude': 123.0941,
  'mag': 4.4,
  'magError': 0.127,
  'magNst': 18.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '94km NNE of Palue, Indonesia',
  'rms': 0.71,
  'status': 'reviewed',
  'time': '2016-06-17T10:57:25.330Z',
  'type': 'earthquake',
  'updated': '2016-06-17T11:35:32.255Z'},
 {'depth': 2.8,
  'depthError': 0.48,
  'dmin': 0.047139999999999994,
  'gap': 72.0,
  'horizontalError': 0.2,
  'id': 'nc72652216',
  'latitude': 38.9115,
  'locationSource': 'nc',
  'longitude': -122.69116670000001,
  'mag': 1.83,
  'magError': 0.35,
  'magNst': 17.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 48.0,
  'place': '7km SW of Clearlake, California',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-17T10:34:45.490Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:37:04.086Z'},
 {'depth': 5.53,
  'depthError': 1.01,
  'dmin': 0.08435,
  'gap': 92.0,
  'horizontalError': 0.5,
  'id': 'nc72652211',
  'latitude': 39.2003333,
  'locationSource': 'nc',
  'longitude': -123.19266670000002,
  'mag': 1.67,
  'magError': 0.11,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 9.0,
  'place': '5km NNE of Ukiah, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T10:24:03.540Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:14:02.442Z'},
 {'depth': 10.0,
  'depthError': 4.7,
  'dmin': 0.6404988,
  'gap': 352.8,
  'horizontalError': 10.1,
  'id': 'pr16169008',
  'latitude': 18.45,
  'locationSource': 'pr',
  'longitude': -65.9408,
  'mag': 1.8,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '6km NNW of Santa Barbara, Puerto Rico',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-17T10:17:32.900Z',
  'type': 'earthquake',
  'updated': '2016-06-17T12:17:20.729Z'},
 {'depth': 0.0,
  'depthError': 4.6,
  'dmin': 0.982,
  'gap': 211.78,
  'horizontalError': 6.51,
  'id': 'nn00548367',
  'latitude': 39.6228,
  'locationSource': 'nn',
  'longitude': -115.852,
  'mag': 1.4,
  'magError': 0.14,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 4.0,
  'place': '15km NE of Eureka, Nevada',
  'rms': 0.1978,
  'status': 'reviewed',
  'time': '2016-06-17T10:15:47.427Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:37:20.906Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 1.177,
  'gap': 86.0,
  'horizontalError': 7.6,
  'id': 'us20006514',
  'latitude': -20.6054,
  'locationSource': 'us',
  'longitude': 168.8781,
  'mag': 4.7,
  'magError': 0.075,
  'magNst': 54.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '123km SSW of Isangel, Vanuatu',
  'rms': 0.56,
  'status': 'reviewed',
  'time': '2016-06-17T10:11:51.550Z',
  'type': 'earthquake',
  'updated': '2016-06-17T11:14:38.967Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.341,
  'gap': 73.0,
  'horizontalError': 4.2,
  'id': 'us20006512',
  'latitude': 30.2038,
  'locationSource': 'us',
  'longitude': 57.5366,
  'mag': 4.4,
  'magError': 0.077,
  'magNst': 49.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '44km E of Kerman, Iran',
  'rms': 1.35,
  'status': 'reviewed',
  'time': '2016-06-17T10:03:47.020Z',
  'type': 'earthquake',
  'updated': '2016-06-17T12:41:49.231Z'},
 {'depth': 23.4,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13655164',
  'latitude': 60.3467,
  'locationSource': 'ak',
  'longitude': -143.3508,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '59km WNW of Cape Yakataga, Alaska',
  'rms': 0.46,
  'status': 'automatic',
  'time': '2016-06-17T09:51:48.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T10:25:54.651Z'},
 {'depth': 2.6,
  'depthError': 1.9,
  'dmin': 0.065,
  'gap': 101.11,
  'horizontalError': 0.93,
  'id': 'nn00548341',
  'latitude': 38.4886,
  'locationSource': 'nn',
  'longitude': -118.385,
  'mag': 1.4,
  'magError': 0.28,
  'magNst': 13.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 18.0,
  'place': '21km E of Hawthorne, Nevada',
  'rms': 0.1239,
  'status': 'reviewed',
  'time': '2016-06-17T09:47:42.888Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:36:45.234Z'},
 {'depth': 1.18,
  'depthError': 5.5,
  'dmin': 0.099,
  'gap': 79.0,
  'horizontalError': 0.9,
  'id': 'us2000657p',
  'latitude': 45.6403,
  'locationSource': 'us',
  'longitude': -68.9922,
  'mag': 1.5,
  'magError': 0.09699999999999999,
  'magNst': 14.0,
  'magSource': 'us',
  'magType': 'ml',
  'net': 'us',
  'nst': nan,
  'place': '22km W of Millinocket, Maine',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-17T09:30:18.940Z',
  'type': 'earthquake',
  'updated': '2016-06-18T05:46:22.040Z'},
 {'depth': 1.76,
  'depthError': 0.27,
  'dmin': 0.07575,
  'gap': 54.0,
  'horizontalError': 0.16,
  'id': 'ci37389655',
  'latitude': 36.083,
  'locationSource': 'ci',
  'longitude': -117.87816670000001,
  'mag': 2.3,
  'magError': 0.166,
  'magNst': 58.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 25.0,
  'place': '8km NE of Coso Junction, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-17T09:28:35.090Z',
  'type': 'earthquake',
  'updated': '2016-06-17T22:30:04.414Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': 0.21899999999999997,
  'gap': 220.17,
  'horizontalError': 12.41,
  'id': 'nn00548339',
  'latitude': 37.1927,
  'locationSource': 'nn',
  'longitude': -115.1082,
  'mag': 1.1,
  'magError': 0.06,
  'magNst': 2.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '19km SSE of Alamo, Nevada',
  'rms': 0.1698,
  'status': 'reviewed',
  'time': '2016-06-17T09:26:30.999Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:37:55.719Z'},
 {'depth': 20.4,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13655159',
  'latitude': 60.3594,
  'locationSource': 'ak',
  'longitude': -141.1458,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '78km ENE of Cape Yakataga, Alaska',
  'rms': 0.26,
  'status': 'automatic',
  'time': '2016-06-17T09:04:02.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T09:53:23.835Z'},
 {'depth': 90.0,
  'depthError': 0.6,
  'dmin': 0.18595126,
  'gap': 190.8,
  'horizontalError': 1.4,
  'id': 'pr16169007',
  'latitude': 18.4575,
  'locationSource': 'pr',
  'longitude': -65.8348,
  'mag': 2.7,
  'magError': 0.0,
  'magNst': 9.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 9.0,
  'place': '3km N of Vieques, Puerto Rico',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-17T09:00:21.600Z',
  'type': 'earthquake',
  'updated': '2016-06-17T11:58:18.378Z'},
 {'depth': 58.9,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13654867',
  'latitude': 60.376000000000005,
  'locationSource': 'ak',
  'longitude': -152.965,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '17km SW of Redoubt Volcano, Alaska',
  'rms': 1.38,
  'status': 'automatic',
  'time': '2016-06-17T08:40:50.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T09:25:17.927Z'},
 {'depth': 136.88,
  'depthError': 7.3,
  'dmin': 4.614,
  'gap': 75.0,
  'horizontalError': 6.7,
  'id': 'us2000650t',
  'latitude': -7.5321,
  'locationSource': 'us',
  'longitude': 128.3645,
  'mag': 5.1,
  'magError': 0.09,
  'magNst': 40.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Kepulauan Barat Daya, Indonesia',
  'rms': 0.96,
  'status': 'reviewed',
  'time': '2016-06-17T08:39:41.360Z',
  'type': 'earthquake',
  'updated': '2016-06-17T08:55:08.695Z'},
 {'depth': 12.83,
  'depthError': 0.3,
  'dmin': 0.0627,
  'gap': 36.0,
  'horizontalError': 0.16,
  'id': 'ci37389623',
  'latitude': 33.6321667,
  'locationSource': 'ci',
  'longitude': -116.70200000000001,
  'mag': 1.79,
  'magError': 0.217,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 58.0,
  'place': '9km NNW of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-17T08:37:55.330Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:20:04.700Z'},
 {'depth': 8.0,
  'depthError': 4.7,
  'dmin': 0.133,
  'gap': 120.42,
  'horizontalError': 2.67,
  'id': 'nn00548346',
  'latitude': 41.902,
  'locationSource': 'nn',
  'longitude': -119.6282,
  'mag': 1.8,
  'magError': 0.45,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 6.0,
  'place': '67km ESE of Lakeview, Oregon',
  'rms': 0.1064,
  'status': 'reviewed',
  'time': '2016-06-17T08:30:40.288Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:36:10.205Z'},
 {'depth': 9.7,
  'depthError': 3.1,
  'dmin': 0.19699999999999998,
  'gap': 106.01,
  'horizontalError': 1.13,
  'id': 'nn00548336',
  'latitude': 39.503,
  'locationSource': 'nn',
  'longitude': -118.0662,
  'mag': 1.4,
  'magError': 0.24,
  'magNst': 9.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 14.0,
  'place': '61km E of Fallon, Nevada',
  'rms': 0.1204,
  'status': 'reviewed',
  'time': '2016-06-17T08:29:42.811Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:36:33.548Z'},
 {'depth': 2.16,
  'depthError': 0.61,
  'dmin': 0.02008,
  'gap': 134.0,
  'horizontalError': 0.53,
  'id': 'nc72652176',
  'latitude': 40.465166700000005,
  'locationSource': 'nc',
  'longitude': -121.54433329999999,
  'mag': 1.14,
  'magError': 0.187,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '29km E of Shingletown, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T08:26:34.240Z',
  'type': 'earthquake',
  'updated': '2016-06-17T18:37:02.864Z'},
 {'depth': 3.67,
  'depthError': 0.29,
  'dmin': 0.02536,
  'gap': 66.0,
  'horizontalError': 0.19,
  'id': 'nc72652181',
  'latitude': 38.3551667,
  'locationSource': 'nc',
  'longitude': -122.60916670000002,
  'mag': 1.17,
  'magError': 0.26899999999999996,
  'magNst': 19.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 17.0,
  'place': '7km NE of Penngrove, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T08:26:12.570Z',
  'type': 'earthquake',
  'updated': '2016-06-18T01:16:02.836Z'},
 {'depth': 4.86,
  'depthError': 1.31,
  'dmin': 0.08038,
  'gap': 92.0,
  'horizontalError': 0.31,
  'id': 'uw61169511',
  'latitude': 46.093999999999994,
  'locationSource': 'uw',
  'longitude': -122.37516670000001,
  'mag': 1.2,
  'magError': 0.146,
  'magNst': 18.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 24.0,
  'place': '21km NNE of Amboy, Washington',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-17T08:19:18.410Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:06:50.330Z'},
 {'depth': 84.7,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13654863',
  'latitude': 62.6154,
  'locationSource': 'ak',
  'longitude': -151.0817,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '59km WNW of Talkeetna, Alaska',
  'rms': 0.68,
  'status': 'automatic',
  'time': '2016-06-17T08:11:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T08:49:57.307Z'},
 {'depth': 95.0,
  'depthError': 6.5,
  'dmin': 0.70158424,
  'gap': 306.0,
  'horizontalError': 7.8,
  'id': 'pr16169006',
  'latitude': 19.0375,
  'locationSource': 'pr',
  'longitude': -64.7509,
  'mag': 2.8,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 5.0,
  'place': '70km NNW of Road Town, British Virgin Islands',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T08:06:20.500Z',
  'type': 'earthquake',
  'updated': '2016-06-17T11:57:10.819Z'},
 {'depth': 22.6,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13654859',
  'latitude': 64.6121,
  'locationSource': 'ak',
  'longitude': -147.9618,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '26km S of Ester, Alaska',
  'rms': 0.84,
  'status': 'automatic',
  'time': '2016-06-17T08:04:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T08:49:56.398Z'},
 {'depth': 0.61,
  'depthError': 0.68,
  'dmin': 0.009969,
  'gap': 87.0,
  'horizontalError': 0.32,
  'id': 'nc72652166',
  'latitude': 38.826168100000004,
  'locationSource': 'nc',
  'longitude': -122.8223343,
  'mag': 1.01,
  'magError': 0.14,
  'magNst': 3.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 9.0,
  'place': '7km NW of The Geysers, California',
  'rms': 0.02,
  'status': 'automatic',
  'time': '2016-06-17T07:47:18.200Z',
  'type': 'earthquake',
  'updated': '2016-06-17T08:18:01.962Z'},
 {'depth': 0.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.0,
  'id': 'ak13654856',
  'latitude': 58.6418,
  'locationSource': 'ak',
  'longitude': -154.1377,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '123km N of Larsen Bay, Alaska',
  'rms': 0.6,
  'status': 'automatic',
  'time': '2016-06-17T07:21:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T07:45:52.982Z'},
 {'depth': 9.6,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13654854',
  'latitude': 63.408,
  'locationSource': 'ak',
  'longitude': -150.3374,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '69km W of Cantwell, Alaska',
  'rms': 0.41,
  'status': 'automatic',
  'time': '2016-06-17T07:20:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T07:45:52.041Z'},
 {'depth': 9.2,
  'depthError': 2.6,
  'dmin': 0.402,
  'gap': 112.24,
  'horizontalError': 1.07,
  'id': 'nn00548334',
  'latitude': 38.6321,
  'locationSource': 'nn',
  'longitude': -119.8323,
  'mag': 1.3,
  'magError': 0.19,
  'magNst': 14.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 23.0,
  'place': '29km SSW of Gardnerville Ranchos, Nevada',
  'rms': 0.2127,
  'status': 'reviewed',
  'time': '2016-06-17T07:17:09.022Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:36:57.150Z'},
 {'depth': 27.45,
  'depthError': 0.68,
  'dmin': 0.059489999999999994,
  'gap': 47.0,
  'horizontalError': 0.38,
  'id': 'uw61169481',
  'latitude': 47.9491667,
  'locationSource': 'uw',
  'longitude': -122.41066670000001,
  'mag': 1.45,
  'magError': 0.099,
  'magNst': 16.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 20.0,
  'place': '7km W of Mukilteo, Washington',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T06:40:51.570Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:34:59.850Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.21899999999999997,
  'gap': 89.0,
  'horizontalError': 2.2,
  'id': 'us2000650g',
  'latitude': -30.5997,
  'locationSource': 'us',
  'longitude': -71.875,
  'mag': 5.0,
  'magError': 0.078,
  'magNst': 52.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '64km W of Ovalle, Chile',
  'rms': 1.09,
  'status': 'reviewed',
  'time': '2016-06-17T06:38:22.670Z',
  'type': 'earthquake',
  'updated': '2016-06-17T06:54:31.649Z'},
 {'depth': 13.0,
  'depthError': 0.57,
  'dmin': 0.1094,
  'gap': 48.0,
  'horizontalError': 0.22,
  'id': 'ci37389583',
  'latitude': 34.0873333,
  'locationSource': 'ci',
  'longitude': -117.28666670000001,
  'mag': 1.39,
  'magError': 0.111,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 61.0,
  'place': '3km ENE of Colton, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-17T06:34:11.390Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:21:16.970Z'},
 {'depth': -0.56,
  'depthError': 0.52,
  'dmin': 0.02675,
  'gap': 154.0,
  'horizontalError': 0.54,
  'id': 'nc72652156',
  'latitude': 36.4346667,
  'locationSource': 'nc',
  'longitude': -120.9883333,
  'mag': 1.15,
  'magError': 0.272,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 16.0,
  'place': '26km ENE of Greenfield, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-17T05:49:18.620Z',
  'type': 'earthquake',
  'updated': '2016-06-17T23:07:02.530Z'},
 {'depth': 35.7,
  'depthError': 3.0,
  'dmin': nan,
  'gap': 68.3999945280004,
  'horizontalError': 0.3,
  'id': 'ak13654563',
  'latitude': 62.2134,
  'locationSource': 'ak',
  'longitude': -149.3395,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': 22.0,
  'place': '27km ENE of Y, Alaska',
  'rms': 0.67,
  'status': 'automatic',
  'time': '2016-06-17T05:46:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T06:22:13.181Z'},
 {'depth': 15.4,
  'depthError': 0.4,
  'dmin': nan,
  'gap': 100.79999193600099,
  'horizontalError': 0.7,
  'id': 'ak13654562',
  'latitude': 61.2981,
  'locationSource': 'ak',
  'longitude': -147.5688,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': 6.0,
  'place': '68km WNW of Valdez, Alaska',
  'rms': 0.95,
  'status': 'automatic',
  'time': '2016-06-17T05:44:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T06:22:11.086Z'},
 {'depth': 5.0,
  'depthError': 7.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 2.4,
  'id': 'us2000657q',
  'latitude': 44.27,
  'locationSource': 'ott',
  'longitude': -65.2,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ott',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '56km WSW of Bridgewater, Canada',
  'rms': 0.71,
  'status': 'reviewed',
  'time': '2016-06-17T05:44:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T05:40:03.040Z'},
 {'depth': 0.0,
  'depthError': 1.3,
  'dmin': nan,
  'gap': 233.99998128000198,
  'horizontalError': 1.6,
  'id': 'ak13654561',
  'latitude': 66.3881,
  'locationSource': 'ak',
  'longitude': -149.3854,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': 5.0,
  'place': '102km SSE of Coldfoot, Alaska',
  'rms': 0.39,
  'status': 'automatic',
  'time': '2016-06-17T05:37:38.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T06:22:10.421Z'},
 {'depth': 98.0,
  'depthError': 9.4,
  'dmin': 0.63241396,
  'gap': 316.8,
  'horizontalError': 12.2,
  'id': 'pr16169005',
  'latitude': 18.9853,
  'locationSource': 'pr',
  'longitude': -64.9029,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '69km NNW of Road Town, British Virgin Islands',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-17T05:09:15.800Z',
  'type': 'earthquake',
  'updated': '2016-06-17T08:08:26.149Z'},
 {'depth': 5.0,
  'depthError': 1.9,
  'dmin': 0.106,
  'gap': 37.0,
  'horizontalError': 1.0,
  'id': 'us200064zw',
  'latitude': 35.6878,
  'locationSource': 'us',
  'longitude': -97.4109,
  'mag': 2.7,
  'magError': 0.063,
  'magNst': 66.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '7km ENE of Edmond, Oklahoma',
  'rms': 0.58,
  'status': 'reviewed',
  'time': '2016-06-17T05:09:15.020Z',
  'type': 'earthquake',
  'updated': '2016-06-17T05:44:25.643Z'},
 {'depth': 4.22,
  'depthError': 0.77,
  'dmin': 0.02843,
  'gap': 109.0,
  'horizontalError': 0.5,
  'id': 'uu60151097',
  'latitude': 44.808,
  'locationSource': 'uu',
  'longitude': -110.82166670000001,
  'mag': 1.01,
  'magError': 0.44299999999999995,
  'magNst': 3.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 14.0,
  'place': '27km NE of West Yellowstone, Montana',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-17T05:07:13.620Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:57:08.520Z'},
 {'depth': 18.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13654453',
  'latitude': 61.5632,
  'locationSource': 'ak',
  'longitude': -146.33,
  'mag': 2.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '48km N of Valdez, Alaska',
  'rms': 0.92,
  'status': 'automatic',
  'time': '2016-06-17T04:51:48.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T05:39:44.064Z'},
 {'depth': 8.8,
  'depthError': 2.3,
  'dmin': 0.193,
  'gap': 155.49,
  'horizontalError': 2.69,
  'id': 'nn00548331',
  'latitude': 39.5025,
  'locationSource': 'nn',
  'longitude': -118.0968,
  'mag': 1.2,
  'magError': 0.51,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 10.0,
  'place': '58km E of Fallon, Nevada',
  'rms': 0.1814,
  'status': 'reviewed',
  'time': '2016-06-17T04:51:39.894Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:37:03.119Z'},
 {'depth': 14.25,
  'depthError': 1.13,
  'dmin': 0.1452,
  'gap': 87.0,
  'horizontalError': 0.44,
  'id': 'uw61169401',
  'latitude': 48.3811667,
  'locationSource': 'uw',
  'longitude': -122.32866670000001,
  'mag': 1.2,
  'magError': 0.114,
  'magNst': 10.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 12.0,
  'place': '4km S of Mount Vernon, Washington',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T04:46:48.810Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:36:04.940Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13654451',
  'latitude': 63.4799,
  'locationSource': 'ak',
  'longitude': -151.0376,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '104km W of Cantwell, Alaska',
  'rms': 0.5,
  'status': 'automatic',
  'time': '2016-06-17T04:45:36.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T05:11:52.966Z'},
 {'depth': 19.45,
  'depthError': 1.89,
  'dmin': 0.3381,
  'gap': 71.0,
  'horizontalError': 0.46,
  'id': 'uw61169386',
  'latitude': 46.571999999999996,
  'locationSource': 'uw',
  'longitude': -122.6426667,
  'mag': 1.0,
  'magError': 0.184,
  'magNst': 20.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 15.0,
  'place': '20km E of Napavine, Washington',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-17T04:29:12.600Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:15:08.750Z'},
 {'depth': 9.98,
  'depthError': 0.39,
  'dmin': 0.07472000000000001,
  'gap': 97.0,
  'horizontalError': 0.23,
  'id': 'ci37389511',
  'latitude': 33.4673333,
  'locationSource': 'ci',
  'longitude': -116.485,
  'mag': 1.21,
  'magError': 0.179,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 43.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T04:27:57.160Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:21:34.160Z'},
 {'depth': 3.27,
  'depthError': 0.44,
  'dmin': 0.05049,
  'gap': 39.0,
  'horizontalError': 0.12,
  'id': 'nc72652131',
  'latitude': 36.982,
  'locationSource': 'nc',
  'longitude': -121.63816670000001,
  'mag': 2.46,
  'magError': 0.165,
  'magNst': 96.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 65.0,
  'place': '6km WSW of Gilroy, California',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-17T04:14:57.850Z',
  'type': 'earthquake',
  'updated': '2016-06-17T21:17:03.220Z'},
 {'depth': 29.0,
  'depthError': 1.3,
  'dmin': 0.19762936,
  'gap': 208.8,
  'horizontalError': 0.6,
  'id': 'pr16169004',
  'latitude': 18.2777,
  'locationSource': 'pr',
  'longitude': -67.0481,
  'mag': 1.8,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '6km WNW of Las Marias, Puerto Rico',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T03:57:07.400Z',
  'type': 'earthquake',
  'updated': '2016-06-17T08:07:12.817Z'},
 {'depth': 34.08,
  'depthError': 5.3,
  'dmin': 0.3,
  'gap': 89.0,
  'horizontalError': 4.8,
  'id': 'us200064zk',
  'latitude': -30.0603,
  'locationSource': 'us',
  'longitude': -71.5447,
  'mag': 4.6,
  'magError': 0.08900000000000001,
  'magNst': 41.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '22km WSW of Coquimbo, Chile',
  'rms': 0.81,
  'status': 'reviewed',
  'time': '2016-06-17T03:48:38.910Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:08:40.371Z'},
 {'depth': 11.25,
  'depthError': 1.07,
  'dmin': 0.04274,
  'gap': 99.0,
  'horizontalError': 0.42,
  'id': 'uw61169361',
  'latitude': 47.9423333,
  'locationSource': 'uw',
  'longitude': -119.77083329999999,
  'mag': 1.06,
  'magError': 0.059000000000000004,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 8.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T03:32:57.660Z',
  'type': 'earthquake',
  'updated': '2016-06-17T18:13:21.740Z'},
 {'depth': 114.82,
  'depthError': 7.0,
  'dmin': 0.379,
  'gap': 62.0,
  'horizontalError': 6.2,
  'id': 'us200064zj',
  'latitude': -22.9645,
  'locationSource': 'us',
  'longitude': -69.0692,
  'mag': 4.3,
  'magError': 0.2,
  'magNst': 7.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '56km SSW of Calama, Chile',
  'rms': 1.25,
  'status': 'reviewed',
  'time': '2016-06-17T03:30:53.850Z',
  'type': 'earthquake',
  'updated': '2016-06-17T03:48:18.762Z'},
 {'depth': 15.97,
  'depthError': 0.32,
  'dmin': 0.07664,
  'gap': 59.0,
  'horizontalError': 0.25,
  'id': 'ci37389479',
  'latitude': 33.7023333,
  'locationSource': 'ci',
  'longitude': -116.8055,
  'mag': 1.06,
  'magError': 0.193,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 35.0,
  'place': '9km WSW of Idyllwild, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-17T03:09:37.110Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:21:00.492Z'},
 {'depth': 25.5,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13654160',
  'latitude': 62.1528,
  'locationSource': 'ak',
  'longitude': -149.6703,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '9km E of Y, Alaska',
  'rms': 1.09,
  'status': 'automatic',
  'time': '2016-06-17T03:07:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T03:34:43.919Z'},
 {'depth': 13.62,
  'depthError': 0.33,
  'dmin': 0.06134,
  'gap': 98.0,
  'horizontalError': 0.22,
  'id': 'ci37389463',
  'latitude': 33.485833299999996,
  'locationSource': 'ci',
  'longitude': -116.48383329999999,
  'mag': 1.33,
  'magError': 0.06,
  'magNst': 13.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 29.0,
  'place': '19km ESE of Anza, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-17T02:35:42.130Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:44:48.342Z'},
 {'depth': 13.65,
  'depthError': 0.45,
  'dmin': 0.06721,
  'gap': 48.0,
  'horizontalError': 0.25,
  'id': 'ci37389455',
  'latitude': 33.478333299999996,
  'locationSource': 'ci',
  'longitude': -116.4855,
  'mag': 1.5,
  'magError': 0.135,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 43.0,
  'place': '19km ESE of Anza, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-17T02:35:11.390Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:22:53.140Z'},
 {'depth': 12.53,
  'depthError': 0.58,
  'dmin': 0.06346,
  'gap': 98.0,
  'horizontalError': 0.32,
  'id': 'ci37389447',
  'latitude': 33.4841667,
  'locationSource': 'ci',
  'longitude': -116.4855,
  'mag': 1.17,
  'magError': 0.146,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 36.0,
  'place': '19km ESE of Anza, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-17T02:34:59.900Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:22:49.020Z'},
 {'depth': 12.64,
  'depthError': 0.51,
  'dmin': 0.06717000000000001,
  'gap': 96.0,
  'horizontalError': 0.27,
  'id': 'ci37389439',
  'latitude': 33.4801667,
  'locationSource': 'ci',
  'longitude': -116.48733329999999,
  'mag': 1.11,
  'magError': 0.154,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 38.0,
  'place': '19km ESE of Anza, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-17T02:34:46.860Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:21:14.148Z'},
 {'depth': 7.78,
  'depthError': 1.81,
  'dmin': 0.1432,
  'gap': 46.0,
  'horizontalError': 0.35,
  'id': 'ci37389431',
  'latitude': 33.0353333,
  'locationSource': 'ci',
  'longitude': -116.4335,
  'mag': 1.15,
  'magError': 0.193,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '16km ESE of Julian, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-17T02:27:14.470Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:21:45.580Z'},
 {'depth': 169.0,
  'depthError': 5.1,
  'dmin': 1.23787846,
  'gap': 342.0,
  'horizontalError': 17.6,
  'id': 'pr16169003',
  'latitude': 18.0956,
  'locationSource': 'pr',
  'longitude': -68.7478,
  'mag': 3.7,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 9.0,
  'place': '34km SSW of Boca de Yuma, Dominican Republic',
  'rms': 0.77,
  'status': 'reviewed',
  'time': '2016-06-17T02:22:13.200Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:38:33.241Z'},
 {'depth': 4.98,
  'depthError': 0.43,
  'dmin': 0.009941,
  'gap': 50.0,
  'horizontalError': 0.25,
  'id': 'ci37389415',
  'latitude': 33.4943333,
  'locationSource': 'ci',
  'longitude': -115.87116670000002,
  'mag': 1.75,
  'magError': 0.14300000000000002,
  'magNst': 56.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 39.0,
  'place': '7km ESE of North Shore, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-17T02:10:23.200Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:39:45.481Z'},
 {'depth': 19.0,
  'depthError': 0.5,
  'dmin': 0.24973165,
  'gap': 316.8,
  'horizontalError': 1.0,
  'id': 'pr16169002',
  'latitude': 18.089000000000002,
  'locationSource': 'pr',
  'longitude': -67.3585,
  'mag': 2.0,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '18km W of Puerto Real, Puerto Rico',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T02:02:05.900Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:21:17.846Z'},
 {'depth': 135.9,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13654141',
  'latitude': 59.9408,
  'locationSource': 'ak',
  'longitude': -153.5111,
  'mag': 2.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '74km SW of Redoubt Volcano, Alaska',
  'rms': 0.67,
  'status': 'automatic',
  'time': '2016-06-17T02:01:57.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:36:43.120Z'},
 {'depth': 2.05,
  'depthError': 0.18,
  'dmin': 0.009595999999999999,
  'gap': 44.0,
  'horizontalError': 0.14,
  'id': 'nc72652106',
  'latitude': 38.832,
  'locationSource': 'nc',
  'longitude': -122.7995,
  'mag': 1.12,
  'magError': 0.15,
  'magNst': 13.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 41.0,
  'place': '6km W of Cobb, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-17T01:53:00.910Z',
  'type': 'earthquake',
  'updated': '2016-06-17T19:30:03.901Z'},
 {'depth': 128.7,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13654136',
  'latitude': 59.988,
  'locationSource': 'ak',
  'longitude': -153.2405,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '61km SSW of Redoubt Volcano, Alaska',
  'rms': 0.67,
  'status': 'automatic',
  'time': '2016-06-17T01:51:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:35:27.095Z'},
 {'depth': 12.84,
  'depthError': 0.43,
  'dmin': 0.07327,
  'gap': 162.0,
  'horizontalError': 0.36,
  'id': 'nc72652101',
  'latitude': 37.7668333,
  'locationSource': 'nc',
  'longitude': -122.57133329999999,
  'mag': 1.44,
  'magError': 0.11199999999999999,
  'magNst': 24.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 38.0,
  'place': '11km NW of Daly City, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-17T01:42:28.320Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:45:04.067Z'},
 {'depth': 76.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13654122',
  'latitude': 59.7153,
  'locationSource': 'ak',
  'longitude': -152.0648,
  'mag': 3.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '14km WSW of Anchor Point, Alaska',
  'rms': 0.77,
  'status': 'reviewed',
  'time': '2016-06-17T01:40:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T05:13:00.539Z'},
 {'depth': 1.35,
  'depthError': 0.11,
  'dmin': 0.009016,
  'gap': 27.0,
  'horizontalError': 0.09,
  'id': 'nc72652091',
  'latitude': 38.823666700000004,
  'locationSource': 'nc',
  'longitude': -122.7775,
  'mag': 2.35,
  'magError': 0.237,
  'magNst': 55.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 70.0,
  'place': '4km W of Cobb, California',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-17T01:32:51.310Z',
  'type': 'earthquake',
  'updated': '2016-06-17T05:38:02.537Z'},
 {'depth': 18.0,
  'depthError': 1.2,
  'dmin': 0.17247653,
  'gap': 237.6,
  'horizontalError': 0.8,
  'id': 'pr16169001',
  'latitude': 17.9402,
  'locationSource': 'pr',
  'longitude': -66.7007,
  'mag': 1.8,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '6km SSE of Tallaboa, Puerto Rico',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-17T01:23:21.500Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:14:42.030Z'},
 {'depth': 10.83,
  'depthError': 0.84,
  'dmin': 0.05176,
  'gap': 109.0,
  'horizontalError': 0.25,
  'id': 'nc72652086',
  'latitude': 35.9885,
  'locationSource': 'nc',
  'longitude': -120.935,
  'mag': 1.01,
  'magError': 0.24,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 24.0,
  'place': '29km N of Lake Nacimiento, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-17T01:21:49.490Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:32:02.233Z'},
 {'depth': 3.62,
  'depthError': 0.83,
  'dmin': 0.03425,
  'gap': 109.0,
  'horizontalError': 0.57,
  'id': 'uu60151092',
  'latitude': 44.8105,
  'locationSource': 'uu',
  'longitude': -110.81383329999998,
  'mag': 1.38,
  'magError': 0.488,
  'magNst': 3.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 12.0,
  'place': '28km NE of West Yellowstone, Montana',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-17T01:20:34.730Z',
  'type': 'earthquake',
  'updated': '2016-06-17T20:22:55.950Z'},
 {'depth': 0.0,
  'depthError': 154.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13653839',
  'latitude': 60.156000000000006,
  'locationSource': 'ak',
  'longitude': -141.3236,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km E of Cape Yakataga, Alaska',
  'rms': 0.79,
  'status': 'automatic',
  'time': '2016-06-17T01:20:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:05:17.957Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.831,
  'gap': 64.0,
  'horizontalError': 5.8,
  'id': 'us200064zb',
  'latitude': 78.3502,
  'locationSource': 'us',
  'longitude': 8.8801,
  'mag': 4.4,
  'magError': 0.071,
  'magNst': 57.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '153km W of Longyearbyen, Svalbard and Jan Mayen',
  'rms': 1.43,
  'status': 'reviewed',
  'time': '2016-06-17T01:07:55.040Z',
  'type': 'earthquake',
  'updated': '2016-06-17T01:30:34.581Z'},
 {'depth': 106.0,
  'depthError': 3.2,
  'dmin': 0.27937605,
  'gap': 248.4,
  'horizontalError': 6.4,
  'id': 'pr16169000',
  'latitude': 18.7385,
  'locationSource': 'pr',
  'longitude': -66.6382,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 9.0,
  'place': '30km NNE of Arecibo, Puerto Rico',
  'rms': 0.69,
  'status': 'reviewed',
  'time': '2016-06-17T01:05:06.800Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:08:48.470Z'},
 {'depth': 11.68,
  'depthError': 0.3,
  'dmin': 0.07032999999999999,
  'gap': 95.0,
  'horizontalError': 0.19,
  'id': 'nc72652081',
  'latitude': 37.7685,
  'locationSource': 'nc',
  'longitude': -122.56633329999998,
  'mag': 1.73,
  'magError': 0.235,
  'magNst': 46.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 60.0,
  'place': '11km NW of Daly City, California',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-17T01:01:51.420Z',
  'type': 'earthquake',
  'updated': '2016-06-17T05:22:03.492Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13653834',
  'latitude': 63.5721,
  'locationSource': 'ak',
  'longitude': -147.3227,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '83km ENE of Cantwell, Alaska',
  'rms': 0.61,
  'status': 'automatic',
  'time': '2016-06-17T01:00:10.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T01:31:39.201Z'},
 {'depth': 11.5,
  'depthError': 2.4,
  'dmin': 0.353,
  'gap': 217.53,
  'horizontalError': 6.85,
  'id': 'nn00548322',
  'latitude': 39.9097,
  'locationSource': 'nn',
  'longitude': -119.0068,
  'mag': 1.0,
  'magError': 0.13,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 6.0,
  'place': '39km NNE of Fernley, Nevada',
  'rms': 0.1433,
  'status': 'reviewed',
  'time': '2016-06-17T00:34:51.844Z',
  'type': 'earthquake',
  'updated': '2016-06-18T13:35:52.092Z'},
 {'depth': 0.71,
  'depthError': 1.45,
  'dmin': 0.1639,
  'gap': 83.0,
  'horizontalError': 0.29,
  'id': 'nc72652066',
  'latitude': 39.0025,
  'locationSource': 'nc',
  'longitude': -123.28233329999999,
  'mag': 1.2,
  'magError': 0.132,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 9.0,
  'place': '7km E of Boonville, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-16T23:53:19.170Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:36:02.385Z'},
 {'depth': 68.6,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13653649',
  'latitude': 62.8044,
  'locationSource': 'ak',
  'longitude': -149.5227,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '61km NNE of Talkeetna, Alaska',
  'rms': 0.66,
  'status': 'automatic',
  'time': '2016-06-16T23:45:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:35:15.838Z'},
 {'depth': 5.19,
  'depthError': 0.3,
  'dmin': 0.05284,
  'gap': 42.0,
  'horizontalError': 0.11,
  'id': 'nc72652061',
  'latitude': 36.5455,
  'locationSource': 'nc',
  'longitude': -121.1355,
  'mag': 2.08,
  'magError': 0.21600000000000003,
  'magNst': 56.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 55.0,
  'place': '21km NE of Soledad, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-16T23:41:56.330Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:57:04.430Z'},
 {'depth': 12.0,
  'depthError': 1.46,
  'dmin': 0.03106,
  'gap': 100.0,
  'horizontalError': 0.59,
  'id': 'uw61169326',
  'latitude': 47.95399999999999,
  'locationSource': 'uw',
  'longitude': -119.77383329999999,
  'mag': 1.43,
  'magError': 0.057,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 8.0,
  'place': '9km SW of Bridgeport, Washington',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-16T23:36:27.250Z',
  'type': 'earthquake',
  'updated': '2016-06-17T18:10:07.350Z'},
 {'depth': 26.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13653646',
  'latitude': 60.9824,
  'locationSource': 'ak',
  'longitude': -146.9358,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '35km WSW of Valdez, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-16T23:21:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:39:27.540Z'},
 {'depth': 0.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13653640',
  'latitude': 64.9775,
  'locationSource': 'ak',
  'longitude': -147.4313,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '20km NE of Fairbanks, Alaska',
  'rms': 0.54,
  'status': 'automatic',
  'time': '2016-06-16T23:02:30.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:39:28.432Z'},
 {'depth': 10.31,
  'depthError': 0.42,
  'dmin': 0.096,
  'gap': 132.0,
  'horizontalError': 0.73,
  'id': 'mb80155489',
  'latitude': 44.7235,
  'locationSource': 'mb',
  'longitude': -111.80033329999999,
  'mag': 1.64,
  'magError': 0.102,
  'magNst': 2.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 9.0,
  'place': '55km W of West Yellowstone, Montana',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-16T22:54:40.070Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:09:10.310Z'},
 {'depth': 32.1,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13653637',
  'latitude': 61.9743,
  'locationSource': 'ak',
  'longitude': -149.8096,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '20km S of Y, Alaska',
  'rms': 0.22,
  'status': 'automatic',
  'time': '2016-06-16T22:54:31.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:13:38.158Z'},
 {'depth': 0.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13653636',
  'latitude': 63.0827,
  'locationSource': 'ak',
  'longitude': -151.536,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '111km NW of Talkeetna, Alaska',
  'rms': 0.55,
  'status': 'automatic',
  'time': '2016-06-16T22:53:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:13:40.603Z'},
 {'depth': 35.1,
  'depthError': 9.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13653633',
  'latitude': 59.2712,
  'locationSource': 'ak',
  'longitude': -152.5881,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '70km SW of Anchor Point, Alaska',
  'rms': 0.78,
  'status': 'automatic',
  'time': '2016-06-16T22:37:55.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:13:39.728Z'},
 {'depth': 12.08,
  'depthError': 0.93,
  'dmin': 0.03418,
  'gap': 91.0,
  'horizontalError': 0.41,
  'id': 'uw61169251',
  'latitude': 47.9518333,
  'locationSource': 'uw',
  'longitude': -119.7845,
  'mag': 1.2,
  'magError': 0.105,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 9.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-16T21:57:14.570Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:17:23.173Z'},
 {'depth': 8.17,
  'depthError': 0.72,
  'dmin': 0.02385,
  'gap': 56.0,
  'horizontalError': 0.43,
  'id': 'ci37389311',
  'latitude': 34.4685,
  'locationSource': 'ci',
  'longitude': -117.97200000000001,
  'mag': 1.08,
  'magError': 0.33799999999999997,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 18.0,
  'place': '6km S of Littlerock, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-16T21:42:38.210Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:22:02.019Z'},
 {'depth': 30.17,
  'depthError': 4.3,
  'dmin': 2.408,
  'gap': 35.0,
  'horizontalError': 6.5,
  'id': 'us200064xe',
  'latitude': 28.3188,
  'locationSource': 'us',
  'longitude': 130.4163,
  'mag': 5.1,
  'magError': 0.032,
  'magNst': 313.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '91km E of Naze, Japan',
  'rms': 0.65,
  'status': 'reviewed',
  'time': '2016-06-16T21:42:01.770Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:28:58.892Z'},
 {'depth': -0.48,
  'depthError': 31.61,
  'dmin': 0.052270000000000004,
  'gap': 48.0,
  'horizontalError': 0.36,
  'id': 'ci37389295',
  'latitude': 33.866,
  'locationSource': 'ci',
  'longitude': -117.49933329999999,
  'mag': 1.36,
  'magError': 0.198,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '2km SE of Home Gardens, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-16T21:38:37.270Z',
  'type': 'quarry blast',
  'updated': '2016-06-17T13:35:13.355Z'},
 {'depth': 13.27,
  'depthError': 0.52,
  'dmin': 0.04916,
  'gap': 110.0,
  'horizontalError': 0.27,
  'id': 'ci37389287',
  'latitude': 33.4743333,
  'locationSource': 'ci',
  'longitude': -116.43133329999999,
  'mag': 1.17,
  'magError': 0.12,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 34.0,
  'place': '24km SSW of La Quinta, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T21:33:43.310Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:25:06.430Z'},
 {'depth': 13.08,
  'depthError': 0.51,
  'dmin': 0.04623,
  'gap': 85.0,
  'horizontalError': 0.3,
  'id': 'ci37389271',
  'latitude': 33.4778333,
  'locationSource': 'ci',
  'longitude': -116.43583329999998,
  'mag': 1.11,
  'magError': 0.155,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 38.0,
  'place': '24km ESE of Anza, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-16T21:27:54.310Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:22:26.737Z'},
 {'depth': -0.29,
  'depthError': 31.61,
  'dmin': 0.01435,
  'gap': 128.0,
  'horizontalError': 0.15,
  'id': 'nc72652046',
  'latitude': 37.3213333,
  'locationSource': 'nc',
  'longitude': -122.1013333,
  'mag': 1.24,
  'magError': 0.22,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 14.0,
  'place': '11km E of Quarry near Portola Valley, CA',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-16T21:16:46.280Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T23:53:42.454Z'},
 {'depth': 8.7,
  'depthError': 3.1,
  'dmin': 0.298,
  'gap': 161.48,
  'horizontalError': 1.28,
  'id': 'nn00548291',
  'latitude': 38.7946,
  'locationSource': 'nn',
  'longitude': -117.9009,
  'mag': 1.3,
  'magError': 0.28,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 10.0,
  'place': '8km SSE of Gabbs, Nevada',
  'rms': 0.0973,
  'status': 'reviewed',
  'time': '2016-06-16T21:03:29.228Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:31:25.771Z'},
 {'depth': 5.39,
  'depthError': 0.43,
  'dmin': 0.03348,
  'gap': 69.0,
  'horizontalError': 0.21,
  'id': 'nc72652031',
  'latitude': 36.8358333,
  'locationSource': 'nc',
  'longitude': -121.56033329999998,
  'mag': 1.09,
  'magError': 0.20800000000000002,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 19.0,
  'place': '2km WSW of San Juan Bautista, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-16T20:28:42.480Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:51:04.089Z'},
 {'depth': 75.0,
  'depthError': 0.8,
  'dmin': 0.26500301,
  'gap': 208.8,
  'horizontalError': 0.9,
  'id': 'pr16168008',
  'latitude': 18.6128,
  'locationSource': 'pr',
  'longitude': -66.735,
  'mag': 3.1,
  'magError': 0.0,
  'magNst': 18.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 21.0,
  'place': '15km N of Arecibo, Puerto Rico',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-16T20:26:38.200Z',
  'type': 'earthquake',
  'updated': '2016-06-16T22:20:16.040Z'},
 {'depth': 0.01,
  'depthError': 31.61,
  'dmin': 0.06928,
  'gap': 220.0,
  'horizontalError': 0.66,
  'id': 'nc72652026',
  'latitude': 38.113,
  'locationSource': 'nc',
  'longitude': -122.16133329999998,
  'mag': 1.48,
  'magError': 0.205,
  'magNst': 15.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '0km SE of Quarry near Vallejo, CA',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-16T20:22:26.170Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T23:49:40.930Z'},
 {'depth': 12.76,
  'depthError': 0.21,
  'dmin': 0.01586,
  'gap': 30.0,
  'horizontalError': 0.13,
  'id': 'ci37389183',
  'latitude': 33.5805,
  'locationSource': 'ci',
  'longitude': -116.73133329999999,
  'mag': 2.03,
  'magError': 0.193,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 60.0,
  'place': '6km WNW of Anza, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-16T20:09:01.530Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:20:03.530Z'},
 {'depth': 13.86,
  'depthError': 0.33,
  'dmin': 0.05695,
  'gap': 89.0,
  'horizontalError': 0.24,
  'id': 'ci37389175',
  'latitude': 33.5085,
  'locationSource': 'ci',
  'longitude': -116.49600000000001,
  'mag': 1.38,
  'magError': 0.18600000000000003,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 41.0,
  'place': '17km ESE of Anza, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-16T19:56:19.260Z',
  'type': 'earthquake',
  'updated': '2016-06-17T13:25:11.280Z'},
 {'depth': -1.17,
  'depthError': 31.61,
  'dmin': 0.1631,
  'gap': 221.0,
  'horizontalError': 0.76,
  'id': 'uw61169151',
  'latitude': 46.3818333,
  'locationSource': 'uw',
  'longitude': -122.55,
  'mag': 1.35,
  'magError': 0.187,
  'magNst': 16.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 13.0,
  'place': '28km SW of Morton, Washington',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T19:47:46.060Z',
  'type': 'explosion',
  'updated': '2016-06-16T21:32:44.340Z'},
 {'depth': 0.1,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13653059',
  'latitude': 65.3674,
  'locationSource': 'ak',
  'longitude': -144.7609,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '11km SSW of Circle Hot Springs Station, Alaska',
  'rms': 0.84,
  'status': 'automatic',
  'time': '2016-06-16T19:28:30.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T20:04:36.395Z'},
 {'depth': 11.3,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.1,
  'id': 'ak13653050',
  'latitude': 63.9102,
  'locationSource': 'ak',
  'longitude': -148.928,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '6km NNE of Healy, Alaska',
  'rms': 1.29,
  'status': 'reviewed',
  'time': '2016-06-16T19:20:11.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:52:03.772Z'},
 {'depth': 12.98,
  'depthError': 0.68,
  'dmin': 0.03392,
  'gap': 91.0,
  'horizontalError': 0.47,
  'id': 'uw61169126',
  'latitude': 47.9525,
  'locationSource': 'uw',
  'longitude': -119.78666670000001,
  'mag': 1.31,
  'magError': 0.107,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 10.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T19:13:02.240Z',
  'type': 'earthquake',
  'updated': '2016-06-16T22:10:52.770Z'},
 {'depth': -0.84,
  'depthError': 31.61,
  'dmin': 0.1203,
  'gap': 68.0,
  'horizontalError': 0.41,
  'id': 'ci37389119',
  'latitude': 34.9986667,
  'locationSource': 'ci',
  'longitude': -118.19533329999999,
  'mag': 1.16,
  'magError': 0.17300000000000001,
  'magNst': 16.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 12.0,
  'place': '6km SSW of Mojave, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T19:07:39.920Z',
  'type': 'quarry blast',
  'updated': '2016-06-17T15:48:23.664Z'},
 {'depth': 13.52,
  'depthError': 0.51,
  'dmin': 0.039560000000000005,
  'gap': 99.0,
  'horizontalError': 0.29,
  'id': 'uw60126608',
  'latitude': 47.9455,
  'locationSource': 'uw',
  'longitude': -119.772,
  'mag': 1.05,
  'magError': 0.091,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'md',
  'net': 'uw',
  'nst': 7.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-16T18:49:15.960Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:56:27.428Z'},
 {'depth': 12.72,
  'depthError': 0.72,
  'dmin': 0.032780000000000004,
  'gap': 98.0,
  'horizontalError': 0.4,
  'id': 'uw61169101',
  'latitude': 47.9528333,
  'locationSource': 'uw',
  'longitude': -119.7815,
  'mag': 1.28,
  'magError': 0.109,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 8.0,
  'place': '10km SW of Bridgeport, Washington',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-16T18:49:00.160Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:54:09.620Z'},
 {'depth': 13.59,
  'depthError': 1.21,
  'dmin': 0.04671,
  'gap': 180.0,
  'horizontalError': 2.22,
  'id': 'uw61169086',
  'latitude': 47.9511667,
  'locationSource': 'uw',
  'longitude': -119.72466670000001,
  'mag': 1.04,
  'magError': 0.115,
  'magNst': 4.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 5.0,
  'place': '7km SSW of Bridgeport, Washington',
  'rms': 0.29,
  'status': 'reviewed',
  'time': '2016-06-16T18:40:03.870Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:47:40.900Z'},
 {'depth': 10.4,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13652771',
  'latitude': 63.2002,
  'locationSource': 'ak',
  'longitude': -151.3875,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '117km NNW of Talkeetna, Alaska',
  'rms': 0.75,
  'status': 'automatic',
  'time': '2016-06-16T18:35:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T19:09:28.152Z'},
 {'depth': 212.19,
  'depthError': 7.0,
  'dmin': 2.1390000000000002,
  'gap': 103.0,
  'horizontalError': 8.8,
  'id': 'us200064vm',
  'latitude': -15.5887,
  'locationSource': 'us',
  'longitude': -70.3015,
  'mag': 4.3,
  'magError': 0.09,
  'magNst': 36.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '19km WNW of Atuncolla, Peru',
  'rms': 1.16,
  'status': 'reviewed',
  'time': '2016-06-16T18:32:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T19:56:05.020Z'},
 {'depth': -1.41,
  'depthError': 31.61,
  'dmin': 0.2396,
  'gap': 313.0,
  'horizontalError': 0.85,
  'id': 'uw61169081',
  'latitude': 46.3896667,
  'locationSource': 'uw',
  'longitude': -122.5585,
  'mag': 1.09,
  'magError': 0.129,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 7.0,
  'place': '28km SW of Morton, Washington',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-16T18:11:04.890Z',
  'type': 'explosion',
  'updated': '2016-06-16T21:44:26.670Z'},
 {'depth': 2.45,
  'depthError': 0.32,
  'dmin': 0.0141,
  'gap': 58.0,
  'horizontalError': 0.16,
  'id': 'nc72652006',
  'latitude': 36.8913333,
  'locationSource': 'nc',
  'longitude': -121.6073333,
  'mag': 1.42,
  'magError': 0.308,
  'magNst': 22.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 29.0,
  'place': '3km E of Aromas, California',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-16T18:06:19.110Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:58:02.750Z'},
 {'depth': 7.8,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13652767',
  'latitude': 61.1721,
  'locationSource': 'ak',
  'longitude': -147.173,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '44km W of Valdez, Alaska',
  'rms': 1.63,
  'status': 'automatic',
  'time': '2016-06-16T17:50:43.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:14:52.772Z'},
 {'depth': 9.83,
  'depthError': 0.53,
  'dmin': 0.029210000000000003,
  'gap': 106.0,
  'horizontalError': 0.36,
  'id': 'ci37389031',
  'latitude': 32.822166700000004,
  'locationSource': 'ci',
  'longitude': -115.47516670000002,
  'mag': 1.88,
  'magError': 0.145,
  'magNst': 46.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 24.0,
  'place': '9km ENE of El Centro, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-16T17:30:26.100Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:15:37.360Z'},
 {'depth': -2.0,
  'depthError': 31.61,
  'dmin': 0.5187,
  'gap': 298.0,
  'horizontalError': 9.03,
  'id': 'uu60151017',
  'latitude': 41.670333299999996,
  'locationSource': 'uu',
  'longitude': -110.65666670000002,
  'mag': 2.08,
  'magError': 0.21,
  'magNst': 6.0,
  'magSource': 'uu',
  'magType': 'md',
  'net': 'uu',
  'nst': 6.0,
  'place': '16km SW of Kemmerer, Wyoming',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-16T17:24:52.780Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T21:51:58.500Z'},
 {'depth': 1.08,
  'depthError': 0.21,
  'dmin': 0.00823,
  'gap': 54.0,
  'horizontalError': 0.13,
  'id': 'nc72651996',
  'latitude': 38.7541667,
  'locationSource': 'nc',
  'longitude': -122.73416670000002,
  'mag': 1.34,
  'magError': 0.242,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 45.0,
  'place': '3km SE of The Geysers, California',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-16T17:24:46.570Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:57:03.752Z'},
 {'depth': 4.78,
  'depthError': 0.45,
  'dmin': 0.06754,
  'gap': 23.0,
  'horizontalError': 0.1,
  'id': 'ci37389023',
  'latitude': 33.944166700000004,
  'locationSource': 'ci',
  'longitude': -116.85666670000002,
  'mag': 1.78,
  'magError': 0.153,
  'magNst': 84.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 86.0,
  'place': '3km NE of Banning, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-16T17:18:47.830Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:09:47.280Z'},
 {'depth': 25.33,
  'depthError': 2.27,
  'dmin': 0.2648,
  'gap': 259.0,
  'horizontalError': 1.01,
  'id': 'nc72651986',
  'latitude': 40.4186667,
  'locationSource': 'nc',
  'longitude': -124.67633329999998,
  'mag': 2.27,
  'magError': 0.254,
  'magNst': 20.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 21.0,
  'place': '39km WSW of Ferndale, California',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-16T17:16:39.300Z',
  'type': 'earthquake',
  'updated': '2016-06-17T03:05:03.118Z'},
 {'depth': 2.43,
  'depthError': 0.17,
  'dmin': 0.009956,
  'gap': 22.0,
  'horizontalError': 0.08,
  'id': 'ci37389015',
  'latitude': 34.0723333,
  'locationSource': 'ci',
  'longitude': -116.3785,
  'mag': 3.53,
  'magError': nan,
  'magNst': 4.0,
  'magSource': 'ci',
  'magType': 'mw',
  'net': 'ci',
  'nst': 147.0,
  'place': '7km SE of Yucca Valley, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T17:02:02.530Z',
  'type': 'earthquake',
  'updated': '2016-06-17T17:03:20.738Z'},
 {'depth': -1.3,
  'depthError': 31.61,
  'dmin': 0.1073,
  'gap': 234.0,
  'horizontalError': 0.72,
  'id': 'uw61169051',
  'latitude': 46.371,
  'locationSource': 'uw',
  'longitude': -122.4645,
  'mag': 1.15,
  'magError': 0.16399999999999998,
  'magNst': 10.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 9.0,
  'place': '25km SW of Morton, Washington',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-16T16:56:11.850Z',
  'type': 'explosion',
  'updated': '2016-06-16T17:21:28.640Z'},
 {'depth': 9.9,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.0,
  'id': 'ak13652761',
  'latitude': 59.0754,
  'locationSource': 'ak',
  'longitude': -142.8266,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '112km SSW of Cape Yakataga, Alaska',
  'rms': 0.52,
  'status': 'automatic',
  'time': '2016-06-16T16:51:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T17:22:53.623Z'},
 {'depth': 83.1,
  'depthError': 1.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.6,
  'id': 'ak13652760',
  'latitude': 61.9795,
  'locationSource': 'ak',
  'longitude': -151.5841,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '85km WNW of Willow, Alaska',
  'rms': 0.39,
  'status': 'automatic',
  'time': '2016-06-16T16:50:30.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T17:22:52.718Z'},
 {'depth': 28.13,
  'depthError': 0.52,
  'dmin': 0.036239999999999994,
  'gap': 77.0,
  'horizontalError': 0.45,
  'id': 'hv61299641',
  'latitude': 19.433000600000003,
  'locationSource': 'hv',
  'longitude': -155.223999,
  'mag': 1.79,
  'magError': 0.08,
  'magNst': 6.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 39.0,
  'place': '1km E of Volcano, Hawaii',
  'rms': 0.17,
  'status': 'automatic',
  'time': '2016-06-16T16:45:14.410Z',
  'type': 'earthquake',
  'updated': '2016-06-16T16:48:19.510Z'},
 {'depth': 89.0,
  'depthError': 1.0,
  'dmin': 0.12217088,
  'gap': 180.0,
  'horizontalError': 10.0,
  'id': 'pr16168009',
  'latitude': 18.3138,
  'locationSource': 'pr',
  'longitude': -65.1529,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '15km E of Culebra, Puerto Rico',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-16T16:42:35.700Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:49:19.147Z'},
 {'depth': 0.1,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13652758',
  'latitude': 62.6277,
  'locationSource': 'ak',
  'longitude': -151.293,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '69km WNW of Talkeetna, Alaska',
  'rms': 0.4,
  'status': 'automatic',
  'time': '2016-06-16T16:30:14.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T16:56:41.098Z'},
 {'depth': -1.38,
  'depthError': 31.61,
  'dmin': 0.10400000000000001,
  'gap': 234.0,
  'horizontalError': 1.09,
  'id': 'uw61169041',
  'latitude': 46.371333299999996,
  'locationSource': 'uw',
  'longitude': -122.4581667,
  'mag': 1.3,
  'magError': 0.131,
  'magNst': 10.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 7.0,
  'place': '25km SW of Morton, Washington',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T16:30:00.020Z',
  'type': 'explosion',
  'updated': '2016-06-16T17:23:33.500Z'},
 {'depth': 14.4,
  'depthError': 5.7,
  'dmin': 0.852,
  'gap': 131.59,
  'horizontalError': 7.91,
  'id': 'nn00548264',
  'latitude': 39.5601,
  'locationSource': 'nn',
  'longitude': -115.7011,
  'mag': 1.4,
  'magError': 0.0,
  'magNst': 1.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 3.0,
  'place': '22km ENE of Eureka, Nevada',
  'rms': 0.1153,
  'status': 'reviewed',
  'time': '2016-06-16T16:20:43.415Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:30:56.173Z'},
 {'depth': 33.875,
  'depthError': 0.91,
  'dmin': 0.05731,
  'gap': 207.0,
  'horizontalError': 0.77,
  'id': 'hv61299616',
  'latitude': 19.211,
  'locationSource': 'hv',
  'longitude': -155.4528333,
  'mag': 1.68,
  'magError': 0.057999999999999996,
  'magNst': 15.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 35.0,
  'place': '2km ENE of Pahala, Hawaii',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-16T16:19:52.490Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:15:41.680Z'},
 {'depth': -0.9,
  'depthError': 31.61,
  'dmin': 0.05112,
  'gap': 83.0,
  'horizontalError': 0.38,
  'id': 'ci37388943',
  'latitude': 35.808,
  'locationSource': 'ci',
  'longitude': -117.53533329999999,
  'mag': 1.07,
  'magError': 0.14,
  'magNst': 14.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 14.0,
  'place': '13km WNW of Searles Valley, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T16:16:46.970Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T20:53:16.043Z'},
 {'depth': 5.52,
  'depthError': 0.43,
  'dmin': 0.03927,
  'gap': 92.0,
  'horizontalError': 0.22,
  'id': 'nc72651966',
  'latitude': 38.761166700000004,
  'locationSource': 'nc',
  'longitude': -122.86966670000001,
  'mag': 1.19,
  'magError': 0.214,
  'magNst': 13.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 45.0,
  'place': '10km W of The Geysers, California',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-16T16:16:02.470Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:13:01.999Z'},
 {'depth': 28.97,
  'depthError': 0.36,
  'dmin': 0.1835,
  'gap': 216.0,
  'horizontalError': 0.44,
  'id': 'nc72651961',
  'latitude': 40.7555,
  'locationSource': 'nc',
  'longitude': -124.43083329999999,
  'mag': 2.76,
  'magError': 0.166,
  'magNst': 31.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 25.0,
  'place': '20km W of Humboldt Hill, California',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-16T15:35:57.470Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:50:02.081Z'},
 {'depth': 54.1,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13652468',
  'latitude': 60.5576,
  'locationSource': 'ak',
  'longitude': -151.0051,
  'mag': 3.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '5km ENE of Ridgeway, Alaska',
  'rms': 0.69,
  'status': 'automatic',
  'time': '2016-06-16T15:29:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T16:14:13.040Z'},
 {'depth': 10.13,
  'depthError': 0.32,
  'dmin': 0.062479999999999994,
  'gap': 89.0,
  'horizontalError': 0.22,
  'id': 'ci37388887',
  'latitude': 34.137666700000004,
  'locationSource': 'ci',
  'longitude': -116.98933329999998,
  'mag': 1.11,
  'magError': 0.077,
  'magNst': 13.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 40.0,
  'place': '13km NNE of Yucaipa, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-16T15:21:41.540Z',
  'type': 'earthquake',
  'updated': '2016-06-16T19:27:40.793Z'},
 {'depth': 70.0,
  'depthError': 1.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.3,
  'id': 'ak13652465',
  'latitude': 60.2997,
  'locationSource': 'ak',
  'longitude': -152.1739,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '37km ESE of Redoubt Volcano, Alaska',
  'rms': 0.13,
  'status': 'automatic',
  'time': '2016-06-16T15:18:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T15:37:47.849Z'},
 {'depth': 10.18,
  'depthError': 0.24,
  'dmin': 0.038419999999999996,
  'gap': 98.0,
  'horizontalError': 0.21,
  'id': 'ci37388871',
  'latitude': 34.0881667,
  'locationSource': 'ci',
  'longitude': -118.12283329999998,
  'mag': 1.63,
  'magError': 0.23199999999999998,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '1km SSE of Alhambra, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-16T15:08:02.410Z',
  'type': 'earthquake',
  'updated': '2016-06-16T19:17:51.682Z'},
 {'depth': 12.06,
  'depthError': 3.9,
  'dmin': 0.105,
  'gap': 42.0,
  'horizontalError': 1.3,
  'id': 'us200064ta',
  'latitude': 36.7597,
  'locationSource': 'us',
  'longitude': -98.0749,
  'mag': 2.5,
  'magError': 0.09,
  'magNst': 32.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '25km E of Cherokee, Oklahoma',
  'rms': 0.5,
  'status': 'reviewed',
  'time': '2016-06-16T15:06:26.620Z',
  'type': 'earthquake',
  'updated': '2016-06-16T16:02:47.741Z'},
 {'depth': 11.37,
  'depthError': 0.5,
  'dmin': 0.065,
  'gap': 70.0,
  'horizontalError': 0.38,
  'id': 'mb80155204',
  'latitude': 44.740333299999996,
  'locationSource': 'mb',
  'longitude': -111.755,
  'mag': 1.78,
  'magError': 0.14400000000000002,
  'magNst': 14.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 21.0,
  'place': '52km W of West Yellowstone, Montana',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-16T15:05:31.740Z',
  'type': 'earthquake',
  'updated': '2016-06-16T15:25:02.470Z'},
 {'depth': 0.0,
  'depthError': 6.3,
  'dmin': 0.233,
  'gap': 91.19,
  'horizontalError': 1.72,
  'id': 'nn00548256',
  'latitude': 38.2634,
  'locationSource': 'nn',
  'longitude': -119.307,
  'mag': 1.4,
  'magError': 0.22,
  'magNst': 5.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 10.0,
  'place': '6km W of Bridgeport, California',
  'rms': 0.1305,
  'status': 'reviewed',
  'time': '2016-06-16T14:33:25.144Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:30:50.272Z'},
 {'depth': 13.85,
  'depthError': 0.41,
  'dmin': 0.1025,
  'gap': 76.0,
  'horizontalError': 0.19,
  'id': 'ci37388839',
  'latitude': 33.9533333,
  'locationSource': 'ci',
  'longitude': -116.71700000000001,
  'mag': 1.02,
  'magError': 0.109,
  'magNst': 20.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 39.0,
  'place': '8km ENE of Cabazon, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-16T14:23:25.900Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:37:04.651Z'},
 {'depth': 101.0,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13652174',
  'latitude': 62.8872,
  'locationSource': 'ak',
  'longitude': -150.84,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '73km NNW of Talkeetna, Alaska',
  'rms': 0.55,
  'status': 'automatic',
  'time': '2016-06-16T13:49:17.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:18:46.481Z'},
 {'depth': 8.25,
  'depthError': 0.92,
  'dmin': 0.09716,
  'gap': 66.0,
  'horizontalError': 0.3,
  'id': 'ci37388791',
  'latitude': 34.1403333,
  'locationSource': 'ci',
  'longitude': -116.8331667,
  'mag': 1.01,
  'magError': 0.158,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 24.0,
  'place': '14km S of Big Bear City, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-16T13:48:35.850Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:25:25.021Z'},
 {'depth': 14.89,
  'depthError': 0.54,
  'dmin': 0.0607,
  'gap': 55.0,
  'horizontalError': 0.23,
  'id': 'nc72651946',
  'latitude': 37.9793333,
  'locationSource': 'nc',
  'longitude': -122.06383329999998,
  'mag': 1.67,
  'magError': 0.161,
  'magNst': 33.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 47.0,
  'place': '1km ESE of Pacheco, California',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T13:47:10.730Z',
  'type': 'earthquake',
  'updated': '2016-06-17T02:20:04.003Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.958,
  'gap': 186.0,
  'horizontalError': 8.1,
  'id': 'us200064rn',
  'latitude': -20.6703,
  'locationSource': 'us',
  'longitude': 168.5854,
  'mag': 5.1,
  'magError': 0.10300000000000001,
  'magNst': 31.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '121km NE of Tadine, New Caledonia',
  'rms': 1.12,
  'status': 'reviewed',
  'time': '2016-06-16T13:46:27.130Z',
  'type': 'earthquake',
  'updated': '2016-06-17T12:56:38.000Z'},
 {'depth': 10.4,
  'depthError': 1.7,
  'dmin': 0.109,
  'gap': 116.42,
  'horizontalError': 1.25,
  'id': 'nn00548249',
  'latitude': 38.5198,
  'locationSource': 'nn',
  'longitude': -118.5151,
  'mag': 1.1,
  'magError': 0.25,
  'magNst': 10.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 14.0,
  'place': '9km E of Hawthorne, Nevada',
  'rms': 0.1947,
  'status': 'reviewed',
  'time': '2016-06-16T13:26:43.391Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:30:32.482Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13652165',
  'latitude': 65.5069,
  'locationSource': 'ak',
  'longitude': -144.5771,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '6km NE of Circle Hot Springs Station, Alaska',
  'rms': 0.72,
  'status': 'automatic',
  'time': '2016-06-16T13:22:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:51:38.545Z'},
 {'depth': 15.73,
  'depthError': 0.33,
  'dmin': 0.035710000000000006,
  'gap': 32.0,
  'horizontalError': 0.18,
  'id': 'ci37388759',
  'latitude': 33.711999999999996,
  'locationSource': 'ci',
  'longitude': -116.757,
  'mag': 1.25,
  'magError': 0.27,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 44.0,
  'place': '5km SW of Idyllwild, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-16T13:22:12.240Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:25:40.356Z'},
 {'depth': 13.1,
  'depthError': 269.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 7.6,
  'id': 'ak13652156',
  'latitude': 51.4283,
  'locationSource': 'ak',
  'longitude': -175.5264,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '93km ESE of Adak, Alaska',
  'rms': 0.4,
  'status': 'reviewed',
  'time': '2016-06-16T13:18:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:25:54.273Z'},
 {'depth': 7.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13652153',
  'latitude': 65.4881,
  'locationSource': 'ak',
  'longitude': -144.5,
  'mag': 3.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '8km ENE of Circle Hot Springs Station, Alaska',
  'rms': 0.72,
  'status': 'automatic',
  'time': '2016-06-16T13:13:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:52:52.366Z'},
 {'depth': 49.0,
  'depthError': 1.0,
  'dmin': 0.12217088,
  'gap': 216.0,
  'horizontalError': 0.8,
  'id': 'pr16168004',
  'latitude': 18.5884,
  'locationSource': 'pr',
  'longitude': -67.0885,
  'mag': 3.0,
  'magError': 0.0,
  'magNst': 9.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 13.0,
  'place': '10km N of San Antonio, Puerto Rico',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T13:10:11.800Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:42:08.043Z'},
 {'depth': 4.81,
  'depthError': 1.27,
  'dmin': 0.07612999999999999,
  'gap': 70.0,
  'horizontalError': 0.56,
  'id': 'ci37388727',
  'latitude': 34.395166700000004,
  'locationSource': 'ci',
  'longitude': -119.42383329999998,
  'mag': 1.57,
  'magError': 0.2,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 14.0,
  'place': '9km E of Carpinteria, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-16T12:57:16.830Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:25:49.151Z'},
 {'depth': 12.2,
  'depthError': 0.62,
  'dmin': 0.03718,
  'gap': 111.0,
  'horizontalError': 0.29,
  'id': 'ci37388711',
  'latitude': 33.4865,
  'locationSource': 'ci',
  'longitude': -116.432,
  'mag': 1.24,
  'magError': 0.17,
  'magNst': 33.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '23km SSW of La Quinta, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-16T12:49:50.070Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:20:16.271Z'},
 {'depth': 11.75,
  'depthError': 0.35,
  'dmin': 0.039619999999999995,
  'gap': 57.0,
  'horizontalError': 0.16,
  'id': 'ci37388703',
  'latitude': 33.485,
  'locationSource': 'ci',
  'longitude': -116.43783329999998,
  'mag': 1.36,
  'magError': 0.151,
  'magNst': 48.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 50.0,
  'place': '23km SSW of La Quinta, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T12:49:36.200Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:06:51.208Z'},
 {'depth': 18.0,
  'depthError': 0.7,
  'dmin': 0.39705536,
  'gap': 252.0,
  'horizontalError': 1.3,
  'id': 'pr16168007',
  'latitude': 18.6987,
  'locationSource': 'pr',
  'longitude': -65.2011,
  'mag': 1.9,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '45km NNE of Culebra, Puerto Rico',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-16T12:49:11.500Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:54:13.612Z'},
 {'depth': 13.32,
  'depthError': 0.51,
  'dmin': 0.0726,
  'gap': 97.0,
  'horizontalError': 0.24,
  'id': 'ci37388687',
  'latitude': 33.4703333,
  'locationSource': 'ci',
  'longitude': -116.48516670000001,
  'mag': 1.04,
  'magError': 0.114,
  'magNst': 24.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T12:31:57.560Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:20:51.570Z'},
 {'depth': 7.81,
  'depthError': 0.56,
  'dmin': 0.028999999999999998,
  'gap': 34.0,
  'horizontalError': 0.22,
  'id': 'ci37388679',
  'latitude': 34.2291667,
  'locationSource': 'ci',
  'longitude': -117.5235,
  'mag': 1.36,
  'magError': 0.233,
  'magNst': 32.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '4km SW of Lytle Creek, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T12:31:41.180Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:22:37.941Z'},
 {'depth': 6.4,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13652148',
  'latitude': 63.8222,
  'locationSource': 'ak',
  'longitude': -146.1475,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '31km SW of Delta Junction, Alaska',
  'rms': 0.57,
  'status': 'automatic',
  'time': '2016-06-16T12:15:00.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T12:35:20.059Z'},
 {'depth': 9.73,
  'depthError': 0.6,
  'dmin': 0.11,
  'gap': 78.0,
  'horizontalError': 0.24,
  'id': 'ci37388663',
  'latitude': 33.4655,
  'locationSource': 'ci',
  'longitude': -116.45833329999999,
  'mag': 1.11,
  'magError': 0.172,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '22km ESE of Anza, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-16T12:08:25.510Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:20:48.908Z'},
 {'depth': 49.0,
  'depthError': 8.5,
  'dmin': 0.76626294,
  'gap': 291.6,
  'horizontalError': 3.9,
  'id': 'pr16168006',
  'latitude': 19.0755,
  'locationSource': 'pr',
  'longitude': -65.3531,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '85km N of Culebra, Puerto Rico',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-16T11:55:44.500Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:50:58.189Z'},
 {'depth': 17.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13652140',
  'latitude': 62.2614,
  'locationSource': 'ak',
  'longitude': -150.4523,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '19km WSW of Talkeetna, Alaska',
  'rms': 0.74,
  'status': 'automatic',
  'time': '2016-06-16T11:50:08.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T12:08:55.040Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13652138',
  'latitude': 60.2258,
  'locationSource': 'ak',
  'longitude': -141.2731,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '66km ENE of Cape Yakataga, Alaska',
  'rms': 0.91,
  'status': 'automatic',
  'time': '2016-06-16T11:49:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T12:08:54.427Z'},
 {'depth': 0.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13652134',
  'latitude': 61.2937,
  'locationSource': 'ak',
  'longitude': -152.5052,
  '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-06-16T11:22:00.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T11:42:41.633Z'},
 {'depth': 83.0,
  'depthError': 1.3,
  'dmin': 0.20751083,
  'gap': 234.0,
  'horizontalError': 1.9,
  'id': 'pr16168003',
  'latitude': 18.6557,
  'locationSource': 'pr',
  'longitude': -67.2055,
  'mag': 2.6,
  'magError': 0.0,
  'magNst': 8.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 8.0,
  'place': '21km NNW of San Antonio, Puerto Rico',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-16T11:14:04.300Z',
  'type': 'earthquake',
  'updated': '2016-06-16T11:35:21.005Z'},
 {'depth': 0.1,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13652130',
  'latitude': 58.4207,
  'locationSource': 'ak',
  'longitude': -154.7849,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km NNW of Larsen Bay, Alaska',
  'rms': 0.65,
  'status': 'automatic',
  'time': '2016-06-16T11:11:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T11:42:40.727Z'},
 {'depth': 28.82,
  'depthError': 31.61,
  'dmin': 0.396,
  'gap': 163.0,
  'horizontalError': 0.88,
  'id': 'uu60150992',
  'latitude': 37.802833299999996,
  'locationSource': 'uu',
  'longitude': -111.25933329999998,
  'mag': 1.47,
  'magError': 0.243,
  'magNst': 2.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 9.0,
  'place': '30km E of Escalante, Utah',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-16T11:03:58.590Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:39:32.030Z'},
 {'depth': 75.0,
  'depthError': 0.9,
  'dmin': 0.29554573,
  'gap': 190.8,
  'horizontalError': 0.7,
  'id': 'pr16168005',
  'latitude': 18.4843,
  'locationSource': 'pr',
  'longitude': -66.0736,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 5.0,
  'place': '3km ENE of San Juan, Puerto Rico',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-16T11:03:42.700Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:50:08.002Z'},
 {'depth': 18.11,
  'depthError': 5.9,
  'dmin': 1.091,
  'gap': 101.0,
  'horizontalError': 8.5,
  'id': 'us200064r7',
  'latitude': -20.6102,
  'locationSource': 'us',
  'longitude': 168.74099999999999,
  'mag': 5.2,
  'magError': 0.099,
  'magNst': 34.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '129km SSW of Isangel, Vanuatu',
  'rms': 1.23,
  'status': 'reviewed',
  'time': '2016-06-16T10:31:19.340Z',
  'type': 'earthquake',
  'updated': '2016-06-16T10:45:33.578Z'},
 {'depth': 0.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13651848',
  'latitude': 61.2682,
  'locationSource': 'ak',
  'longitude': -152.4972,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '88km N of Redoubt Volcano, Alaska',
  'rms': 0.62,
  'status': 'automatic',
  'time': '2016-06-16T10:18:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T10:48:54.796Z'},
 {'depth': 0.0,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13651844',
  'latitude': 61.1432,
  'locationSource': 'ak',
  'longitude': -140.0309,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '143km WNW of Haines Junction, Canada',
  'rms': 0.56,
  'status': 'automatic',
  'time': '2016-06-16T10:09:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T10:48:55.666Z'},
 {'depth': 11.78,
  'depthError': 0.52,
  'dmin': 0.08231000000000001,
  'gap': 69.0,
  'horizontalError': 0.31,
  'id': 'ci37388623',
  'latitude': 32.9565,
  'locationSource': 'ci',
  'longitude': -115.5685,
  'mag': 2.05,
  'magError': 0.142,
  'magNst': 52.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 33.0,
  'place': '4km SW of Brawley, CA',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-16T09:27:35.280Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:24:29.171Z'},
 {'depth': 90.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': nan,
  'id': 'ak13651841',
  'latitude': 59.4299,
  'locationSource': 'ak',
  'longitude': -152.9166,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '72km WSW of Anchor Point, Alaska',
  'rms': nan,
  'status': 'automatic',
  'time': '2016-06-16T09:08:40.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T09:26:28.368Z'},
 {'depth': 5.3,
  'depthError': 5.6,
  'dmin': 0.35200000000000004,
  'gap': 103.59,
  'horizontalError': 1.86,
  'id': 'nn00548235',
  'latitude': 36.7352,
  'locationSource': 'nn',
  'longitude': -115.4875,
  'mag': 1.4,
  'magError': 0.15,
  'magNst': 9.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 20.0,
  'place': '66km NW of Nellis Air Force Base, Nevada',
  'rms': 0.1309,
  'status': 'reviewed',
  'time': '2016-06-16T09:04:21.578Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:31:01.999Z'},
 {'depth': 89.9,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13651836',
  'latitude': 59.9176,
  'locationSource': 'ak',
  'longitude': -152.2491,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '28km NW of Anchor Point, Alaska',
  'rms': 0.68,
  'status': 'automatic',
  'time': '2016-06-16T08:57:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T09:26:27.685Z'},
 {'depth': 7.7,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13651833',
  'latitude': 61.763000000000005,
  'locationSource': 'ak',
  'longitude': -148.2364,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '32km E of Sutton-Alpine, Alaska',
  'rms': 0.55,
  'status': 'automatic',
  'time': '2016-06-16T08:52:18.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T09:26:23.720Z'},
 {'depth': 97.9,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13651831',
  'latitude': 59.629,
  'locationSource': 'ak',
  'longitude': -153.0872,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '72km WSW of Anchor Point, Alaska',
  'rms': 0.61,
  'status': 'automatic',
  'time': '2016-06-16T08:51:31.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T09:26:24.599Z'},
 {'depth': 10.6,
  'depthError': 0.25,
  'dmin': 0.017419999999999998,
  'gap': 35.0,
  'horizontalError': 0.13,
  'id': 'ci37388607',
  'latitude': 34.052,
  'locationSource': 'ci',
  'longitude': -117.11916670000001,
  'mag': 1.25,
  'magError': 0.109,
  'magNst': 48.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 79.0,
  'place': '2km SE of Mentone, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T08:48:44.980Z',
  'type': 'earthquake',
  'updated': '2016-06-16T17:46:13.704Z'},
 {'depth': 71.0,
  'depthError': 0.8,
  'dmin': 0.2407485,
  'gap': 212.4,
  'horizontalError': 0.8,
  'id': 'pr16168002',
  'latitude': 18.6755,
  'locationSource': 'pr',
  'longitude': -66.6763,
  'mag': 2.8,
  'magError': 0.0,
  'magNst': 10.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 14.0,
  'place': '22km N of Arecibo, Puerto Rico',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T08:44:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T08:59:43.895Z'},
 {'depth': 7.91,
  'depthError': 0.78,
  'dmin': 0.04059,
  'gap': 38.0,
  'horizontalError': 0.4,
  'id': 'nm60147151',
  'latitude': 36.4986667,
  'locationSource': 'nm',
  'longitude': -89.5485,
  'mag': 2.22,
  'magError': 0.11900000000000001,
  'magNst': 14.0,
  'magSource': 'nm',
  'magType': 'md',
  'net': 'nm',
  'nst': 42.0,
  'place': '9km S of New Madrid, Missouri',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-16T08:26:04.760Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:07:36.809Z'},
 {'depth': 20.93,
  'depthError': 0.31,
  'dmin': 0.2067,
  'gap': 95.0,
  'horizontalError': 0.22,
  'id': 'nc72651911',
  'latitude': 36.6343333,
  'locationSource': 'nc',
  'longitude': -119.2735,
  'mag': 2.42,
  'magError': 0.188,
  'magNst': 40.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 63.0,
  'place': '3km ENE of Orange Cove, California',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-16T08:22:46.370Z',
  'type': 'earthquake',
  'updated': '2016-06-17T03:20:02.161Z'},
 {'depth': 2.85,
  'depthError': 0.69,
  'dmin': 0.09256,
  'gap': 87.0,
  'horizontalError': 0.41,
  'id': 'ci37388559',
  'latitude': 35.341666700000005,
  'locationSource': 'ci',
  'longitude': -117.91366670000001,
  'mag': 1.07,
  'magError': 0.115,
  'magNst': 16.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '25km NNE of California City, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T08:17:06.380Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:21:52.883Z'},
 {'depth': 10.81,
  'depthError': 0.38,
  'dmin': 0.09711,
  'gap': 69.0,
  'horizontalError': 0.18,
  'id': 'ci37388551',
  'latitude': 33.352166700000005,
  'locationSource': 'ci',
  'longitude': -116.25516670000002,
  'mag': 1.25,
  'magError': 0.171,
  'magNst': 38.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 51.0,
  'place': '15km NE of Borrego Springs, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-16T08:16:47.390Z',
  'type': 'earthquake',
  'updated': '2016-06-16T17:16:50.304Z'},
 {'depth': 1.94,
  'depthError': 1.24,
  'dmin': 0.314,
  'gap': 59.0,
  'horizontalError': 0.33,
  'id': 'ci37388535',
  'latitude': 35.7293333,
  'locationSource': 'ci',
  'longitude': -116.613,
  'mag': 1.31,
  'magError': 0.08,
  'magNst': 11.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 15.0,
  'place': '37km WSW of Tecopa, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-16T08:01:37.550Z',
  'type': 'earthquake',
  'updated': '2016-06-17T04:30:14.236Z'},
 {'depth': 11.33,
  'depthError': 0.58,
  'dmin': 0.06751,
  'gap': 100.0,
  'horizontalError': 0.26,
  'id': 'ci37388527',
  'latitude': 33.467833299999995,
  'locationSource': 'ci',
  'longitude': -116.47183329999999,
  'mag': 1.04,
  'magError': 0.175,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 32.0,
  'place': '21km ESE of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-16T07:55:36.820Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:23:09.480Z'},
 {'depth': 190.8,
  'depthError': 8.8,
  'dmin': 3.687,
  'gap': 55.0,
  'horizontalError': 6.8,
  'id': 'us200064qr',
  'latitude': -5.8526,
  'locationSource': 'us',
  'longitude': 129.9826,
  'mag': 4.5,
  'magError': 0.121,
  'magNst': 20.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '274km NNW of Saumlaki, Indonesia',
  'rms': 0.82,
  'status': 'reviewed',
  'time': '2016-06-16T07:26:18.650Z',
  'type': 'earthquake',
  'updated': '2016-06-16T07:47:04.279Z'},
 {'depth': 129.3,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13651556',
  'latitude': 63.1717,
  'locationSource': 'ak',
  'longitude': -150.7857,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '95km WSW of Cantwell, Alaska',
  'rms': 0.5,
  'status': 'automatic',
  'time': '2016-06-16T07:08:33.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T07:47:48.234Z'},
 {'depth': 90.0,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13651553',
  'latitude': 62.8524,
  'locationSource': 'ak',
  'longitude': -150.8954,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '71km NW of Talkeetna, Alaska',
  'rms': 0.66,
  'status': 'automatic',
  'time': '2016-06-16T06:36:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T06:56:36.155Z'},
 {'depth': 28.0,
  'depthError': 3.9,
  'dmin': 0.26051143,
  'gap': 280.8,
  'horizontalError': 2.8,
  'id': 'pr16168001',
  'latitude': 18.6126,
  'locationSource': 'pr',
  'longitude': -64.938,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '29km N of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-16T06:19:28.400Z',
  'type': 'earthquake',
  'updated': '2016-06-16T07:03:17.539Z'},
 {'depth': 0.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13651552',
  'latitude': 61.7684,
  'locationSource': 'ak',
  'longitude': -148.3013,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '29km E of Sutton-Alpine, Alaska',
  'rms': 0.35,
  'status': 'automatic',
  'time': '2016-06-16T06:15:36.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T06:56:34.848Z'},
 {'depth': 5.0,
  'depthError': 2.0,
  'dmin': 0.23600000000000002,
  'gap': 94.0,
  'horizontalError': 0.8,
  'id': 'us200064qj',
  'latitude': 36.3678,
  'locationSource': 'us',
  'longitude': -97.7287,
  'mag': 3.0,
  'magError': 0.054000000000000006,
  'magNst': 91.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '13km ESE of Enid, Oklahoma',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-16T06:15:04.070Z',
  'type': 'earthquake',
  'updated': '2016-06-16T06:32:22.484Z'},
 {'depth': 2.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13651549',
  'latitude': 60.1307,
  'locationSource': 'ak',
  'longitude': -141.186,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '69km E of Cape Yakataga, Alaska',
  'rms': 0.66,
  'status': 'automatic',
  'time': '2016-06-16T06:06:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T06:30:16.159Z'},
 {'depth': 63.0,
  'depthError': 4.9,
  'dmin': 0.45993743,
  'gap': 262.8,
  'horizontalError': 5.5,
  'id': 'pr16168000',
  'latitude': 18.7637,
  'locationSource': 'pr',
  'longitude': -65.3656,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '51km N of Culebra, Puerto Rico',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-16T06:01:41.100Z',
  'type': 'earthquake',
  'updated': '2016-06-16T07:02:16.339Z'},
 {'depth': 2.1,
  'depthError': 0.39,
  'dmin': 0.042789999999999995,
  'gap': 204.0,
  'horizontalError': 0.36,
  'id': 'nc72651866',
  'latitude': 38.906,
  'locationSource': 'nc',
  'longitude': -122.68799999999999,
  'mag': 1.14,
  'magError': 0.237,
  'magNst': 10.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 28.0,
  'place': '6km W of Lower Lake, California',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-16T05:28:43.540Z',
  'type': 'earthquake',
  'updated': '2016-06-17T01:39:03.883Z'},
 {'depth': 16.6,
  'depthError': 4.2,
  'dmin': 0.9640000000000001,
  'gap': 95.0,
  'horizontalError': 5.2,
  'id': 'us200064qf',
  'latitude': 41.952,
  'locationSource': 'us',
  'longitude': 140.9447,
  'mag': 5.2,
  'magError': 0.027000000000000003,
  'magNst': 458.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '22km ENE of Nanae, Japan',
  'rms': 1.12,
  'status': 'reviewed',
  'time': '2016-06-16T05:21:29.970Z',
  'type': 'earthquake',
  'updated': '2016-06-16T15:47:45.000Z'},
 {'depth': 13.4,
  'depthError': 0.77,
  'dmin': 0.08697,
  'gap': 60.0,
  'horizontalError': 0.32,
  'id': 'ci37388495',
  'latitude': 34.11,
  'locationSource': 'ci',
  'longitude': -117.29166670000001,
  'mag': 1.01,
  'magError': 0.11199999999999999,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 28.0,
  'place': '2km S of San Bernardino, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-16T05:14:13.610Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:22:25.710Z'},
 {'depth': 6.92,
  'depthError': 4.6,
  'dmin': 0.079,
  'gap': 90.0,
  'horizontalError': 1.2,
  'id': 'us200064qe',
  'latitude': 36.8439,
  'locationSource': 'us',
  'longitude': -98.1241,
  'mag': 2.6,
  'magError': 0.079,
  'magNst': 42.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '23km ENE of Cherokee, Oklahoma',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-16T05:12:05.750Z',
  'type': 'earthquake',
  'updated': '2016-06-16T05:25:57.456Z'},
 {'depth': 29.4,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13651273',
  'latitude': 61.5998,
  'locationSource': 'ak',
  'longitude': -147.2956,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '72km NW of Valdez, Alaska',
  'rms': 0.71,
  'status': 'automatic',
  'time': '2016-06-16T04:39:35.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T05:14:53.296Z'},
 {'depth': 19.33,
  'depthError': 0.79,
  'dmin': 0.1015,
  'gap': 124.0,
  'horizontalError': 0.5,
  'id': 'se60027403',
  'latitude': 35.6668333,
  'locationSource': 'se',
  'longitude': -84.6036667,
  'mag': 1.28,
  'magError': 0.077,
  'magNst': 4.0,
  'magSource': 'se',
  'magType': 'md',
  'net': 'se',
  'nst': 8.0,
  'place': '14km WNW of Sweetwater, Tennessee',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-16T04:29:05.830Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:09:14.610Z'},
 {'depth': 5.37,
  'depthError': 1.38,
  'dmin': 0.08782000000000001,
  'gap': 95.0,
  'horizontalError': 0.26,
  'id': 'uw61168816',
  'latitude': 47.101833299999996,
  'locationSource': 'uw',
  'longitude': -121.965,
  'mag': 1.4,
  'magError': 0.163,
  'magNst': 13.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 15.0,
  'place': '8km SE of Buckley, Washington',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-16T03:53:58.290Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:37:20.800Z'},
 {'depth': 90.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13651259',
  'latitude': 59.9426,
  'locationSource': 'ak',
  'longitude': -152.2838,
  'mag': 3.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '31km NW of Anchor Point, Alaska',
  'rms': 0.52,
  'status': 'automatic',
  'time': '2016-06-16T03:53:31.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T04:28:02.889Z'},
 {'depth': 107.9,
  'depthError': 1.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.3,
  'id': 'ak13651257',
  'latitude': 60.9591,
  'locationSource': 'ak',
  'longitude': -152.5433,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '53km NNE of Redoubt Volcano, Alaska',
  'rms': 0.56,
  'status': 'automatic',
  'time': '2016-06-16T03:45:12.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T04:26:52.566Z'},
 {'depth': 13.7,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13651254',
  'latitude': 61.3375,
  'locationSource': 'ak',
  'longitude': -146.954,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '39km NW of Valdez, Alaska',
  'rms': 0.24,
  'status': 'automatic',
  'time': '2016-06-16T03:15:01.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:37:13.219Z'},
 {'depth': 2.89,
  'depthError': 7.0,
  'dmin': 1.8219999999999998,
  'gap': 81.0,
  'horizontalError': 5.0,
  'id': 'us200064pt',
  'latitude': 31.1353,
  'locationSource': 'us',
  'longitude': -103.302,
  'mag': 3.3,
  'magError': 0.054000000000000006,
  'magNst': 90.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '36km SSE of Pecos, Texas',
  'rms': 1.0,
  'status': 'reviewed',
  'time': '2016-06-16T03:08:49.590Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:19:17.850Z'},
 {'depth': 97.0,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13651249',
  'latitude': 60.0546,
  'locationSource': 'ak',
  'longitude': -152.5333,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '49km SSE of Redoubt Volcano, Alaska',
  'rms': 0.36,
  'status': 'automatic',
  'time': '2016-06-16T02:50:56.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:12:11.648Z'},
 {'depth': 12.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13651246',
  'latitude': 64.4891,
  'locationSource': 'ak',
  'longitude': -149.3485,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '15km SW of North Nenana, Alaska',
  'rms': 0.7,
  'status': 'automatic',
  'time': '2016-06-16T02:44:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:12:09.542Z'},
 {'depth': 2.8,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13651243',
  'latitude': 59.2907,
  'locationSource': 'ak',
  'longitude': -154.7497,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '52km S of Old Iliamna, Alaska',
  'rms': 0.61,
  'status': 'automatic',
  'time': '2016-06-16T02:25:38.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T02:46:06.419Z'},
 {'depth': 4.2,
  'depthError': 3.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.8,
  'id': 'ak13651242',
  'latitude': 60.141999999999996,
  'locationSource': 'ak',
  'longitude': -141.0196,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '78km E of Cape Yakataga, Alaska',
  'rms': 0.62,
  'status': 'automatic',
  'time': '2016-06-16T02:24:22.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T02:46:05.511Z'},
 {'depth': 14.9,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13651240',
  'latitude': 65.0284,
  'locationSource': 'ak',
  'longitude': -146.6101,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '45km NNE of Eielson Air Force Base, Alaska',
  'rms': 0.22,
  'status': 'automatic',
  'time': '2016-06-16T01:59:48.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T02:20:51.907Z'},
 {'depth': 14.71,
  'depthError': 0.46,
  'dmin': 0.1199,
  'gap': 45.0,
  'horizontalError': 0.23,
  'id': 'ci37388455',
  'latitude': 33.988,
  'locationSource': 'ci',
  'longitude': -116.675,
  'mag': 1.29,
  'magError': 0.16399999999999998,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 41.0,
  'place': '11km SW of Morongo Valley, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-16T01:59:22.340Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:22:36.698Z'},
 {'depth': 86.0,
  'depthError': 1.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13651238',
  'latitude': 62.5128,
  'locationSource': 'ak',
  'longitude': -151.3561,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '67km WNW of Talkeetna, Alaska',
  'rms': 0.41,
  'status': 'automatic',
  'time': '2016-06-16T01:51:44.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T02:20:50.471Z'},
 {'depth': 37.0,
  'depthError': 7.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 3.4,
  'id': 'us200064pg',
  'latitude': -30.67,
  'locationSource': 'guc',
  'longitude': -71.33,
  'mag': 4.8,
  'magError': 0.139,
  'magNst': 16.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '14km WSW of Ovalle, Chile',
  'rms': 1.25,
  'status': 'reviewed',
  'time': '2016-06-16T01:14:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T01:25:25.516Z'},
 {'depth': 1.33,
  'depthError': 31.61,
  'dmin': 0.08085,
  'gap': 159.0,
  'horizontalError': 0.67,
  'id': 'uu60150972',
  'latitude': 39.7111667,
  'locationSource': 'uu',
  'longitude': -111.25416670000001,
  'mag': 1.44,
  'magError': 0.087,
  'magNst': 3.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 7.0,
  'place': '18km ENE of Fairview, Utah',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-16T01:09:19.780Z',
  'type': 'earthquake',
  'updated': '2016-06-16T20:55:17.870Z'},
 {'depth': 104.1,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13650940',
  'latitude': 62.8628,
  'locationSource': 'ak',
  'longitude': -150.4942,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '63km NNW of Talkeetna, Alaska',
  'rms': 0.37,
  'status': 'automatic',
  'time': '2016-06-16T01:03:16.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T01:32:46.769Z'},
 {'depth': 58.1,
  'depthError': 1.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13650931',
  'latitude': 61.6475,
  'locationSource': 'ak',
  'longitude': -147.4742,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '74km ESE of Sutton-Alpine, Alaska',
  'rms': 0.78,
  'status': 'automatic',
  'time': '2016-06-16T00:53:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T01:32:46.148Z'},
 {'depth': 9.5,
  'depthError': 0.92,
  'dmin': 0.1295,
  'gap': 42.0,
  'horizontalError': 0.25,
  'id': 'ci37388439',
  'latitude': 33.1606667,
  'locationSource': 'ci',
  'longitude': -116.1043333,
  'mag': 1.79,
  'magError': 0.184,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 48.0,
  'place': '3km NE of Ocotillo Wells, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-16T00:51:55.390Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:22:57.008Z'},
 {'depth': 565.95,
  'depthError': 8.5,
  'dmin': 4.433,
  'gap': 93.0,
  'horizontalError': 10.7,
  'id': 'us200064pf',
  'latitude': -20.8363,
  'locationSource': 'us',
  'longitude': -178.565,
  'mag': 5.1,
  'magError': 0.038,
  'magNst': 227.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '24km SE of Ndoi Island, Fiji',
  'rms': 0.89,
  'status': 'reviewed',
  'time': '2016-06-16T00:48:03.560Z',
  'type': 'earthquake',
  'updated': '2016-06-16T01:06:48.825Z'},
 {'depth': 18.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13650902',
  'latitude': 60.5398,
  'locationSource': 'ak',
  'longitude': -145.1923,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '31km E of Cordova, Alaska',
  'rms': 0.2,
  'status': 'automatic',
  'time': '2016-06-16T00:47:04.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T01:33:10.416Z'},
 {'depth': 20.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13650898',
  'latitude': 61.6699,
  'locationSource': 'ak',
  'longitude': -146.5118,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km N of Valdez, Alaska',
  'rms': 0.77,
  'status': 'automatic',
  'time': '2016-06-16T00:24:08.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T01:04:07.338Z'},
 {'depth': 11.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13650872',
  'latitude': 57.0278,
  'locationSource': 'ak',
  'longitude': -157.6569,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km NE of Chignik Lake, Alaska',
  'rms': 0.47,
  'status': 'reviewed',
  'time': '2016-06-15T23:58:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:51:04.915Z'},
 {'depth': 123.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13657246',
  'latitude': 59.4091,
  'locationSource': 'ak',
  'longitude': -153.4583,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '90km ESE of Old Iliamna, Alaska',
  'rms': 0.36,
  'status': 'reviewed',
  'time': '2016-06-15T23:57:10.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:20:05.680Z'},
 {'depth': 8.23,
  'depthError': 0.49,
  'dmin': 0.04384,
  'gap': 82.0,
  'horizontalError': 0.18,
  'id': 'ci37388399',
  'latitude': 33.4823333,
  'locationSource': 'ci',
  'longitude': -116.40700000000001,
  'mag': 1.04,
  'magError': 0.128,
  'magNst': 20.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 36.0,
  'place': '22km SSW of La Quinta, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-15T23:50:53.510Z',
  'type': 'earthquake',
  'updated': '2016-06-16T15:54:41.483Z'},
 {'depth': 18.36,
  'depthError': 0.39,
  'dmin': 0.052579999999999995,
  'gap': 35.0,
  'horizontalError': 0.2,
  'id': 'ci37388391',
  'latitude': 34.0018333,
  'locationSource': 'ci',
  'longitude': -116.91216670000001,
  'mag': 1.19,
  'magError': 0.158,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 34.0,
  'place': '9km NNW of Banning, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-15T23:36:29.960Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:24:19.800Z'},
 {'depth': 39.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13650871',
  'latitude': 61.6381,
  'locationSource': 'ak',
  'longitude': -149.7643,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '2km ENE of Houston, Alaska',
  'rms': 0.34,
  'status': 'reviewed',
  'time': '2016-06-15T23:30:35.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:40.724Z'},
 {'depth': -2.0,
  'depthError': 31.61,
  'dmin': 0.165,
  'gap': 119.0,
  'horizontalError': 1.87,
  'id': 'mb80155099',
  'latitude': 45.9033333,
  'locationSource': 'mb',
  'longitude': -112.245,
  'mag': 1.33,
  'magError': 0.289,
  'magNst': 2.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 6.0,
  'place': '12km WNW of Whitehall, Montana',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-15T23:21:55.090Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T13:44:51.760Z'},
 {'depth': 11.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13650869',
  'latitude': 63.3875,
  'locationSource': 'ak',
  'longitude': -151.6684,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '135km W of Cantwell, Alaska',
  'rms': 0.68,
  'status': 'reviewed',
  'time': '2016-06-15T23:21:30.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:39.837Z'},
 {'depth': -0.53,
  'depthError': 31.61,
  'dmin': 0.5887,
  'gap': 207.0,
  'horizontalError': 2.13,
  'id': 'uw61168721',
  'latitude': 49.411666700000005,
  'locationSource': 'uw',
  'longitude': -120.50533329999999,
  'mag': 2.14,
  'magError': 0.12,
  'magNst': 10.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 13.0,
  'place': '5km S of Princeton, Canada',
  'rms': 0.32,
  'status': 'reviewed',
  'time': '2016-06-15T23:12:29.620Z',
  'type': 'explosion',
  'updated': '2016-06-20T19:01:59.550Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13650866',
  'latitude': 64.9686,
  'locationSource': 'ak',
  'longitude': -147.3523,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '20km NNE of Badger, Alaska',
  'rms': 0.47,
  'status': 'reviewed',
  'time': '2016-06-15T23:08:22.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:41.891Z'},
 {'depth': 79.6,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657241',
  'latitude': 60.6105,
  'locationSource': 'ak',
  'longitude': -152.1221,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '36km ENE of Redoubt Volcano, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-15T23:07:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:11.768Z'},
 {'depth': 7.771,
  'depthError': 0.73,
  'dmin': 0.007564,
  'gap': 179.0,
  'horizontalError': 0.69,
  'id': 'hv61298706',
  'latitude': 19.288,
  'locationSource': 'hv',
  'longitude': -155.221,
  'mag': 1.09,
  'magError': 0.3,
  'magNst': 11.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 24.0,
  'place': '15km S of Volcano, Hawaii',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-15T23:02:31.010Z',
  'type': 'earthquake',
  'updated': '2016-06-15T23:39:24.180Z'},
 {'depth': -0.09,
  'depthError': 31.61,
  'dmin': 0.0325,
  'gap': 58.0,
  'horizontalError': 0.2,
  'id': 'nc72651786',
  'latitude': 36.7541667,
  'locationSource': 'nc',
  'longitude': -121.60366670000002,
  'mag': 1.56,
  'magError': 0.256,
  'magNst': 29.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 29.0,
  'place': '1km NW of Quarry near Salinas, CA',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-15T22:55:21.740Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T23:38:03.062Z'},
 {'depth': 19.9,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13650860',
  'latitude': 61.553000000000004,
  'locationSource': 'ak',
  'longitude': -146.5382,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '48km NNW of Valdez, Alaska',
  'rms': 0.63,
  'status': 'reviewed',
  'time': '2016-06-15T22:53:10.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:44.783Z'},
 {'depth': 35.0,
  'depthError': 2.0,
  'dmin': 5.349,
  'gap': 153.0,
  'horizontalError': 10.4,
  'id': 'us200064nl',
  'latitude': 48.2037,
  'locationSource': 'us',
  'longitude': 154.3594,
  'mag': 4.4,
  'magError': 0.1,
  'magNst': 29.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Kuril Islands',
  'rms': 0.79,
  'status': 'reviewed',
  'time': '2016-06-15T22:21:15.950Z',
  'type': 'earthquake',
  'updated': '2016-06-15T22:45:04.286Z'},
 {'depth': 5.87,
  'depthError': 1.7,
  'dmin': 0.08503,
  'gap': 114.0,
  'horizontalError': 0.39,
  'id': 'uw61168691',
  'latitude': 47.1045,
  'locationSource': 'uw',
  'longitude': -121.96633329999999,
  'mag': 1.4,
  'magError': 0.341,
  'magNst': 24.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 12.0,
  'place': '7km SE of Buckley, Washington',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-15T22:07:24.600Z',
  'type': 'earthquake',
  'updated': '2016-06-20T18:59:20.580Z'},
 {'depth': -0.51,
  'depthError': 31.61,
  'dmin': 0.0514,
  'gap': 41.0,
  'horizontalError': 0.28,
  'id': 'ci37388303',
  'latitude': 33.8465,
  'locationSource': 'ci',
  'longitude': -117.49600000000001,
  'mag': 1.29,
  'magError': 0.151,
  'magNst': 12.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 53.0,
  'place': '4km SSE of Home Gardens, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-15T22:06:16.340Z',
  'type': 'quarry blast',
  'updated': '2016-06-16T15:48:38.275Z'},
 {'depth': 17.9,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13650480',
  'latitude': 63.0861,
  'locationSource': 'ak',
  'longitude': -149.433,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '41km SW of Cantwell, Alaska',
  'rms': 0.55,
  'status': 'reviewed',
  'time': '2016-06-15T22:05:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:44.110Z'},
 {'depth': 138.5,
  'depthError': 1.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 6.1,
  'id': 'ak13657237',
  'latitude': 52.2492,
  'locationSource': 'ak',
  'longitude': -173.41099999999997,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '54km E of Atka, Alaska',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-15T21:51:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:20:01.698Z'},
 {'depth': 7.9,
  'depthError': 2.8,
  'dmin': 0.34600000000000003,
  'gap': 111.53,
  'horizontalError': 2.18,
  'id': 'nn00548205',
  'latitude': 39.4931,
  'locationSource': 'nn',
  'longitude': -118.499,
  'mag': 2.6,
  'magError': 0.22,
  'magNst': 8.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 10.0,
  'place': '24km E of Fallon, Nevada',
  'rms': 0.1312,
  'status': 'reviewed',
  'time': '2016-06-15T21:42:20.806Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:52.277Z'},
 {'depth': 10.85,
  'depthError': 0.53,
  'dmin': 0.008844,
  'gap': 44.0,
  'horizontalError': 0.21,
  'id': 'ci37388263',
  'latitude': 33.24,
  'locationSource': 'ci',
  'longitude': -116.76816670000001,
  'mag': 1.59,
  'magError': 0.163,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 41.0,
  'place': '0km WSW of Lake Henshaw, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T21:41:24.710Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:24:24.730Z'},
 {'depth': 3.2,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13650475',
  'latitude': 58.4399,
  'locationSource': 'ak',
  'longitude': -154.27700000000002,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '101km N of Larsen Bay, Alaska',
  'rms': 0.56,
  'status': 'reviewed',
  'time': '2016-06-15T21:40:11.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:30.705Z'},
 {'depth': 16.39,
  'depthError': 10.6,
  'dmin': 1.546,
  'gap': 209.0,
  'horizontalError': 11.5,
  'id': 'us200064n5',
  'latitude': 53.3239,
  'locationSource': 'us',
  'longitude': -163.1053,
  'mag': 4.4,
  'magError': 0.179,
  'magNst': 9.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '171km S of False Pass, Alaska',
  'rms': 1.0,
  'status': 'reviewed',
  'time': '2016-06-15T21:26:48.750Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:14.556Z'},
 {'depth': 21.5,
  'depthError': 2.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 3.4,
  'id': 'ak13657234',
  'latitude': 51.5478,
  'locationSource': 'ak',
  'longitude': -178.5505,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '46km SW of Tanaga Volcano, Alaska',
  'rms': 0.5,
  'status': 'reviewed',
  'time': '2016-06-15T21:20:09.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:59.683Z'},
 {'depth': 1.45,
  'depthError': 7.0,
  'dmin': 0.33299999999999996,
  'gap': 51.0,
  'horizontalError': 1.4,
  'id': 'us200064mu',
  'latitude': 36.2179,
  'locationSource': 'us',
  'longitude': -97.2909,
  'mag': 2.9,
  'magError': 0.061,
  'magNst': 71.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '7km S of Perry, Oklahoma',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T21:08:02.280Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:20:09.836Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 0.981,
  'gap': 76.0,
  'horizontalError': 7.6,
  'id': 'us200064mv',
  'latitude': -2.9956,
  'locationSource': 'us',
  'longitude': 147.626,
  'mag': 4.8,
  'magError': 0.076,
  'magNst': 54.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '114km SSE of Lorengau, Papua New Guinea',
  'rms': 0.88,
  'status': 'reviewed',
  'time': '2016-06-15T21:06:19.860Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:31:22.334Z'},
 {'depth': 9.4,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13650209',
  'latitude': 63.1791,
  'locationSource': 'ak',
  'longitude': -151.4187,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '116km NW of Talkeetna, Alaska',
  'rms': 0.6,
  'status': 'reviewed',
  'time': '2016-06-15T20:52:11.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:45.694Z'},
 {'depth': 12.98,
  'depthError': 0.86,
  'dmin': 0.0729,
  'gap': 47.0,
  'horizontalError': 0.26,
  'id': 'ci37388167',
  'latitude': 33.9765,
  'locationSource': 'ci',
  'longitude': -116.92966670000001,
  'mag': 1.25,
  'magError': 0.268,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 35.0,
  'place': '7km NE of Beaumont, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T20:00:55.440Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:25:37.810Z'},
 {'depth': 8.96,
  'depthError': 0.48,
  'dmin': 0.04981,
  'gap': 83.0,
  'horizontalError': 0.23,
  'id': 'ci37388143',
  'latitude': 33.4751667,
  'locationSource': 'ci',
  'longitude': -116.44116670000001,
  'mag': 1.55,
  'magError': 0.183,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 49.0,
  'place': '23km ESE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-15T19:53:17.570Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:24:33.370Z'},
 {'depth': 3.66,
  'depthError': 7.39,
  'dmin': 0.174,
  'gap': 141.0,
  'horizontalError': 0.63,
  'id': 'mb80155164',
  'latitude': 44.8128333,
  'locationSource': 'mb',
  'longitude': -113.0921667,
  'mag': 1.04,
  'magError': 0.091,
  'magNst': 3.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 8.0,
  'place': '44km WNW of Lima, Montana',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-15T19:52:47.840Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:04:38.150Z'},
 {'depth': 66.7,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13657230',
  'latitude': 59.3792,
  'locationSource': 'ak',
  'longitude': -151.9713,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '37km SW of Homer, Alaska',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-15T19:32:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:57.715Z'},
 {'depth': 9.04,
  'depthError': 0.53,
  'dmin': 0.04952,
  'gap': 49.0,
  'horizontalError': 0.27,
  'id': 'ci37388111',
  'latitude': 33.4748333,
  'locationSource': 'ci',
  'longitude': -116.43799999999999,
  'mag': 1.37,
  'magError': 0.198,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 48.0,
  'place': '24km ESE of Anza, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-15T19:23:51.360Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:25:43.310Z'},
 {'depth': 17.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13649947',
  'latitude': 63.006,
  'locationSource': 'ak',
  'longitude': -140.2692,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '124km SSW of Dawson, Canada',
  'rms': 0.67,
  'status': 'reviewed',
  'time': '2016-06-15T19:16:44.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:51.894Z'},
 {'depth': 2.15,
  'depthError': 0.37,
  'dmin': 0.009120999999999999,
  'gap': 46.0,
  'horizontalError': 0.23,
  'id': 'nc72651716',
  'latitude': 38.8216667,
  'locationSource': 'nc',
  'longitude': -122.82350159999999,
  'mag': 1.11,
  'magError': 0.08,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 25.0,
  'place': '7km NW of The Geysers, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-15T19:08:59.160Z',
  'type': 'earthquake',
  'updated': '2016-06-15T22:02:03.019Z'},
 {'depth': 81.4,
  'depthError': 2.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 7.2,
  'id': 'ak13657227',
  'latitude': 51.9441,
  'locationSource': 'ak',
  'longitude': -173.7364,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '42km SE of Atka, Alaska',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-15T19:07:39.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:10.956Z'},
 {'depth': 2.6,
  'depthError': 0.74,
  'dmin': 0.07846,
  'gap': 58.0,
  'horizontalError': 0.29,
  'id': 'ci37388087',
  'latitude': 33.924,
  'locationSource': 'ci',
  'longitude': -116.01966670000002,
  'mag': 1.64,
  'magError': 0.133,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 38.0,
  'place': '24km SSE of Twentynine Palms, CA',
  'rms': 0.26,
  'status': 'reviewed',
  'time': '2016-06-15T19:04:14.160Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:25:48.940Z'},
 {'depth': -2.0,
  'depthError': 31.61,
  'dmin': 0.192,
  'gap': 154.0,
  'horizontalError': 0.95,
  'id': 'mb80155074',
  'latitude': 46.014166700000004,
  'locationSource': 'mb',
  'longitude': -112.46833329999998,
  'mag': 1.25,
  'magError': 0.19,
  'magNst': 2.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 6.0,
  'place': '5km ENE of Butte, Montana',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-15T19:04:00.610Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T19:42:46.760Z'},
 {'depth': 99.2,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13649943',
  'latitude': 59.3802,
  'locationSource': 'ak',
  'longitude': -153.8121,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '74km ESE of Old Iliamna, Alaska',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-15T19:02:58.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:47.316Z'},
 {'depth': 64.4,
  'depthError': 2.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 2.7,
  'id': 'ak13657225',
  'latitude': 54.4762,
  'locationSource': 'ak',
  'longitude': -163.034,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '48km SSE of False Pass, Alaska',
  'rms': 0.36,
  'status': 'reviewed',
  'time': '2016-06-15T18:57:12.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:55.696Z'},
 {'depth': 3.05,
  'depthError': 9.9,
  'dmin': 0.07976,
  'gap': 219.0,
  'horizontalError': 0.76,
  'id': 'uw61168561',
  'latitude': 48.476833299999996,
  'locationSource': 'uw',
  'longitude': -121.62666670000002,
  'mag': 1.24,
  'magError': 0.132,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 4.0,
  'place': '2km WSW of Rockport, Washington',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-15T18:45:22.190Z',
  'type': 'earthquake',
  'updated': '2016-06-16T18:05:04.500Z'},
 {'depth': 79.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13649549',
  'latitude': 62.9378,
  'locationSource': 'ak',
  'longitude': -149.8437,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '67km SW of Cantwell, Alaska',
  'rms': 0.34,
  'status': 'reviewed',
  'time': '2016-06-15T18:42:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:50.933Z'},
 {'depth': -0.02,
  'depthError': 31.61,
  'dmin': 0.02203,
  'gap': 115.0,
  'horizontalError': 0.39,
  'id': 'nc72651711',
  'latitude': 37.982,
  'locationSource': 'nc',
  'longitude': -122.46283329999999,
  'mag': 1.12,
  'magError': 0.168,
  'magNst': 11.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 19.0,
  'place': '2km SW of Quarry near San Rafael, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-15T18:32:08.270Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T23:32:12.482Z'},
 {'depth': 5.27,
  'depthError': 1.92,
  'dmin': 0.07742,
  'gap': 114.0,
  'horizontalError': 0.46,
  'id': 'ci37388055',
  'latitude': 33.9256667,
  'locationSource': 'ci',
  'longitude': -116.0225,
  'mag': 1.07,
  'magError': 0.141,
  'magNst': 22.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-15T18:32:03.370Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:24:35.390Z'},
 {'depth': 159.81,
  'depthError': 7.4,
  'dmin': 1.7,
  'gap': 108.0,
  'horizontalError': 8.3,
  'id': 'us200064l2',
  'latitude': -8.4896,
  'locationSource': 'us',
  'longitude': -74.2437,
  'mag': 4.2,
  'magError': 0.175,
  'magNst': 9.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '36km ESE of Pucallpa, Peru',
  'rms': 0.63,
  'status': 'reviewed',
  'time': '2016-06-15T18:23:12.410Z',
  'type': 'earthquake',
  'updated': '2016-06-15T19:55:41.951Z'},
 {'depth': 15.1,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13649545',
  'latitude': 62.0592,
  'locationSource': 'ak',
  'longitude': -145.2142,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '18km ESE of Glennallen, Alaska',
  'rms': 0.8,
  'status': 'reviewed',
  'time': '2016-06-15T18:21:44.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:49.610Z'},
 {'depth': 5.69,
  'depthError': 1.89,
  'dmin': 0.175,
  'gap': 98.0,
  'horizontalError': 0.45,
  'id': 'mb80155069',
  'latitude': 44.8133333,
  'locationSource': 'mb',
  'longitude': -113.0945,
  'mag': 2.05,
  'magError': 0.2,
  'magNst': 13.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 22.0,
  'place': '44km WNW of Lima, Montana',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-15T18:17:44.530Z',
  'type': 'earthquake',
  'updated': '2016-06-15T19:40:12.520Z'},
 {'depth': 21.09,
  'depthError': 7.0,
  'dmin': 0.17300000000000001,
  'gap': 145.0,
  'horizontalError': 6.2,
  'id': 'us200064ku',
  'latitude': 8.4053,
  'locationSource': 'us',
  'longitude': -82.8257,
  'mag': 4.5,
  'magError': 0.064,
  'magNst': 72.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '2km WNW of La Esperanza, Panama',
  'rms': 0.85,
  'status': 'reviewed',
  'time': '2016-06-15T18:17:06.410Z',
  'type': 'earthquake',
  'updated': '2016-06-15T19:35:16.597Z'},
 {'depth': 2.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.1,
  'id': 'ak13649541',
  'latitude': 62.3433,
  'locationSource': 'ak',
  'longitude': -152.0981,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '103km W of Talkeetna, Alaska',
  'rms': 0.65,
  'status': 'reviewed',
  'time': '2016-06-15T18:14:50.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:16:08.632Z'},
 {'depth': 1.4,
  'depthError': 0.4,
  'dmin': 0.013430000000000001,
  'gap': 46.0,
  'horizontalError': 0.25,
  'id': 'nc72651701',
  'latitude': 38.8186684,
  'locationSource': 'nc',
  'longitude': -122.76166529999999,
  'mag': 1.16,
  'magError': 0.06,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '3km W of Cobb, California',
  'rms': 0.05,
  'status': 'automatic',
  'time': '2016-06-15T17:52:42.170Z',
  'type': 'earthquake',
  'updated': '2016-06-15T20:17:03.727Z'},
 {'depth': 7.2,
  'depthError': 1.51,
  'dmin': 0.09193,
  'gap': 81.0,
  'horizontalError': 0.31,
  'id': 'ci37388031',
  'latitude': 34.1195,
  'locationSource': 'ci',
  'longitude': -117.46683329999999,
  'mag': 1.11,
  'magError': 0.19399999999999998,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '3km NNW of Fontana, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T17:23:55.880Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:24:52.702Z'},
 {'depth': 60.1,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13649525',
  'latitude': 62.1986,
  'locationSource': 'ak',
  'longitude': -150.5331,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '26km WSW of Talkeetna, Alaska',
  'rms': 0.45,
  'status': 'reviewed',
  'time': '2016-06-15T17:20:10.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:44.921Z'},
 {'depth': 8.7,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13649524',
  'latitude': 63.5761,
  'locationSource': 'ak',
  'longitude': -147.2687,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '86km ENE of Cantwell, Alaska',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-15T17:19:54.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:52.619Z'},
 {'depth': 117.6,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13657217',
  'latitude': 63.0728,
  'locationSource': 'ak',
  'longitude': -150.7695,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '90km NNW of Talkeetna, Alaska',
  'rms': 0.54,
  'status': 'reviewed',
  'time': '2016-06-15T16:48:35.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:53.691Z'},
 {'depth': 152.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13657216',
  'latitude': 60.0146,
  'locationSource': 'ak',
  'longitude': -153.6667,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '73km SW of Redoubt Volcano, Alaska',
  'rms': 0.62,
  'status': 'reviewed',
  'time': '2016-06-15T16:44:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:10.106Z'},
 {'depth': 3.25,
  'depthError': 0.5,
  'dmin': 0.08041,
  'gap': 48.0,
  'horizontalError': 0.13,
  'id': 'ci37387991',
  'latitude': 33.9225,
  'locationSource': 'ci',
  'longitude': -116.02216670000001,
  'mag': 2.66,
  'magError': 0.114,
  'magNst': 105.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 62.0,
  'place': '24km S of Twentynine Palms, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-15T16:43:42.300Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:15:48.003Z'},
 {'depth': 9.5,
  'depthError': 3.2,
  'dmin': 0.29600000000000004,
  'gap': 103.49,
  'horizontalError': 1.07,
  'id': 'nn00548155',
  'latitude': 38.7947,
  'locationSource': 'nn',
  'longitude': -117.9068,
  'mag': 1.6,
  'magError': 0.38,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 11.0,
  'place': '8km S of Gabbs, Nevada',
  'rms': 0.1181,
  'status': 'reviewed',
  'time': '2016-06-15T16:32:19.730Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:39.975Z'},
 {'depth': 6.7,
  'depthError': 5.2,
  'dmin': 0.016,
  'gap': 117.0,
  'horizontalError': 1.7,
  'id': 'us200064jv',
  'latitude': 36.7221,
  'locationSource': 'us',
  'longitude': -98.7199,
  'mag': 2.6,
  'magError': 0.081,
  'magNst': 40.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '10km SSW of Alva, Oklahoma',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-15T16:28:24.260Z',
  'type': 'earthquake',
  'updated': '2016-06-15T16:44:13.947Z'},
 {'depth': 3.3,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657215',
  'latitude': 60.3938,
  'locationSource': 'ak',
  'longitude': -147.2179,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '82km W of Cordova, Alaska',
  'rms': 0.71,
  'status': 'reviewed',
  'time': '2016-06-15T16:19:01.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:08.939Z'},
 {'depth': 12.5,
  'depthError': 1.28,
  'dmin': 0.1371,
  'gap': 68.0,
  'horizontalError': 0.36,
  'id': 'ci37387959',
  'latitude': 32.9106667,
  'locationSource': 'ci',
  'longitude': -116.26083329999999,
  'mag': 1.37,
  'magError': 0.21100000000000002,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 34.0,
  'place': '27km ENE of Pine Valley, CA',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-15T16:12:20.590Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:54.980Z'},
 {'depth': 16.45,
  'depthError': 0.9,
  'dmin': 0.09775,
  'gap': 300.0,
  'horizontalError': 0.99,
  'id': 'uw61168411',
  'latitude': 47.5978333,
  'locationSource': 'uw',
  'longitude': -122.66366670000001,
  'mag': 1.33,
  'magError': 0.055999999999999994,
  'magNst': 4.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 5.0,
  'place': '0km NNE of Rocky Point, Washington',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-15T16:11:42.550Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:19:25.970Z'},
 {'depth': 7.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13649519',
  'latitude': 59.6716,
  'locationSource': 'ak',
  'longitude': -156.8116,
  'mag': 2.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '106km W of Old Iliamna, Alaska',
  'rms': 0.68,
  'status': 'reviewed',
  'time': '2016-06-15T16:10:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:51.563Z'},
 {'depth': 3.32,
  'depthError': 0.31,
  'dmin': 0.00297,
  'gap': 60.0,
  'horizontalError': 0.17,
  'id': 'ci37387951',
  'latitude': 35.9508333,
  'locationSource': 'ci',
  'longitude': -117.65100000000001,
  'mag': 1.21,
  'magError': 0.24600000000000002,
  'magNst': 11.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 18.0,
  'place': '23km E of Little Lake, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-15T16:04:51.500Z',
  'type': 'earthquake',
  'updated': '2016-06-16T15:43:05.263Z'},
 {'depth': 18.7,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13649514',
  'latitude': 64.8456,
  'locationSource': 'ak',
  'longitude': -149.9559,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '36km ESE of Manley Hot Springs, Alaska',
  'rms': 0.63,
  'status': 'reviewed',
  'time': '2016-06-15T15:51:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:49:08.013Z'},
 {'depth': 5.96,
  'depthError': 31.61,
  'dmin': 0.8548,
  'gap': 176.0,
  'horizontalError': 0.91,
  'id': 'ci37387935',
  'latitude': 31.4783333,
  'locationSource': 'ci',
  'longitude': -115.70716670000002,
  'mag': 2.8,
  'magError': 0.126,
  'magNst': 47.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '86km ESE of Maneadero, B.C., MX',
  'rms': 0.29,
  'status': 'reviewed',
  'time': '2016-06-15T15:47:11.050Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:19:12.188Z'},
 {'depth': 5.0,
  'depthError': 2.0,
  'dmin': 0.141,
  'gap': 157.0,
  'horizontalError': 1.6,
  'id': 'us200064jb',
  'latitude': 36.5065,
  'locationSource': 'us',
  'longitude': -99.0783,
  'mag': 2.9,
  'magError': 0.062,
  'magNst': 67.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '13km ENE of Mooreland, Oklahoma',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-15T15:43:53.310Z',
  'type': 'earthquake',
  'updated': '2016-06-15T15:55:06.704Z'},
 {'depth': 40.8,
  'depthError': 1.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 2.3,
  'id': 'ak13657210',
  'latitude': 51.0798,
  'locationSource': 'ak',
  'longitude': -179.8435,
  'mag': 2.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '55km WSW of Amatignak Island, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-15T15:37:45.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:50.665Z'},
 {'depth': 47.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13649501',
  'latitude': 61.8377,
  'locationSource': 'ak',
  'longitude': -150.1536,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '11km NNW of Willow, Alaska',
  'rms': 0.44,
  'status': 'reviewed',
  'time': '2016-06-15T15:34:11.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:28.404Z'},
 {'depth': 115.4,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13657207',
  'latitude': 63.8826,
  'locationSource': 'ak',
  'longitude': -148.9562,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '2km N of Healy, Alaska',
  'rms': 0.45,
  'status': 'reviewed',
  'time': '2016-06-15T15:32:09.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:07.940Z'},
 {'depth': 56.56,
  'depthError': 17.1,
  'dmin': 1.034,
  'gap': 179.0,
  'horizontalError': 8.0,
  'id': 'us200064ja',
  'latitude': 13.9322,
  'locationSource': 'us',
  'longitude': -90.8181,
  'mag': 3.9,
  'magError': 0.163,
  'magNst': 10.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '1km NE of Puerto San Jose, Guatemala',
  'rms': 1.16,
  'status': 'reviewed',
  'time': '2016-06-15T15:31:38.800Z',
  'type': 'earthquake',
  'updated': '2016-06-16T21:55:14.179Z'},
 {'depth': 62.5,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657206',
  'latitude': 59.0833,
  'locationSource': 'ak',
  'longitude': -152.3121,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '75km SW of Homer, Alaska',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-15T15:26:29.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:45.672Z'},
 {'depth': 96.9,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.1,
  'id': 'ak13657205',
  'latitude': 59.5903,
  'locationSource': 'ak',
  'longitude': -152.8445,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km WSW of Anchor Point, Alaska',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-15T15:26:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:06.946Z'},
 {'depth': 20.0,
  'depthError': 27.4,
  'dmin': 0.6521769000000001,
  'gap': 306.0,
  'horizontalError': 2.9,
  'id': 'pr16167011',
  'latitude': 18.9995,
  'locationSource': 'pr',
  'longitude': -65.0688,
  'mag': 1.8,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '74km N of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-15T15:24:11.300Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:02:56.071Z'},
 {'depth': 6.9,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13649500',
  'latitude': 62.236999999999995,
  'locationSource': 'ak',
  'longitude': -148.5574,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '51km NNE of Sutton-Alpine, Alaska',
  'rms': 0.55,
  'status': 'reviewed',
  'time': '2016-06-15T15:12:06.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:13.034Z'},
 {'depth': 24.2,
  'depthError': 6.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 5.4,
  'id': 'ak13657203',
  'latitude': 53.4624,
  'locationSource': 'ak',
  'longitude': -165.7573,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '68km SE of Unalaska, Alaska',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-15T15:02:07.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:43.664Z'},
 {'depth': 4.758,
  'depthError': 0.34,
  'dmin': 0.009590999999999999,
  'gap': 73.0,
  'horizontalError': 0.23,
  'id': 'hv61298406',
  'latitude': 19.4141667,
  'locationSource': 'hv',
  'longitude': -155.3063333,
  'mag': 1.18,
  'magError': 0.242,
  'magNst': 11.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 36.0,
  'place': '7km WSW of Volcano, Hawaii',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-15T14:48:18.900Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:37:26.100Z'},
 {'depth': 41.0,
  'depthError': 4.2,
  'dmin': 0.42669976,
  'gap': 306.0,
  'horizontalError': 2.2,
  'id': 'pr16167010',
  'latitude': 17.6448,
  'locationSource': 'pr',
  'longitude': -66.556,
  'mag': 2.4,
  'magError': 0.0,
  'magNst': 2.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '38km S of Potala Pastillo, Puerto Rico',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-15T14:47:04.200Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:33:13.424Z'},
 {'depth': 6.83,
  'depthError': 5.1,
  'dmin': 0.021,
  'gap': 119.0,
  'horizontalError': 1.8,
  'id': 'us200064iy',
  'latitude': 36.7293,
  'locationSource': 'us',
  'longitude': -98.7151,
  'mag': 3.0,
  'magError': 0.057,
  'magNst': 81.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '9km SSW of Alva, Oklahoma',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-15T14:36:28.610Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:46:48.821Z'},
 {'depth': 7.47,
  'depthError': 0.79,
  'dmin': 0.04718,
  'gap': 80.0,
  'horizontalError': 0.24,
  'id': 'ci37387895',
  'latitude': 33.4761667,
  'locationSource': 'ci',
  'longitude': -116.42266670000001,
  'mag': 1.31,
  'magError': 0.19399999999999998,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 47.0,
  'place': '23km SSW of La Quinta, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-15T14:35:58.640Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:27:05.260Z'},
 {'depth': 34.8,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13649256',
  'latitude': 62.0327,
  'locationSource': 'ak',
  'longitude': -149.7831,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '14km SSE of Y, Alaska',
  'rms': 0.63,
  'status': 'reviewed',
  'time': '2016-06-15T14:35:44.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:27.521Z'},
 {'depth': 5.0,
  'depthError': 2.0,
  'dmin': 0.013999999999999999,
  'gap': 117.0,
  'horizontalError': 1.7,
  'id': 'us200064iw',
  'latitude': 36.7216,
  'locationSource': 'us',
  'longitude': -98.7153,
  'mag': 2.8,
  'magError': 0.069,
  'magNst': 54.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '10km SSW of Alva, Oklahoma',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-15T14:30:57.690Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:40:36.530Z'},
 {'depth': 138.3,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 5.0,
  'id': 'ak13657199',
  'latitude': 52.6735,
  'locationSource': 'ak',
  'longitude': -173.8888,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '57km NNE of Atka, Alaska',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-15T14:17:59.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:43.911Z'},
 {'depth': 36.196999999999996,
  'depthError': 0.85,
  'dmin': 0.01846,
  'gap': 91.0,
  'horizontalError': 0.63,
  'id': 'hv61298391',
  'latitude': 19.173,
  'locationSource': 'hv',
  'longitude': -155.4683333,
  'mag': 1.85,
  'magError': 0.10300000000000001,
  'magNst': 23.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 44.0,
  'place': '3km SSE of Pahala, Hawaii',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-15T14:12:43.480Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:06:58.420Z'},
 {'depth': 3.01,
  'depthError': 7.88,
  'dmin': 0.1516,
  'gap': 228.0,
  'horizontalError': 0.71,
  'id': 'uw61168336',
  'latitude': 48.4795,
  'locationSource': 'uw',
  'longitude': -121.73766670000002,
  'mag': 1.03,
  'magError': 0.13,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 5.0,
  'place': '10km W of Rockport, Washington',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-15T14:11:30.990Z',
  'type': 'earthquake',
  'updated': '2016-06-15T20:58:41.760Z'},
 {'depth': 25.1,
  'depthError': 1.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.3,
  'id': 'ak13657198',
  'latitude': 53.5327,
  'locationSource': 'ak',
  'longitude': -163.2017,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '147km S of False Pass, Alaska',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-15T14:10:00.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:06.262Z'},
 {'depth': 14.68,
  'depthError': 0.5,
  'dmin': 0.1121,
  'gap': 75.0,
  'horizontalError': 0.36,
  'id': 'ci37387847',
  'latitude': 33.4818333,
  'locationSource': 'ci',
  'longitude': -116.4318333,
  'mag': 1.04,
  'magError': 0.174,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 32.0,
  'place': '23km SSW of La Quinta, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-15T13:58:10.330Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:27:00.700Z'},
 {'depth': 3.1,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648992',
  'latitude': 63.2551,
  'locationSource': 'ak',
  'longitude': -151.1079,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '109km W of Cantwell, Alaska',
  'rms': 0.79,
  'status': 'reviewed',
  'time': '2016-06-15T13:53:18.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:58.133Z'},
 {'depth': 70.5,
  'depthError': 4.3,
  'dmin': 0.377,
  'gap': 54.0,
  'horizontalError': 7.9,
  'id': 'us200064ir',
  'latitude': 14.2249,
  'locationSource': 'us',
  'longitude': -91.4554,
  'mag': 5.7,
  'magError': 0.021,
  'magNst': 770.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '11km SW of Pueblo Nuevo Tiquisate, Guatemala',
  'rms': 1.15,
  'status': 'reviewed',
  'time': '2016-06-15T13:46:56.630Z',
  'type': 'earthquake',
  'updated': '2016-06-15T18:56:37.000Z'},
 {'depth': 1.76,
  'depthError': 1.26,
  'dmin': 0.1338,
  'gap': 83.0,
  'horizontalError': 0.17,
  'id': 'nc72651646',
  'latitude': 36.4458333,
  'locationSource': 'nc',
  'longitude': -121.01566670000001,
  'mag': 2.14,
  'magError': 0.223,
  'magNst': 27.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 32.0,
  'place': '24km NE of Greenfield, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-15T13:43:24.130Z',
  'type': 'earthquake',
  'updated': '2016-06-16T02:54:02.710Z'},
 {'depth': 222.45,
  'depthError': 7.2,
  'dmin': 7.5920000000000005,
  'gap': 48.0,
  'horizontalError': 8.8,
  'id': 'us200064ip',
  'latitude': -13.4285,
  'locationSource': 'us',
  'longitude': 167.1467,
  'mag': 5.2,
  'magError': 0.032,
  'magNst': 332.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '66km NW of Sola, Vanuatu',
  'rms': 0.53,
  'status': 'reviewed',
  'time': '2016-06-15T13:31:17.880Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:53:41.161Z'},
 {'depth': 25.3,
  'depthError': 1.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13648977',
  'latitude': 51.3736,
  'locationSource': 'ak',
  'longitude': -175.9768,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '73km SE of Adak, Alaska',
  'rms': 0.75,
  'status': 'reviewed',
  'time': '2016-06-15T13:06:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:12.379Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13648976',
  'latitude': 61.1552,
  'locationSource': 'ak',
  'longitude': -146.934,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '31km W of Valdez, Alaska',
  'rms': 0.38,
  'status': 'reviewed',
  'time': '2016-06-15T13:03:31.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:25.521Z'},
 {'depth': 44.5,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13657193',
  'latitude': 61.7396,
  'locationSource': 'ak',
  'longitude': -150.0096,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '1km ESE of Willow, Alaska',
  'rms': 0.42,
  'status': 'reviewed',
  'time': '2016-06-15T12:43:47.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:05.560Z'},
 {'depth': 7.94,
  'depthError': 0.3,
  'dmin': 0.03112,
  'gap': 128.0,
  'horizontalError': 0.55,
  'id': 'uw61168301',
  'latitude': 47.4558333,
  'locationSource': 'uw',
  'longitude': -121.79266670000001,
  'mag': 1.44,
  'magError': 0.042,
  'magNst': 2.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 11.0,
  'place': '3km WSW of Riverbend, Washington',
  'rms': 0.08,
  'status': 'reviewed',
  'time': '2016-06-15T12:38:09.570Z',
  'type': 'earthquake',
  'updated': '2016-06-15T20:41:02.670Z'},
 {'depth': 46.7,
  'depthError': 1.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.4,
  'id': 'ak13648974',
  'latitude': 53.2957,
  'locationSource': 'ak',
  'longitude': -166.6068,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '64km S of Unalaska, Alaska',
  'rms': 0.32,
  'status': 'reviewed',
  'time': '2016-06-15T12:31:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:37.592Z'},
 {'depth': 11.48,
  'depthError': 0.56,
  'dmin': 0.1211,
  'gap': 80.0,
  'horizontalError': 0.24,
  'id': 'ci37387791',
  'latitude': 33.4595,
  'locationSource': 'ci',
  'longitude': -116.44533329999999,
  'mag': 1.01,
  'magError': 0.155,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 40.0,
  'place': '24km NNW of Borrego Springs, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T12:31:45.560Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:51:30.290Z'},
 {'depth': -0.1,
  'depthError': 2.09,
  'dmin': 0.02279,
  'gap': 97.0,
  'horizontalError': 0.33,
  'id': 'nc72651636',
  'latitude': 38.83366779999999,
  'locationSource': 'nc',
  'longitude': -122.8069992,
  'mag': 1.17,
  'magError': 0.33,
  'magNst': 3.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 8.0,
  'place': '7km W of Cobb, California',
  'rms': 0.01,
  'status': 'automatic',
  'time': '2016-06-15T12:30:12.650Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:51:04.594Z'},
 {'depth': 6.9,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.1,
  'id': 'ak13648972',
  'latitude': 65.2477,
  'locationSource': 'ak',
  'longitude': -148.9315,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km NW of Ester, Alaska',
  'rms': 0.5,
  'status': 'reviewed',
  'time': '2016-06-15T12:19:59.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:49:02.791Z'},
 {'depth': 6.0,
  'depthError': 1.4,
  'dmin': 0.44197112,
  'gap': 273.6,
  'horizontalError': 1.3,
  'id': 'pr16167009',
  'latitude': 18.8518,
  'locationSource': 'pr',
  'longitude': -67.3466,
  'mag': 3.0,
  'magError': 0.0,
  'magNst': 7.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 11.0,
  'place': '47km NNW of San Antonio, Puerto Rico',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-15T12:15:52.500Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:14:48.825Z'},
 {'depth': 7.39,
  'depthError': 0.44,
  'dmin': 0.1073,
  'gap': 104.0,
  'horizontalError': 0.29,
  'id': 'nc72651631',
  'latitude': 36.3225,
  'locationSource': 'nc',
  'longitude': -120.65433329999999,
  'mag': 1.78,
  'magError': 0.191,
  'magNst': 19.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 35.0,
  'place': '33km NW of Coalinga, California',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-15T12:09:43.680Z',
  'type': 'earthquake',
  'updated': '2016-06-15T23:41:05.298Z'},
 {'depth': 14.0,
  'depthError': 1.5,
  'dmin': 0.19583273,
  'gap': 129.6,
  'horizontalError': 0.4,
  'id': 'pr16167008',
  'latitude': 18.3141,
  'locationSource': 'pr',
  'longitude': -67.2425,
  'mag': 2.5,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 7.0,
  'place': '0km SSE of Stella, Puerto Rico',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-15T12:06:59.100Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:13:26.575Z'},
 {'depth': 0.3,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13657190',
  'latitude': 55.9278,
  'locationSource': 'ak',
  'longitude': -157.8572,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '67km ESE of Chignik Lake, Alaska',
  'rms': 0.72,
  'status': 'reviewed',
  'time': '2016-06-15T12:06:08.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:48.463Z'},
 {'depth': 1.57,
  'depthError': 0.23,
  'dmin': 0.01087,
  'gap': 73.0,
  'horizontalError': 0.15,
  'id': 'nc72651626',
  'latitude': 38.7508333,
  'locationSource': 'nc',
  'longitude': -122.73083329999999,
  'mag': 1.71,
  'magError': 0.344,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 43.0,
  'place': '3km SE of The Geysers, California',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-15T11:59:12.210Z',
  'type': 'earthquake',
  'updated': '2016-06-16T00:33:08.586Z'},
 {'depth': 79.8,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13657189',
  'latitude': 61.8452,
  'locationSource': 'ak',
  'longitude': -151.4912,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '77km W of Willow, Alaska',
  'rms': 0.34,
  'status': 'reviewed',
  'time': '2016-06-15T11:43:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:28.244Z'},
 {'depth': 66.2,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648964',
  'latitude': 61.8941,
  'locationSource': 'ak',
  'longitude': -151.0179,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '54km WNW of Willow, Alaska',
  'rms': 0.48,
  'status': 'reviewed',
  'time': '2016-06-15T11:37:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:24.745Z'},
 {'depth': 120.3,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648958',
  'latitude': 63.8396,
  'locationSource': 'ak',
  'longitude': -149.0497,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '4km WSW of Healy, Alaska',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-15T11:13:54.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:57.113Z'},
 {'depth': 10.32,
  'depthError': 0.77,
  'dmin': 0.09668,
  'gap': 67.0,
  'horizontalError': 0.29,
  'id': 'ci37387751',
  'latitude': 33.2895,
  'locationSource': 'ci',
  'longitude': -116.26,
  'mag': 1.04,
  'magError': 0.152,
  'magNst': 29.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 36.0,
  'place': '11km ENE of Borrego Springs, CA',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-15T11:03:44.650Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:51:48.921Z'},
 {'depth': 13.63,
  'depthError': 1.77,
  'dmin': 0.1111,
  'gap': 52.0,
  'horizontalError': 0.46,
  'id': 'ci37369917',
  'latitude': 34.5176667,
  'locationSource': 'ci',
  'longitude': -118.8905,
  'mag': 1.44,
  'magError': 0.135,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 12.0,
  'place': '13km N of Fillmore, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-15T11:01:35.760Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:32:25.861Z'},
 {'depth': 13.84,
  'depthError': 1.1,
  'dmin': 0.1084,
  'gap': 52.0,
  'horizontalError': 0.37,
  'id': 'ci37387735',
  'latitude': 34.5155,
  'locationSource': 'ci',
  'longitude': -118.89383329999998,
  'mag': 1.22,
  'magError': 0.214,
  'magNst': 13.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '13km N of Fillmore, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-15T11:01:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:28:20.216Z'},
 {'depth': 12.14,
  'depthError': 1.9,
  'dmin': 0.098,
  'gap': 64.0,
  'horizontalError': 0.7,
  'id': 'nc72651606',
  'latitude': 39.7885,
  'locationSource': 'nc',
  'longitude': -122.8015,
  'mag': 1.4,
  'magError': 0.272,
  'magNst': 10.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 9.0,
  'place': '38km E of Covelo, California',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-15T11:00:47.380Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:27:04.306Z'},
 {'depth': 15.0,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13657185',
  'latitude': 60.0439,
  'locationSource': 'ak',
  'longitude': -148.4448,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '54km ESE of Bear Creek, Alaska',
  'rms': 0.39,
  'status': 'reviewed',
  'time': '2016-06-15T11:00:33.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:04.800Z'},
 {'depth': 8.45,
  'depthError': 0.34,
  'dmin': 0.06275,
  'gap': 57.0,
  'horizontalError': 0.13,
  'id': 'ci37387719',
  'latitude': 33.4658333,
  'locationSource': 'ci',
  'longitude': -116.456,
  'mag': 2.12,
  'magError': 0.16399999999999998,
  'magNst': 85.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 69.0,
  'place': '22km ESE of Anza, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-15T10:58:03.660Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:57:02.981Z'},
 {'depth': 19.01,
  'depthError': 0.26,
  'dmin': 0.04218,
  'gap': 162.0,
  'horizontalError': 0.49,
  'id': 'nc72651596',
  'latitude': 40.6291667,
  'locationSource': 'nc',
  'longitude': -124.2725,
  'mag': 1.9,
  'magError': 0.126,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 22.0,
  'place': '5km N of Ferndale, California',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-15T10:56:35.070Z',
  'type': 'earthquake',
  'updated': '2016-06-15T23:46:04.405Z'},
 {'depth': 8.68,
  'depthError': 0.44,
  'dmin': 0.01791,
  'gap': 51.0,
  'horizontalError': 0.22,
  'id': 'nc72651591',
  'latitude': 38.4283333,
  'locationSource': 'nc',
  'longitude': -122.68799999999999,
  'mag': 1.2,
  'magError': 0.175,
  'magNst': 16.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 20.0,
  'place': '2km ESE of Santa Rosa, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-15T10:44:55.330Z',
  'type': 'earthquake',
  'updated': '2016-06-16T00:07:06.483Z'},
 {'depth': 10.69,
  'depthError': 0.58,
  'dmin': 0.064,
  'gap': 182.0,
  'horizontalError': 0.48,
  'id': 'mb80155004',
  'latitude': 44.743333299999996,
  'locationSource': 'mb',
  'longitude': -111.75316670000001,
  'mag': 1.25,
  'magError': 0.095,
  'magNst': 5.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 13.0,
  'place': '52km W of West Yellowstone, Montana',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-15T10:38:11.840Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:56:36.640Z'},
 {'depth': 16.65,
  'depthError': 0.23,
  'dmin': 0.05004,
  'gap': 41.0,
  'horizontalError': 0.19,
  'id': 'nc72651586',
  'latitude': 37.976,
  'locationSource': 'nc',
  'longitude': -122.05866670000002,
  'mag': 2.46,
  'magError': 0.146,
  'magNst': 87.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 108.0,
  'place': '1km ESE of Pacheco, California',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-15T10:33:40.580Z',
  'type': 'earthquake',
  'updated': '2016-06-16T20:58:01.874Z'},
 {'depth': 5.0,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13648956',
  'latitude': 58.515,
  'locationSource': 'ak',
  'longitude': -154.4824,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '112km NNW of Larsen Bay, Alaska',
  'rms': 0.48,
  'status': 'reviewed',
  'time': '2016-06-15T10:30:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:23.849Z'},
 {'depth': 32.8,
  'depthError': 2.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 2.7,
  'id': 'ak13657183',
  'latitude': 51.0848,
  'locationSource': 'ak',
  'longitude': 179.6732,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '87km WSW of Amatignak Island, Alaska',
  'rms': 0.32,
  'status': 'reviewed',
  'time': '2016-06-15T10:25:57.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:19:37.695Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.1,
  'id': 'ak13648955',
  'latitude': 61.0498,
  'locationSource': 'ak',
  'longitude': -147.976,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '49km NE of Whittier, Alaska',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-15T10:17:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:35.957Z'},
 {'depth': 9.9,
  'depthError': 1.9,
  'dmin': 0.37799999999999995,
  'gap': 35.43,
  'horizontalError': 0.78,
  'id': 'nn00548135',
  'latitude': 38.7205,
  'locationSource': 'nn',
  'longitude': -117.8416,
  'mag': 3.7,
  'magError': 0.27,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 15.0,
  'place': '17km SSE of Gabbs, Nevada',
  'rms': 0.1239,
  'status': 'reviewed',
  'time': '2016-06-15T10:12:24.100Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:33.304Z'},
 {'depth': 1.36,
  'depthError': 0.18,
  'dmin': 0.01176,
  'gap': 73.0,
  'horizontalError': 0.11,
  'id': 'nc72651576',
  'latitude': 38.8086667,
  'locationSource': 'nc',
  'longitude': -122.81033329999998,
  'mag': 1.15,
  'magError': 0.19899999999999998,
  'magNst': 12.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 42.0,
  'place': '5km NW of The Geysers, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-15T09:59:27.760Z',
  'type': 'earthquake',
  'updated': '2016-06-15T23:13:05.220Z'},
 {'depth': 15.0,
  'depthError': 0.9,
  'dmin': 0.08623827,
  'gap': 201.6,
  'horizontalError': 2.3,
  'id': 'pr16167007',
  'latitude': 17.9775,
  'locationSource': 'pr',
  'longitude': -66.7882,
  'mag': 2.0,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 5.0,
  'place': '3km ESE of Indios, Puerto Rico',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-15T09:51:16.100Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:02:39.399Z'},
 {'depth': 49.0,
  'depthError': 8.5,
  'dmin': 0.6288206999999999,
  'gap': 244.8,
  'horizontalError': 3.3,
  'id': 'pr16167006',
  'latitude': 19.0592,
  'locationSource': 'pr',
  'longitude': -66.7895,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 11.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 12.0,
  'place': '63km N of Hatillo, Puerto Rico',
  'rms': 0.66,
  'status': 'reviewed',
  'time': '2016-06-15T09:49:39.900Z',
  'type': 'earthquake',
  'updated': '2016-06-15T12:51:26.858Z'},
 {'depth': 10.35,
  'depthError': 0.52,
  'dmin': 0.07642,
  'gap': 41.0,
  'horizontalError': 0.21,
  'id': 'ci37387671',
  'latitude': 33.2528333,
  'locationSource': 'ci',
  'longitude': -116.1975,
  'mag': 1.14,
  'magError': 0.161,
  'magNst': 32.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 47.0,
  'place': '14km NNW of Ocotillo Wells, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-15T09:45:59.170Z',
  'type': 'earthquake',
  'updated': '2016-06-15T15:52:23.789Z'},
 {'depth': 107.4,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13657180',
  'latitude': 63.0893,
  'locationSource': 'ak',
  'longitude': -150.4233,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '81km WSW of Cantwell, Alaska',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-15T09:33:29.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:26.818Z'},
 {'depth': 26.7,
  'depthError': 9.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 8.5,
  'id': 'ak13657179',
  'latitude': 68.6047,
  'locationSource': 'ak',
  'longitude': -145.6329,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '53km N of Arctic Village, Alaska',
  'rms': 0.56,
  'status': 'reviewed',
  'time': '2016-06-15T09:31:59.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:50.466Z'},
 {'depth': -1.94,
  'depthError': 1.88,
  'dmin': 0.242,
  'gap': 73.0,
  'horizontalError': 0.44,
  'id': 'mb80154999',
  'latitude': 44.5565,
  'locationSource': 'mb',
  'longitude': -114.27466670000001,
  'mag': 1.74,
  'magError': 0.243,
  'magNst': 7.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 11.0,
  'place': '6km NNW of Challis, Idaho',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-15T09:31:29.340Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:14:02.530Z'},
 {'depth': 12.0,
  'depthError': 7.1,
  'dmin': 0.39885199,
  'gap': 334.8,
  'horizontalError': 7.0,
  'id': 'pr16167005',
  'latitude': 18.3267,
  'locationSource': 'pr',
  'longitude': -64.2076,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 7.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 7.0,
  'place': '44km ESE of Road Town, British Virgin Islands',
  'rms': 0.43,
  'status': 'reviewed',
  'time': '2016-06-15T09:24:45.600Z',
  'type': 'earthquake',
  'updated': '2016-06-15T12:50:34.525Z'},
 {'depth': 4.5,
  'depthError': 5.3,
  'dmin': 0.614,
  'gap': 317.53,
  'horizontalError': 5.71,
  'id': 'nn00548216',
  'latitude': 38.2791,
  'locationSource': 'nn',
  'longitude': -119.2859,
  'mag': 1.0,
  'magError': 0.16,
  'magNst': 2.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 6.0,
  'place': '5km WNW of Bridgeport, California',
  'rms': 0.1231,
  'status': 'reviewed',
  'time': '2016-06-15T09:21:48.630Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:27:28.121Z'},
 {'depth': 8.0,
  'depthError': 0.96,
  'dmin': 0.0897,
  'gap': 67.0,
  'horizontalError': 0.38,
  'id': 'ci37387639',
  'latitude': 32.948666700000004,
  'locationSource': 'ci',
  'longitude': -115.5725,
  'mag': 1.56,
  'magError': 0.141,
  'magNst': 29.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '5km SW of Brawley, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-15T09:10:37.620Z',
  'type': 'earthquake',
  'updated': '2016-06-16T03:51:30.761Z'},
 {'depth': 26.9,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648707',
  'latitude': 61.4943,
  'locationSource': 'ak',
  'longitude': -147.9202,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '56km ESE of Lazy Mountain, Alaska',
  'rms': 0.44,
  'status': 'reviewed',
  'time': '2016-06-15T09:02:40.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:16:00.097Z'},
 {'depth': 112.14,
  'depthError': 6.4,
  'dmin': 1.798,
  'gap': 44.0,
  'horizontalError': 6.2,
  'id': 'us200064hz',
  'latitude': 36.0967,
  'locationSource': 'us',
  'longitude': 70.3014,
  'mag': 5.0,
  'magError': 0.069,
  'magNst': 68.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan',
  'rms': 1.17,
  'status': 'reviewed',
  'time': '2016-06-15T09:02:16.820Z',
  'type': 'earthquake',
  'updated': '2016-06-15T09:15:49.732Z'},
 {'depth': 11.11,
  'depthError': 0.56,
  'dmin': 0.06824,
  'gap': 77.0,
  'horizontalError': 0.24,
  'id': 'ci37387607',
  'latitude': 33.4635,
  'locationSource': 'ci',
  'longitude': -116.46516670000001,
  'mag': 1.13,
  'magError': 0.122,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 37.0,
  'place': '22km ESE of Anza, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T09:00:11.390Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:54:14.850Z'},
 {'depth': 18.87,
  'depthError': 1.1,
  'dmin': 0.2234,
  'gap': 113.0,
  'horizontalError': 0.37,
  'id': 'uw61168276',
  'latitude': 47.287,
  'locationSource': 'uw',
  'longitude': -122.28266670000001,
  'mag': 1.14,
  'magError': 0.113,
  'magNst': 10.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 16.0,
  'place': '0km N of Lakeland South, Washington',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-15T08:57:30.410Z',
  'type': 'earthquake',
  'updated': '2016-06-15T20:56:52.500Z'},
 {'depth': 35.5,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13657174',
  'latitude': 61.416000000000004,
  'locationSource': 'ak',
  'longitude': -149.835,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '13km SSE of Big Lake, Alaska',
  'rms': 0.56,
  'status': 'reviewed',
  'time': '2016-06-15T08:53:02.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:24.990Z'},
 {'depth': 14.06,
  'depthError': 0.55,
  'dmin': 0.0854,
  'gap': 57.0,
  'horizontalError': 0.25,
  'id': 'ci37387591',
  'latitude': 34.04,
  'locationSource': 'ci',
  'longitude': -117.26233329999998,
  'mag': 1.29,
  'magError': 0.218,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 51.0,
  'place': '1km S of Loma Linda, CA',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-15T08:10:54.130Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:53:55.270Z'},
 {'depth': 6.7,
  'depthError': 2.4,
  'dmin': 0.13,
  'gap': 97.55,
  'horizontalError': 1.28,
  'id': 'nn00548134',
  'latitude': 37.2375,
  'locationSource': 'nn',
  'longitude': -116.6091,
  'mag': 1.0,
  'magError': 0.2,
  'magNst': 9.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 21.0,
  'place': '38km NNE of Beatty, Nevada',
  'rms': 0.1183,
  'status': 'reviewed',
  'time': '2016-06-15T08:06:40.882Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:26.752Z'},
 {'depth': 1.47,
  'depthError': 2.86,
  'dmin': 0.2483,
  'gap': 164.0,
  'horizontalError': 0.93,
  'id': 'uw61168251',
  'latitude': 48.29600000000001,
  'locationSource': 'uw',
  'longitude': -120.8795,
  'mag': 1.05,
  'magError': 0.1,
  'magNst': 5.0,
  'magSource': 'uw',
  'magType': 'md',
  'net': 'uw',
  'nst': 6.0,
  'place': '48km SW of Mazama, Washington',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-15T08:05:08.050Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:01:35.840Z'},
 {'depth': 15.0,
  'depthError': 1.9,
  'dmin': 0.20391757,
  'gap': 226.8,
  'horizontalError': 1.4,
  'id': 'pr16167004',
  'latitude': 17.9925,
  'locationSource': 'pr',
  'longitude': -65.3666,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 6.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 6.0,
  'place': '15km SE of Esperanza, Puerto Rico',
  'rms': 0.21,
  'status': 'reviewed',
  'time': '2016-06-15T07:44:46.500Z',
  'type': 'earthquake',
  'updated': '2016-06-15T12:18:33.946Z'},
 {'depth': 49.0,
  'depthError': 4.8,
  'dmin': 0.54527738,
  'gap': 284.4,
  'horizontalError': 3.2,
  'id': 'pr16167003',
  'latitude': 18.8854,
  'locationSource': 'pr',
  'longitude': -65.09100000000001,
  'mag': 2.5,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '62km NNW of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-15T07:42:21.200Z',
  'type': 'earthquake',
  'updated': '2016-06-15T12:11:20.681Z'},
 {'depth': 12.99,
  'depthError': 0.61,
  'dmin': 0.0731,
  'gap': 67.0,
  'horizontalError': 0.24,
  'id': 'ci37387567',
  'latitude': 32.9656667,
  'locationSource': 'ci',
  'longitude': -115.56983329999998,
  'mag': 3.02,
  'magError': 0.149,
  'magNst': 106.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 32.0,
  'place': '4km WSW of Brawley, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-15T07:41:03.050Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:23:09.719Z'},
 {'depth': 54.0,
  'depthError': 3.2,
  'dmin': 0.50485319,
  'gap': 298.8,
  'horizontalError': 2.7,
  'id': 'pr16167002',
  'latitude': 18.8479,
  'locationSource': 'pr',
  'longitude': -65.0696,
  'mag': 2.3,
  'magError': 0.0,
  'magNst': 4.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '57km NNW of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-15T07:38:12.800Z',
  'type': 'earthquake',
  'updated': '2016-06-15T12:01:26.486Z'},
 {'depth': 63.5,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13648701',
  'latitude': 61.4298,
  'locationSource': 'ak',
  'longitude': -150.7929,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '45km WSW of Big Lake, Alaska',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-15T07:29:20.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:23.590Z'},
 {'depth': 39.0,
  'depthError': 16.7,
  'dmin': 0.77524609,
  'gap': 324.0,
  'horizontalError': 6.8,
  'id': 'pr16167001',
  'latitude': 19.0641,
  'locationSource': 'pr',
  'longitude': -64.4927,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 4.0,
  'place': '72km N of Road Town, British Virgin Islands',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-15T07:14:54.200Z',
  'type': 'earthquake',
  'updated': '2016-06-15T11:51:20.292Z'},
 {'depth': 8.21,
  'depthError': 5.2,
  'dmin': 8.847999999999999,
  'gap': 108.0,
  'horizontalError': 10.5,
  'id': 'us200064hq',
  'latitude': -62.398999999999994,
  'locationSource': 'us',
  'longitude': 166.5035,
  'mag': 5.6,
  'magError': 0.098,
  'magNst': 10.0,
  'magSource': 'us',
  'magType': 'mwb',
  'net': 'us',
  'nst': nan,
  'place': 'Balleny Islands region',
  'rms': 1.19,
  'status': 'reviewed',
  'time': '2016-06-15T06:58:26.840Z',
  'type': 'earthquake',
  'updated': '2016-06-18T16:48:13.000Z'},
 {'depth': 102.0,
  'depthError': 2.5,
  'dmin': 0.96838388,
  'gap': 262.8,
  'horizontalError': 2.0,
  'id': 'pr16167000',
  'latitude': 19.2234,
  'locationSource': 'pr',
  'longitude': -65.6297,
  'mag': 2.8,
  'magError': 0.0,
  'magNst': 9.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 10.0,
  'place': '90km NNE of Vieques, Puerto Rico',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-15T06:23:38.300Z',
  'type': 'earthquake',
  'updated': '2016-06-15T07:16:15.241Z'},
 {'depth': 7.8,
  'depthError': 3.7,
  'dmin': 0.146,
  'gap': 78.14,
  'horizontalError': 3.55,
  'id': 'nn00548131',
  'latitude': 41.9034,
  'locationSource': 'nn',
  'longitude': -119.6092,
  'mag': 1.7,
  'magError': 0.26,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '68km ESE of Lakeview, Oregon',
  'rms': 0.1692,
  'status': 'reviewed',
  'time': '2016-06-15T06:20:49.834Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:14.958Z'},
 {'depth': 98.8,
  'depthError': 1.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.3,
  'id': 'ak13657169',
  'latitude': 59.7575,
  'locationSource': 'ak',
  'longitude': -152.816,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '55km W of Anchor Point, Alaska',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-15T06:19:41.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:24.268Z'},
 {'depth': 13.08,
  'depthError': 0.31,
  'dmin': 0.020980000000000002,
  'gap': 51.0,
  'horizontalError': 0.21,
  'id': 'ci37387511',
  'latitude': 33.5825,
  'locationSource': 'ci',
  'longitude': -116.72266670000002,
  'mag': 1.13,
  'magError': 0.19899999999999998,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 38.0,
  'place': '6km NW of Anza, CA',
  'rms': 0.14,
  'status': 'reviewed',
  'time': '2016-06-15T06:18:14.210Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:56:43.750Z'},
 {'depth': 45.8,
  'depthError': 2.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13657168',
  'latitude': 60.1607,
  'locationSource': 'ak',
  'longitude': -151.44,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '24km SSW of Cohoe, Alaska',
  'rms': 0.53,
  'status': 'reviewed',
  'time': '2016-06-15T06:16:27.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:04.035Z'},
 {'depth': 3.04,
  'depthError': 4.23,
  'dmin': 0.1724,
  'gap': 149.0,
  'horizontalError': 0.73,
  'id': 'nc72651696',
  'latitude': 40.1885,
  'locationSource': 'nc',
  'longitude': -121.00833329999999,
  'mag': 1.31,
  'magError': 0.03,
  'magNst': 4.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '7km NW of Greenville, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-15T05:55:15.230Z',
  'type': 'earthquake',
  'updated': '2016-06-15T19:50:03.663Z'},
 {'depth': 13.14,
  'depthError': 0.67,
  'dmin': 0.201,
  'gap': 44.0,
  'horizontalError': 0.19,
  'id': 'ci37387503',
  'latitude': 33.992,
  'locationSource': 'ci',
  'longitude': -116.6835,
  'mag': 1.44,
  'magError': 0.128,
  'magNst': 30.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 47.0,
  'place': '11km WSW of Morongo Valley, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-15T05:54:55.330Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:56:51.150Z'},
 {'depth': 16.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648693',
  'latitude': 59.9809,
  'locationSource': 'ak',
  'longitude': -149.0366,
  'mag': 2.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '26km ESE of Seward, Alaska',
  'rms': 0.51,
  'status': 'reviewed',
  'time': '2016-06-15T05:43:08.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:59.204Z'},
 {'depth': 18.2,
  'depthError': 0.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13657164',
  'latitude': 60.4974,
  'locationSource': 'ak',
  'longitude': -147.7802,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '58km ESE of Whittier, Alaska',
  'rms': 0.55,
  'status': 'reviewed',
  'time': '2016-06-15T05:28:42.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:21.927Z'},
 {'depth': 7.97,
  'depthError': 1.03,
  'dmin': 0.1212,
  'gap': 157.0,
  'horizontalError': 0.92,
  'id': 'uu60150907',
  'latitude': 37.3373333,
  'locationSource': 'uu',
  'longitude': -112.23816670000001,
  'mag': 1.68,
  'magError': 0.11599999999999999,
  'magNst': 2.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 10.0,
  'place': '41km NE of Kanab, Utah',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-15T05:21:28.880Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:40:21.410Z'},
 {'depth': 6.9,
  'depthError': 1.1,
  'dmin': 0.040999999999999995,
  'gap': 83.52,
  'horizontalError': 1.65,
  'id': 'nn00548127',
  'latitude': 39.0879,
  'locationSource': 'nn',
  'longitude': -118.0858,
  'mag': 1.6,
  'magError': 0.08,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 11.0,
  'place': '28km NNW of Gabbs, Nevada',
  'rms': 0.1164,
  'status': 'reviewed',
  'time': '2016-06-15T04:49:55.935Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:26:08.992Z'},
 {'depth': 41.8,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648692',
  'latitude': 62.2342,
  'locationSource': 'ak',
  'longitude': -147.9973,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '66km NE of Sutton-Alpine, Alaska',
  'rms': 0.48,
  'status': 'reviewed',
  'time': '2016-06-15T04:49:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:16:02.604Z'},
 {'depth': 14.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.1,
  'id': 'ak13648688',
  'latitude': 61.4571,
  'locationSource': 'ak',
  'longitude': -147.1711,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '57km NW of Valdez, Alaska',
  'rms': 0.53,
  'status': 'reviewed',
  'time': '2016-06-15T04:47:26.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:16:01.222Z'},
 {'depth': 21.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13657161',
  'latitude': 61.3939,
  'locationSource': 'ak',
  'longitude': -146.5137,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '30km NNW of Valdez, Alaska',
  'rms': 0.44,
  'status': 'reviewed',
  'time': '2016-06-15T04:26:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:20.942Z'},
 {'depth': 51.4,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13657160',
  'latitude': 61.4184,
  'locationSource': 'ak',
  'longitude': -150.268,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '20km SW of Big Lake, Alaska',
  'rms': 0.36,
  'status': 'reviewed',
  'time': '2016-06-15T04:26:04.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:19.948Z'},
 {'depth': 123.2,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648685',
  'latitude': 61.162,
  'locationSource': 'ak',
  'longitude': -152.2801,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '75km NW of Nikiski, Alaska',
  'rms': 0.49,
  'status': 'reviewed',
  'time': '2016-06-15T04:15:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:16:04.835Z'},
 {'depth': 1.78,
  'depthError': 0.19,
  'dmin': 0.041139999999999996,
  'gap': 126.0,
  'horizontalError': 0.53,
  'id': 'uu60150902',
  'latitude': 44.8083333,
  'locationSource': 'uu',
  'longitude': -110.8,
  'mag': 1.6,
  'magError': 0.32799999999999996,
  'magNst': 5.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 14.0,
  'place': '29km NE of West Yellowstone, Montana',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-15T04:15:11.910Z',
  'type': 'earthquake',
  'updated': '2016-06-15T17:38:16.650Z'},
 {'depth': 11.22,
  'depthError': 0.62,
  'dmin': 0.05744,
  'gap': 106.0,
  'horizontalError': 0.3,
  'id': 'ci37387391',
  'latitude': 33.4691667,
  'locationSource': 'ci',
  'longitude': -116.44883329999999,
  'mag': 1.03,
  'magError': 0.243,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '23km ESE of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-15T04:13:10.050Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:56:58.650Z'},
 {'depth': -1.81,
  'depthError': 0.8,
  'dmin': 0.0228,
  'gap': 96.0,
  'horizontalError': 0.59,
  'id': 'uw61168591',
  'latitude': 44.0723333,
  'locationSource': 'uw',
  'longitude': -121.79116670000002,
  'mag': 1.12,
  'magError': 0.43,
  'magNst': 7.0,
  'magSource': 'uw',
  'magType': 'md',
  'net': 'uw',
  'nst': 10.0,
  'place': '31km SW of Sisters, Oregon',
  'rms': 0.35,
  'status': 'reviewed',
  'time': '2016-06-15T03:57:07.550Z',
  'type': 'earthquake',
  'updated': '2016-06-15T19:52:03.010Z'},
 {'depth': 3.8,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648684',
  'latitude': 61.2927,
  'locationSource': 'ak',
  'longitude': -152.4127,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '90km NW of Nikiski, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-15T03:46:07.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:11.186Z'},
 {'depth': 12.95,
  'depthError': 0.85,
  'dmin': 0.07019,
  'gap': 70.0,
  'horizontalError': 0.43,
  'id': 'ci37387383',
  'latitude': 32.9688333,
  'locationSource': 'ci',
  'longitude': -115.5681667,
  'mag': 1.59,
  'magError': 0.11,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 18.0,
  'place': '4km WSW of Brawley, CA',
  'rms': 0.25,
  'status': 'reviewed',
  'time': '2016-06-15T03:43:28.740Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:51:11.882Z'},
 {'depth': 5.0,
  'depthError': 2.0,
  'dmin': 0.34600000000000003,
  'gap': 53.0,
  'horizontalError': 1.5,
  'id': 'us200064h4',
  'latitude': 36.2226,
  'locationSource': 'us',
  'longitude': -97.3051,
  'mag': 2.9,
  'magError': 0.066,
  'magNst': 60.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '7km SSW of Perry, Oklahoma',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-15T03:26:02.330Z',
  'type': 'earthquake',
  'updated': '2016-06-15T03:31:35.921Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13648683',
  'latitude': 60.1677,
  'locationSource': 'ak',
  'longitude': -141.2802,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '64km E of Cape Yakataga, Alaska',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-15T03:25:10.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:16:10.685Z'},
 {'depth': 104.4,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.8,
  'id': 'ak13657156',
  'latitude': 59.8155,
  'locationSource': 'ak',
  'longitude': -152.9046,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km W of Anchor Point, Alaska',
  'rms': 0.38,
  'status': 'reviewed',
  'time': '2016-06-15T03:15:33.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:19.033Z'},
 {'depth': 10.92,
  'depthError': 2.1,
  'dmin': 2.072,
  'gap': 47.0,
  'horizontalError': 6.6,
  'id': 'us200064h0',
  'latitude': 5.6926,
  'locationSource': 'us',
  'longitude': -77.5599,
  'mag': 4.6,
  'magError': 0.075,
  'magNst': 52.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '32km W of Nuqui, Colombia',
  'rms': 1.05,
  'status': 'reviewed',
  'time': '2016-06-15T02:54:36.650Z',
  'type': 'earthquake',
  'updated': '2016-06-15T03:18:44.553Z'},
 {'depth': 7.66,
  'depthError': 0.78,
  'dmin': 0.03915,
  'gap': 48.0,
  'horizontalError': 0.22,
  'id': 'ci37387351',
  'latitude': 33.2508333,
  'locationSource': 'ci',
  'longitude': -116.802,
  'mag': 1.21,
  'magError': 0.127,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 45.0,
  'place': '4km WNW of Lake Henshaw, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-15T02:52:13.440Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:58:07.470Z'},
 {'depth': 60.1,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13657154',
  'latitude': 60.6898,
  'locationSource': 'ak',
  'longitude': -151.4535,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '8km W of Nikiski, Alaska',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-15T02:40:11.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:01.989Z'},
 {'depth': 71.8,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13648444',
  'latitude': 62.214,
  'locationSource': 'ak',
  'longitude': -151.0641,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '51km WSW of Talkeetna, Alaska',
  'rms': 0.4,
  'status': 'reviewed',
  'time': '2016-06-15T02:36:55.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:31.510Z'},
 {'depth': 3.01,
  'depthError': 0.86,
  'dmin': 0.025660000000000002,
  'gap': 116.0,
  'horizontalError': 0.57,
  'id': 'hv61298036',
  'latitude': 19.428167300000002,
  'locationSource': 'hv',
  'longitude': -155.6321716,
  'mag': 1.98,
  'magError': 0.24,
  'magNst': 10.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 16.0,
  'place': '24km E of Honaunau-Napoopoo, Hawaii',
  'rms': 0.35,
  'status': 'automatic',
  'time': '2016-06-15T02:33:33.630Z',
  'type': 'earthquake',
  'updated': '2016-06-15T02:36:37.840Z'},
 {'depth': 56.8,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648442',
  'latitude': 61.6335,
  'locationSource': 'ak',
  'longitude': -149.9029,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '4km W of Houston, Alaska',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-15T02:11:40.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:12.789Z'},
 {'depth': 30.19,
  'depthError': 4.4,
  'dmin': 6.523,
  'gap': 101.0,
  'horizontalError': 9.3,
  'id': 'us200064gy',
  'latitude': -11.4164,
  'locationSource': 'us',
  'longitude': 116.2376,
  'mag': 4.7,
  'magError': 0.086,
  'magNst': 41.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '279km S of Kute, Indonesia',
  'rms': 1.38,
  'status': 'reviewed',
  'time': '2016-06-15T02:10:54.600Z',
  'type': 'earthquake',
  'updated': '2016-06-15T03:02:06.293Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': 0.24600000000000002,
  'gap': 177.28,
  'horizontalError': 10.31,
  'id': 'nn00548211',
  'latitude': 37.2695,
  'locationSource': 'nn',
  'longitude': -115.3085,
  'mag': 1.0,
  'magError': 0.26,
  'magNst': 3.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '16km SW of Alamo, Nevada',
  'rms': 0.1263,
  'status': 'reviewed',
  'time': '2016-06-15T02:04:37.173Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:27:04.075Z'},
 {'depth': 78.6,
  'depthError': 0.7,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13657151',
  'latitude': 60.2977,
  'locationSource': 'ak',
  'longitude': -152.1438,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '39km ESE of Redoubt Volcano, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-15T01:43:41.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:18.174Z'},
 {'depth': 5.45,
  'depthError': 0.48,
  'dmin': 0.08881,
  'gap': 51.0,
  'horizontalError': 0.16,
  'id': 'nc72651521',
  'latitude': 37.2528333,
  'locationSource': 'nc',
  'longitude': -121.63583329999999,
  'mag': 1.31,
  'magError': 0.12,
  'magNst': 21.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 23.0,
  'place': '13km N of Morgan Hill, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-15T01:21:08.900Z',
  'type': 'earthquake',
  'updated': '2016-06-15T23:40:03.298Z'},
 {'depth': 95.2,
  'depthError': 1.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13657150',
  'latitude': 62.9857,
  'locationSource': 'ak',
  'longitude': -150.6442,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '78km NNW of Talkeetna, Alaska',
  'rms': 0.38,
  'status': 'reviewed',
  'time': '2016-06-15T01:14:19.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:17.449Z'},
 {'depth': 9.89,
  'depthError': 0.65,
  'dmin': 0.07858,
  'gap': 105.0,
  'horizontalError': 0.31,
  'id': 'nc72651516',
  'latitude': 40.7446667,
  'locationSource': 'nc',
  'longitude': -121.5045,
  'mag': 1.96,
  'magError': 0.098,
  'magNst': 17.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '20km SE of Burney, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-15T01:00:15.530Z',
  'type': 'earthquake',
  'updated': '2016-06-15T16:35:03.044Z'},
 {'depth': 26.98,
  'depthError': 31.61,
  'dmin': 0.1014,
  'gap': 317.0,
  'horizontalError': 2.02,
  'id': 'nc72651511',
  'latitude': 40.634,
  'locationSource': 'nc',
  'longitude': -121.529,
  'mag': 1.1,
  'magError': 0.14800000000000002,
  'magNst': 6.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 7.0,
  'place': '29km SSE of Burney, California',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-15T00:57:23.480Z',
  'type': 'earthquake',
  'updated': '2016-06-15T16:09:27.974Z'},
 {'depth': 87.7,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648206',
  'latitude': 62.3148,
  'locationSource': 'ak',
  'longitude': -151.3714,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '65km W of Talkeetna, Alaska',
  'rms': 0.4,
  'status': 'reviewed',
  'time': '2016-06-15T00:56:07.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:12.087Z'},
 {'depth': 4.2,
  'depthError': 3.5,
  'dmin': 0.045,
  'gap': 33.0,
  'horizontalError': 1.2,
  'id': 'us200064gr',
  'latitude': 37.0757,
  'locationSource': 'us',
  'longitude': -97.7246,
  'mag': 2.7,
  'magError': 0.068,
  'magNst': 56.0,
  'magSource': 'us',
  'magType': 'mb_lg',
  'net': 'us',
  'nst': nan,
  'place': '11km WNW of Caldwell, Kansas',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-15T00:55:36.510Z',
  'type': 'earthquake',
  'updated': '2016-06-15T20:04:51.200Z'},
 {'depth': 2.6,
  'depthError': 0.22,
  'dmin': 0.007219,
  'gap': 30.0,
  'horizontalError': 0.14,
  'id': 'nc72651506',
  'latitude': 38.7663333,
  'locationSource': 'nc',
  'longitude': -122.73183329999999,
  'mag': 1.95,
  'magError': 0.23199999999999998,
  'magNst': 29.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 64.0,
  'place': '2km ESE of The Geysers, California',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-15T00:55:23.040Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:35:03.933Z'},
 {'depth': 103.1,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.1,
  'id': 'ak13657148',
  'latitude': 59.5672,
  'locationSource': 'ak',
  'longitude': -153.0807,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '74km WSW of Anchor Point, Alaska',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-15T00:54:12.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:16.832Z'},
 {'depth': 77.3,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13648204',
  'latitude': 62.7829,
  'locationSource': 'ak',
  'longitude': -149.7651,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '54km NNE of Talkeetna, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-15T00:35:00.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:14.191Z'},
 {'depth': 1.3,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.1,
  'id': 'ak13648201',
  'latitude': 61.2873,
  'locationSource': 'ak',
  'longitude': -152.4551,
  'mag': 1.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '90km N of Redoubt Volcano, Alaska',
  'rms': 0.58,
  'status': 'reviewed',
  'time': '2016-06-15T00:30:37.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:13.544Z'},
 {'depth': 2.9,
  'depthError': 0.29,
  'dmin': 0.056760000000000005,
  'gap': 56.0,
  'horizontalError': 0.18,
  'id': 'ci37387303',
  'latitude': 35.8971667,
  'locationSource': 'ci',
  'longitude': -117.682,
  'mag': 1.05,
  'magError': 0.111,
  'magNst': 9.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 17.0,
  'place': '21km ESE of Little Lake, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-15T00:25:16.320Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:33:04.368Z'},
 {'depth': 10.0,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13648200',
  'latitude': 61.2913,
  'locationSource': 'ak',
  'longitude': -147.46200000000002,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km WNW of Valdez, Alaska',
  'rms': 0.49,
  'status': 'reviewed',
  'time': '2016-06-15T00:19:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:15.812Z'},
 {'depth': 7.45,
  'depthError': 0.5,
  'dmin': 0.033,
  'gap': 67.0,
  'horizontalError': 0.37,
  'id': 'mb80154909',
  'latitude': 44.350666700000005,
  'locationSource': 'mb',
  'longitude': -114.044,
  'mag': 1.4,
  'magError': 0.165,
  'magNst': 5.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 7.0,
  'place': '22km SE of Challis, Idaho',
  'rms': 0.04,
  'status': 'reviewed',
  'time': '2016-06-15T00:18:55.530Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:53:17.040Z'},
 {'depth': 51.9,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648195',
  'latitude': 62.7079,
  'locationSource': 'ak',
  'longitude': -148.4498,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '80km SSE of Cantwell, Alaska',
  'rms': 0.86,
  'status': 'reviewed',
  'time': '2016-06-15T00:16:33.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:15:14.991Z'},
 {'depth': -1.04,
  'depthError': 31.61,
  'dmin': 0.2151,
  'gap': 111.0,
  'horizontalError': 0.41,
  'id': 'uw61168171',
  'latitude': 47.4691667,
  'locationSource': 'uw',
  'longitude': -120.64833329999999,
  'mag': 1.35,
  'magError': 0.132,
  'magNst': 7.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 9.0,
  'place': '14km WSW of Cashmere, Washington',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-15T00:04:36.480Z',
  'type': 'explosion',
  'updated': '2016-06-15T21:03:44.620Z'},
 {'depth': 42.5,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13657143',
  'latitude': 61.0526,
  'locationSource': 'ak',
  'longitude': -149.9776,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '18km SSW of Anchorage, Alaska',
  'rms': 0.39,
  'status': 'reviewed',
  'time': '2016-06-15T00:02:49.000Z',
  'type': 'earthquake',
  'updated': '2016-06-18T02:17:15.959Z'},
 {'depth': 96.8,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 5.0,
  'id': 'ak13653756',
  'latitude': 54.6616,
  'locationSource': 'ak',
  'longitude': -163.3488,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '21km SSE of False Pass, Alaska',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-14T23:57:34.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:32.370Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13648192',
  'latitude': 64.9736,
  'locationSource': 'ak',
  'longitude': -147.3393,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '21km NNE of Badger, Alaska',
  'rms': 0.57,
  'status': 'reviewed',
  'time': '2016-06-14T23:57:28.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:36:28.423Z'},
 {'depth': -1.04,
  'depthError': 31.61,
  'dmin': 0.2532,
  'gap': 225.0,
  'horizontalError': 2.38,
  'id': 'uw61168156',
  'latitude': 45.6798333,
  'locationSource': 'uw',
  'longitude': -122.39683329999998,
  'mag': 1.1,
  'magError': 0.298,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 7.0,
  'place': '4km N of Fern Prairie, Washington',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-14T23:50:24.740Z',
  'type': 'explosion',
  'updated': '2016-06-15T21:12:44.740Z'},
 {'depth': 17.3,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13648191',
  'latitude': 61.0945,
  'locationSource': 'ak',
  'longitude': -149.8214,
  'mag': 1.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '14km SSE of Anchorage, Alaska',
  'rms': 0.55,
  'status': 'reviewed',
  'time': '2016-06-14T23:44:51.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:21.153Z'},
 {'depth': 14.28,
  'depthError': 0.35,
  'dmin': 0.07882,
  'gap': 30.0,
  'horizontalError': 0.14,
  'id': 'ci37387215',
  'latitude': 33.8811667,
  'locationSource': 'ci',
  'longitude': -116.87299999999999,
  'mag': 1.17,
  'magError': 0.156,
  'magNst': 36.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 49.0,
  'place': '5km S of Banning, CA',
  'rms': 0.13,
  'status': 'reviewed',
  'time': '2016-06-14T23:36:12.020Z',
  'type': 'earthquake',
  'updated': '2016-06-16T15:06:30.731Z'},
 {'depth': 12.84,
  'depthError': 0.21,
  'dmin': 0.00845,
  'gap': 19.0,
  'horizontalError': 0.11,
  'id': 'ci37387207',
  'latitude': 33.5735,
  'locationSource': 'ci',
  'longitude': -116.73433329999999,
  'mag': 2.69,
  'magError': 0.155,
  'magNst': 175.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 119.0,
  'place': '6km WNW of Anza, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-14T23:34:19.260Z',
  'type': 'earthquake',
  'updated': '2016-06-15T00:10:10.710Z'},
 {'depth': 12.77,
  'depthError': 0.24,
  'dmin': 0.017490000000000002,
  'gap': 52.0,
  'horizontalError': 0.16,
  'id': 'ci37387199',
  'latitude': 33.5806667,
  'locationSource': 'ci',
  'longitude': -116.727,
  'mag': 1.41,
  'magError': 0.184,
  'magNst': 24.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 41.0,
  'place': '6km WNW of Anza, CA',
  'rms': 0.12,
  'status': 'reviewed',
  'time': '2016-06-14T23:34:07.680Z',
  'type': 'earthquake',
  'updated': '2016-06-16T17:50:36.260Z'},
 {'depth': 12.01,
  'depthError': 0.47,
  'dmin': 0.0273,
  'gap': 53.0,
  'horizontalError': 0.31,
  'id': 'ci37387191',
  'latitude': 33.5896667,
  'locationSource': 'ci',
  'longitude': -116.72216670000002,
  'mag': 1.01,
  'magError': 0.162,
  'magNst': 24.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '6km NW of Anza, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-14T23:33:36.220Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:58:04.824Z'},
 {'depth': 12.91,
  'depthError': 0.24,
  'dmin': 0.01285,
  'gap': 23.0,
  'horizontalError': 0.13,
  'id': 'ci37387183',
  'latitude': 33.5775,
  'locationSource': 'ci',
  'longitude': -116.73200000000001,
  'mag': 1.99,
  'magError': 0.185,
  'magNst': 82.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 74.0,
  'place': '6km WNW of Anza, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-14T23:32:26.960Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:44:58.086Z'},
 {'depth': 113.1,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13647850',
  'latitude': 63.0782,
  'locationSource': 'ak',
  'longitude': -150.8319,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '91km NNW of Talkeetna, Alaska',
  'rms': 0.39,
  'status': 'reviewed',
  'time': '2016-06-14T23:29:12.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:36:26.412Z'},
 ...]

In [172]:
earthquake = earthquakes[0]

PART 1

variable for depth


In [173]:
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[173]:
'intermediate'

variable for magnitude


In [192]:
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[192]:
'minor'

variable for day in words


In [193]:
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[193]:
'Tuesday'

variable for time in words


In [194]:
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[194]:
'afternoon'

In [195]:
python_time = dateutil.parser.parse('2016-06-14T23:57:34.000Z')

In [196]:
python_time.hour


Out[196]:
23

variable for date in words


In [197]:
#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[197]:
'Jun 21'

PART 2

eq_to_sentence function


In [198]:
def eq_to_sentence(earth_dict):
    depth = depth_to_words(earth_dict)
    mag = magnitude_to_words(earth_dict)
    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 + " " + "earthquake was reported" + " " +day + " " + daytime + " " + "on" + " " + date + " " +place)

print(eq_to_sentence(earthquake))


A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 58km ENE of Chignik Lake, Alaska

PART 3

Doing it in bulk


In [199]:
for item in earthquakes:
    if item['mag'] >= 4.0:
        print(eq_to_sentence(item))


A deep moderate earthquake was reported Tuesday afternoon on Jun 21 67km WNW of Namatanai, Papua New Guinea
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 177km WSW of Sibolga, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 67km SSE of Muara Siberut, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 27km W of Pacocha, Peru
A deep light earthquake was reported Tuesday afternoon on Jun 21 13km S of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km E of Kimbe, Papua New Guinea
A deep light earthquake was reported Tuesday afternoon on Jun 21 188km WSW of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 211km NNW of Saumlaki, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km NNE of Port-Vila, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 238km SE of Lambasa, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 77km W of Constitucion, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 21km S of Hukumati Dahanah-ye Ghori, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km S of Molibagu, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 130km NE of San Pedro de Atacama, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km W of San Antonio de los Cobres, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km ENE of Nanae, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 18km NE of Norsup, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km NE of Tadine, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 233km NE of Fais, Micronesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 48km WNW of San Antonio de los Cobres, Argentina
A deep light earthquake was reported Tuesday afternoon on Jun 21 190km WSW of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 21km NE of Yilan, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Off the west coast of northern Sumatra
A shallow light earthquake was reported Tuesday afternoon on Jun 21 77km WSW of Coquimbo, Chile
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 83km SSW of Nikolski, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 196km N of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 59km NE of Taitung City, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 164km ENE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Ascension Island region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Ascension Island region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 54km WSW of Sabtang, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km SW of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 110km WNW of Tobelo, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 150km ESE of Iquique, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 25km ENE of Linares, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km NE of Zonda, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 117km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 92km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 117km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km SSW of Isangel, Vanuatu
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 84km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 74km SW of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 61km SSW of Juli, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km ESE of Bitung, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 136km NE of Aksu, China
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 264km WNW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Ascension Island region
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 91km ENE of Norsup, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 124km WNW of Bengkulu, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 Izu Islands, Japan region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 204km WSW of Puerto Natales, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 221km NNW of Saumlaki, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 78km W of San Antonio de los Cobres, Argentina
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 35km NE of Jarm, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 27km NW of Ayaviri, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km W of Uto, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 115km W of San Antonio de los Cobres, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 213km S of Punta de Burica, Panama
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km ENE of Lata, Solomon Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 105km SSW of Kota Ternate, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 138km NW of Kota Ternate, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 143km S of False Pass, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km ENE of Oarai, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern East Pacific Rise
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km ENE of Keelung, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km SSE of Lata, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km NNE of Tadine, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 202km E of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 94km NNE of Palue, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 44km E of Kerman, Iran
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 Kepulauan Barat Daya, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 64km W of Ovalle, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 22km WSW of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km SSW of Calama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 153km W of Longyearbyen, Svalbard and Jan Mayen
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km E of Naze, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 19km WNW of Atuncolla, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 121km NE of Tadine, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 129km SSW of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 274km NNW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 22km ENE of Nanae, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 14km WSW of Ovalle, Chile
A deep light earthquake was reported Tuesday afternoon on Jun 21 24km SE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 171km S of False Pass, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km SSE of Lorengau, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 36km ESE of Pucallpa, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 2km WNW of La Esperanza, Panama
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 11km SW of Pueblo Nuevo Tiquisate, Guatemala
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 66km NW of Sola, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Balleny Islands region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 32km W of Nuqui, Colombia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 279km S of Kute, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 149km N of Calama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 194km ESE of Enarotali, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km W of Harian, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 39km SW of Adak, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 171km SSE of Naze, Japan
A intermediate moderate earthquake was reported Tuesday afternoon on Jun 21 98km NNW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km ENE of Chepen, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km NNE of Chignik Lake, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 9km S of San Vicente Pacaya, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 69km SW of Ocos, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 65km SW of Ocos, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 21km SSW of Somotillo, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 5km NNW of Taron, Papua New Guinea
A deep light earthquake was reported Tuesday afternoon on Jun 21 134km NNW of Labuhankananga, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 133km ESE of Kirakira, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of Panama
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 291km N of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Western Indian-Antarctic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 181km ESE of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 63km SE of Caburan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 31km S of Puerto El Triunfo, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 52km W of West Yellowstone, Montana
A shallow light earthquake was reported Tuesday afternoon on Jun 21 176km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 82km SSW of Corinto, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 17km W of Auki, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 178km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 163km SSE of Naze, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 30km S of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 148km S of Puerto El Triunfo, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 32km NNE of Tumbagaan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern East Pacific Rise
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km NNE of Ambunti, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 240km WNW of Bandon, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km E of Shikotan, Russia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 49km E of , Azerbaijan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km SSW of Yatsushiro, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 East of the Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 56km NNE of Grande Anse, Guadeloupe
A shallow light earthquake was reported Tuesday afternoon on Jun 21 125km SSE of Kirakira, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 190km NNW of Tobelo, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 61km N of Agrihan, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 181km SSE of Bitung, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 24km SW of Lakhdaria, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 6km ENE of Noda, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 40km SW of Ashkasham, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 68km SSE of Tuensang, India
A shallow light earthquake was reported Tuesday afternoon on Jun 21 58km SSW of Bunisari, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 62km SE of Kuril'sk, Russia
A deep light earthquake was reported Tuesday afternoon on Jun 21 4km NNW of Koronadal, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 16km N of Banjar Sidayu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 18km E of Puerto Morazan, Nicaragua
A deep light earthquake was reported Tuesday afternoon on Jun 21 288km N of Ndoi Island, Fiji
A deep light earthquake was reported Tuesday afternoon on Jun 21 287km SE of Lambasa, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 186km SE of Sarangani, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 21km ENE of Shughnon, Tajikistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southeast of Easter Island
A shallow light earthquake was reported Tuesday afternoon on Jun 21 288km SSE of Sigave, Wallis and Futuna
A shallow light earthquake was reported Tuesday afternoon on Jun 21 25km WNW of Solhan, Turkey
A shallow light earthquake was reported Tuesday afternoon on Jun 21 14km ESE of Kabayan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 263km SSE of Sigave, Wallis and Futuna
A shallow light earthquake was reported Tuesday afternoon on Jun 21 East of the Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 110km ENE of Hihifo, Tonga
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 62km W of Abra Pampa, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 249km ESE of Kamaishi, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 107km SSE of Hihifo, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km ENE of Georgetown, Saint Helena
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km NNW of Borrego Springs, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 25km S of Somotillo, Nicaragua
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 20km WNW of Auki, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 19km SSW of Somotillo, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 23km E of Puerto Morazan, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km NNE of Tela, Honduras
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km S of Somotillo, Nicaragua
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 17km E of Puerto Morazan, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 251km NNE of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 183km NNE of Fais, Micronesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 51km S of Molibagu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 108km ENE of We, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 131km NNW of Kiunga, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 201km NW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 5km WNW of Uddiawan, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 49km NNW of Chilecito, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 218km ENE of Neiafu, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 35km WSW of Kiska Volcano, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 98km SSW of Bogorawatu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 99km SSW of Bogorawatu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 206km ESE of Hachijo-jima, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 284km S of Kute, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km SSW of Tawun, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 4km S of Turija, Serbia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 99km SSW of Champerico, Guatemala
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 65km NNW of Barranca, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 70km W of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 287km E of Namie, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A deep light earthquake was reported Tuesday afternoon on Jun 21 50km SSE of Korsakov, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Mid-Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 38km S of Puerto San Jose, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km SW of Puerto El Triunfo, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 170km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 175km NNE of Esperance, Australia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 149km SSE of Naze, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 44km SSW of Ashkasham, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km WNW of Kota Ternate, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 96km NNE of Sangiang, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km S of Nishinoomote, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km WNW of Kota Ternate, Indonesia
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 128km E of Bitung, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 77km NE of Diego de Almagro, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 14km SE of El Valle, Dominican Republic
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 252km NE of Kuril'sk, Russia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 29km SW of Kimbe, Papua New Guinea
A deep light earthquake was reported Tuesday afternoon on Jun 21 Fiji region
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 76km ESE of Culaman, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 68km SSW of Abancay, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 156km SSW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km SSW of San Patricio, Mexico
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 102km SSW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km S of Chignik Lake, Alaska
A deep light earthquake was reported Tuesday afternoon on Jun 21 112km ENE of Ndoi Island, Fiji
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 104km E of Shikotan, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 4km ESE of Demirtas, Turkey
A shallow light earthquake was reported Tuesday afternoon on Jun 21 70km WNW of Te Anau, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km WSW of Kota Ternate, Indonesia
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 25km ESE of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 74km W of Te Anau, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 53km WNW of Porgera, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 49km S of Las Choapas, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km ESE of Mucuchies, Venezuela
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 85km E of Iquique, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 3km S of Muisne, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of Panama
A shallow light earthquake was reported Tuesday afternoon on Jun 21 222km N of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km WNW of Polis, Cyprus
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km E of Namie, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 23km WSW of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 23km SW of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 159km SSW of Biha, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 58km NW of La Ligua, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 161km NNW of Atambua, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 94km NE of Roshtqal'a, Tajikistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 3km SE of Santa Catarina Juquila, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km SE of Ocos, Guatemala
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 84km S of Raoul Island, New Zealand
A deep light earthquake was reported Tuesday afternoon on Jun 21 226km SE of Lambasa, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 53km NE of Sulangan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 61km ENE of Mazamari, Peru
A deep minor earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 202km NE of Neiafu, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 11km W of Canoas, Costa Rica
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km SSW of Foca, Turkey
A deep moderate earthquake was reported Tuesday afternoon on Jun 21 133km SW of Leksula, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 52km E of Palu, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 145km SSE of Putre, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 261km ESE of Sarangani, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 124km W of Airbuaya, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 71km NNW of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km NW of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 20km NNE of Jayune, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 105km NNW of False Pass, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km SE of Acari, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 141km WNW of Naze, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 Fiji region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 36km SW of Santiago Pinotepa Nacional, Mexico
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 79km W of San Antonio de los Cobres, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km SW of San Juan Cacahuatepec, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 5km N of San Pedro Amuzgos, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km S of Makry Gialos, Greece
A shallow light earthquake was reported Tuesday afternoon on Jun 21 7km NW of Cabrera, Dominican Republic
A shallow light earthquake was reported Tuesday afternoon on Jun 21 34km W of Illapel, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 60km SSW of Port-Vila, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 150km WNW of Tobelo, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 54km S of Hukumati Dahanah-ye Ghori, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 11km WSW of Lixourion, Greece
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest of Sumatra, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 89km ENE of Antofagasta, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 1km NNW of Genteng, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km WSW of Kota Ternate, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 61km ESE of Kerman, Iran
A shallow light earthquake was reported Tuesday afternoon on Jun 21 81km NE of Hihifo, Tonga
A deep light earthquake was reported Tuesday afternoon on Jun 21 98km E of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km S of Fukue, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km S of La Libertad, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 64km SW of Pasarbaru, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 88km WNW of Polis, Cyprus
A shallow light earthquake was reported Tuesday afternoon on Jun 21 145km ENE of L'Esperance Rock, New Zealand
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 108km NNW of Congkar, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 180km NNW of Yunaska Island, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 242km ESE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 131km ESE of Hirara, Japan
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 55km WNW of Illapel, Chile
A deep light earthquake was reported Tuesday afternoon on Jun 21 19km SSE of Charagua, Bolivia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 72km W of Pasirnangka, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 245km ESE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 265km SE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 250km ESE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South Indian Ocean
A shallow light earthquake was reported Tuesday afternoon on Jun 21 239km W of Port-Olry, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 62km S of Arica, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km ESE of Sucua, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of Tasmania
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Fiji region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 141km W of Itbayat, Philippines
A deep light earthquake was reported Tuesday afternoon on Jun 21 227km W of Hihifo, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 180km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km S of Chignik Lake, Alaska
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 60km S of Little Sitkin Island, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 25km N of Pujocucho, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 18km SE of Ina, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km SSW of Abepura, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 68km NW of Port-Olry, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 101km S of La Libertad, El Salvador
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 147km N of Calama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Owen Fracture Zone region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 39km NE of Palu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 113km ESE of Port-Vila, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 155km ENE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 284km NE of Port Mathurin, Mauritius
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km NNE of Hamza, Uzbekistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 137km W of Itbayat, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 41km S of Boal Atas, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 241km NNW of Farallon de Pajaros, Northern Mariana Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 217km SW of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 71km S of Molibagu, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 129km NNW of Labuhankananga, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 205km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 178km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 179km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 36km NNW of Pujocucho, Peru
A shallow moderate earthquake was reported Tuesday afternoon on Jun 21 79km W of Sungaipenuh, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 1km ESE of Yachimata, Japan
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 24km WNW of Ain Bessem, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Carlsberg Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km WSW of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 82km S of Huancavelica, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km SSE of Pujiharjo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km NE of Chernabura Island, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 29km S of Jarm, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 31km E of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km S of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km SSW of Kokopo, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 54km WNW of Pedernales, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 98km SW of San Patricio, Mexico
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 63km WSW of Amatignak Island, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 44km WNW of Pedernales, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 192km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 148km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 194km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 40km W of Amatignak Island, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km ESE of Taquile, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 161km SSE of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 24km N of Nanao, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 92km S of Chignik Lake, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km SW of Lakhdaria, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 3km SE of Mamburao, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 32km WNW of Pedernales, Ecuador
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 30km NW of Cempa, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 196km NNE of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 103km NNE of Chignik Lake, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km NNW of Cortes, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km NW of Namatanai, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km WNW of Port-Olry, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km S of Parrita, Costa Rica
A intermediate moderate earthquake was reported Tuesday afternoon on Jun 21 93km ENE of Keelung, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 94km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 98km S of La Libertad, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 33km W of Andalgala, Argentina
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 20km S of King Salmon, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 176km ENE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km ENE of L'Esperance Rock, New Zealand
A deep light earthquake was reported Tuesday afternoon on Jun 21 263km ESE of Lambasa, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 96km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 10km WSW of Piedecuesta, Colombia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 92km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km W of Rabaul, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 82km SE of Amahai, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 11km NW of Nakanojo, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 Off the east coast of the North Island of New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 4km W of Castel Viscardo, Italy
A shallow light earthquake was reported Tuesday afternoon on Jun 21 254km ENE of Olonkinbyen, Svalbard and Jan Mayen
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km SE of Old Iliamna, Alaska
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 69km ESE of Le Marin, Martinique
A shallow light earthquake was reported Tuesday afternoon on Jun 21 55km WSW of Yonakuni, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 134km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 154km SW of Kavieng, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South Shetland Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 130km ENE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 276km S of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 85km SE of Cabiraoan, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km NE of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km W of Illapel, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 West Chile Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 117km E of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km S of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 126km ESE of Hirara, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km E of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km S of Raoul Island, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 62km NE of Atka, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 127km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km SSW of Merizo Village, Guam
A shallow light earthquake was reported Tuesday afternoon on Jun 21 21km NE of Hualian, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 122km SSW of Merizo Village, Guam
A shallow light earthquake was reported Tuesday afternoon on Jun 21 252km NNW of Tual, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km E of Taniwel, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 52km SSW of Gra Liyia, Greece
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 78km N of Iwo Jima, Japan
A deep minor earthquake was reported Tuesday afternoon on Jun 21 16km SE of Ndoi Island, Fiji
A deep light earthquake was reported Tuesday afternoon on Jun 21 150km SSW of Kavieng, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 108km W of Illapel, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km WNW of Ain Bessem, Algeria
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 277km WNW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 83km ENE of Lar, Iran
A shallow light earthquake was reported Tuesday afternoon on Jun 21 179km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km S of La Libertad, El Salvador
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 108km NNE of Anatahan, Northern Mariana Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 50km SW of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 57km S of Hirara, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Tuamotu Archipelago, French Polynesia region
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 77km ESE of Iquique, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 204km E of `Ohonua, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 132km SW of Kokopo, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 138km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km ENE of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of the Kermadec Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 51km ENE of Port-Olry, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 132km ENE of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 84km WNW of Kirakira, Solomon Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 6km NE of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A deep light earthquake was reported Tuesday afternoon on Jun 21 10km SSE of Boyuibe, Bolivia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km WSW of Ain Bessem, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 154km ESE of Hasaki, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 148km W of Itbayat, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 10km WSW of Huagai, China
A shallow light earthquake was reported Tuesday afternoon on Jun 21 60km SSE of Lakatoro, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 74km S of Lakatoro, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 36km NW of Kizukuri, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 68km WSW of Puerto Madero, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km WNW of Ain Bessem, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km SSW of Lakhdaria, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 90km W of Vallenar, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 120km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 119km E of Aileu, East Timor
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km NE of Poros, Greece
A deep light earthquake was reported Tuesday afternoon on Jun 21 193km NE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Prince Edward Islands region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km SE of Shardara, Kazakhstan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 115km S of Nabire, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 137km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 166km NNE of Esperance, Australia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 170km NNE of Esperance, Australia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 121km SSW of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 97km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A deep minor earthquake was reported Tuesday afternoon on Jun 21 119km NE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 129km ENE of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 31km W of Ashkasham, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A intermediate strong earthquake was reported Tuesday afternoon on Jun 21 53km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 33km NNW of Nagarkot, Nepal
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km N of Funaishikawa, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 74km N of Hachijo-jima, Japan
A deep moderate earthquake was reported Tuesday afternoon on Jun 21 161km SSE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 43km WNW of Lebu, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 244km NW of Saumlaki, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 288km NNE of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 136km ENE of Iquique, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km NE of Port-Olry, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 300km N of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 96km WSW of Ferndale, California
A shallow light earthquake was reported Tuesday afternoon on Jun 21 223km NNW of Tual, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 55km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 176km NE of Thang, India
A shallow light earthquake was reported Tuesday afternoon on Jun 21 186km SSW of Ust'-Kamchatsk Staryy, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 104km SSE of Lolayan, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 72km SW of Ovalle, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km SSE of Kokopo, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 58km NE of Yelizovo, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 108km E of Pagan, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km N of Kendari, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 52km NNW of Finschhafen, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 97km N of Tobelo, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 142km ENE of Taltal, Chile
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 21km WNW of Piura, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 13km WNW of Campoverde, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 96km NW of Port-Vila, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 103km ESE of Khonsa, India
A deep moderate earthquake was reported Tuesday afternoon on Jun 21 19km S of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 172km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 165km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km SE of Lukatan, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 123km W of Pangai, Tonga
A deep minor earthquake was reported Tuesday afternoon on Jun 21 123km W of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 15km N of Amahai, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 55km W of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 34km N of Yigo Village, Guam
A shallow light earthquake was reported Tuesday afternoon on Jun 21 136km SSE of Shizunai, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 237km SE of Vostok, Russia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km ESE of Madang, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 65km S of Visokoi Island, South Georgia and the South Sandwich Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 243km NNE of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 220km NE of Kuril'sk, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 282km SSE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Timor Sea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 2km S of Moyogalpa, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 22km WNW of Massy, Kyrgyzstan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 49km ENE of Anatahan, Northern Mariana Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 77km SSE of Putre, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 248km N of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 232km W of Riverton, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 55km ESE of Siracusa, Italy
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 53km NNE of Naze, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 15km WNW of Palomares, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 247km E of Miyako, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 12km ENE of Rota, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km SW of Mapastepec, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 88km SSW of Pijijiapan, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 19km E of Marihatag, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km S of Bristol Island, South Sandwich Islands
A deep minor earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 190km NW of Farallon de Pajaros, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 38km WNW of Hengchun, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 41km NNW of Duchesne, Utah
A shallow light earthquake was reported Tuesday afternoon on Jun 21 31km ENE of Lakatoro, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 24km SSW of Hidalgotitlan, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 112km SSW of Dadali, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 246km NNW of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km SW of Kato Mazarakion, Greece
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km S of Palaikastron, Greece
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km NNE of Piedra Blanca, Dominican Republic
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 37km SW of Sarangani, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 81km ENE of Misawa, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km SE of Hasaki, Japan
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 181km WNW of Saumlaki, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 49km WSW of Agrihan, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 31km ESE of Muisne, Ecuador
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 1km E of Aileu, East Timor
A deep light earthquake was reported Tuesday afternoon on Jun 21 19km SSW of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 100km SW of Chirovanga, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 58km SSE of Ofunato, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km NE of Bojnurd, Iran
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km W of Dhi Na`im, Yemen
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km SE of Azogues, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 9km ESE of Taradale, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 19km SE of Kishtwar, India
A shallow light earthquake was reported Tuesday afternoon on Jun 21 52km N of Miyako, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 150km SE of Ndoi Island, Fiji
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 45km SW of San Francisco Menendez, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 64km E of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of the Kermadec Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 50km ESE of Cold Bay, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 51km SSE of Putre, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 3km SSW of Pilar, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 159km SSE of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 52km E of Port-Olry, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 177km NNW of Dili, East Timor
A shallow light earthquake was reported Tuesday afternoon on Jun 21 129km SW of Abepura, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 19km W of Cintalapa de Figueroa, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 18km W of Kirtipur, Nepal
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 169km NNW of Farallon de Pajaros, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km W of Gyangkar, China
A deep minor earthquake was reported Tuesday afternoon on Jun 21 255km WNW of Ozernovskiy, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 7km SSW of Yachimata, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 71km NNE of Dili, East Timor
A shallow light earthquake was reported Tuesday afternoon on Jun 21 100km W of Makurazaki, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 35km SE of Hitachi, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 75km WNW of La Ligua, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km NNE of Pangai, Tonga
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 80km W of San Antonio de los Cobres, Argentina
A deep light earthquake was reported Tuesday afternoon on Jun 21 71km SW of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 East of the Kuril Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 15km SSW of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 91km SSE of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 134km NE of San Pedro de Atacama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 6km S of Bogorawatu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 125km S of Attu Station, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km ESE of Jarm, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 142km W of Itbayat, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 249km E of Enarotali, Indonesia

PART 4

For non-earthquake types


In [190]:
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 2.9 earthquake on Jun 21 58km ENE of Chignik Lake, Alaska

In [191]:
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 deep no-data earthquake was reported Tuesday afternoon on Jun 21 67km WNW of Namatanai, Papua New Guinea
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 177km WSW of Sibolga, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 67km SSE of Muara Siberut, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 27km W of Pacocha, Peru
A deep light earthquake was reported Tuesday afternoon on Jun 21 13km S of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km E of Kimbe, Papua New Guinea
A deep light earthquake was reported Tuesday afternoon on Jun 21 188km WSW of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 211km NNW of Saumlaki, Indonesia
There was also a magnitude 1.98 explosion on Jun 21 5km NNW of Bend, Oregon
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km NNE of Port-Vila, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 238km SE of Lambasa, Fiji
There was also a magnitude 1.77 explosion on Jun 21 2km NW of Sweet Home, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 77km W of Constitucion, Chile
There was also a magnitude 1.33 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.85 explosion on Jun 21 2km E of Granite Falls, Washington
A shallow light earthquake was reported Tuesday afternoon on Jun 21 21km S of Hukumati Dahanah-ye Ghori, Afghanistan
There was also a magnitude 1.23 quarry blast on Jun 21 13km W of Mojave, CA
There was also a magnitude 1.77 quarry blast on Jun 21 7km SSE of Home Gardens, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km S of Molibagu, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 130km NE of San Pedro de Atacama, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km W of San Antonio de los Cobres, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km ENE of Nanae, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 18km NE of Norsup, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km NE of Tadine, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 233km NE of Fais, Micronesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 48km WNW of San Antonio de los Cobres, Argentina
A deep light earthquake was reported Tuesday afternoon on Jun 21 190km WSW of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 21km NE of Yilan, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Off the west coast of northern Sumatra
A shallow light earthquake was reported Tuesday afternoon on Jun 21 77km WSW of Coquimbo, Chile
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 83km SSW of Nikolski, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 196km N of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 59km NE of Taitung City, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 164km ENE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Ascension Island region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Ascension Island region
There was also a magnitude 1.29 other event on Jun 21 10km SW of Bridgeport, Washington
There was also a magnitude 1.95 explosion on Jun 21 1km SSW of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 54km WSW of Sabtang, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km SW of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 110km WNW of Tobelo, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 150km ESE of Iquique, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 25km ENE of Linares, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km NE of Zonda, Argentina
There was also a magnitude 1.36 other event on Jun 21 10km SW of Bridgeport, Washington
A shallow light earthquake was reported Tuesday afternoon on Jun 21 117km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 92km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 117km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km SW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km SSW of Isangel, Vanuatu
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 84km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 74km SW of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 61km SSW of Juli, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km ESE of Bitung, Indonesia
There was also a magnitude 1.27 other event on Jun 21 30km ESE of Sweet Home, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 136km NE of Aksu, China
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 264km WNW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Ascension Island region
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 91km ENE of Norsup, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 124km WNW of Bengkulu, Indonesia
There was also a magnitude 1.74 explosion on Jun 21 9km S of Princeton, Canada
A deep light earthquake was reported Tuesday afternoon on Jun 21 Izu Islands, Japan region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 204km WSW of Puerto Natales, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 221km NNW of Saumlaki, Indonesia
There was also a magnitude 1.22 explosion on Jun 21 8km E of Yacolt, Washington
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 78km W of San Antonio de los Cobres, Argentina
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 35km NE of Jarm, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 27km NW of Ayaviri, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km W of Uto, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 115km W of San Antonio de los Cobres, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 213km S of Punta de Burica, Panama
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km ENE of Lata, Solomon Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 105km SSW of Kota Ternate, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 138km NW of Kota Ternate, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 143km S of False Pass, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km ENE of Oarai, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern East Pacific Rise
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km ENE of Keelung, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km SSE of Lata, Solomon Islands
There was also a magnitude 1.99 explosion on Jun 21 26km WSW of Cheney, Washington
There was also a magnitude 1.57 explosion on Jun 21 8km WNW of Junction City, Oregon
There was also a magnitude 1.48 quarry blast on Jun 21 4km SE of Home Gardens, CA
There was also a magnitude 1.66 explosion on Jun 21 14km NNW of Philomath, Oregon
There was also a magnitude 1.85 quarry blast on Jun 21 4km ENE of Butte, Montana
There was also a magnitude 1.63 quarry blast on Jun 21 0km E of Quarry near Salinas, CA
There was also a magnitude 1.27 quarry blast on Jun 21 10km NNW of Big Bear City, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km NNE of Tadine, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 202km E of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 94km NNE of Palue, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km SSW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 44km E of Kerman, Iran
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 Kepulauan Barat Daya, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 64km W of Ovalle, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 22km WSW of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km SSW of Calama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 153km W of Longyearbyen, Svalbard and Jan Mayen
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km E of Naze, Japan
There was also a magnitude 1.36 quarry blast on Jun 21 2km SE of Home Gardens, CA
There was also a magnitude 1.24 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.48 quarry blast on Jun 21 0km SE of Quarry near Vallejo, CA
There was also a magnitude 1.35 explosion on Jun 21 28km SW of Morton, Washington
There was also a magnitude 1.16 quarry blast on Jun 21 6km SSW of Mojave, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 19km WNW of Atuncolla, Peru
There was also a magnitude 1.09 explosion on Jun 21 28km SW of Morton, Washington
There was also a magnitude 2.08 quarry blast on Jun 21 16km SW of Kemmerer, Wyoming
There was also a magnitude 1.15 explosion on Jun 21 25km SW of Morton, Washington
There was also a magnitude 1.3 explosion on Jun 21 25km SW of Morton, Washington
There was also a magnitude 1.07 quarry blast on Jun 21 13km WNW of Searles Valley, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 121km NE of Tadine, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 129km SSW of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 274km NNW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 22km ENE of Nanae, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 14km WSW of Ovalle, Chile
A deep light earthquake was reported Tuesday afternoon on Jun 21 24km SE of Ndoi Island, Fiji
There was also a magnitude 1.33 quarry blast on Jun 21 12km WNW of Whitehall, Montana
There was also a magnitude 2.14 explosion on Jun 21 5km S of Princeton, Canada
There was also a magnitude 1.56 quarry blast on Jun 21 1km NW of Quarry near Salinas, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
There was also a magnitude 1.29 quarry blast on Jun 21 4km SSE of Home Gardens, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 171km S of False Pass, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km SSE of Lorengau, Papua New Guinea
There was also a magnitude 1.25 quarry blast on Jun 21 5km ENE of Butte, Montana
There was also a magnitude 1.12 quarry blast on Jun 21 2km SW of Quarry near San Rafael, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 36km ESE of Pucallpa, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 2km WNW of La Esperanza, Panama
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 11km SW of Pueblo Nuevo Tiquisate, Guatemala
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 66km NW of Sola, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Balleny Islands region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 32km W of Nuqui, Colombia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 279km S of Kute, Indonesia
There was also a magnitude 1.35 explosion on Jun 21 14km WSW of Cashmere, Washington
There was also a magnitude 1.1 explosion on Jun 21 4km N of Fern Prairie, Washington
There was also a magnitude 1.57 quarry blast on Jun 21 46km NE of Holtville, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 149km N of Calama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 194km ESE of Enarotali, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km W of Harian, Indonesia
There was also a magnitude 1.44 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.33 quarry blast on Jun 21 3km SSE of Quarry near Aromas, CA
There was also a magnitude 1.35 quarry blast on Jun 21 4km ENE of Rancho San Diego, CA
There was also a magnitude 1.03 quarry blast on Jun 21 10km ESE of Coto De Caza, CA
There was also a magnitude 1.17 quarry blast on Jun 21 6km SSW of Mojave, CA
There was also a magnitude 1.36 quarry blast on Jun 21 13km SE of Tehachapi, CA
There was also a magnitude 1.05 explosion on Jun 21 5km E of Yoncalla, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 39km SW of Adak, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 171km SSE of Naze, Japan
A intermediate no-data earthquake was reported Tuesday afternoon on Jun 21 98km NNW of Isangel, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km ENE of Chepen, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km NNE of Chignik Lake, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 9km S of San Vicente Pacaya, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 69km SW of Ocos, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 65km SW of Ocos, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 21km SSW of Somotillo, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 5km NNW of Taron, Papua New Guinea
A deep light earthquake was reported Tuesday afternoon on Jun 21 134km NNW of Labuhankananga, Indonesia
There was also a magnitude 1.11 quarry blast on Jun 21 5km NNW of Boron, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 133km ESE of Kirakira, Solomon Islands
There was also a magnitude 1.13 explosion on Jun 21 10km NNW of Philomath, Oregon
There was also a magnitude 2.18 quarry blast on Jun 21 46km NE of Holtville, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of Panama
There was also a magnitude 2.38 explosion on Jun 21 1km WNW of Princeton, Canada
There was also a magnitude 1.65 quarry blast on Jun 21 1km W of Tijuana, B.C., MX
There was also a magnitude 1.26 explosion on Jun 21 13km S of Morton, Washington
There was also a magnitude 1.09 quarry blast on Jun 21 5km S of Mojave, CA
There was also a magnitude 1.75 quarry blast on Jun 21 5km E of Butte, Montana
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 291km N of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Western Indian-Antarctic Ridge
There was also a magnitude 1.53 quarry blast on Jun 21 9km NNW of Big Bear Lake, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 181km ESE of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 63km SE of Caburan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 31km S of Puerto El Triunfo, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 52km W of West Yellowstone, Montana
A shallow light earthquake was reported Tuesday afternoon on Jun 21 176km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 82km SSW of Corinto, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 17km W of Auki, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 178km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 163km SSE of Naze, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 30km S of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 148km S of Puerto El Triunfo, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 32km NNE of Tumbagaan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern East Pacific Rise
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km NNE of Ambunti, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 240km WNW of Bandon, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km E of Shikotan, Russia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 49km E of , Azerbaijan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km SSW of Yatsushiro, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 East of the Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 56km NNE of Grande Anse, Guadeloupe
A shallow light earthquake was reported Tuesday afternoon on Jun 21 125km SSE of Kirakira, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 190km NNW of Tobelo, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 61km N of Agrihan, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 181km SSE of Bitung, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 24km SW of Lakhdaria, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 6km ENE of Noda, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 40km SW of Ashkasham, Afghanistan
There was also a magnitude 2.02 explosion on Jun 21 2km NNE of Princeton, Canada
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 68km SSE of Tuensang, India
A shallow light earthquake was reported Tuesday afternoon on Jun 21 58km SSW of Bunisari, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 62km SE of Kuril'sk, Russia
A deep light earthquake was reported Tuesday afternoon on Jun 21 4km NNW of Koronadal, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 16km N of Banjar Sidayu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 18km E of Puerto Morazan, Nicaragua
A deep light earthquake was reported Tuesday afternoon on Jun 21 288km N of Ndoi Island, Fiji
A deep light earthquake was reported Tuesday afternoon on Jun 21 287km SE of Lambasa, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 186km SE of Sarangani, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 21km ENE of Shughnon, Tajikistan
There was also a magnitude 1.47 quarry blast on Jun 21 4km SE of Home Gardens, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southeast of Easter Island
There was also a magnitude 2.01 explosion on Jun 21 9km S of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 288km SSE of Sigave, Wallis and Futuna
A shallow light earthquake was reported Tuesday afternoon on Jun 21 25km WNW of Solhan, Turkey
A shallow light earthquake was reported Tuesday afternoon on Jun 21 14km ESE of Kabayan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 263km SSE of Sigave, Wallis and Futuna
There was also a magnitude 1.19 quarry blast on Jun 21 13km SE of Tehachapi, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 East of the Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 110km ENE of Hihifo, Tonga
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 62km W of Abra Pampa, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 249km ESE of Kamaishi, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 107km SSE of Hihifo, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km ENE of Georgetown, Saint Helena
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km NNW of Borrego Springs, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 25km S of Somotillo, Nicaragua
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 20km WNW of Auki, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 19km SSW of Somotillo, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 23km E of Puerto Morazan, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km NNE of Tela, Honduras
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km S of Somotillo, Nicaragua
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 17km E of Puerto Morazan, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 251km NNE of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 183km NNE of Fais, Micronesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 51km S of Molibagu, Indonesia
There was also a magnitude 1.41 quarry blast on Jun 21 44km NNW of Los Algodones, B.C., MX
A shallow light earthquake was reported Tuesday afternoon on Jun 21 108km ENE of We, New Caledonia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
There was also a magnitude 1.45 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
There was also a magnitude 1.11 quarry blast on Jun 21 13km W of Mojave, CA
There was also a magnitude 1.9 explosion on Jun 21 1km S of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 131km NNW of Kiunga, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 201km NW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 5km WNW of Uddiawan, Philippines
There was also a magnitude 1.42 quarry blast on Jun 21 7km SSW of Mojave, CA
There was also a magnitude 1.45 quarry blast on Jun 21 1km SSE of Quarry near Aromas, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 49km NNW of Chilecito, Argentina
There was also a magnitude 1.55 quarry blast on Jun 21 28km SE of Virginia City, Montana
There was also a magnitude 1.63 explosion on Jun 21 23km NNW of Baker City, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 218km ENE of Neiafu, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 35km WSW of Kiska Volcano, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 98km SSW of Bogorawatu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 99km SSW of Bogorawatu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 206km ESE of Hachijo-jima, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 284km S of Kute, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km SSW of Tawun, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 4km S of Turija, Serbia
There was also a magnitude 1.72 quarry blast on Jun 21 47km NE of Holtville, CA
There was also a magnitude 1.93 explosion on Jun 21 6km SSW of Princeton, Canada
There was also a magnitude 1.3 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 99km SSW of Champerico, Guatemala
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 65km NNW of Barranca, Peru
There was also a magnitude 1.0 explosion on Jun 21 16km ESE of Enumclaw, Washington
There was also a magnitude 1.57 explosion on Jun 21 5km SW of Napavine, Washington
There was also a magnitude 1.8 quarry blast on Jun 21 7km SSE of Home Gardens, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 70km W of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 287km E of Namie, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A deep light earthquake was reported Tuesday afternoon on Jun 21 50km SSE of Korsakov, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Mid-Indian Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 38km S of Puerto San Jose, Guatemala
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km SW of Puerto El Triunfo, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 170km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 175km NNE of Esperance, Australia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 149km SSE of Naze, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 44km SSW of Ashkasham, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km WNW of Kota Ternate, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 96km NNE of Sangiang, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km S of Nishinoomote, Japan
There was also a magnitude 1.55 quarry blast on Jun 21 0km N of Quarry near Portola Valley, CA
There was also a magnitude 1.28 explosion on Jun 21 3km E of West Side Highway, Washington
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
There was also a magnitude 2.1 explosion on Jun 21 1km WSW of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 118km WNW of Kota Ternate, Indonesia
There was also a magnitude 1.95 explosion on Jun 21 32km E of Shady Cove, Oregon
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 128km E of Bitung, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 77km NE of Diego de Almagro, Chile
There was also a magnitude 1.44 quarry blast on Jun 21 0km E of Quarry near Atascadero, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 14km SE of El Valle, Dominican Republic
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 252km NE of Kuril'sk, Russia
There was also a magnitude 1.6 quarry blast on Jun 21 8km W of Townsend, Montana
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 29km SW of Kimbe, Papua New Guinea
A deep light earthquake was reported Tuesday afternoon on Jun 21 Fiji region
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 76km ESE of Culaman, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 68km SSW of Abancay, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 156km SSW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km SSW of San Patricio, Mexico
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 102km SSW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km S of Chignik Lake, Alaska
A deep light earthquake was reported Tuesday afternoon on Jun 21 112km ENE of Ndoi Island, Fiji
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 104km E of Shikotan, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 4km ESE of Demirtas, Turkey
A shallow light earthquake was reported Tuesday afternoon on Jun 21 70km WNW of Te Anau, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km WSW of Kota Ternate, Indonesia
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 25km ESE of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 74km W of Te Anau, New Zealand
There was also a magnitude 1.63 quarry blast on Jun 21 43km NNW of Los Algodones, B.C., MX
There was also a magnitude 1.35 quarry blast on Jun 21 5km NNW of Boron, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 53km WNW of Porgera, Papua New Guinea
There was also a magnitude 1.47 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 49km S of Las Choapas, Mexico
There was also a magnitude 1.77 quarry blast on Jun 21 4km E of Butte, Montana
There was also a magnitude 1.1 quarry blast on Jun 21 2km SW of Quarry near San Rafael, CA
There was also a magnitude 1.09 quarry blast on Jun 21 13km SE of Tehachapi, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km ESE of Mucuchies, Venezuela
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 85km E of Iquique, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 3km S of Muisne, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of Panama
A shallow light earthquake was reported Tuesday afternoon on Jun 21 222km N of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km WNW of Polis, Cyprus
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km E of Namie, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 23km WSW of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 23km SW of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 159km SSW of Biha, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 58km NW of La Ligua, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 161km NNW of Atambua, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 94km NE of Roshtqal'a, Tajikistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 3km SE of Santa Catarina Juquila, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km SE of Ocos, Guatemala
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 84km S of Raoul Island, New Zealand
A deep light earthquake was reported Tuesday afternoon on Jun 21 226km SE of Lambasa, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 53km NE of Sulangan, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 61km ENE of Mazamari, Peru
A deep minor earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 202km NE of Neiafu, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 11km W of Canoas, Costa Rica
There was also a magnitude 2.0 explosion on Jun 21 6km SSE of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km SSW of Foca, Turkey
A deep no-data earthquake was reported Tuesday afternoon on Jun 21 133km SW of Leksula, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 52km E of Palu, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 145km SSE of Putre, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 261km ESE of Sarangani, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 124km W of Airbuaya, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 71km NNW of Coquimbo, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central East Pacific Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km NW of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 20km NNE of Jayune, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 105km NNW of False Pass, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km SE of Acari, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 141km WNW of Naze, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 Fiji region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 36km SW of Santiago Pinotepa Nacional, Mexico
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 79km W of San Antonio de los Cobres, Argentina
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km SW of San Juan Cacahuatepec, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 5km N of San Pedro Amuzgos, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km S of Makry Gialos, Greece
A shallow light earthquake was reported Tuesday afternoon on Jun 21 7km NW of Cabrera, Dominican Republic
A shallow light earthquake was reported Tuesday afternoon on Jun 21 34km W of Illapel, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 60km SSW of Port-Vila, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 150km WNW of Tobelo, Indonesia
There was also a magnitude 1.93 explosion on Jun 21 3km S of Princeton, Canada
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 54km S of Hukumati Dahanah-ye Ghori, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 11km WSW of Lixourion, Greece
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest of Sumatra, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 89km ENE of Antofagasta, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 1km NNW of Genteng, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km WSW of Kota Ternate, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 61km ESE of Kerman, Iran
A shallow light earthquake was reported Tuesday afternoon on Jun 21 81km NE of Hihifo, Tonga
A deep light earthquake was reported Tuesday afternoon on Jun 21 98km E of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km S of Fukue, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km S of La Libertad, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 64km SW of Pasarbaru, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 88km WNW of Polis, Cyprus
There was also a magnitude 1.09 explosion on Jun 21 5km N of Fern Prairie, Washington
A shallow light earthquake was reported Tuesday afternoon on Jun 21 145km ENE of L'Esperance Rock, New Zealand
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 108km NNW of Congkar, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 180km NNW of Yunaska Island, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
There was also a magnitude 1.76 quarry blast on Jun 21 46km NNW of Los Algodones, B.C., MX
A shallow light earthquake was reported Tuesday afternoon on Jun 21 242km ESE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 131km ESE of Hirara, Japan
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 55km WNW of Illapel, Chile
A deep light earthquake was reported Tuesday afternoon on Jun 21 19km SSE of Charagua, Bolivia
There was also a magnitude 1.82 explosion on Jun 21 0km SW of Dundee, Oregon
There was also a magnitude 1.52 quarry blast on Jun 21 4km SE of Home Gardens, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 72km W of Pasirnangka, Indonesia
There was also a magnitude 1.38 quarry blast on Jun 21 13km W of Mojave, CA
There was also a magnitude 1.84 quarry blast on Jun 21 5km ENE of Butte, Montana
There was also a magnitude 1.24 quarry blast on Jun 21 2km WSW of Quarry near Clayton, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 245km ESE of Nikol'skoye, Russia
There was also a magnitude 1.53 explosion on Jun 21 22km NNE of Pasco, Washington
A shallow light earthquake was reported Tuesday afternoon on Jun 21 265km SE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 250km ESE of Nikol'skoye, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South Indian Ocean
There was also a magnitude 1.07 quarry blast on Jun 21 6km ENE of Tehachapi, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 239km W of Port-Olry, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 62km S of Arica, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km ESE of Sucua, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of Tasmania
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Fiji region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 141km W of Itbayat, Philippines
A deep light earthquake was reported Tuesday afternoon on Jun 21 227km W of Hihifo, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 180km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km S of Chignik Lake, Alaska
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 60km S of Little Sitkin Island, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 25km N of Pujocucho, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 18km SE of Ina, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km SSW of Abepura, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 68km NW of Port-Olry, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 101km S of La Libertad, El Salvador
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 147km N of Calama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Owen Fracture Zone region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 39km NE of Palu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 113km ESE of Port-Vila, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 155km ENE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 284km NE of Port Mathurin, Mauritius
There was also a magnitude 1.37 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
There was also a magnitude 2.0 explosion on Jun 21 25km SW of Cheney, Washington
There was also a magnitude 2.08 explosion on Jun 21 2km NE of Coos Bay, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km NNE of Hamza, Uzbekistan
There was also a magnitude 1.02 quarry blast on Jun 21 3km SSE of San Marcos, CA
There was also a magnitude 1.05 quarry blast on Jun 21 6km SSW of Mojave, CA
There was also a magnitude 1.53 quarry blast on Jun 21 20km S of Quarry near Atascadero, CA
There was also a magnitude 1.33 quarry blast on Jun 21 7km ESE of Butte, Montana
A shallow light earthquake was reported Tuesday afternoon on Jun 21 137km W of Itbayat, Philippines
There was also a magnitude 1.35 explosion on Jun 21 5km E of Buckley, Washington
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 41km S of Boal Atas, Indonesia
There was also a magnitude 1.34 quarry blast on Jun 21 12km SE of Tehachapi, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 241km NNW of Farallon de Pajaros, Northern Mariana Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 217km SW of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 71km S of Molibagu, Indonesia
A deep light earthquake was reported Tuesday afternoon on Jun 21 129km NNW of Labuhankananga, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 205km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 178km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 179km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 36km NNW of Pujocucho, Peru
There was also a magnitude 1.56 quarry blast on Jun 21 5km NNW of Boron, CA
A shallow no-data earthquake was reported Tuesday afternoon on Jun 21 79km W of Sungaipenuh, Indonesia
There was also a magnitude 1.42 explosion on Jun 21 14km S of Leavenworth, Washington
A shallow light earthquake was reported Tuesday afternoon on Jun 21 1km ESE of Yachimata, Japan
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 24km WNW of Ain Bessem, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Carlsberg Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km WSW of Coquimbo, Chile
There was also a magnitude 1.34 quarry blast on Jun 21 3km SSE of Home Gardens, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 82km S of Huancavelica, Peru
There was also a magnitude 1.81 explosion on Jun 21 12km S of Princeton, Canada
There was also a magnitude 1.01 quarry blast on Jun 21 7km E of Lebec, CA
There was also a magnitude 1.4 quarry blast on Jun 21 7km SE of Bonita, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km SSE of Pujiharjo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km NE of Chernabura Island, Alaska
There was also a magnitude 2.3 quarry blast on Jun 21 17km N of Orofino, Idaho
There was also a magnitude 1.26 quarry blast on Jun 21 4km SE of Home Gardens, CA
There was also a magnitude 1.35 quarry blast on Jun 21 6km SSE of Valley Center, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 29km S of Jarm, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 31km E of Visokoi Island, South Georgia and the South Sandwich Islands
There was also a magnitude 1.21 explosion on Jun 21 16km W of Winston, Oregon
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km S of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km SSW of Kokopo, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 54km WNW of Pedernales, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 98km SW of San Patricio, Mexico
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 63km WSW of Amatignak Island, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 44km WNW of Pedernales, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 192km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 148km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 194km SW of San Patricio, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 40km W of Amatignak Island, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km ESE of Taquile, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 161km SSE of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 24km N of Nanao, Japan
There was also a magnitude 1.18 explosion on Jun 21 3km E of Kelso, Washington
There was also a magnitude 1.56 quarry blast on Jun 21 8km ESE of Bonita, CA
There was also a magnitude 1.41 quarry blast on Jun 21 45km NE of Holtville, CA
There was also a magnitude 1.23 quarry blast on Jun 21 12km E of Quarry near Portola Valley, CA
There was also a magnitude 1.57 explosion on Jun 21 2km SSW of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 92km S of Chignik Lake, Alaska
There was also a magnitude 1.41 quarry blast on Jun 21 4km N of Norco, CA
There was also a magnitude 2.04 quarry blast on Jun 21 28km N of Orofino, Idaho
There was also a magnitude 1.2 quarry blast on Jun 21 7km SSW of Mojave, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 13km SW of Lakhdaria, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 3km SE of Mamburao, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 32km WNW of Pedernales, Ecuador
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 30km NW of Cempa, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 196km NNE of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 103km NNE of Chignik Lake, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km NNW of Cortes, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km NW of Namatanai, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 78km WNW of Port-Olry, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km S of Parrita, Costa Rica
A intermediate no-data earthquake was reported Tuesday afternoon on Jun 21 93km ENE of Keelung, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 94km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 98km S of La Libertad, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 33km W of Andalgala, Argentina
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 20km S of King Salmon, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 176km ENE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km ENE of L'Esperance Rock, New Zealand
A deep light earthquake was reported Tuesday afternoon on Jun 21 263km ESE of Lambasa, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 96km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 93km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 10km WSW of Piedecuesta, Colombia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 92km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 111km W of Rabaul, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 82km SE of Amahai, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 11km NW of Nakanojo, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 Off the east coast of the North Island of New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 4km W of Castel Viscardo, Italy
A shallow light earthquake was reported Tuesday afternoon on Jun 21 254km ENE of Olonkinbyen, Svalbard and Jan Mayen
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km SE of Old Iliamna, Alaska
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 69km ESE of Le Marin, Martinique
A shallow light earthquake was reported Tuesday afternoon on Jun 21 55km WSW of Yonakuni, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 134km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 154km SW of Kavieng, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South Shetland Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 130km ENE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 276km S of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 85km SE of Cabiraoan, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 99km NE of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km W of Illapel, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 West Chile Rise
A shallow light earthquake was reported Tuesday afternoon on Jun 21 117km E of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 116km S of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 126km ESE of Hirara, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km E of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km S of Raoul Island, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 62km NE of Atka, Alaska
A shallow light earthquake was reported Tuesday afternoon on Jun 21 127km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 123km SSW of Merizo Village, Guam
A shallow light earthquake was reported Tuesday afternoon on Jun 21 21km NE of Hualian, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 122km SSW of Merizo Village, Guam
A shallow light earthquake was reported Tuesday afternoon on Jun 21 252km NNW of Tual, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km E of Taniwel, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 52km SSW of Gra Liyia, Greece
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 78km N of Iwo Jima, Japan
A deep minor earthquake was reported Tuesday afternoon on Jun 21 16km SE of Ndoi Island, Fiji
A deep light earthquake was reported Tuesday afternoon on Jun 21 150km SSW of Kavieng, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 108km W of Illapel, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km WNW of Ain Bessem, Algeria
There was also a magnitude 2.23 explosion on Jun 21 10km S of Princeton, Canada
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 277km WNW of Saumlaki, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 83km ENE of Lar, Iran
A shallow light earthquake was reported Tuesday afternoon on Jun 21 179km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km S of La Libertad, El Salvador
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 108km NNE of Anatahan, Northern Mariana Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 50km SW of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 57km S of Hirara, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Tuamotu Archipelago, French Polynesia region
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 77km ESE of Iquique, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 204km E of `Ohonua, Tonga
A shallow light earthquake was reported Tuesday afternoon on Jun 21 132km SW of Kokopo, Papua New Guinea
A shallow light earthquake was reported Tuesday afternoon on Jun 21 138km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km ENE of Visokoi Island, South Georgia and the South Sandwich Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 Kuril Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of the Kermadec Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 51km ENE of Port-Olry, Vanuatu
A deep light earthquake was reported Tuesday afternoon on Jun 21 132km ENE of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 84km WNW of Kirakira, Solomon Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 6km NE of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A deep light earthquake was reported Tuesday afternoon on Jun 21 10km SSE of Boyuibe, Bolivia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km WSW of Ain Bessem, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 154km ESE of Hasaki, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 148km W of Itbayat, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 10km WSW of Huagai, China
A shallow light earthquake was reported Tuesday afternoon on Jun 21 60km SSE of Lakatoro, Vanuatu
A shallow light earthquake was reported Tuesday afternoon on Jun 21 74km S of Lakatoro, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 36km NW of Kizukuri, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 68km WSW of Puerto Madero, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km WNW of Ain Bessem, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 86km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 16km SSW of Lakhdaria, Algeria
A shallow light earthquake was reported Tuesday afternoon on Jun 21 90km W of Vallenar, Chile
There was also a magnitude 1.66 explosion on Jun 21 2km S of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 120km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 119km E of Aileu, East Timor
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km NE of Poros, Greece
There was also a magnitude 1.84 explosion on Jun 21 7km NE of Abbotsford, Canada
A deep light earthquake was reported Tuesday afternoon on Jun 21 193km NE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Prince Edward Islands region
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km SE of Shardara, Kazakhstan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 115km S of Nabire, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 137km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 166km NNE of Esperance, Australia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 170km NNE of Esperance, Australia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 121km SSW of Raoul Island, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 97km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A deep minor earthquake was reported Tuesday afternoon on Jun 21 119km NE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 129km ENE of L'Esperance Rock, New Zealand
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 31km W of Ashkasham, Afghanistan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A intermediate strong earthquake was reported Tuesday afternoon on Jun 21 53km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 33km NNW of Nagarkot, Nepal
A shallow light earthquake was reported Tuesday afternoon on Jun 21 8km N of Funaishikawa, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 74km N of Hachijo-jima, Japan
A deep no-data earthquake was reported Tuesday afternoon on Jun 21 161km SSE of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 43km WNW of Lebu, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 244km NW of Saumlaki, Indonesia
There was also a magnitude 1.55 explosion on Jun 21 3km SW of Drain, Oregon
A deep light earthquake was reported Tuesday afternoon on Jun 21 288km NNE of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 136km ENE of Iquique, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 56km NE of Port-Olry, Vanuatu
There was also a magnitude 1.2 quarry blast on Jun 21 0km S of Quarry near Vallejo, CA
A deep light earthquake was reported Tuesday afternoon on Jun 21 300km N of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 96km WSW of Ferndale, California
There was also a magnitude 1.79 explosion on Jun 21 5km SSE of Princeton, Canada
A shallow light earthquake was reported Tuesday afternoon on Jun 21 223km NNW of Tual, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Southwest Indian Ridge
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 55km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
There was also a magnitude 1.37 quarry blast on Jun 21 7km SSW of Mojave, CA
There was also a magnitude 1.48 quarry blast on Jun 21 6km ESE of Butte, Montana
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 176km NE of Thang, India
A shallow light earthquake was reported Tuesday afternoon on Jun 21 186km SSW of Ust'-Kamchatsk Staryy, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 104km SSE of Lolayan, Indonesia
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 72km SW of Ovalle, Chile
There was also a magnitude 1.31 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km SSE of Kokopo, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 58km NE of Yelizovo, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 108km E of Pagan, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 114km N of Kendari, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 52km NNW of Finschhafen, Papua New Guinea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 97km N of Tobelo, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 142km ENE of Taltal, Chile
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 21km WNW of Piura, Peru
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 13km WNW of Campoverde, Peru
A shallow light earthquake was reported Tuesday afternoon on Jun 21 96km NW of Port-Vila, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 103km ESE of Khonsa, India
A deep no-data earthquake was reported Tuesday afternoon on Jun 21 19km S of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 172km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 165km SSE of Naze, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km SE of Lukatan, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 123km W of Pangai, Tonga
A deep minor earthquake was reported Tuesday afternoon on Jun 21 123km W of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 15km N of Amahai, Indonesia
There was also a magnitude 1.63 quarry blast on Jun 21 46km NNW of Los Algodones, B.C., MX
A deep light earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
There was also a magnitude 1.57 quarry blast on Jun 21 4km NNW of Boron, CA
There was also a magnitude 1.99 explosion on Jun 21 5km SSE of Princeton, Canada
There was also a magnitude 1.96 quarry blast on Jun 21 11km ESE of Santa Ynez, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 55km W of Coquimbo, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 34km N of Yigo Village, Guam
There was also a magnitude 1.31 quarry blast on Jun 21 6km ENE of Three Forks, Montana
A shallow light earthquake was reported Tuesday afternoon on Jun 21 136km SSE of Shizunai, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 237km SE of Vostok, Russia
There was also a magnitude 1.44 explosion on Jun 21 19km SE of Cottage Grove, Oregon
There was also a magnitude 1.08 explosion on Jun 21 24km SE of Sweet Home, Oregon
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km ESE of Madang, Papua New Guinea
There was also a magnitude 1.94 quarry blast on Jun 21 10km N of Oroville, California
There was also a magnitude 1.08 quarry blast on Jun 21 13km SE of Tehachapi, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 65km S of Visokoi Island, South Georgia and the South Sandwich Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 243km NNE of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 220km NE of Kuril'sk, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 282km SSE of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Timor Sea
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 2km S of Moyogalpa, Nicaragua
A shallow light earthquake was reported Tuesday afternoon on Jun 21 22km WNW of Massy, Kyrgyzstan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 49km ENE of Anatahan, Northern Mariana Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 77km SSE of Putre, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 248km N of Chichi-shima, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 232km W of Riverton, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 55km ESE of Siracusa, Italy
A shallow minor earthquake was reported Tuesday afternoon on Jun 21 53km NNE of Naze, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 15km WNW of Palomares, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 247km E of Miyako, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 12km ENE of Rota, Northern Mariana Islands
There was also a magnitude 1.13 quarry blast on Jun 21 8km ENE of Lebec, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 95km SW of Mapastepec, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 88km SSW of Pijijiapan, Mexico
There was also a magnitude 1.85 quarry blast on Jun 21 4km ENE of Butte, Montana
A shallow light earthquake was reported Tuesday afternoon on Jun 21 19km E of Marihatag, Philippines
There was also a magnitude 1.49 quarry blast on Jun 21 7km SSE of Home Gardens, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 106km S of Bristol Island, South Sandwich Islands
There was also a magnitude 1.23 quarry blast on Jun 21 10km NNW of Big Bear City, CA
A deep minor earthquake was reported Tuesday afternoon on Jun 21 South of the Fiji Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 190km NW of Farallon de Pajaros, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 38km WNW of Hengchun, Taiwan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 41km NNW of Duchesne, Utah
A shallow light earthquake was reported Tuesday afternoon on Jun 21 31km ENE of Lakatoro, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 24km SSW of Hidalgotitlan, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 112km SSW of Dadali, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 246km NNW of Tobelo, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km SW of Kato Mazarakion, Greece
A shallow light earthquake was reported Tuesday afternoon on Jun 21 20km S of Palaikastron, Greece
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km NNE of Piedra Blanca, Dominican Republic
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 37km SW of Sarangani, Philippines
A shallow light earthquake was reported Tuesday afternoon on Jun 21 81km ENE of Misawa, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 91km SE of Hasaki, Japan
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 181km WNW of Saumlaki, Indonesia
There was also a magnitude 1.03 quarry blast on Jun 21 1km WSW of Quarry near Milpitas, CA
There was also a magnitude 1.21 quarry blast on Jun 21 45km NNW of Los Algodones, B.C., MX
There was also a magnitude 1.64 explosion on Jun 21 14km SE of McCleary, Washington
A deep light earthquake was reported Tuesday afternoon on Jun 21 49km WSW of Agrihan, Northern Mariana Islands
There was also a magnitude 2.03 explosion on Jun 21 7km S of Princeton, Canada
There was also a magnitude 1.35 explosion on Jun 21 10km SE of Graham, Washington
A shallow light earthquake was reported Tuesday afternoon on Jun 21 31km ESE of Muisne, Ecuador
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 1km E of Aileu, East Timor
There was also a magnitude 1.01 quarry blast on Jun 21 14km W of Mojave, CA
A deep light earthquake was reported Tuesday afternoon on Jun 21 19km SSW of Ndoi Island, Fiji
There was also a magnitude 1.08 quarry blast on Jun 21 5km NE of Rancho San Diego, CA
There was also a magnitude 1.31 quarry blast on Jun 21 2km SW of Quarry near Clayton, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 100km SW of Chirovanga, Solomon Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 58km SSE of Ofunato, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 24km NE of Bojnurd, Iran
A shallow light earthquake was reported Tuesday afternoon on Jun 21 12km W of Dhi Na`im, Yemen
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 9km SE of Azogues, Ecuador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 9km ESE of Taradale, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 19km SE of Kishtwar, India
A shallow light earthquake was reported Tuesday afternoon on Jun 21 52km N of Miyako, Japan
A deep light earthquake was reported Tuesday afternoon on Jun 21 150km SE of Ndoi Island, Fiji
A intermediate minor earthquake was reported Tuesday afternoon on Jun 21 45km SW of San Francisco Menendez, El Salvador
A shallow light earthquake was reported Tuesday afternoon on Jun 21 64km E of L'Esperance Rock, New Zealand
A shallow light earthquake was reported Tuesday afternoon on Jun 21 South of the Kermadec Islands
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 50km ESE of Cold Bay, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 51km SSE of Putre, Chile
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 3km SSW of Pilar, Philippines
There was also a magnitude 1.49 quarry blast on Jun 21 6km NNW of Boron, CA
There was also a magnitude 1.79 quarry blast on Jun 21 46km NNW of Los Algodones, B.C., MX
A shallow light earthquake was reported Tuesday afternoon on Jun 21 159km SSE of Hachijo-jima, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 52km E of Port-Olry, Vanuatu
There was also a magnitude 2.55 explosion on Jun 21 11km S of Agassiz, Canada
There was also a magnitude 1.05 quarry blast on Jun 21 1km WNW of Quarry near Vallejo, CA
There was also a magnitude 1.5 quarry blast on Jun 21 11km E of Quarry near Portola Valley, CA
A deep light earthquake was reported Tuesday afternoon on Jun 21 177km NNW of Dili, East Timor
There was also a magnitude 1.4 quarry blast on Jun 21 5km N of Lake Elsinore, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 129km SW of Abepura, Indonesia
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 19km W of Cintalapa de Figueroa, Mexico
A shallow light earthquake was reported Tuesday afternoon on Jun 21 18km W of Kirtipur, Nepal
There was also a magnitude 1.33 quarry blast on Jun 21 7km SSW of Mojave, CA
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 169km NNW of Farallon de Pajaros, Northern Mariana Islands
A shallow light earthquake was reported Tuesday afternoon on Jun 21 30km W of Gyangkar, China
There was also a magnitude 1.6 explosion on Jun 21 5km WNW of Junction City, Oregon
A deep minor earthquake was reported Tuesday afternoon on Jun 21 255km WNW of Ozernovskiy, Russia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
There was also a magnitude 1.17 quarry blast on Jun 21 13km SE of Tehachapi, CA
A shallow light earthquake was reported Tuesday afternoon on Jun 21 7km SSW of Yachimata, Japan
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 71km NNE of Dili, East Timor
A shallow light earthquake was reported Tuesday afternoon on Jun 21 100km W of Makurazaki, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 35km SE of Hitachi, Japan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Northern Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 Central Mid-Atlantic Ridge
A shallow light earthquake was reported Tuesday afternoon on Jun 21 75km WNW of La Ligua, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 66km NNE of Pangai, Tonga
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 80km W of San Antonio de los Cobres, Argentina
A deep light earthquake was reported Tuesday afternoon on Jun 21 71km SW of Ndoi Island, Fiji
A shallow light earthquake was reported Tuesday afternoon on Jun 21 East of the Kuril Islands
A deep light earthquake was reported Tuesday afternoon on Jun 21 15km SSW of Ndoi Island, Fiji
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 91km SSE of Isangel, Vanuatu
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 134km NE of San Pedro de Atacama, Chile
A shallow light earthquake was reported Tuesday afternoon on Jun 21 6km S of Bogorawatu, Indonesia
A shallow light earthquake was reported Tuesday afternoon on Jun 21 125km S of Attu Station, Alaska
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 23km ESE of Jarm, Afghanistan
A shallow light earthquake was reported Tuesday afternoon on Jun 21 142km W of Itbayat, Philippines
A intermediate light earthquake was reported Tuesday afternoon on Jun 21 249km E of Enarotali, Indonesia
There was also a magnitude 1.6 explosion on Jun 21 4km S of Princeton, Canada