In [8]:
#test diccionary
earthquake = {
      'rms': '1.85',
      'updated': '2014-06-11T05:22:21.596Z',
      'type': 'earthquake',
      'magType': 'mwp',
      'longitude': '-136.6561',
      'gap': '48',
      'depth': '10',
      'dmin': '0.811',
      'mag': '5.7',
      'time': '2014-06-04T11:58:58.200Z',
      'latitude': '59.0001',
      'place': '73km WSW of Haines, Alaska',
      'net': 'us',
      'nst': '',
      'id': 'usc000rauc'}

In [3]:
#    print(eq_to_sentence(earthquake))

In [4]:
#A DEPTH POWER, MAGNITUDE earthquake was reported DAY TIME_OF_DAY on DATE LOCATION.

Question 1


In [9]:
def depth_to_words(x):
    if 0 < int(x['depth']) < 70:
        return "A shallow"
    elif 70 < int(x['depth']) < 300:
        return "An intermediate"
    elif 300 < int(x['depth']) < 700:
        return "A deep"
    else:
        return "didn't work"

#test 
x = earthquake 
print(depth_to_words(x))


A shallow

In [10]:
def magnitude_to_words(x):
    if 0 < float(x['mag']) < 6:
        return "shallow to moderate"
    elif 6 < float(x['mag']) < 8:
        return "strong to mayor"
    elif 8 < float(x['mag']):
        return "a great"
    
#Test 
print(magnitude_to_words(x))


shallow to moderate

In [7]:
!pip install dateutils


Collecting dateutils
  Downloading dateutils-0.6.6.tar.gz
Collecting argparse (from dateutils)
  Downloading argparse-1.4.0-py2.py3-none-any.whl
Collecting python-dateutil (from dateutils)
  Downloading python_dateutil-2.5.3-py2.py3-none-any.whl (201kB)
    100% |████████████████████████████████| 204kB 3.7MB/s 
Collecting pytz (from dateutils)
  Downloading pytz-2016.4-py2.py3-none-any.whl (480kB)
    100% |████████████████████████████████| 481kB 1.9MB/s 
Collecting six>=1.5 (from python-dateutil->dateutils)
  Downloading six-1.10.0-py2.py3-none-any.whl
Building wheels for collected packages: dateutils
  Running setup.py bdist_wheel for dateutils ... - \ done
  Stored in directory: /Users/paolorivas/Library/Caches/pip/wheels/61/60/af/2081d0cb3cfaebaab704b6012d5b1a3bdba9e0c4be33ff7e65
Successfully built dateutils
Installing collected packages: argparse, six, python-dateutil, pytz, dateutils
Successfully installed argparse-1.4.0 dateutils-0.6.6 python-dateutil-2.5.3 pytz-2016.4 six-1.10.0

In [11]:
import dateutil.parser
timestring = x['time']
yourdate = dateutil.parser.parse(timestring)

def day_in_words(x):
    return yourdate.strftime("%A")

#Test
day_in_words(x)


Out[11]:
'Wednesday'

In [12]:
def time_in_words(x):
    if 5 < yourdate.hour <=12:
        return str(yourdate.hour)+" "+"in the morning"
    elif 13 <= yourdate.hour < 17:
        return str(yourdate.hour)+" "+"in the afternoon"
    elif 17 <= yourdate.hour < 21:
        return str(yourdate.hour)+" "+"in the evenning"
    elif 21 <= yourdate.hour < 0:
        return str(yourdate.hour)+" "+"in the night"
    
#test   
time_in_words(x)


Out[12]:
'11 in the morning'

In [18]:
def date_in_words(x):
    return yourdate.strftime("%B %d").replace(" 0", " ")
#if i want to replace the 04 in my date time.
#test
date_in_words(x)


Out[18]:
'June 4'

Question 2


In [337]:
#"A DEPTH DESCRIPTION, MAGNITUDE earthquake was reported DAY TIME_OF_DAY on DATE LOCATION."

def equeation_bah(x):
    return str(depth_to_words(x))+" "+str(x['depth'])+" "+"km"+" "+"depth"+" "+"and"+" "+str(x['mag'])+" "+"degree"+" "+str(magnitude_to_words(x))+" "+"earthquake"+" "+"was reported"+" "+time_in_words(x)+" "+"of"+date_in_words(x)+" "+"at"+" "+x['place']

In [338]:
print(equeation_bah(earthquake))


A shallow 10 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 73km WSW of Haines, Alaska

In [ ]:
myself= {'name': 'soma', 'skill': 'airguitar'}

#My name is {name} I am really good at {skill}.format(**myself)

Question 3


In [339]:
#set up
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline

In [340]:
earthquakes_df = pd.read_csv("1.0_month.csv")
earthquakes = earthquakes_df.to_dict('records')

In [341]:
earthquakes_df


Out[341]:
time latitude longitude depth mag magType nst gap dmin rms ... updated place type horizontalError depthError magError magNst status locationSource magSource
0 2016-06-21T04:36:08.590Z 37.503166 -118.655167 10.730 1.59 md 15.0 101.00 0.131900 0.0400 ... 2016-06-21T04:51:04.714Z 23km NW of West Bishop, California earthquake 0.38 1.59 0.180 15.0 automatic nc nc
1 2016-06-21T04:18:56.500Z 19.124000 -64.902000 44.000 2.60 Md 15.0 270.00 0.753687 0.2000 ... 2016-06-21T04:50:47.201Z 83km NNW of Road Town, British Virgin Islands earthquake 3.20 8.60 0.000 8.0 reviewed pr pr
2 2016-06-21T04:09:45.800Z 37.098500 -114.925200 27.000 1.40 ml 14.0 195.43 0.331000 NaN ... 2016-06-21T04:12:25.883Z 36km SE of Alamo, Nevada earthquake NaN NaN NaN NaN automatic nn nn
3 2016-06-21T03:59:36.020Z 34.074833 -117.267167 12.810 1.14 ml 40.0 68.00 0.068720 0.2100 ... 2016-06-21T04:10:03.940Z 3km N of Loma Linda, CA earthquake 0.34 0.74 0.192 28.0 automatic ci ci
4 2016-06-21T03:46:08.530Z 46.657501 -112.259834 -2.780 3.03 ml NaN NaN NaN NaN ... 2016-06-21T03:58:38.932Z 13km WNW of Helena West Side, Montana earthquake 0.30 0.84 0.230 10.0 reviewed mb mb
5 2016-06-21T03:22:52.000Z 63.539100 -147.306500 0.100 1.30 ml NaN NaN NaN 0.6200 ... 2016-06-21T04:19:00.587Z 83km ENE of Cantwell, Alaska earthquake 0.40 0.50 NaN NaN automatic ak ak
6 2016-06-21T03:22:10.580Z 34.074000 -117.275167 14.550 2.07 ml 88.0 25.00 0.109200 0.2100 ... 2016-06-21T03:32:52.810Z 3km NNW of Loma Linda, CA earthquake 0.18 0.35 0.132 25.0 automatic ci ci
7 2016-06-21T03:21:25.740Z 33.106667 -115.878333 9.210 1.67 ml 38.0 54.00 0.047690 0.2900 ... 2016-06-21T03:31:46.160Z 22km SSE of Salton City, CA earthquake 0.35 1.37 0.200 28.0 automatic ci ci
8 2016-06-21T03:19:19.000Z 65.939400 -147.046100 1.500 1.10 ml NaN NaN NaN 0.6100 ... 2016-06-21T03:44:22.957Z 105km SW of Fort Yukon, Alaska earthquake 1.20 0.90 NaN NaN automatic ak ak
9 2016-06-21T02:11:34.000Z 61.443000 -151.029600 58.000 3.20 ml NaN NaN NaN 0.5700 ... 2016-06-21T02:37:41.259Z 57km W of Big Lake, Alaska earthquake 0.20 0.50 NaN NaN automatic ak ak
10 2016-06-21T01:38:22.000Z 62.231000 -149.512300 55.200 1.50 ml NaN NaN NaN 0.2200 ... 2016-06-21T02:03:07.400Z 19km ENE of Y, Alaska earthquake 0.40 1.30 NaN NaN automatic ak ak
11 2016-06-21T01:30:23.000Z 60.885100 -150.864600 30.500 1.70 ml NaN NaN NaN 0.5700 ... 2016-06-21T02:03:06.673Z 31km NE of Nikiski, Alaska earthquake 0.50 0.40 NaN NaN automatic ak ak
12 2016-06-21T00:43:36.790Z 33.950667 -117.235000 10.110 2.34 ml 87.0 29.00 0.051830 0.1900 ... 2016-06-21T00:54:13.520Z 3km NNW of Moreno Valley, CA earthquake 0.15 0.36 0.222 25.0 automatic ci ci
13 2016-06-21T00:14:55.970Z 34.162333 -118.495833 3.400 1.58 ml 13.0 124.00 0.065440 0.3300 ... 2016-06-21T00:18:34.661Z 0km NE of Encino, CA earthquake 1.22 1.67 0.336 33.0 automatic ci ci
14 2016-06-21T00:10:30.740Z 36.451900 -98.735000 5.000 2.90 mb_lg NaN 81.00 0.020000 0.6300 ... 2016-06-21T00:29:48.538Z 30km NW of Fairview, Oklahoma earthquake 1.20 1.80 0.061 69.0 reviewed us us
15 2016-06-21T00:04:44.680Z 36.037833 -117.365167 1.740 2.43 ml 28.0 58.00 0.102400 0.1700 ... 2016-06-21T00:15:56.810Z 30km N of Searles Valley, CA earthquake 0.27 0.59 0.115 25.0 automatic ci ci
16 2016-06-20T23:27:23.550Z -17.238800 168.447600 216.500 4.70 mb NaN 80.00 3.700000 1.1200 ... 2016-06-21T00:38:02.511Z 56km NNE of Port-Vila, Vanuatu earthquake 11.00 8.50 0.093 35.0 reviewed us us
17 2016-06-20T23:24:38.390Z 36.018167 -117.804000 0.870 1.60 ml 17.0 103.00 0.032180 0.1500 ... 2016-06-20T23:28:29.123Z 13km NE of Little Lake, CA earthquake 0.27 0.32 0.172 25.0 automatic ci ci
18 2016-06-20T23:02:19.000Z 64.968000 -147.376900 4.500 1.00 ml NaN NaN NaN 0.8600 ... 2016-06-20T23:52:15.615Z 20km NNE of Badger, Alaska earthquake 0.20 0.90 NaN NaN automatic ak ak
19 2016-06-20T22:56:41.353Z 39.601000 -119.064400 12.200 1.30 ml 5.0 170.74 0.271000 0.1446 ... 2016-06-20T23:52:26.404Z 16km E of Fernley, Nevada earthquake NaN 7.60 0.270 4.0 reviewed nn nn
20 2016-06-20T22:49:14.000Z 39.336000 -122.789333 12.950 1.57 md 6.0 246.00 0.146300 0.0300 ... 2016-06-21T03:19:03.457Z 21km NNE of Upper Lake, California earthquake 1.04 2.13 0.242 5.0 reviewed nc nc
21 2016-06-20T22:45:49.700Z 32.546667 -115.290167 20.700 2.02 ml 12.0 97.00 0.127400 0.2500 ... 2016-06-20T22:49:39.542Z 6km ESE of Puebla, B.C., MX earthquake 0.84 1.28 0.262 23.0 automatic ci ci
22 2016-06-20T22:41:35.500Z 18.535100 -65.589500 34.000 3.20 Md 19.0 187.20 0.363818 0.2300 ... 2016-06-20T23:20:19.115Z 22km NE of Luquillo, Puerto Rico earthquake 1.20 2.10 0.000 18.0 reviewed pr pr
23 2016-06-20T22:29:38.700Z -17.622700 -178.765700 536.530 4.40 mb NaN 118.00 3.035000 0.9100 ... 2016-06-20T23:16:37.717Z 238km SE of Lambasa, Fiji earthquake 13.50 7.50 0.064 70.0 reviewed us us
24 2016-06-20T22:24:36.600Z 37.538333 -118.864333 7.010 1.15 md 16.0 156.00 0.058710 0.0200 ... 2016-06-21T02:07:02.224Z 15km SE of Mammoth Lakes, California earthquake 0.39 0.80 0.331 15.0 reviewed nc nc
25 2016-06-20T22:16:02.980Z 38.757832 -122.713333 0.110 1.22 md 11.0 171.00 0.015080 0.0400 ... 2016-06-21T02:01:04.209Z 4km ESE of The Geysers, California earthquake 0.31 0.61 0.100 5.0 automatic nc nc
26 2016-06-20T22:06:49.000Z 61.430800 -146.647300 20.700 1.90 ml NaN NaN NaN 0.6800 ... 2016-06-20T22:45:34.212Z 37km NNW of Valdez, Alaska earthquake 0.20 0.20 NaN NaN automatic ak ak
27 2016-06-20T21:47:17.000Z 61.563100 -146.489300 30.400 1.70 ml NaN NaN NaN 0.8500 ... 2016-06-20T22:13:35.262Z 48km N of Valdez, Alaska earthquake 0.30 0.20 NaN NaN automatic ak ak
28 2016-06-20T21:28:03.000Z 63.484700 -147.850500 0.000 1.20 ml NaN NaN NaN 0.6800 ... 2016-06-20T22:13:33.106Z 55km E of Cantwell, Alaska earthquake 0.50 0.70 NaN NaN automatic ak ak
29 2016-06-20T21:26:39.320Z 37.648833 -122.475500 10.190 1.11 md 7.0 206.00 0.011630 0.0900 ... 2016-06-21T02:41:03.324Z 3km SSW of Colma, California earthquake 0.68 0.50 0.027 5.0 reviewed nc nc
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
5440 2016-05-22T08:58:32.180Z 41.657500 23.254700 10.000 4.30 mwr NaN 35.00 0.959000 0.9600 ... 2016-06-12T12:45:02.903Z 5km ENE of Strumyani, Bulgaria earthquake 3.60 1.90 0.056 31.0 reviewed us us
5441 2016-05-22T08:57:23.000Z 59.737000 -152.567600 84.700 1.50 ml NaN NaN NaN 0.2300 ... 2016-05-29T22:07:06.849Z 41km W of Anchor Point, Alaska earthquake 0.70 0.80 NaN NaN reviewed ak ak
5442 2016-05-22T08:19:10.000Z 59.275000 -152.410200 70.300 1.80 ml NaN NaN NaN 0.2500 ... 2016-05-29T22:07:26.553Z 63km SW of Homer, Alaska earthquake 0.80 1.00 NaN NaN reviewed ak ak
5443 2016-05-22T08:16:36.070Z 36.574333 -121.042000 7.940 1.49 md 19.0 79.00 0.004583 0.1100 ... 2016-05-25T03:36:03.486Z 30km ENE of Soledad, California earthquake 0.59 0.46 0.109 17.0 reviewed nc nc
5444 2016-05-22T08:07:10.250Z 39.124100 142.290900 55.040 4.40 mb NaN 135.00 1.719000 0.7400 ... 2016-06-12T12:05:46.782Z 38km ESE of Kamaishi, Japan earthquake 8.10 8.70 0.123 19.0 reviewed us us
5445 2016-05-22T07:54:20.540Z 40.220500 -121.159667 3.810 1.28 md 8.0 172.00 0.267500 0.1500 ... 2016-05-23T23:57:04.069Z 11km SSE of Chester, California earthquake 0.47 7.90 0.150 7.0 reviewed nc nc
5446 2016-05-22T07:54:13.670Z 34.026167 -117.266000 16.500 1.21 ml 48.0 28.00 0.073010 0.2000 ... 2016-05-23T13:55:44.780Z 2km S of Loma Linda, CA earthquake 0.23 0.54 0.165 27.0 reviewed ci ci
5447 2016-05-22T07:53:31.520Z 38.798000 -122.734333 2.070 1.32 md 48.0 51.00 0.014860 0.0600 ... 2016-06-02T19:18:09.158Z 2km SSW of Cobb, California earthquake 0.16 0.21 0.230 17.0 reviewed nc nc
5448 2016-05-22T07:43:27.190Z 38.785667 -122.747833 1.310 1.09 md 12.0 185.00 0.009015 0.0200 ... 2016-05-22T08:07:03.530Z 1km NE of The Geysers, California earthquake 0.50 0.63 0.150 4.0 automatic nc nc
5449 2016-05-22T07:38:16.930Z 32.168667 -115.323000 4.790 2.44 ml 20.0 219.00 0.248500 0.3600 ... 2016-05-26T17:37:44.433Z 16km WSW of Alberto Oviedo Mota, B.C., MX earthquake 0.97 31.61 0.140 25.0 reviewed ci ci
5450 2016-05-22T07:31:39.991Z 38.633000 -118.763500 8.700 1.10 ml 10.0 153.30 0.189000 0.0948 ... 2016-05-23T02:36:08.692Z 17km NW of Hawthorne, Nevada earthquake NaN 4.10 0.120 7.0 reviewed nn nn
5451 2016-05-22T07:31:04.000Z 65.596000 -145.405800 7.900 1.20 ml NaN NaN NaN 0.9200 ... 2016-05-30T18:09:44.925Z 35km WNW of Circle Hot Springs Station, Alaska earthquake 1.10 0.50 NaN NaN reviewed ak ak
5452 2016-05-22T07:27:42.700Z 36.615800 -98.801200 6.113 2.60 ml NaN 82.00 NaN 0.4400 ... 2016-06-11T13:10:08.569Z 24km SSW of Alva, Oklahoma earthquake 2.50 7.40 NaN NaN reviewed tul tul
5453 2016-05-22T07:26:36.600Z 37.906333 -122.138000 12.510 1.09 md 40.0 39.00 0.067000 0.1300 ... 2016-06-02T19:18:03.158Z 2km NW of Lafayette, California earthquake 0.21 0.36 0.151 27.0 reviewed nc nc
5454 2016-05-22T07:20:46.000Z 53.359100 -167.346800 74.000 2.50 ml NaN NaN NaN 0.2100 ... 2016-06-12T05:38:40.056Z 78km SW of Unalaska, Alaska earthquake 10.40 8.40 NaN NaN reviewed ak ak
5455 2016-05-22T07:10:54.000Z 53.667000 -165.604200 46.900 1.80 ml NaN NaN NaN 0.1900 ... 2016-05-29T22:07:06.116Z 53km SSE of Akutan, Alaska earthquake 4.20 4.20 NaN NaN reviewed ak ak
5456 2016-05-22T07:00:20.300Z 37.568167 -118.856833 4.960 1.17 md 28.0 88.00 0.031010 0.0300 ... 2016-06-02T19:18:00.157Z 13km SE of Mammoth Lakes, California earthquake 0.22 0.52 0.162 22.0 reviewed nc nc
5457 2016-05-22T06:49:43.940Z 35.306667 -118.595667 3.940 1.18 ml 14.0 125.00 0.107200 0.1100 ... 2016-05-23T13:55:44.328Z 24km NW of Tehachapi, CA earthquake 0.27 0.86 0.168 17.0 reviewed ci ci
5458 2016-05-22T06:49:17.000Z 61.426500 -151.465500 76.700 1.40 ml NaN NaN NaN 0.4300 ... 2016-05-29T22:07:05.400Z 81km W of Big Lake, Alaska earthquake 0.70 0.40 NaN NaN reviewed ak ak
5459 2016-05-22T06:32:41.940Z -12.342200 166.620700 34.670 4.30 mb NaN 196.00 3.137000 0.4800 ... 2016-06-12T11:26:16.231Z 198km NNW of Sola, Vanuatu earthquake 15.20 13.10 0.168 12.0 reviewed us us
5460 2016-05-22T06:29:35.900Z 36.549700 -97.063900 5.845 2.90 ml NaN 80.00 NaN 0.3600 ... 2016-06-12T08:16:43.463Z 14km S of McCord, Oklahoma earthquake 1.50 7.70 NaN NaN reviewed tul tul
5461 2016-05-22T06:25:27.070Z 38.628900 22.913400 16.820 4.00 mwr NaN 56.00 1.645000 1.0600 ... 2016-06-12T12:16:26.697Z 7km WSW of Atalanti, Greece earthquake 4.90 5.80 0.063 24.0 reviewed us us
5462 2016-05-22T06:14:29.000Z 18.526100 -64.079100 37.000 2.20 Md 3.0 352.80 0.685415 0.0900 ... 2016-05-22T07:53:21.080Z 58km ENE of Road Town, British Virgin Islands earthquake 5.60 3.20 0.000 3.0 reviewed pr pr
5463 2016-05-22T06:11:34.550Z 36.735400 142.243500 24.810 4.10 mwr NaN 166.00 1.619000 0.6700 ... 2016-06-12T08:30:18.576Z 126km ESE of Iwaki, Japan earthquake 6.70 6.30 0.069 20.0 reviewed us us
5464 2016-05-22T06:11:07.000Z 59.965300 -153.481700 141.000 2.00 ml NaN NaN NaN 0.5600 ... 2016-05-29T22:07:49.330Z 70km SW of Redoubt Volcano, Alaska earthquake 0.60 0.60 NaN NaN reviewed ak ak
5465 2016-05-22T05:54:12.270Z 39.385167 -120.583000 1.830 1.49 md 16.0 94.00 0.206200 0.0700 ... 2016-05-27T02:16:03.843Z 28km SE of Downieville, California earthquake 0.44 2.53 0.442 16.0 reviewed nc nc
5466 2016-05-22T05:42:05.200Z 19.409834 -155.274826 1.190 1.94 ml 18.0 42.00 0.006156 0.2000 ... 2016-05-22T17:52:06.970Z 4km WSW of Volcano, Hawaii earthquake 0.16 0.29 0.290 19.0 reviewed hv hv
5467 2016-05-22T05:26:05.000Z 51.756100 -178.608100 27.300 3.10 ml NaN NaN NaN 1.3700 ... 2016-06-12T04:35:07.268Z 35km WSW of Tanaga Volcano, Alaska earthquake 11.30 8.60 NaN NaN reviewed ak ak
5468 2016-05-22T05:01:22.000Z 61.812100 -148.219800 33.100 1.00 ml NaN NaN NaN 0.4300 ... 2016-05-29T22:07:03.707Z 33km E of Sutton-Alpine, Alaska earthquake 0.40 0.50 NaN NaN reviewed ak ak
5469 2016-05-22T04:58:19.800Z 19.108600 -64.781300 54.000 2.30 Md 4.0 320.40 0.770755 0.3100 ... 2016-05-22T07:51:44.756Z 78km NNW of Road Town, British Virgin Islands earthquake 11.10 19.40 0.000 3.0 reviewed pr pr

5470 rows × 22 columns


In [342]:
earthquakes


Out[342]:
[{'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-21T04:51:04.714Z'},
 {'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': 27.0,
  'depthError': nan,
  'dmin': 0.331,
  'gap': 195.43,
  'horizontalError': nan,
  'id': 'nn00548751',
  'latitude': 37.0985,
  'locationSource': 'nn',
  'longitude': -114.9252,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 14.0,
  'place': '36km SE of Alamo, Nevada',
  'rms': nan,
  'status': 'automatic',
  'time': '2016-06-21T04:09:45.800Z',
  'type': 'earthquake',
  'updated': '2016-06-21T04:12:25.883Z'},
 {'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': -2.78,
  'depthError': 0.84,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'mb80156494',
  'latitude': 46.657501200000006,
  'locationSource': 'mb',
  'longitude': -112.2598343,
  'mag': 3.03,
  'magError': 0.23,
  'magNst': 10.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': nan,
  'place': '13km WNW of Helena West Side, Montana',
  'rms': nan,
  'status': 'reviewed',
  'time': '2016-06-21T03:46:08.530Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:58:38.932Z'},
 {'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': 'automatic',
  'time': '2016-06-21T03:21:25.740Z',
  'type': 'earthquake',
  'updated': '2016-06-21T03:31:46.160Z'},
 {'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': 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.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-21T00:54:13.520Z'},
 {'depth': 3.4,
  'depthError': 1.67,
  'dmin': 0.06544,
  'gap': 124.0,
  'horizontalError': 1.22,
  'id': 'ci37393639',
  'latitude': 34.1623333,
  'locationSource': 'ci',
  'longitude': -118.49583329999999,
  'mag': 1.58,
  'magError': 0.336,
  'magNst': 33.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 13.0,
  'place': '0km NE of Encino, CA',
  'rms': 0.33,
  'status': 'automatic',
  'time': '2016-06-21T00:14:55.970Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:18:34.661Z'},
 {'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': 1.74,
  'depthError': 0.59,
  'dmin': 0.1024,
  'gap': 58.0,
  'horizontalError': 0.27,
  'id': 'ci37393631',
  'latitude': 36.037833299999996,
  'locationSource': 'ci',
  'longitude': -117.36516670000002,
  'mag': 2.43,
  'magError': 0.115,
  'magNst': 25.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 28.0,
  'place': '30km N of Searles Valley, CA',
  'rms': 0.17,
  'status': 'automatic',
  'time': '2016-06-21T00:04:44.680Z',
  'type': 'earthquake',
  'updated': '2016-06-21T00:15:56.810Z'},
 {'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': 'automatic',
  'time': '2016-06-20T23:24:38.390Z',
  'type': 'earthquake',
  'updated': '2016-06-20T23:28:29.123Z'},
 {'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': 20.7,
  'depthError': 1.28,
  'dmin': 0.1274,
  'gap': 97.0,
  'horizontalError': 0.84,
  'id': 'ci37393591',
  'latitude': 32.5466667,
  'locationSource': 'ci',
  'longitude': -115.29016670000001,
  'mag': 2.02,
  'magError': 0.262,
  'magNst': 23.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 12.0,
  'place': '6km ESE of Puebla, B.C., MX',
  'rms': 0.25,
  'status': 'automatic',
  'time': '2016-06-20T22:45:49.700Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:49:39.542Z'},
 {'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': 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': 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': 0.07,
  'depthError': 31.61,
  'dmin': 0.06423999999999999,
  'gap': 52.0,
  'horizontalError': 0.39,
  'id': 'ci37393487',
  'latitude': 35.0525,
  'locationSource': 'ci',
  'longitude': -118.32,
  'mag': 1.18,
  'magError': 0.1,
  'magNst': 23.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '13km W of Mojave, CA',
  'rms': 0.17,
  'status': 'automatic',
  'time': '2016-06-20T20:14:52.180Z',
  'type': 'earthquake',
  'updated': '2016-06-20T20:18:47.730Z'},
 {'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.57,
  'depthError': 31.61,
  'dmin': 0.08716,
  'gap': 52.0,
  'horizontalError': 0.54,
  'id': 'ci37393423',
  'latitude': 33.8766667,
  'locationSource': 'ci',
  'longitude': -117.522,
  'mag': 1.69,
  'magError': 0.395,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 17.0,
  'place': '0km SSW of Home Gardens, CA',
  'rms': 0.23,
  'status': 'automatic',
  'time': '2016-06-20T19:07:36.040Z',
  'type': 'quarry blast',
  'updated': '2016-06-20T19:11:32.255Z'},
 {'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': 6.81,
  'depthError': 0.79,
  'dmin': 0.1167,
  'gap': 58.0,
  'horizontalError': 0.19,
  'id': 'ci37393407',
  'latitude': 34.4325,
  'locationSource': 'ci',
  'longitude': -116.49633329999999,
  'mag': 2.27,
  'magError': 0.16899999999999998,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 54.0,
  'place': '36km N of Yucca Valley, CA',
  'rms': 0.2,
  'status': 'automatic',
  'time': '2016-06-20T18:56:40.340Z',
  'type': 'earthquake',
  'updated': '2016-06-20T19:08:02.340Z'},
 {'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': 'automatic',
  'time': '2016-06-20T17:12:52.370Z',
  'type': 'earthquake',
  'updated': '2016-06-20T17:23:14.950Z'},
 {'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': 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': 10.33,
  'depthError': 0.41,
  'dmin': 0.07063,
  'gap': 96.0,
  'horizontalError': 0.25,
  'id': 'ci37393015',
  'latitude': 33.472666700000005,
  'locationSource': 'ci',
  'longitude': -116.48466670000002,
  'mag': 1.27,
  'magError': 0.157,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 38.0,
  'place': '20km ESE of Anza, CA',
  'rms': 0.2,
  'status': 'automatic',
  'time': '2016-06-20T13:59:08.650Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:10:21.030Z'},
 {'depth': 12.82,
  'depthError': 1.13,
  'dmin': 0.01938,
  'gap': 89.0,
  'horizontalError': 0.8,
  'id': 'ci37393007',
  'latitude': 33.5419998,
  'locationSource': 'ci',
  'longitude': -116.5169983,
  'mag': 1.68,
  'magError': 0.27899999999999997,
  'magNst': 11.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '15km E of Anza, California',
  'rms': 0.31,
  'status': 'automatic',
  'time': '2016-06-20T13:59:06.570Z',
  'type': 'earthquake',
  'updated': '2016-06-20T14:01:26.874Z'},
 {'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.41,
  'depthError': 2.74,
  'dmin': 0.06117,
  'gap': 101.0,
  'horizontalError': 0.65,
  'id': 'nc72653396',
  'latitude': 39.0245,
  'locationSource': 'nc',
  'longitude': -123.46683329999999,
  'mag': 1.19,
  'magError': 0.12,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 6.0,
  'place': '8km W of Boonville, California',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-20T11:15:01.370Z',
  'type': 'earthquake',
  'updated': '2016-06-20T22:03:04.477Z'},
 {'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-21T02:35:39.108Z'},
 {'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-21T02:35:23.769Z'},
 {'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-21T03:33:22.131Z'},
 {'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': 0.06,
  'depthError': 31.61,
  'dmin': 0.2603,
  'gap': 210.0,
  'horizontalError': 2.11,
  'id': 'ci37392575',
  'latitude': 33.9921667,
  'locationSource': 'ci',
  'longitude': -117.76100000000001,
  'mag': 1.84,
  'magError': 0.201,
  'magNst': 7.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 5.0,
  'place': '0km SW of Chino Hills, CA',
  'rms': 0.19,
  'status': 'automatic',
  'time': '2016-06-20T00:02:57.140Z',
  'type': 'earthquake',
  'updated': '2016-06-20T00:06:41.863Z'},
 {'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-21T01:56:37.000Z'},
 {'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.23,
  'depthError': 0.35,
  'dmin': 0.004215,
  'gap': 50.0,
  'horizontalError': 0.16,
  'id': 'nc72653171',
  'latitude': 38.8093338,
  'locationSource': 'nc',
  'longitude': -122.78266909999999,
  'mag': 1.7,
  'magError': 0.11,
  'magNst': 8.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 24.0,
  'place': '4km NNW of The Geysers, California',
  'rms': 0.06,
  'status': 'automatic',
  'time': '2016-06-19T21:56:56.920Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:27:04.508Z'},
 {'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': 2.24,
  'depthError': 0.8,
  'dmin': 0.03685,
  'gap': 116.0,
  'horizontalError': 0.52,
  'id': 'nc72653146',
  'latitude': 36.6053352,
  'locationSource': 'nc',
  'longitude': -121.2160034,
  'mag': 1.44,
  'magError': 0.07,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 12.0,
  'place': '22km NNE of Soledad, California',
  'rms': 0.1,
  'status': 'automatic',
  'time': '2016-06-19T20:14:27.910Z',
  'type': 'earthquake',
  'updated': '2016-06-19T20:47:02.184Z'},
 {'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.9,
  'depthError': 4.55,
  'dmin': 0.01144,
  'gap': 200.0,
  'horizontalError': 1.4,
  'id': 'nc72653081',
  'latitude': 38.7826653,
  'locationSource': 'nc',
  'longitude': -122.79033659999999,
  'mag': 1.55,
  'magError': nan,
  'magNst': 1.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 9.0,
  'place': '3km WNW of The Geysers, California',
  'rms': 0.15,
  'status': 'automatic',
  'time': '2016-06-19T13:51:28.480Z',
  'type': 'earthquake',
  'updated': '2016-06-19T14:30:04.097Z'},
 {'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-21T03:03:03.454Z'},
 {'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': 0.71,
  'depthError': 31.61,
  'dmin': 0.2724,
  'gap': 167.0,
  'horizontalError': 1.06,
  'id': 'ci37391967',
  'latitude': 33.2855,
  'locationSource': 'ci',
  'longitude': -116.041,
  'mag': 1.06,
  'magError': 0.159,
  'magNst': 23.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 14.0,
  'place': '8km W of Salton City, CA',
  'rms': 0.25,
  'status': 'automatic',
  'time': '2016-06-19T12:13:14.650Z',
  'type': 'earthquake',
  'updated': '2016-06-19T12:17:11.231Z'},
 {'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-21T04:26:01.645Z'},
 {'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': 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': 2.56,
  'depthError': 31.61,
  'dmin': 0.5494,
  'gap': 280.0,
  'horizontalError': 1.62,
  'id': 'nc72652381',
  'latitude': 38.2085,
  'locationSource': 'nc',
  'longitude': -119.3355,
  'mag': 2.14,
  'magError': 0.121,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 8.0,
  'place': '10km W of Bridgeport, California',
  'rms': 0.03,
  'status': 'reviewed',
  'time': '2016-06-17T20:59:25.550Z',
  'type': 'earthquake',
  'updated': '2016-06-18T19:41:54.128Z'},
 {'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'},
 {'depth': 13.9,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13653752',
  'latitude': 62.5139,
  'locationSource': 'ak',
  'longitude': -142.9078,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '91km S of Tok, Alaska',
  'rms': 0.44,
  'status': 'reviewed',
  'time': '2016-06-14T23:22:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:49:10.728Z'},
 {'depth': 77.5,
  'depthError': 1.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13653751',
  'latitude': 60.4931,
  'locationSource': 'ak',
  'longitude': -152.0549,
  'mag': 1.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '37km E of Redoubt Volcano, Alaska',
  'rms': 0.32,
  'status': 'reviewed',
  'time': '2016-06-14T23:09:12.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:27.341Z'},
 {'depth': 5.89,
  'depthError': 0.89,
  'dmin': 0.042,
  'gap': 66.0,
  'horizontalError': 0.67,
  'id': 'mb80154814',
  'latitude': 44.341,
  'locationSource': 'mb',
  'longitude': -114.03466670000002,
  'mag': 1.22,
  'magError': 0.111,
  'magNst': 5.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 7.0,
  'place': '24km SE of Challis, Idaho',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-14T23:05:28.940Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:19:35.840Z'},
 {'depth': 10.0,
  'depthError': 1.6,
  'dmin': 0.6779999999999999,
  'gap': 192.0,
  'horizontalError': 3.8,
  'id': 'us200064ft',
  'latitude': -32.2731,
  'locationSource': 'us',
  'longitude': -72.0246,
  'mag': 3.9,
  'magError': 0.298,
  'magNst': 3.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '77km WNW of La Ligua, Chile',
  'rms': 1.02,
  'status': 'reviewed',
  'time': '2016-06-14T23:05:19.690Z',
  'type': 'earthquake',
  'updated': '2016-06-14T23:52:40.059Z'},
 {'depth': 7.61,
  'depthError': 0.36,
  'dmin': 0.028999999999999998,
  'gap': 70.0,
  'horizontalError': 0.4,
  'id': 'mb80154794',
  'latitude': 44.3546667,
  'locationSource': 'mb',
  'longitude': -114.04533329999998,
  'mag': 1.37,
  'magError': 0.077,
  'magNst': 3.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 7.0,
  'place': '22km SE of Challis, Idaho',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-14T22:55:14.740Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:25:16.290Z'},
 {'depth': 10.21,
  'depthError': 0.26,
  'dmin': 0.019,
  'gap': 72.0,
  'horizontalError': 0.31,
  'id': 'mb80154774',
  'latitude': 44.3725,
  'locationSource': 'mb',
  'longitude': -114.05983329999998,
  'mag': 2.25,
  'magError': 0.1,
  'magNst': 7.0,
  'magSource': 'mb',
  'magType': 'ml',
  'net': 'mb',
  'nst': 15.0,
  'place': '20km SE of Challis, Idaho',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-14T22:47:20.490Z',
  'type': 'earthquake',
  'updated': '2016-06-14T23:23:06.640Z'},
 {'depth': -0.15,
  'depthError': 31.61,
  'dmin': 0.09735,
  'gap': 153.0,
  'horizontalError': 0.8,
  'id': 'ci37387143',
  'latitude': 33.0683333,
  'locationSource': 'ci',
  'longitude': -114.99833329999998,
  'mag': 1.57,
  'magError': 0.33399999999999996,
  'magNst': 5.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 8.0,
  'place': '46km NE of Holtville, CA',
  'rms': 0.18,
  'status': 'reviewed',
  'time': '2016-06-14T22:45:03.900Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T23:49:15.795Z'},
 {'depth': 113.41,
  'depthError': 5.3,
  'dmin': 0.49700000000000005,
  'gap': 28.0,
  'horizontalError': 4.3,
  'id': 'us200064fk',
  'latitude': -21.1132,
  'locationSource': 'us',
  'longitude': -68.9602,
  'mag': 4.7,
  'magError': 0.087,
  'magNst': 40.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '149km N of Calama, Chile',
  'rms': 0.89,
  'status': 'reviewed',
  'time': '2016-06-14T22:42:24.760Z',
  'type': 'earthquake',
  'updated': '2016-06-14T23:24:41.709Z'},
 {'depth': 14.81,
  'depthError': 0.56,
  'dmin': 0.0154,
  'gap': 72.0,
  'horizontalError': 0.49,
  'id': 'ci37387119',
  'latitude': 33.5775,
  'locationSource': 'ci',
  'longitude': -116.72583329999999,
  'mag': 1.0,
  'magError': 0.135,
  'magNst': 28.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '5km WNW of Anza, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-14T22:42:19.420Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:58:26.816Z'},
 {'depth': 10.0,
  'depthError': 1.9,
  'dmin': 27.42,
  'gap': 56.0,
  'horizontalError': 12.3,
  'id': 'us200064fn',
  'latitude': -20.6452,
  'locationSource': 'us',
  'longitude': -11.5561,
  'mag': 5.0,
  'magError': 0.075,
  'magNst': 57.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': 'Southern Mid-Atlantic Ridge',
  'rms': 0.71,
  'status': 'reviewed',
  'time': '2016-06-14T22:42:17.440Z',
  'type': 'earthquake',
  'updated': '2016-06-14T23:01:03.684Z'},
 {'depth': 5.57,
  'depthError': 0.94,
  'dmin': 0.08892,
  'gap': 92.0,
  'horizontalError': 0.37,
  'id': 'ci37387095',
  'latitude': 32.95,
  'locationSource': 'ci',
  'longitude': -115.56683329999998,
  'mag': 1.64,
  'magError': 0.153,
  'magNst': 36.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 22.0,
  'place': '5km SW of Brawley, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-14T22:35:07.450Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:43:40.235Z'},
 {'depth': 9.24,
  'depthError': 0.68,
  'dmin': 0.07914,
  'gap': 106.0,
  'horizontalError': 0.29,
  'id': 'ci37387087',
  'latitude': 33.4475,
  'locationSource': 'ci',
  'longitude': -116.45333329999998,
  'mag': 1.17,
  'magError': 0.177,
  'magNst': 26.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '22km NNW of Borrego Springs, CA',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-14T22:33:36.560Z',
  'type': 'earthquake',
  'updated': '2016-06-15T13:58:41.080Z'},
 {'depth': 3.78,
  'depthError': 0.71,
  'dmin': 0.08473,
  'gap': 76.0,
  'horizontalError': 0.37,
  'id': 'ci37387079',
  'latitude': 32.9535,
  'locationSource': 'ci',
  'longitude': -115.575,
  'mag': 1.65,
  'magError': 0.136,
  'magNst': 37.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 25.0,
  'place': '5km SW of Brawley, CA',
  'rms': 0.29,
  'status': 'reviewed',
  'time': '2016-06-14T22:30:59.840Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:38:03.823Z'},
 {'depth': 63.6,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13647843',
  'latitude': 59.7433,
  'locationSource': 'ak',
  'longitude': -151.8207,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '3km S of Anchor Point, Alaska',
  'rms': 0.34,
  'status': 'reviewed',
  'time': '2016-06-14T22:30:25.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:19.158Z'},
 {'depth': 2.95,
  'depthError': 0.57,
  'dmin': 0.08484,
  'gap': 89.0,
  'horizontalError': 0.3,
  'id': 'ci37387071',
  'latitude': 32.9533333,
  'locationSource': 'ci',
  'longitude': -115.57600000000001,
  'mag': 1.47,
  'magError': 0.083,
  'magNst': 6.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 13.0,
  'place': '5km WSW of Brawley, CA',
  'rms': 0.17,
  'status': 'reviewed',
  'time': '2016-06-14T22:27:47.080Z',
  'type': 'earthquake',
  'updated': '2016-06-16T23:28:25.275Z'},
 {'depth': 3.14,
  'depthError': 1.01,
  'dmin': 0.08444,
  'gap': 75.0,
  'horizontalError': 0.42,
  'id': 'ci37387063',
  'latitude': 32.9538333,
  'locationSource': 'ci',
  'longitude': -115.57433329999999,
  'mag': 1.49,
  'magError': 0.177,
  'magNst': 29.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 15.0,
  'place': '5km SW of Brawley, CA',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-14T22:27:13.340Z',
  'type': 'earthquake',
  'updated': '2016-06-16T20:48:59.973Z'},
 {'depth': 12.23,
  'depthError': 0.31,
  'dmin': 0.016730000000000002,
  'gap': 31.0,
  'horizontalError': 0.18,
  'id': 'ci37387047',
  'latitude': 33.5806667,
  'locationSource': 'ci',
  'longitude': -116.729,
  'mag': 1.54,
  'magError': 0.23199999999999998,
  'magNst': 27.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 50.0,
  'place': '6km WNW of Anza, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-14T22:20:28.880Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:00:25.720Z'},
 {'depth': 77.9,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13653748',
  'latitude': 61.641999999999996,
  'locationSource': 'ak',
  'longitude': -151.4225,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '74km W of Willow, Alaska',
  'rms': 0.68,
  'status': 'reviewed',
  'time': '2016-06-14T22:13:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:25.337Z'},
 {'depth': 10.0,
  'depthError': 1.8,
  'dmin': 5.945,
  'gap': 33.0,
  'horizontalError': 7.6,
  'id': 'us200064fb',
  'latitude': -4.6065,
  'locationSource': 'us',
  'longitude': 137.9651,
  'mag': 5.6,
  'magError': 0.048,
  'magNst': 155.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '194km ESE of Enarotali, Indonesia',
  'rms': 0.72,
  'status': 'reviewed',
  'time': '2016-06-14T22:09:26.030Z',
  'type': 'earthquake',
  'updated': '2016-06-15T22:57:20.000Z'},
 {'depth': 5.62,
  'depthError': 1.12,
  'dmin': 0.08691,
  'gap': 77.0,
  'horizontalError': 0.35,
  'id': 'ci37387015',
  'latitude': 32.9515,
  'locationSource': 'ci',
  'longitude': -115.57216670000001,
  'mag': 1.35,
  'magError': 0.16899999999999998,
  'magNst': 18.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 17.0,
  'place': '5km SW of Brawley, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-14T22:02:59.430Z',
  'type': 'earthquake',
  'updated': '2016-06-14T23:23:50.284Z'},
 {'depth': 67.96,
  'depthError': 9.3,
  'dmin': 1.1340000000000001,
  'gap': 93.0,
  'horizontalError': 3.0,
  'id': 'us200064f7',
  'latitude': 2.4166,
  'locationSource': 'us',
  'longitude': 97.833,
  'mag': 4.6,
  'magError': 0.10300000000000001,
  'magNst': 28.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '93km W of Harian, Indonesia',
  'rms': 0.64,
  'status': 'reviewed',
  'time': '2016-06-14T22:00:21.170Z',
  'type': 'earthquake',
  'updated': '2016-06-14T23:31:05.026Z'},
 {'depth': 40.3,
  'depthError': 13.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 8.0,
  'id': 'ak13653747',
  'latitude': 53.4843,
  'locationSource': 'ak',
  'longitude': -165.153,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '83km SSE of Akutan, Alaska',
  'rms': 0.31,
  'status': 'reviewed',
  'time': '2016-06-14T21:58:02.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:23.300Z'},
 {'depth': 241.7,
  'depthError': 1.8,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 10.3,
  'id': 'ak13647610',
  'latitude': 52.7833,
  'locationSource': 'ak',
  'longitude': -173.5688,
  'mag': 3.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '78km NNE of Atka, Alaska',
  'rms': 0.64,
  'status': 'reviewed',
  'time': '2016-06-14T21:48:38.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:50:43.953Z'},
 {'depth': 10.63,
  'depthError': 0.71,
  'dmin': 0.07751,
  'gap': 72.0,
  'horizontalError': 0.33,
  'id': 'ci37386983',
  'latitude': 32.9611667,
  'locationSource': 'ci',
  'longitude': -115.57016670000002,
  'mag': 2.01,
  'magError': 0.156,
  'magNst': 54.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 30.0,
  'place': '4km WSW of Brawley, CA',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-14T21:43:18.120Z',
  'type': 'earthquake',
  'updated': '2016-06-14T22:12:54.410Z'},
 {'depth': 12.71,
  'depthError': 0.54,
  'dmin': 0.0776,
  'gap': 67.0,
  'horizontalError': 0.2,
  'id': 'ci37386975',
  'latitude': 32.9608333,
  'locationSource': 'ci',
  'longitude': -115.57266670000001,
  'mag': 2.67,
  'magError': 0.156,
  'magNst': 107.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 49.0,
  'place': '4km WSW of Brawley, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-14T21:41:16.180Z',
  'type': 'earthquake',
  'updated': '2016-06-14T22:04:51.101Z'},
 {'depth': 10.79,
  'depthError': 0.73,
  'dmin': 0.07832,
  'gap': 73.0,
  'horizontalError': 0.37,
  'id': 'ci37386959',
  'latitude': 32.9601667,
  'locationSource': 'ci',
  'longitude': -115.572,
  'mag': 1.98,
  'magError': 0.133,
  'magNst': 53.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 26.0,
  'place': '4km WSW of Brawley, CA',
  'rms': 0.26,
  'status': 'reviewed',
  'time': '2016-06-14T21:30:35.950Z',
  'type': 'earthquake',
  'updated': '2016-06-14T22:22:07.720Z'},
 {'depth': 34.7,
  'depthError': 0.9,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13647605',
  'latitude': 51.4135,
  'locationSource': 'ak',
  'longitude': -176.9554,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '55km SSW of Adak, Alaska',
  'rms': 0.28,
  'status': 'reviewed',
  'time': '2016-06-14T21:30:01.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:16.148Z'},
 {'depth': 1.5,
  'depthError': 0.39,
  'dmin': 0.0062380000000000005,
  'gap': 89.0,
  'horizontalError': 0.19,
  'id': 'nc72651446',
  'latitude': 38.8436661,
  'locationSource': 'nc',
  'longitude': -122.8308334,
  'mag': 1.05,
  'magError': 0.19,
  'magNst': 5.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 21.0,
  'place': '9km WNW of Cobb, California',
  'rms': 0.03,
  'status': 'automatic',
  'time': '2016-06-14T21:27:42.490Z',
  'type': 'earthquake',
  'updated': '2016-06-14T21:48:02.428Z'},
 {'depth': 14.59,
  'depthError': 0.37,
  'dmin': 0.050960000000000005,
  'gap': 45.0,
  'horizontalError': 0.28,
  'id': 'ci37386951',
  'latitude': 33.6433333,
  'locationSource': 'ci',
  'longitude': -116.7888333,
  'mag': 1.65,
  'magError': 0.10800000000000001,
  'magNst': 6.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 31.0,
  'place': '12km SSW of Idyllwild, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-14T21:23:31.110Z',
  'type': 'earthquake',
  'updated': '2016-06-15T16:40:14.582Z'},
 {'depth': 14.39,
  'depthError': 0.34,
  'dmin': 0.07153,
  'gap': 66.0,
  'horizontalError': 0.16,
  'id': 'ci37386943',
  'latitude': 32.9675,
  'locationSource': 'ci',
  'longitude': -115.568,
  'mag': 3.48,
  'magError': nan,
  'magNst': 4.0,
  'magSource': 'ci',
  'magType': 'mw',
  'net': 'ci',
  'nst': 74.0,
  'place': '4km WSW of Brawley, CA',
  'rms': 0.24,
  'status': 'reviewed',
  'time': '2016-06-14T21:23:22.860Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:25:01.713Z'},
 {'depth': 25.6,
  'depthError': 1.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13647604',
  'latitude': 54.6021,
  'locationSource': 'ak',
  'longitude': -161.2367,
  'mag': 2.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '94km SSW of Sand Point, Alaska',
  'rms': 0.49,
  'status': 'reviewed',
  'time': '2016-06-14T21:18:13.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:31.279Z'},
 {'depth': -0.29,
  'depthError': 31.61,
  'dmin': 0.01317,
  'gap': 133.0,
  'horizontalError': 0.4,
  'id': 'nc72651436',
  'latitude': 37.3218333,
  'locationSource': 'nc',
  'longitude': -122.09933329999998,
  'mag': 1.44,
  'magError': 0.33799999999999997,
  'magNst': 7.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 9.0,
  'place': '11km E of Quarry near Portola Valley, CA',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-14T21:15:29.670Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T00:59:13.703Z'},
 {'depth': 23.0,
  'depthError': 8.9,
  'dmin': 0.38358063,
  'gap': 306.0,
  'horizontalError': 2.0,
  'id': 'pr16166009',
  'latitude': 18.7173,
  'locationSource': 'pr',
  'longitude': -64.7895,
  'mag': 1.7,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '37km NNW of Road Town, British Virgin Islands',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-14T20:55:11.200Z',
  'type': 'earthquake',
  'updated': '2016-06-15T01:09:01.072Z'},
 {'depth': 6.1,
  'depthError': 2.37,
  'dmin': 0.1327,
  'gap': 88.0,
  'horizontalError': 0.6,
  'id': 'uu60150837',
  'latitude': 38.7255,
  'locationSource': 'uu',
  'longitude': -112.53,
  'mag': 1.72,
  'magError': 0.09699999999999999,
  'magNst': 4.0,
  'magSource': 'uu',
  'magType': 'ml',
  'net': 'uu',
  'nst': 13.0,
  'place': '32km SSW of Fillmore, Utah',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-14T20:48:23.000Z',
  'type': 'earthquake',
  'updated': '2016-06-15T21:00:54.160Z'},
 {'depth': 2.38,
  'depthError': 0.18,
  'dmin': 0.006492,
  'gap': 63.0,
  'horizontalError': 0.12,
  'id': 'nc72651426',
  'latitude': 38.8228333,
  'locationSource': 'nc',
  'longitude': -122.84333329999998,
  'mag': 1.29,
  'magError': 0.20800000000000002,
  'magNst': 14.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 43.0,
  'place': '9km NW of The Geysers, California',
  'rms': 0.05,
  'status': 'reviewed',
  'time': '2016-06-14T20:47:06.930Z',
  'type': 'earthquake',
  'updated': '2016-06-15T20:43:02.801Z'},
 {'depth': 5.693,
  'depthError': 6.4,
  'dmin': nan,
  'gap': 96.0,
  'horizontalError': 1.3,
  'id': 'us200064ea',
  'latitude': 36.6168,
  'locationSource': 'tul',
  'longitude': -98.427,
  'mag': 2.7,
  'magError': nan,
  'magNst': nan,
  'magSource': 'tul',
  'magType': 'ml',
  'net': 'us',
  'nst': nan,
  'place': '16km SSW of Cherokee, Oklahoma',
  'rms': 0.77,
  'status': 'reviewed',
  'time': '2016-06-14T20:42:29.300Z',
  'type': 'earthquake',
  'updated': '2016-06-16T14:00:23.040Z'},
 {'depth': 1.0490000000000002,
  'depthError': 0.21,
  'dmin': 0.005907,
  'gap': 46.0,
  'horizontalError': 0.18,
  'id': 'hv61297766',
  'latitude': 19.4063333,
  'locationSource': 'hv',
  'longitude': -155.2791667,
  'mag': 1.82,
  'magError': 0.063,
  'magNst': 2.0,
  'magSource': 'hv',
  'magType': 'ml',
  'net': 'hv',
  'nst': 16.0,
  'place': '5km WSW of Volcano, Hawaii',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-14T20:37:24.990Z',
  'type': 'earthquake',
  'updated': '2016-06-14T22:30:42.640Z'},
 {'depth': 190.5,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 6.2,
  'id': 'ak13647377',
  'latitude': 52.6113,
  'locationSource': 'ak',
  'longitude': -174.5779,
  'mag': 3.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '52km NNW of Atka, Alaska',
  'rms': 0.3,
  'status': 'reviewed',
  'time': '2016-06-14T20:17:39.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:37.203Z'},
 {'depth': 45.2,
  'depthError': 1.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 2.8,
  'id': 'ak13647376',
  'latitude': 51.5897,
  'locationSource': 'ak',
  'longitude': -177.0074,
  'mag': 2.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '40km SW of Adak, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-14T20:12:10.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:16.310Z'},
 {'depth': 42.0,
  'depthError': 6.4,
  'dmin': 0.62522744,
  'gap': 298.8,
  'horizontalError': 3.1,
  'id': 'pr16166008',
  'latitude': 18.9116,
  'locationSource': 'pr',
  'longitude': -65.0955,
  'mag': 2.1,
  'magError': 0.0,
  'magNst': 3.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 3.0,
  'place': '65km NNW of Charlotte Amalie, U.S. Virgin Islands',
  'rms': 0.11,
  'status': 'reviewed',
  'time': '2016-06-14T20:00:16.500Z',
  'type': 'earthquake',
  'updated': '2016-06-15T01:07:35.767Z'},
 {'depth': 14.0,
  'depthError': 2.4,
  'dmin': 0.43568291,
  'gap': 280.8,
  'horizontalError': 1.9,
  'id': 'pr16166007',
  'latitude': 18.8199,
  'locationSource': 'pr',
  'longitude': -67.4261,
  'mag': 2.9,
  'magError': 0.0,
  'magNst': 5.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 12.0,
  'place': '50km NW of San Antonio, Puerto Rico',
  'rms': 0.2,
  'status': 'reviewed',
  'time': '2016-06-14T19:57:53.000Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:36:20.040Z'},
 {'depth': 1.11,
  'depthError': 0.59,
  'dmin': 0.005482,
  'gap': 90.0,
  'horizontalError': 0.25,
  'id': 'nc72651416',
  'latitude': 38.8181648,
  'locationSource': 'nc',
  'longitude': -122.78383640000001,
  'mag': 1.0,
  'magError': 0.01,
  'magNst': 2.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 13.0,
  'place': '5km W of Cobb, California',
  'rms': 0.04,
  'status': 'automatic',
  'time': '2016-06-14T19:57:50.440Z',
  'type': 'earthquake',
  'updated': '2016-06-14T21:36:03.404Z'},
 {'depth': -0.1,
  'depthError': 31.61,
  'dmin': 0.01823,
  'gap': 77.0,
  'horizontalError': 0.17,
  'id': 'nc72651411',
  'latitude': 36.8811667,
  'locationSource': 'nc',
  'longitude': -121.61433329999998,
  'mag': 1.33,
  'magError': 0.17,
  'magNst': 18.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 18.0,
  'place': '3km SSE of Quarry near Aromas, CA',
  'rms': 0.06,
  'status': 'reviewed',
  'time': '2016-06-14T19:56:44.370Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T22:19:22.063Z'},
 {'depth': 12.47,
  'depthError': 1.71,
  'dmin': 0.1686,
  'gap': 124.0,
  'horizontalError': 0.64,
  'id': 'nc72651686',
  'latitude': 40.5508333,
  'locationSource': 'nc',
  'longitude': -121.81366670000001,
  'mag': 1.13,
  'magError': 0.14300000000000002,
  'magNst': 8.0,
  'magSource': 'nc',
  'magType': 'md',
  'net': 'nc',
  'nst': 8.0,
  'place': '9km NE of Shingletown, California',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-14T19:42:50.390Z',
  'type': 'earthquake',
  'updated': '2016-06-15T19:25:02.855Z'},
 {'depth': 3.72,
  'depthError': 0.58,
  'dmin': 0.046239999999999996,
  'gap': 78.0,
  'horizontalError': 0.35,
  'id': 'ci37386855',
  'latitude': 32.760999999999996,
  'locationSource': 'ci',
  'longitude': -116.8965,
  'mag': 1.35,
  'magError': 0.10400000000000001,
  'magNst': 13.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 19.0,
  'place': '4km ENE of Rancho San Diego, CA',
  'rms': 0.16,
  'status': 'reviewed',
  'time': '2016-06-14T19:34:17.120Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T14:00:06.303Z'},
 {'depth': -0.66,
  'depthError': 31.61,
  'dmin': 0.1115,
  'gap': 211.0,
  'horizontalError': 1.12,
  'id': 'ci37386831',
  'latitude': 33.5571667,
  'locationSource': 'ci',
  'longitude': -117.50200000000001,
  'mag': 1.03,
  'magError': 0.106,
  'magNst': 14.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 18.0,
  'place': '10km ESE of Coto De Caza, CA',
  'rms': 0.23,
  'status': 'reviewed',
  'time': '2016-06-14T19:19:13.870Z',
  'type': 'quarry blast',
  'updated': '2016-06-14T20:56:09.317Z'},
 {'depth': -0.76,
  'depthError': 31.61,
  'dmin': 0.1262,
  'gap': 146.0,
  'horizontalError': 0.64,
  'id': 'ci37141604',
  'latitude': 35.002166700000004,
  'locationSource': 'ci',
  'longitude': -118.19433329999998,
  'mag': 1.17,
  'magError': 0.26899999999999996,
  'magNst': 4.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 5.0,
  'place': '6km SSW of Mojave, CA',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-14T19:09:50.690Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T23:27:48.596Z'},
 {'depth': 39.1,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13647368',
  'latitude': 61.6647,
  'locationSource': 'ak',
  'longitude': -150.2591,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '14km SW of Willow, Alaska',
  'rms': 0.58,
  'status': 'reviewed',
  'time': '2016-06-14T18:51:07.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:36:23.434Z'},
 {'depth': -0.99,
  'depthError': 31.61,
  'dmin': 0.06852000000000001,
  'gap': 94.0,
  'horizontalError': 0.27,
  'id': 'ci37386799',
  'latitude': 35.0591667,
  'locationSource': 'ci',
  'longitude': -118.33683329999998,
  'mag': 1.36,
  'magError': 0.105,
  'magNst': 12.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 16.0,
  'place': '13km SE of Tehachapi, CA',
  'rms': 0.1,
  'status': 'reviewed',
  'time': '2016-06-14T18:51:06.620Z',
  'type': 'quarry blast',
  'updated': '2016-06-15T23:16:24.496Z'},
 {'depth': 6.3,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13647369',
  'latitude': 59.6589,
  'locationSource': 'ak',
  'longitude': -138.7117,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '58km ENE of Yakutat, Alaska',
  'rms': 0.48,
  'status': 'reviewed',
  'time': '2016-06-14T18:50:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:12.138Z'},
 {'depth': -0.34,
  'depthError': 31.61,
  'dmin': 0.1122,
  'gap': 133.0,
  'horizontalError': 0.61,
  'id': 'uw61168031',
  'latitude': 43.593999999999994,
  'locationSource': 'uw',
  'longitude': -123.21366670000002,
  'mag': 1.05,
  'magError': 0.075,
  'magNst': 3.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 5.0,
  'place': '5km E of Yoncalla, Oregon',
  'rms': 0.19,
  'status': 'reviewed',
  'time': '2016-06-14T18:48:13.420Z',
  'type': 'explosion',
  'updated': '2016-06-14T19:50:16.970Z'},
 {'depth': 37.4,
  'depthError': 1.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.2,
  'id': 'ak13653738',
  'latitude': 51.4887,
  'locationSource': 'ak',
  'longitude': -177.5658,
  'mag': 1.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '59km SE of Tanaga Volcano, Alaska',
  'rms': 0.33,
  'status': 'reviewed',
  'time': '2016-06-14T18:48:05.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:14.325Z'},
 {'depth': 11.1,
  'depthError': 3.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 4.5,
  'id': 'ak13653737',
  'latitude': 51.9195,
  'locationSource': 'ak',
  'longitude': -173.303,
  'mag': 2.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '68km ESE of Atka, Alaska',
  'rms': 0.37,
  'status': 'reviewed',
  'time': '2016-06-14T18:38:40.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:12.304Z'},
 {'depth': 10.2,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.1,
  'id': 'ak13647362',
  'latitude': 65.2433,
  'locationSource': 'ak',
  'longitude': -148.8998,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '60km NW of Ester, Alaska',
  'rms': 0.63,
  'status': 'reviewed',
  'time': '2016-06-14T18:23:32.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:51:13.393Z'},
 {'depth': 3.0,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13647361',
  'latitude': 65.2516,
  'locationSource': 'ak',
  'longitude': -148.9241,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '62km NW of Ester, Alaska',
  'rms': 0.44,
  'status': 'reviewed',
  'time': '2016-06-14T18:22:52.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:49:07.281Z'},
 {'depth': 63.6,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13647358',
  'latitude': 61.7912,
  'locationSource': 'ak',
  'longitude': -150.8656,
  'mag': 1.9,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '43km W of Willow, Alaska',
  'rms': 0.4,
  'status': 'reviewed',
  'time': '2016-06-14T18:12:00.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:36:17.425Z'},
 {'depth': 12.9,
  'depthError': 0.5,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.9,
  'id': 'ak13647356',
  'latitude': 53.0879,
  'locationSource': 'ak',
  'longitude': -167.27700000000002,
  'mag': 2.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '100km SSW of Unalaska, Alaska',
  'rms': 0.53,
  'status': 'reviewed',
  'time': '2016-06-14T18:07:02.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:39:18.976Z'},
 {'depth': 85.7,
  'depthError': 0.6,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.7,
  'id': 'ak13653732',
  'latitude': 62.5373,
  'locationSource': 'ak',
  'longitude': -151.3081,
  'mag': 1.0,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '66km WNW of Talkeetna, Alaska',
  'rms': 0.38,
  'status': 'reviewed',
  'time': '2016-06-14T17:59:59.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:10.286Z'},
 {'depth': 62.6,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.4,
  'id': 'ak13647143',
  'latitude': 59.9409,
  'locationSource': 'ak',
  'longitude': -151.8076,
  'mag': 1.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '18km N of Anchor Point, Alaska',
  'rms': 0.27,
  'status': 'reviewed',
  'time': '2016-06-14T17:50:03.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:10.141Z'},
 {'depth': 1.57,
  'depthError': 15.0,
  'dmin': 0.1078,
  'gap': 211.0,
  'horizontalError': 2.59,
  'id': 'uu60150797',
  'latitude': 37.4455,
  'locationSource': 'uu',
  'longitude': -113.0495,
  'mag': 1.45,
  'magError': 0.318,
  'magNst': 4.0,
  'magSource': 'uu',
  'magType': 'md',
  'net': 'uu',
  'nst': 4.0,
  'place': '25km S of Cedar City, Utah',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-14T17:46:02.650Z',
  'type': 'earthquake',
  'updated': '2016-06-14T21:04:23.580Z'},
 {'depth': 6.4,
  'depthError': 1.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 1.7,
  'id': 'ak13653730',
  'latitude': 53.8598,
  'locationSource': 'ak',
  'longitude': -162.872,
  'mag': 2.3,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '115km SSE of False Pass, Alaska',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-14T17:45:56.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:08.300Z'},
 {'depth': 89.3,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.5,
  'id': 'ak13647141',
  'latitude': 60.3825,
  'locationSource': 'ak',
  'longitude': -152.3917,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '22km ESE of Redoubt Volcano, Alaska',
  'rms': 0.36,
  'status': 'reviewed',
  'time': '2016-06-14T17:40:05.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:37:08.907Z'},
 {'depth': 12.5,
  'depthError': 0.2,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.3,
  'id': 'ak13647139',
  'latitude': 60.0999,
  'locationSource': 'ak',
  'longitude': -134.1773,
  'mag': 2.2,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '64km NNW of Atlin, Canada',
  'rms': 0.61,
  'status': 'reviewed',
  'time': '2016-06-14T17:32:55.000Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:57.876Z'},
 {'depth': 12.4,
  'depthError': 0.1,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13647134',
  'latitude': 63.3091,
  'locationSource': 'ak',
  'longitude': -151.2784,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '116km W of Cantwell, Alaska',
  'rms': 0.57,
  'status': 'reviewed',
  'time': '2016-06-14T17:29:35.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:36:15.446Z'},
 {'depth': 55.04,
  'depthError': 4.6,
  'dmin': 0.248,
  'gap': 57.0,
  'horizontalError': 7.0,
  'id': 'us200064cs',
  'latitude': 51.6158,
  'locationSource': 'us',
  'longitude': -177.033,
  'mag': 5.1,
  'magError': 0.025,
  'magNst': 503.0,
  'magSource': 'us',
  'magType': 'mb',
  'net': 'us',
  'nst': nan,
  'place': '39km SW of Adak, Alaska',
  'rms': 0.76,
  'status': 'reviewed',
  'time': '2016-06-14T17:13:26.890Z',
  'type': 'earthquake',
  'updated': '2016-06-19T22:48:35.728Z'},
 {'depth': 16.64,
  'depthError': 0.67,
  'dmin': 0.06419,
  'gap': 102.0,
  'horizontalError': 0.45,
  'id': 'uw61167976',
  'latitude': 48.292333299999996,
  'locationSource': 'uw',
  'longitude': -122.72916670000001,
  'mag': 1.63,
  'magError': 0.2,
  'magNst': 6.0,
  'magSource': 'uw',
  'magType': 'ml',
  'net': 'uw',
  'nst': 9.0,
  'place': '6km W of Oak Harbor, Washington',
  'rms': 0.07,
  'status': 'reviewed',
  'time': '2016-06-14T17:11:07.130Z',
  'type': 'earthquake',
  'updated': '2016-06-14T17:45:07.500Z'},
 {'depth': 76.8,
  'depthError': 0.4,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.6,
  'id': 'ak13653725',
  'latitude': 59.9091,
  'locationSource': 'ak',
  'longitude': -152.4177,
  'mag': 1.5,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '36km WNW of Anchor Point, Alaska',
  'rms': 0.41,
  'status': 'reviewed',
  'time': '2016-06-14T17:05:45.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:06.256Z'},
 {'depth': 12.82,
  'depthError': 1.07,
  'dmin': 0.06938,
  'gap': 98.0,
  'horizontalError': 0.54,
  'id': 'ci37386695',
  'latitude': 33.4763333,
  'locationSource': 'ci',
  'longitude': -116.48683329999999,
  'mag': 1.89,
  'magError': 0.354,
  'magNst': 23.0,
  'magSource': 'ci',
  'magType': 'ml',
  'net': 'ci',
  'nst': 14.0,
  'place': '19km ESE of Anza, CA',
  'rms': 0.22,
  'status': 'reviewed',
  'time': '2016-06-14T17:02:38.710Z',
  'type': 'earthquake',
  'updated': '2016-06-15T14:00:28.643Z'},
 {'depth': 41.8,
  'depthError': 3.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 3.1,
  'id': 'ak13653724',
  'latitude': 54.2551,
  'locationSource': 'ak',
  'longitude': -163.16,
  'mag': 2.1,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '68km SSE of False Pass, Alaska',
  'rms': 0.42,
  'status': 'reviewed',
  'time': '2016-06-14T16:49:33.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:02.308Z'},
 {'depth': 0.0,
  'depthError': nan,
  'dmin': 1.209,
  'gap': 344.11,
  'horizontalError': 50.48,
  'id': 'nn00547993',
  'latitude': 35.9354,
  'locationSource': 'nn',
  'longitude': -114.7636,
  'mag': 1.6,
  'magError': 0.15,
  'magNst': 4.0,
  'magSource': 'nn',
  'magType': 'ml',
  'net': 'nn',
  'nst': 5.0,
  'place': '7km SE of Boulder City, Nevada',
  'rms': 0.1958,
  'status': 'reviewed',
  'time': '2016-06-14T16:49:32.505Z',
  'type': 'earthquake',
  'updated': '2016-06-16T13:29:03.171Z'},
 {'depth': 69.4,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13646894',
  'latitude': 59.8267,
  'locationSource': 'ak',
  'longitude': -151.458,
  'mag': 1.8,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '13km NW of Fritz Creek, Alaska',
  'rms': 0.48,
  'status': 'reviewed',
  'time': '2016-06-14T16:35:15.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:36.412Z'},
 {'depth': 44.0,
  'depthError': 0.8,
  'dmin': 0.06288207,
  'gap': 180.0,
  'horizontalError': 0.5,
  'id': 'pr16166006',
  'latitude': 17.9685,
  'locationSource': 'pr',
  'longitude': -66.9783,
  'mag': 2.2,
  'magError': 0.0,
  'magNst': 8.0,
  'magSource': 'pr',
  'magType': 'Md',
  'net': 'pr',
  'nst': 9.0,
  'place': '6km WSW of Fuig, Puerto Rico',
  'rms': 0.15,
  'status': 'reviewed',
  'time': '2016-06-14T16:33:13.800Z',
  'type': 'earthquake',
  'updated': '2016-06-14T16:59:22.454Z'},
 {'depth': 115.6,
  'depthError': 0.3,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 0.2,
  'id': 'ak13646892',
  'latitude': 63.1654,
  'locationSource': 'ak',
  'longitude': -150.5529,
  'mag': 1.4,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '84km WSW of Cantwell, Alaska',
  'rms': 0.42,
  'status': 'reviewed',
  'time': '2016-06-14T16:25:46.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:34.332Z'},
 {'depth': 2.7939999999999996,
  'depthError': 0.31,
  'dmin': 0.02546,
  'gap': 62.0,
  'horizontalError': 0.23,
  'id': 'hv61297566',
  'latitude': 19.361666699999997,
  'locationSource': 'hv',
  'longitude': -155.2883333,
  'mag': 1.36,
  'magError': 0.141,
  'magNst': 9.0,
  'magSource': 'hv',
  'magType': 'md',
  'net': 'hv',
  'nst': 34.0,
  'place': '9km SW of Volcano, Hawaii',
  'rms': 0.09,
  'status': 'reviewed',
  'time': '2016-06-14T16:00:56.900Z',
  'type': 'earthquake',
  'updated': '2016-06-14T21:27:17.450Z'},
 {'depth': 25.2,
  'depthError': 5.0,
  'dmin': nan,
  'gap': nan,
  'horizontalError': 3.4,
  'id': 'ak13653721',
  'latitude': 50.5438,
  'locationSource': 'ak',
  'longitude': -173.8032,
  'mag': 2.6,
  'magError': nan,
  'magNst': nan,
  'magSource': 'ak',
  'magType': 'ml',
  'net': 'ak',
  'nst': nan,
  'place': '185km S of Atka, Alaska',
  'rms': 0.65,
  'status': 'reviewed',
  'time': '2016-06-14T15:57:24.000Z',
  'type': 'earthquake',
  'updated': '2016-06-17T00:38:19.235Z'},
 ...]

In [343]:
for y in earthquakes:
    if y['mag'] >= 4:
        print(equeation_bah(y))


An intermediate 216.5 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km NNE of Port-Vila, Vanuatu
A deep 536.53 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 238km SE of Lambasa, Fiji
A shallow 22.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km W of Constitucion, Chile
A shallow 8.4 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km S of Hukumati Dahanah-ye Ghori, Afghanistan
An intermediate 103.34 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km S of Molibagu, Indonesia
An intermediate 202.03 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 130km NE of San Pedro de Atacama, Chile
An intermediate 211.6 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km W of San Antonio de los Cobres, Argentina
A shallow 17.64 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km ENE of Nanae, Japan
A shallow 62.51 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km NE of Norsup, Vanuatu
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km NE of Tadine, New Caledonia
A shallow 32.58 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 233km NE of Fais, Micronesia
An intermediate 219.74 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 48km WNW of San Antonio de los Cobres, Argentina
A deep 344.81 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 190km WSW of Hachijo-jima, Japan
An intermediate 113.8 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km NE of Yilan, Taiwan
A shallow 10.0 km depth and 6.0 degree None earthquake was reported 4 in the afternoon ofMay 22 at 93km SW of Isangel, Vanuatu
A shallow 30.63 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Off the west coast of northern Sumatra
A shallow 11.5 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km WSW of Coquimbo, Chile
A shallow 44.15 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 83km SSW of Nikolski, Alaska
An intermediate 84.13 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 196km N of Tobelo, Indonesia
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 59km NE of Taitung City, Taiwan
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 164km ENE of L'Esperance Rock, New Zealand
A shallow 10.0 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Ascension Island region
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Ascension Island region
A shallow 18.45 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 54km WSW of Sabtang, Philippines
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km SW of Isangel, Vanuatu
An intermediate 85.93 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 110km WNW of Tobelo, Indonesia
An intermediate 118.73 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km ESE of Iquique, Chile
An intermediate 92.46 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km ENE of Linares, Chile
An intermediate 158.57 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km NE of Zonda, Argentina
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 117km SW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 92km SSW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 117km SW of Isangel, Vanuatu
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km SW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SSW of Isangel, Vanuatu
A shallow 13.0 km depth and 6.3 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 84km SSW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km SW of Isangel, Vanuatu
An intermediate 172.02 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km SSW of Juli, Peru
A shallow 26.01 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km ESE of Bitung, Indonesia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 136km NE of Aksu, China
An intermediate 101.23 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 264km WNW of Saumlaki, Indonesia
A shallow 10.0 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Ascension Island region
An intermediate 196.97 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km ENE of Norsup, Vanuatu
A shallow 47.31 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 124km WNW of Bengkulu, Indonesia
A deep 440.92 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Izu Islands, Japan region
A shallow 35.19 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km SSW of Isangel, Vanuatu
A shallow 14.93 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 204km WSW of Puerto Natales, Chile
An intermediate 134.23 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 221km NNW of Saumlaki, Indonesia
An intermediate 167.25 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km W of San Antonio de los Cobres, Argentina
An intermediate 113.42 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 35km NE of Jarm, Afghanistan
An intermediate 195.43 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 27km NW of Ayaviri, Peru
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km W of Uto, Japan
An intermediate 191.56 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 115km W of San Antonio de los Cobres, Argentina
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 213km S of Punta de Burica, Panama
An intermediate 152.12 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km ENE of Lata, Solomon Islands
An intermediate 95.71 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 105km SSW of Kota Ternate, Indonesia
A shallow 57.36 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 138km NW of Kota Ternate, Indonesia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 143km S of False Pass, Alaska
A shallow 11.79 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km ENE of Oarai, Japan
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern East Pacific Rise
An intermediate 232.68 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km ENE of Keelung, Taiwan
A shallow 56.81 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km SSE of Lata, Solomon Islands
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km NNE of Tadine, New Caledonia
A shallow 35.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 202km E of Hachijo-jima, Japan
An intermediate 278.09 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km NNE of Palue, Indonesia
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km SSW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 44km E of Kerman, Iran
An intermediate 136.88 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kepulauan Barat Daya, Indonesia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 64km W of Ovalle, Chile
A shallow 34.08 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 22km WSW of Coquimbo, Chile
An intermediate 114.82 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km SSW of Calama, Chile
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 153km W of Longyearbyen, Svalbard and Jan Mayen
A shallow 30.17 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km E of Naze, Japan
An intermediate 212.19 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km WNW of Atuncolla, Peru
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 121km NE of Tadine, New Caledonia
A shallow 18.11 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km SSW of Isangel, Vanuatu
An intermediate 190.8 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 274km NNW of Saumlaki, Indonesia
A shallow 16.6 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 22km ENE of Nanae, Japan
A shallow 37.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 14km WSW of Ovalle, Chile
A deep 565.95 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km SE of Ndoi Island, Fiji
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
A shallow 16.39 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 171km S of False Pass, Alaska
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km SSE of Lorengau, Papua New Guinea
An intermediate 159.81 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km ESE of Pucallpa, Peru
A shallow 21.09 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 2km WNW of La Esperanza, Panama
didn't work 70.5 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km SW of Pueblo Nuevo Tiquisate, Guatemala
An intermediate 222.45 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km NW of Sola, Vanuatu
An intermediate 112.14 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow 8.21 km depth and 5.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Balleny Islands region
A shallow 10.92 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 32km W of Nuqui, Colombia
A shallow 30.19 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 279km S of Kute, Indonesia
An intermediate 113.41 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 149km N of Calama, Chile
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
A shallow 10.0 km depth and 5.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 194km ESE of Enarotali, Indonesia
A shallow 67.96 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km W of Harian, Indonesia
A shallow 55.04 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 39km SW of Adak, Alaska
A shallow 5.98 km depth and 5.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 171km SSE of Naze, Japan
An intermediate 111.0 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 98km NNW of Isangel, Vanuatu
A shallow 64.49 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km ENE of Chepen, Peru
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km NNE of Chignik Lake, Alaska
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km S of San Vicente Pacaya, Guatemala
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 69km SW of Ocos, Guatemala
A shallow 24.76 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 65km SW of Ocos, Guatemala
A shallow 9.54 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km SSW of Somotillo, Nicaragua
A shallow 47.98 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km NNW of Taron, Papua New Guinea
A deep 485.52 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 134km NNW of Labuhankananga, Indonesia
A shallow 45.13 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 133km ESE of Kirakira, Solomon Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of Panama
An intermediate 76.21 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 291km N of Tobelo, Indonesia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Western Indian-Antarctic Ridge
A shallow 26.76 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 181km ESE of Hachijo-jima, Japan
An intermediate 104.49 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 63km SE of Caburan, Philippines
A shallow 69.05 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km S of Puerto El Triunfo, El Salvador
A shallow 14.55 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 9.95 km depth and 4.34 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km W of West Yellowstone, Montana
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 176km SSE of Naze, Japan
A shallow 34.14 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 82km SSW of Corinto, Nicaragua
A shallow 57.07 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 17km W of Auki, Solomon Islands
A shallow 10.0 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 178km SSE of Naze, Japan
A shallow 10.0 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 163km SSE of Naze, Japan
A deep 598.43 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km S of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern East Pacific Rise
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 148km S of Puerto El Triunfo, El Salvador
A shallow 14.49 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 32km NNE of Tumbagaan, Philippines
A shallow 10.0 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
An intermediate 121.02 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km NNE of Ambunti, Papua New Guinea
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 240km WNW of Bandon, Oregon
A shallow 33.66 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km E of Shikotan, Russia
A shallow 10.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km E of , Azerbaijan
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km SSW of Yatsushiro, Japan
A shallow 58.21 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at East of the Kuril Islands
A shallow 31.83 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km NNE of Grande Anse, Guadeloupe
A shallow 25.6 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 125km SSE of Kirakira, Solomon Islands
A shallow 43.13 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 190km NNW of Tobelo, Indonesia
An intermediate 122.28 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km N of Agrihan, Northern Mariana Islands
A shallow 59.53 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 181km SSE of Bitung, Indonesia
A shallow 14.46 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km SW of Lakhdaria, Algeria
A shallow 45.08 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 6km ENE of Noda, Japan
An intermediate 103.77 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 40km SW of Ashkasham, Afghanistan
An intermediate 88.84 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km SSE of Tuensang, India
A shallow 28.36 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km SSW of Bunisari, Indonesia
An intermediate 90.9 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km SE of Kuril'sk, Russia
A deep 373.47 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km NNW of Koronadal, Philippines
An intermediate 221.31 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km N of Banjar Sidayu, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km E of Puerto Morazan, Nicaragua
A deep 596.07 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 288km N of Ndoi Island, Fiji
A deep 579.6 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 287km SE of Lambasa, Fiji
An intermediate 77.69 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 186km SE of Sarangani, Philippines
An intermediate 118.54 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km ENE of Shughnon, Tajikistan
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southeast of Easter Island
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 288km SSE of Sigave, Wallis and Futuna
A shallow 28.63 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km WNW of Solhan, Turkey
A shallow 51.77 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 14km ESE of Kabayan, Philippines
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 263km SSE of Sigave, Wallis and Futuna
A shallow 47.59 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at East of the Kuril Islands
A shallow 21.55 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 110km ENE of Hihifo, Tonga
An intermediate 224.4 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km W of Abra Pampa, Argentina
A shallow 25.11 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 249km ESE of Kamaishi, Japan
A shallow 42.48 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 107km SSE of Hihifo, Tonga
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km ENE of Georgetown, Saint Helena
A shallow 12.31 km depth and 5.17 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km NNW of Borrego Springs, CA
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km S of Somotillo, Nicaragua
A shallow 28.45 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 20km WNW of Auki, Solomon Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SSW of Somotillo, Nicaragua
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km E of Puerto Morazan, Nicaragua
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km NNE of Tela, Honduras
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km S of Somotillo, Nicaragua
A shallow 10.0 km depth and 6.1 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 17km E of Puerto Morazan, Nicaragua
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 251km NNE of Chichi-shima, Japan
A shallow 35.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 183km NNE of Fais, Micronesia
An intermediate 110.48 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 51km S of Molibagu, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km ENE of We, New Caledonia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 11.82 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 131km NNW of Kiunga, Papua New Guinea
An intermediate 138.55 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 201km NW of Saumlaki, Indonesia
A shallow 8.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km WNW of Uddiawan, Philippines
An intermediate 155.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km NNW of Chilecito, Argentina
A shallow 40.91 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 218km ENE of Neiafu, Tonga
A shallow 32.19 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 35km WSW of Kiska Volcano, Alaska
A shallow 36.55 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km SSW of Bogorawatu, Indonesia
A shallow 38.67 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km SSW of Bogorawatu, Indonesia
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 206km ESE of Hachijo-jima, Japan
A deep 505.74 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 29.89 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 284km S of Kute, Indonesia
An intermediate 71.19 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km SSW of Tawun, Indonesia
A shallow 16.99 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km S of Turija, Serbia
A shallow 38.57 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km SSW of Champerico, Guatemala
An intermediate 104.03 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 65km NNW of Barranca, Peru
A shallow 11.94 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 70km W of Coquimbo, Chile
A shallow 28.94 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 287km E of Namie, Japan
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
A deep 348.15 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 50km SSE of Korsakov, Russia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Mid-Indian Ridge
A shallow 51.95 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 38km S of Puerto San Jose, Guatemala
A shallow 32.3 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km SW of Puerto El Triunfo, El Salvador
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 170km SSE of Naze, Japan
A shallow 8.33 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 175km NNE of Esperance, Australia
A shallow 5.39 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 149km SSE of Naze, Japan
An intermediate 117.8 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 44km SSW of Ashkasham, Afghanistan
A shallow 44.36 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km WNW of Kota Ternate, Indonesia
An intermediate 266.89 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km NNE of Sangiang, Indonesia
A shallow 21.28 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km S of Nishinoomote, Japan
A deep 563.47 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 40.09 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km WNW of Kota Ternate, Indonesia
A shallow 30.68 km depth and 6.3 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 128km E of Bitung, Indonesia
An intermediate 90.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km NE of Diego de Almagro, Chile
An intermediate 84.17 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 14km SE of El Valle, Dominican Republic
An intermediate 177.23 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 252km NE of Kuril'sk, Russia
An intermediate 88.99 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 29km SW of Kimbe, Papua New Guinea
A deep 593.71 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Fiji region
An intermediate 100.97 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 76km ESE of Culaman, Philippines
A shallow 65.78 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km SSW of Abancay, Peru
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 156km SSW of San Patricio, Mexico
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km SSW of San Patricio, Mexico
A shallow 10.0 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 102km SSW of San Patricio, Mexico
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km SW of San Patricio, Mexico
A shallow 40.95 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km S of Chignik Lake, Alaska
A deep 525.24 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 112km ENE of Ndoi Island, Fiji
A deep 523.02 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 10.03 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 104km E of Shikotan, Russia
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km ESE of Demirtas, Turkey
A shallow 36.07 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 70km WNW of Te Anau, New Zealand
A shallow 9.73 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km WSW of Kota Ternate, Indonesia
An intermediate 80.48 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km ESE of Raoul Island, New Zealand
A shallow 12.28 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km W of Te Anau, New Zealand
didn't work 70.42 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 53km WNW of Porgera, Papua New Guinea
An intermediate 158.84 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km S of Las Choapas, Mexico
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km ESE of Mucuchies, Venezuela
An intermediate 87.4 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 85km E of Iquique, Chile
A shallow 13.91 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km S of Muisne, Ecuador
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of Panama
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 222km N of Chichi-shima, Japan
A shallow 40.08 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km WNW of Polis, Cyprus
A shallow 36.69 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km E of Namie, Japan
A shallow 20.84 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km WSW of Coquimbo, Chile
A shallow 22.78 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km SW of Coquimbo, Chile
A shallow 12.57 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 159km SSW of Biha, Indonesia
A shallow 36.72 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km NW of La Ligua, Chile
An intermediate 217.18 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 161km NNW of Atambua, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km NE of Roshtqal'a, Tajikistan
A shallow 35.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km SE of Santa Catarina Juquila, Mexico
A shallow 67.25 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km SE of Ocos, Guatemala
A shallow 43.83 km depth and 6.1 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 84km S of Raoul Island, New Zealand
A deep 597.74 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 226km SE of Lambasa, Fiji
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 53km NE of Sulangan, Philippines
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
An intermediate 96.8 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km ENE of Mazamari, Peru
A deep 535.38 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 45.04 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 202km NE of Neiafu, Tonga
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
A shallow 23.18 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km W of Canoas, Costa Rica
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km SSW of Foca, Turkey
A deep 428.96 km depth and 6.3 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 133km SW of Leksula, Indonesia
A shallow 31.29 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km E of Palu, Indonesia
An intermediate 97.41 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 145km SSE of Putre, Chile
An intermediate 135.89 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 261km ESE of Sarangani, Philippines
A shallow 11.46 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 124km W of Airbuaya, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
A shallow 15.19 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km NW of Coquimbo, Chile
An intermediate 149.85 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km NNE of Jayune, Peru
An intermediate 217.58 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 105km NNW of False Pass, Alaska
A shallow 33.5 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km SE of Acari, Peru
An intermediate 183.8 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 141km WNW of Naze, Japan
A deep 320.91 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Fiji region
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km SW of Santiago Pinotepa Nacional, Mexico
An intermediate 195.41 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 79km W of San Antonio de los Cobres, Argentina
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km SW of San Juan Cacahuatepec, Mexico
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km N of San Pedro Amuzgos, Mexico
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km S of Makry Gialos, Greece
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 7km NW of Cabrera, Dominican Republic
A shallow 45.18 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 34km W of Illapel, Chile
A shallow 35.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 60km SSW of Port-Vila, Vanuatu
A shallow 26.09 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km WNW of Tobelo, Indonesia
A shallow 34.33 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 54km S of Hukumati Dahanah-ye Ghori, Afghanistan
A shallow 16.3 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km WSW of Lixourion, Greece
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest of Sumatra, Indonesia
A shallow 21.12 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km WSW of Kota Ternate, Indonesia
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km ESE of Kerman, Iran
A shallow 32.67 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 81km NE of Hihifo, Tonga
A deep 470.7 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km E of Ndoi Island, Fiji
A shallow 6.14 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km S of Fukue, Japan
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central Mid-Atlantic Ridge
A shallow 43.87 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km S of La Libertad, El Salvador
A shallow 31.99 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 64km SW of Pasarbaru, Indonesia
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 88km WNW of Polis, Cyprus
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 145km ENE of L'Esperance Rock, New Zealand
A deep 525.34 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A deep 623.14 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km NNW of Congkar, Indonesia
A shallow 15.25 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 180km NNW of Yunaska Island, Alaska
An intermediate 290.12 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 18.18 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 242km ESE of Nikol'skoye, Russia
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 131km ESE of Hirara, Japan
A shallow 25.1 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km WNW of Illapel, Chile
A deep 580.41 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SSE of Charagua, Bolivia
A shallow 58.18 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 72km W of Pasirnangka, Indonesia
A shallow 19.07 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 245km ESE of Nikol'skoye, Russia
A shallow 33.53 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 265km SE of Nikol'skoye, Russia
A shallow 14.99 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 250km ESE of Nikol'skoye, Russia
A shallow 14.97 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South Indian Ocean
A shallow 15.63 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 239km W of Port-Olry, Vanuatu
A shallow 40.24 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km S of Arica, Chile
A shallow 6.59 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km ESE of Sucua, Ecuador
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of Tasmania
A shallow 29.17 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Fiji region
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 141km W of Itbayat, Philippines
A deep 330.17 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 227km W of Hihifo, Tonga
A shallow 38.33 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 180km SSE of Naze, Japan
A shallow 40.03 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km S of Chignik Lake, Alaska
An intermediate 100.7 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 60km S of Little Sitkin Island, Alaska
A shallow 47.7 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km N of Pujocucho, Peru
An intermediate 200.22 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km SE of Ina, Japan
A shallow 57.02 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km SSW of Abepura, Indonesia
A shallow 16.47 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km NW of Port-Olry, Vanuatu
A shallow 29.69 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 101km S of La Libertad, El Salvador
An intermediate 107.2 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 147km N of Calama, Chile
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Owen Fracture Zone region
A shallow 59.62 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 39km NE of Palu, Indonesia
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 113km ESE of Port-Vila, Vanuatu
A deep 402.82 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 155km ENE of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 284km NE of Port Mathurin, Mauritius
A shallow 22.79 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km NNE of Hamza, Uzbekistan
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 119km WSW of Itbayat, Philippines
An intermediate 107.03 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 41km S of Boal Atas, Indonesia
An intermediate 123.75 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 241km NNW of Farallon de Pajaros, Northern Mariana Islands
A deep 346.72 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 217km SW of L'Esperance Rock, New Zealand
An intermediate 91.78 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 71km S of Molibagu, Indonesia
A deep 484.26 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km NNW of Labuhankananga, Indonesia
An intermediate 255.06 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 31.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 205km SW of San Patricio, Mexico
A shallow 37.72 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 178km SW of San Patricio, Mexico
A shallow 10.0 km depth and 5.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 179km SW of San Patricio, Mexico
A shallow 9.26 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km NNW of Pujocucho, Peru
A shallow 50.54 km depth and 6.6 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 79km W of Sungaipenuh, Indonesia
A shallow 63.13 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 1km ESE of Yachimata, Japan
A shallow 10.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km WNW of Ain Bessem, Algeria
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Carlsberg Ridge
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km WSW of Coquimbo, Chile
An intermediate 78.88 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 82km S of Huancavelica, Peru
A shallow 59.39 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SSE of Pujiharjo, Indonesia
A shallow 46.15 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km NE of Chernabura Island, Alaska
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
An intermediate 220.91 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 29km S of Jarm, Afghanistan
An intermediate 128.42 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km E of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 43.85 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km S of Raoul Island, New Zealand
A shallow 56.39 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km SSW of Kokopo, Papua New Guinea
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 54km WNW of Pedernales, Ecuador
A shallow 27.05 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km SW of San Patricio, Mexico
A shallow 28.8 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 63km WSW of Amatignak Island, Alaska
A shallow 26.91 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 44km WNW of Pedernales, Ecuador
A shallow 10.0 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 192km SW of San Patricio, Mexico
A shallow 40.49 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 148km SW of San Patricio, Mexico
A shallow 32.78 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 194km SW of San Patricio, Mexico
A shallow 66.15 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 40km W of Amatignak Island, Alaska
An intermediate 254.96 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km ESE of Taquile, Peru
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 161km SSE of L'Esperance Rock, New Zealand
An intermediate 264.75 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km N of Nanao, Japan
A shallow 39.22 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 92km S of Chignik Lake, Alaska
A shallow 14.4 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km SW of Lakhdaria, Algeria
A shallow 61.35 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km SE of Mamburao, Philippines
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 32km WNW of Pedernales, Ecuador
An intermediate 172.62 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km NW of Cempa, Indonesia
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 196km NNE of Chichi-shima, Japan
A shallow 16.4 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 103km NNE of Chignik Lake, Alaska
A shallow 59.12 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km NNW of Cortes, Philippines
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
A shallow 57.82 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km NW of Namatanai, Papua New Guinea
A shallow 41.55 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km WNW of Port-Olry, Vanuatu
A shallow 34.17 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km S of Parrita, Costa Rica
An intermediate 244.11 km depth and 6.4 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 93km ENE of Keelung, Taiwan
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 45.13 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km S of La Libertad, El Salvador
A shallow 27.07 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 33km W of Andalgala, Argentina
An intermediate 200.8 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km S of King Salmon, Alaska
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 176km ENE of L'Esperance Rock, New Zealand
A shallow 16.54 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km ENE of L'Esperance Rock, New Zealand
A deep 579.93 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 263km ESE of Lambasa, Fiji
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km NE of Visokoi Island, South Georgia and the South Sandwich Islands
An intermediate 156.58 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 10km WSW of Piedecuesta, Colombia
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 92km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 41.87 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km W of Rabaul, Papua New Guinea
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 82km SE of Amahai, Indonesia
An intermediate 153.03 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km NW of Nakanojo, Japan
An intermediate 74.15 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Off the east coast of the North Island of New Zealand
A shallow 8.93 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km W of Castel Viscardo, Italy
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 254km ENE of Olonkinbyen, Svalbard and Jan Mayen
An intermediate 102.7 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km SE of Old Iliamna, Alaska
A shallow 43.71 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km WSW of Yonakuni, Japan
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 134km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 154km SW of Kavieng, Papua New Guinea
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South Shetland Islands
A shallow 47.73 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 85km SE of Cabiraoan, Philippines
An intermediate 231.38 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km NE of Tobelo, Indonesia
A shallow 48.72 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km W of Illapel, Chile
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at West Chile Rise
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 117km E of L'Esperance Rock, New Zealand
A shallow 29.06 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km S of Raoul Island, New Zealand
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 126km ESE of Hirara, Japan
A shallow 14.21 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
A shallow 35.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km E of L'Esperance Rock, New Zealand
A shallow 32.18 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km S of Raoul Island, New Zealand
An intermediate 203.7 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km NE of Atka, Alaska
A shallow 34.4 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 127km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km SSW of Merizo Village, Guam
A shallow 11.85 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km NE of Hualian, Taiwan
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 122km SSW of Merizo Village, Guam
A shallow 27.85 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 252km NNW of Tual, Indonesia
A shallow 35.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km E of Taniwel, Indonesia
A shallow 37.03 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km SSW of Gra Liyia, Greece
An intermediate 108.13 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km N of Iwo Jima, Japan
A deep 588.2 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km SE of Ndoi Island, Fiji
A deep 472.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km SSW of Kavieng, Papua New Guinea
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km W of Illapel, Chile
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km WNW of Ain Bessem, Algeria
An intermediate 156.89 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 277km WNW of Saumlaki, Indonesia
A shallow 38.86 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 83km ENE of Lar, Iran
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km S of La Libertad, El Salvador
An intermediate 102.01 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 107km NNE of Anatahan, Northern Mariana Islands
A shallow 38.51 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 59km S of Hirara, Japan
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Tuamotu Archipelago, French Polynesia region
An intermediate 86.3 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km ESE of Iquique, Chile
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 204km E of `Ohonua, Tonga
A shallow 65.09 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 132km SW of Kokopo, Papua New Guinea
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 138km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 28.4 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km ENE of Visokoi Island, South Georgia and the South Sandwich Islands
An intermediate 164.09 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
A shallow 53.89 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Kermadec Islands
An intermediate 153.95 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 51km ENE of Port-Olry, Vanuatu
A deep 509.49 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 132km ENE of Ndoi Island, Fiji
An intermediate 80.69 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 84km WNW of Kirakira, Solomon Islands
An intermediate 93.28 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 6km NE of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A deep 565.74 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 10km SSE of Boyuibe, Bolivia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Northern Mid-Atlantic Ridge
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km WSW of Ain Bessem, Algeria
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 154km ESE of Hasaki, Japan
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 148km W of Itbayat, Philippines
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 10km WSW of Huagai, China
A shallow 26.09 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 60km SSE of Lakatoro, Vanuatu
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km S of Lakatoro, Vanuatu
An intermediate 167.33 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km NW of Kizukuri, Japan
A shallow 35.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km WSW of Puerto Madero, Mexico
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km WNW of Ain Bessem, Algeria
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 11.43 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km SSW of Lakhdaria, Algeria
A shallow 42.34 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 90km W of Vallenar, Chile
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 120km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 33.94 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 119km E of Aileu, East Timor
A shallow 16.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km NE of Poros, Greece
A deep 560.16 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 193km NE of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Prince Edward Islands region
A shallow 10.6 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km SE of Shardara, Kazakhstan
A shallow 19.05 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 115km S of Nabire, Indonesia
A shallow 21.61 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 137km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 8.69 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 166km NNE of Esperance, Australia
A shallow 9.74 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 170km NNE of Esperance, Australia
A shallow 54.33 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 121km SSW of Raoul Island, New Zealand
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 97km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A deep 513.7 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 119km NE of Ndoi Island, Fiji
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km ENE of L'Esperance Rock, New Zealand
An intermediate 222.3 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km W of Ashkasham, Afghanistan
An intermediate 188.55 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
An intermediate 78.0 km depth and 7.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 53km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 33km NNW of Nagarkot, Nepal
A shallow 49.99 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km N of Funaishikawa, Japan
An intermediate 150.3 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km N of Hachijo-jima, Japan
A deep 416.79 km depth and 6.6 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 161km SSE of Ndoi Island, Fiji
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central Mid-Atlantic Ridge
A shallow 27.56 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 43km WNW of Lebu, Chile
An intermediate 156.67 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 244km NW of Saumlaki, Indonesia
A deep 634.05 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 288km NNE of Ndoi Island, Fiji
An intermediate 109.45 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 136km ENE of Iquique, Chile
An intermediate 172.94 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km NE of Port-Olry, Vanuatu
A deep 621.89 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 300km N of Ndoi Island, Fiji
A shallow 18.47 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km WSW of Ferndale, California
A shallow 34.24 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 223km NNW of Tual, Indonesia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
An intermediate 129.61 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
An intermediate 84.78 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 176km NE of Thang, India
A shallow 60.41 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 186km SSW of Ust'-Kamchatsk Staryy, Russia
A shallow 57.85 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 104km SSE of Lolayan, Indonesia
A shallow 26.08 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 72km SW of Ovalle, Chile
A shallow 59.7 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km SSE of Kokopo, Papua New Guinea
An intermediate 123.34 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km NE of Yelizovo, Russia
A shallow 44.21 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km E of Pagan, Northern Mariana Islands
A shallow 51.08 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km N of Kendari, Indonesia
An intermediate 85.86 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km NNW of Finschhafen, Papua New Guinea
An intermediate 131.68 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 97km N of Tobelo, Indonesia
An intermediate 117.6 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 142km ENE of Taltal, Chile
A shallow 35.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km WNW of Piura, Peru
An intermediate 132.38 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km WNW of Campoverde, Peru
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km NW of Port-Vila, Vanuatu
An intermediate 74.83 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 103km ESE of Khonsa, India
A deep 572.13 km depth and 6.4 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 19km S of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 172km SSE of Naze, Japan
A shallow 10.0 km depth and 5.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 165km SSE of Naze, Japan
A shallow 39.81 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km SE of Lukatan, Philippines
An intermediate 202.87 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km W of Pangai, Tonga
A deep 459.23 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km W of L'Esperance Rock, New Zealand
A shallow 35.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 15km N of Amahai, Indonesia
A deep 538.35 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 10.16 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km W of Coquimbo, Chile
An intermediate 128.21 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 34km N of Yigo Village, Guam
A shallow 50.42 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 136km SSE of Shizunai, Japan
A shallow 27.73 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 237km SE of Vostok, Russia
An intermediate 130.8 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km ESE of Madang, Papua New Guinea
An intermediate 128.62 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 65km S of Visokoi Island, South Georgia and the South Sandwich Islands
A deep 524.88 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 243km NNE of Ndoi Island, Fiji
An intermediate 173.56 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 220km NE of Kuril'sk, Russia
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 282km SSE of L'Esperance Rock, New Zealand
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Timor Sea
An intermediate 194.62 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 2km S of Moyogalpa, Nicaragua
A shallow 35.62 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 22km WNW of Massy, Kyrgyzstan
An intermediate 104.02 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km ENE of Anatahan, Northern Mariana Islands
An intermediate 119.7 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km SSE of Putre, Chile
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 248km N of Chichi-shima, Japan
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 232km W of Riverton, New Zealand
A shallow 19.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km ESE of Siracusa, Italy
A shallow 33.56 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 53km NNE of Naze, Japan
An intermediate 120.6 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 15km WNW of Palomares, Mexico
A shallow 29.4 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 247km E of Miyako, Japan
An intermediate 105.67 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km ENE of Rota, Northern Mariana Islands
A shallow 34.03 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km SW of Mapastepec, Mexico
A shallow 24.32 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 88km SSW of Pijijiapan, Mexico
A shallow 49.3 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km E of Marihatag, Philippines
A shallow 39.18 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km S of Bristol Island, South Sandwich Islands
A deep 519.64 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
An intermediate 127.49 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 190km NW of Farallon de Pajaros, Northern Mariana Islands
A shallow 28.09 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 38km WNW of Hengchun, Taiwan
A shallow 15.74 km depth and 4.03 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 41km NNW of Duchesne, Utah
A shallow 28.21 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km ENE of Lakatoro, Vanuatu
An intermediate 149.81 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km SSW of Hidalgotitlan, Mexico
A shallow 20.23 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 112km SSW of Dadali, Solomon Islands
A shallow 37.34 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 246km NNW of Tobelo, Indonesia
A shallow 23.5 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km SW of Kato Mazarakion, Greece
A shallow 10.0 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km S of Palaikastron, Greece
An intermediate 77.3 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km NNE of Piedra Blanca, Dominican Republic
An intermediate 280.66 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 37km SW of Sarangani, Philippines
A shallow 55.87 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 81km ENE of Misawa, Japan
A shallow 28.44 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SE of Hasaki, Japan
An intermediate 132.42 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 181km WNW of Saumlaki, Indonesia
A deep 517.03 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km WSW of Agrihan, Northern Mariana Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km ESE of Muisne, Ecuador
An intermediate 163.42 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 1km E of Aileu, East Timor
A deep 578.24 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SSW of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 100km SW of Chirovanga, Solomon Islands
A shallow 50.05 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km SSE of Ofunato, Japan
A shallow 29.22 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km NE of Bojnurd, Iran
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km W of Dhi Na`im, Yemen
An intermediate 90.94 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km SE of Azogues, Ecuador
A shallow 8.17 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km ESE of Taradale, New Zealand
A shallow 48.78 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SE of Kishtwar, India
A shallow 35.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km N of Miyako, Japan
A deep 353.98 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km SE of Ndoi Island, Fiji
An intermediate 73.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 45km SW of San Francisco Menendez, El Salvador
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 64km E of L'Esperance Rock, New Zealand
A shallow 13.98 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Kermadec Islands
An intermediate 110.52 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 50km ESE of Cold Bay, Alaska
An intermediate 123.25 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 51km SSE of Putre, Chile
An intermediate 75.24 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km SSW of Pilar, Philippines
A shallow 37.48 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 159km SSE of Hachijo-jima, Japan
An intermediate 134.28 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km E of Port-Olry, Vanuatu
A deep 508.52 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 177km NNW of Dili, East Timor
A shallow 68.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km SW of Abepura, Indonesia
An intermediate 124.03 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km W of Cintalapa de Figueroa, Mexico
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km W of Kirtipur, Nepal
An intermediate 127.12 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 169km NNW of Farallon de Pajaros, Northern Mariana Islands
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km W of Gyangkar, China
A deep 419.42 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 255km WNW of Ozernovskiy, Russia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Northern Mid-Atlantic Ridge
A shallow 50.38 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 7km SSW of Yachimata, Japan
An intermediate 123.53 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 71km NNE of Dili, East Timor
A shallow 15.47 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 100km W of Makurazaki, Japan
A shallow 52.53 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 35km SE of Hitachi, Japan
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Northern Mid-Atlantic Ridge
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central Mid-Atlantic Ridge
A shallow 10.54 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 75km WNW of La Ligua, Chile
A shallow 20.59 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km NNE of Pangai, Tonga
An intermediate 189.96 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 80km W of San Antonio de los Cobres, Argentina
A deep 626.84 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 71km SW of Ndoi Island, Fiji
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at East of the Kuril Islands
A deep 621.39 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 15km SSW of Ndoi Island, Fiji
An intermediate 93.02 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SSE of Isangel, Vanuatu
An intermediate 174.56 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 134km NE of San Pedro de Atacama, Chile
A shallow 60.12 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 6km S of Bogorawatu, Indonesia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 125km S of Attu Station, Alaska
An intermediate 82.24 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km ESE of Jarm, Afghanistan
A shallow 14.7 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 142km W of Itbayat, Philippines
An intermediate 108.28 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 249km E of Enarotali, Indonesia
An intermediate 98.64 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 162km ESE of Sarangani, Philippines
An intermediate 194.11 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 37km SSW of Jarm, Afghanistan
An intermediate 76.62 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 37km SE of Iztapa, Guatemala
An intermediate 72.91 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 127km N of Saumlaki, Indonesia
An intermediate 151.55 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km SSW of Piedecuesta, Colombia
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at North of Severnaya Zemlya
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 50km S of Bambanglipuro, Indonesia
A shallow 9.52 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 47km WNW of Tartagal, Argentina
A shallow 25.4 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 46km W of Ovalle, Chile
A shallow 9.77 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 160km WSW of San Antonio, Chile
A shallow 35.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 102km ESE of Ust'-Kamchatsk Staryy, Russia
An intermediate 185.67 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km NW of Agrihan, Northern Mariana Islands
A shallow 16.71 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 33km W of Chaoyang, China
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km ENE of Strumyani, Bulgaria
A shallow 55.04 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 38km ESE of Kamaishi, Japan
A shallow 34.67 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 198km NNW of Sola, Vanuatu
A shallow 16.82 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 7km WSW of Atalanti, Greece
A shallow 24.81 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 126km ESE of Iwaki, Japan

In [344]:
#if the earthquake is anything other than an earthquake (e.g. explosion or quarry blast), print
# There was also a magnitude MAGNITUDE TYPE_OF_EVENT on DATE LOCATION.
# For example,
# There was also a magnitude 1.29 quarry blast on June 19 12km SE of Tehachapi, California.
# with TYPE_OF_EVENT being explosion, quarry blast, etc and LOCATION being 'place' - e.g. '0km N of The Geysers, California'.

In [345]:
def magnitude_type_of_event(x):
    return x['type']
#Test
magnitude_type_of_event(x)


Out[345]:
'earthquake'

In [349]:
def equeation_bah2(x):
    mag = x['mag']
    place = x['place']
    return "There was also a"+" "+str(mag)+" "+magnitude_type_of_event(x)+" "+"on"+" "+time_in_words(x)+" "+"of"+" "+date_in_words(x)+" "+"at"+" "+place

In [350]:
#test
equeation_bah2(x)


Out[350]:
'There was also a 2.3 earthquake on 4 in the afternoon of May 22 at 78km NNW of Road Town, British Virgin Islands'

In [363]:
print(type(earthquakes))
for item in earthquakes:
    if item['mag'] >= 4:
        print(equeation_bah(item))
    if item['type'] != "earthquake":
        print(equeation_bah2(item))


<class 'list'>
An intermediate 216.5 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km NNE of Port-Vila, Vanuatu
A deep 536.53 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 238km SE of Lambasa, Fiji
A shallow 22.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km W of Constitucion, Chile
There was also a 1.33 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
There was also a 1.85 explosion on 4 in the afternoon of May 22 at 2km E of Granite Falls, Washington
A shallow 8.4 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km S of Hukumati Dahanah-ye Ghori, Afghanistan
There was also a 1.69 quarry blast on 4 in the afternoon of May 22 at 0km SSW of Home Gardens, CA
There was also a 1.77 quarry blast on 4 in the afternoon of May 22 at 7km SSE of Home Gardens, CA
An intermediate 103.34 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km S of Molibagu, Indonesia
An intermediate 202.03 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 130km NE of San Pedro de Atacama, Chile
An intermediate 211.6 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km W of San Antonio de los Cobres, Argentina
A shallow 17.64 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km ENE of Nanae, Japan
A shallow 62.51 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km NE of Norsup, Vanuatu
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km NE of Tadine, New Caledonia
A shallow 32.58 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 233km NE of Fais, Micronesia
An intermediate 219.74 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 48km WNW of San Antonio de los Cobres, Argentina
A deep 344.81 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 190km WSW of Hachijo-jima, Japan
An intermediate 113.8 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km NE of Yilan, Taiwan
A shallow 10.0 km depth and 6.0 degree None earthquake was reported 4 in the afternoon ofMay 22 at 93km SW of Isangel, Vanuatu
A shallow 30.63 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Off the west coast of northern Sumatra
A shallow 11.5 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km WSW of Coquimbo, Chile
A shallow 44.15 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 83km SSW of Nikolski, Alaska
An intermediate 84.13 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 196km N of Tobelo, Indonesia
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 59km NE of Taitung City, Taiwan
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 164km ENE of L'Esperance Rock, New Zealand
A shallow 10.0 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Ascension Island region
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Ascension Island region
There was also a 1.29 other event on 4 in the afternoon of May 22 at 10km SW of Bridgeport, Washington
There was also a 1.95 explosion on 4 in the afternoon of May 22 at 1km SSW of Princeton, Canada
A shallow 18.45 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 54km WSW of Sabtang, Philippines
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km SW of Isangel, Vanuatu
An intermediate 85.93 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 110km WNW of Tobelo, Indonesia
An intermediate 118.73 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km ESE of Iquique, Chile
An intermediate 92.46 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km ENE of Linares, Chile
An intermediate 158.57 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km NE of Zonda, Argentina
There was also a 1.36 other event on 4 in the afternoon of May 22 at 10km SW of Bridgeport, Washington
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 117km SW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 92km SSW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 117km SW of Isangel, Vanuatu
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km SW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SSW of Isangel, Vanuatu
A shallow 13.0 km depth and 6.3 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 84km SSW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km SW of Isangel, Vanuatu
An intermediate 172.02 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km SSW of Juli, Peru
A shallow 26.01 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km ESE of Bitung, Indonesia
There was also a 1.27 other event on 4 in the afternoon of May 22 at 30km ESE of Sweet Home, Oregon
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 136km NE of Aksu, China
An intermediate 101.23 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 264km WNW of Saumlaki, Indonesia
A shallow 10.0 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Ascension Island region
An intermediate 196.97 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km ENE of Norsup, Vanuatu
A shallow 47.31 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 124km WNW of Bengkulu, Indonesia
There was also a 1.74 explosion on 4 in the afternoon of May 22 at 9km S of Princeton, Canada
A deep 440.92 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Izu Islands, Japan region
A shallow 35.19 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km SSW of Isangel, Vanuatu
A shallow 14.93 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 204km WSW of Puerto Natales, Chile
An intermediate 134.23 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 221km NNW of Saumlaki, Indonesia
There was also a 1.22 explosion on 4 in the afternoon of May 22 at 8km E of Yacolt, Washington
An intermediate 167.25 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km W of San Antonio de los Cobres, Argentina
An intermediate 113.42 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 35km NE of Jarm, Afghanistan
An intermediate 195.43 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 27km NW of Ayaviri, Peru
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km W of Uto, Japan
An intermediate 191.56 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 115km W of San Antonio de los Cobres, Argentina
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 213km S of Punta de Burica, Panama
An intermediate 152.12 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km ENE of Lata, Solomon Islands
An intermediate 95.71 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 105km SSW of Kota Ternate, Indonesia
A shallow 57.36 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 138km NW of Kota Ternate, Indonesia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 143km S of False Pass, Alaska
A shallow 11.79 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km ENE of Oarai, Japan
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern East Pacific Rise
An intermediate 232.68 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km ENE of Keelung, Taiwan
A shallow 56.81 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km SSE of Lata, Solomon Islands
There was also a 1.99 explosion on 4 in the afternoon of May 22 at 26km WSW of Cheney, Washington
There was also a 1.57 explosion on 4 in the afternoon of May 22 at 8km WNW of Junction City, Oregon
There was also a 1.48 quarry blast on 4 in the afternoon of May 22 at 4km SE of Home Gardens, CA
There was also a 1.66 explosion on 4 in the afternoon of May 22 at 14km NNW of Philomath, Oregon
There was also a 1.85 quarry blast on 4 in the afternoon of May 22 at 4km ENE of Butte, Montana
There was also a 1.63 quarry blast on 4 in the afternoon of May 22 at 0km E of Quarry near Salinas, CA
There was also a 1.27 quarry blast on 4 in the afternoon of May 22 at 10km NNW of Big Bear City, CA
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km NNE of Tadine, New Caledonia
A shallow 35.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 202km E of Hachijo-jima, Japan
An intermediate 278.09 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km NNE of Palue, Indonesia
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km SSW of Isangel, Vanuatu
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 44km E of Kerman, Iran
An intermediate 136.88 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kepulauan Barat Daya, Indonesia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 64km W of Ovalle, Chile
A shallow 34.08 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 22km WSW of Coquimbo, Chile
An intermediate 114.82 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km SSW of Calama, Chile
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 153km W of Longyearbyen, Svalbard and Jan Mayen
A shallow 30.17 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km E of Naze, Japan
There was also a 1.36 quarry blast on 4 in the afternoon of May 22 at 2km SE of Home Gardens, CA
There was also a 1.24 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
There was also a 1.48 quarry blast on 4 in the afternoon of May 22 at 0km SE of Quarry near Vallejo, CA
There was also a 1.35 explosion on 4 in the afternoon of May 22 at 28km SW of Morton, Washington
There was also a 1.16 quarry blast on 4 in the afternoon of May 22 at 6km SSW of Mojave, CA
An intermediate 212.19 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km WNW of Atuncolla, Peru
There was also a 1.09 explosion on 4 in the afternoon of May 22 at 28km SW of Morton, Washington
There was also a 2.08 quarry blast on 4 in the afternoon of May 22 at 16km SW of Kemmerer, Wyoming
There was also a 1.15 explosion on 4 in the afternoon of May 22 at 25km SW of Morton, Washington
There was also a 1.3 explosion on 4 in the afternoon of May 22 at 25km SW of Morton, Washington
There was also a 1.07 quarry blast on 4 in the afternoon of May 22 at 13km WNW of Searles Valley, CA
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 121km NE of Tadine, New Caledonia
A shallow 18.11 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km SSW of Isangel, Vanuatu
An intermediate 190.8 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 274km NNW of Saumlaki, Indonesia
A shallow 16.6 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 22km ENE of Nanae, Japan
A shallow 37.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 14km WSW of Ovalle, Chile
A deep 565.95 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km SE of Ndoi Island, Fiji
There was also a 1.33 quarry blast on 4 in the afternoon of May 22 at 12km WNW of Whitehall, Montana
There was also a 2.14 explosion on 4 in the afternoon of May 22 at 5km S of Princeton, Canada
There was also a 1.56 quarry blast on 4 in the afternoon of May 22 at 1km NW of Quarry near Salinas, CA
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
There was also a 1.29 quarry blast on 4 in the afternoon of May 22 at 4km SSE of Home Gardens, CA
A shallow 16.39 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 171km S of False Pass, Alaska
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km SSE of Lorengau, Papua New Guinea
There was also a 1.25 quarry blast on 4 in the afternoon of May 22 at 5km ENE of Butte, Montana
There was also a 1.12 quarry blast on 4 in the afternoon of May 22 at 2km SW of Quarry near San Rafael, CA
An intermediate 159.81 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km ESE of Pucallpa, Peru
A shallow 21.09 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 2km WNW of La Esperanza, Panama
didn't work 70.5 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km SW of Pueblo Nuevo Tiquisate, Guatemala
An intermediate 222.45 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km NW of Sola, Vanuatu
An intermediate 112.14 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 43km W of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A shallow 8.21 km depth and 5.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Balleny Islands region
A shallow 10.92 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 32km W of Nuqui, Colombia
A shallow 30.19 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 279km S of Kute, Indonesia
There was also a 1.35 explosion on 4 in the afternoon of May 22 at 14km WSW of Cashmere, Washington
There was also a 1.1 explosion on 4 in the afternoon of May 22 at 4km N of Fern Prairie, Washington
There was also a 1.57 quarry blast on 4 in the afternoon of May 22 at 46km NE of Holtville, CA
An intermediate 113.41 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 149km N of Calama, Chile
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
A shallow 10.0 km depth and 5.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 194km ESE of Enarotali, Indonesia
A shallow 67.96 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km W of Harian, Indonesia
There was also a 1.44 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
There was also a 1.33 quarry blast on 4 in the afternoon of May 22 at 3km SSE of Quarry near Aromas, CA
There was also a 1.35 quarry blast on 4 in the afternoon of May 22 at 4km ENE of Rancho San Diego, CA
There was also a 1.03 quarry blast on 4 in the afternoon of May 22 at 10km ESE of Coto De Caza, CA
There was also a 1.17 quarry blast on 4 in the afternoon of May 22 at 6km SSW of Mojave, CA
There was also a 1.36 quarry blast on 4 in the afternoon of May 22 at 13km SE of Tehachapi, CA
There was also a 1.05 explosion on 4 in the afternoon of May 22 at 5km E of Yoncalla, Oregon
A shallow 55.04 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 39km SW of Adak, Alaska
A shallow 5.98 km depth and 5.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 171km SSE of Naze, Japan
An intermediate 111.0 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 98km NNW of Isangel, Vanuatu
A shallow 64.49 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km ENE of Chepen, Peru
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km NNE of Chignik Lake, Alaska
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km S of San Vicente Pacaya, Guatemala
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 69km SW of Ocos, Guatemala
A shallow 24.76 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 65km SW of Ocos, Guatemala
A shallow 9.54 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km SSW of Somotillo, Nicaragua
A shallow 47.98 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km NNW of Taron, Papua New Guinea
A deep 485.52 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 134km NNW of Labuhankananga, Indonesia
There was also a 1.11 quarry blast on 4 in the afternoon of May 22 at 5km NNW of Boron, CA
A shallow 45.13 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 133km ESE of Kirakira, Solomon Islands
There was also a 1.13 explosion on 4 in the afternoon of May 22 at 10km NNW of Philomath, Oregon
There was also a 2.18 quarry blast on 4 in the afternoon of May 22 at 46km NE of Holtville, CA
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of Panama
There was also a 2.38 explosion on 4 in the afternoon of May 22 at 1km WNW of Princeton, Canada
There was also a 1.65 quarry blast on 4 in the afternoon of May 22 at 1km W of Tijuana, B.C., MX
There was also a 1.26 explosion on 4 in the afternoon of May 22 at 13km S of Morton, Washington
There was also a 1.09 quarry blast on 4 in the afternoon of May 22 at 5km S of Mojave, CA
There was also a 1.75 quarry blast on 4 in the afternoon of May 22 at 5km E of Butte, Montana
An intermediate 76.21 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 291km N of Tobelo, Indonesia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Western Indian-Antarctic Ridge
There was also a 1.53 quarry blast on 4 in the afternoon of May 22 at 9km NNW of Big Bear Lake, CA
A shallow 26.76 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 181km ESE of Hachijo-jima, Japan
An intermediate 104.49 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 63km SE of Caburan, Philippines
A shallow 69.05 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km S of Puerto El Triunfo, El Salvador
A shallow 14.55 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
A shallow 9.95 km depth and 4.34 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km W of West Yellowstone, Montana
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 176km SSE of Naze, Japan
A shallow 34.14 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 82km SSW of Corinto, Nicaragua
A shallow 57.07 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 17km W of Auki, Solomon Islands
A shallow 10.0 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 178km SSE of Naze, Japan
A shallow 10.0 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 163km SSE of Naze, Japan
A deep 598.43 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km S of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern East Pacific Rise
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 148km S of Puerto El Triunfo, El Salvador
A shallow 14.49 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 32km NNE of Tumbagaan, Philippines
A shallow 10.0 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
An intermediate 121.02 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km NNE of Ambunti, Papua New Guinea
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 240km WNW of Bandon, Oregon
A shallow 33.66 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km E of Shikotan, Russia
A shallow 10.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km E of , Azerbaijan
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km SSW of Yatsushiro, Japan
A shallow 58.21 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at East of the Kuril Islands
A shallow 31.83 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km NNE of Grande Anse, Guadeloupe
A shallow 25.6 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 125km SSE of Kirakira, Solomon Islands
A shallow 43.13 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 190km NNW of Tobelo, Indonesia
An intermediate 122.28 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km N of Agrihan, Northern Mariana Islands
A shallow 59.53 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 181km SSE of Bitung, Indonesia
A shallow 14.46 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km SW of Lakhdaria, Algeria
A shallow 45.08 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 6km ENE of Noda, Japan
An intermediate 103.77 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 40km SW of Ashkasham, Afghanistan
There was also a 2.02 explosion on 4 in the afternoon of May 22 at 2km NNE of Princeton, Canada
An intermediate 88.84 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km SSE of Tuensang, India
A shallow 28.36 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km SSW of Bunisari, Indonesia
An intermediate 90.9 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km SE of Kuril'sk, Russia
A deep 373.47 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km NNW of Koronadal, Philippines
An intermediate 221.31 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km N of Banjar Sidayu, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km E of Puerto Morazan, Nicaragua
A deep 596.07 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 288km N of Ndoi Island, Fiji
A deep 579.6 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 287km SE of Lambasa, Fiji
An intermediate 77.69 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 186km SE of Sarangani, Philippines
An intermediate 118.54 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km ENE of Shughnon, Tajikistan
There was also a 1.47 quarry blast on 4 in the afternoon of May 22 at 4km SE of Home Gardens, CA
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southeast of Easter Island
There was also a 2.01 explosion on 4 in the afternoon of May 22 at 9km S of Princeton, Canada
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 288km SSE of Sigave, Wallis and Futuna
A shallow 28.63 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km WNW of Solhan, Turkey
A shallow 51.77 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 14km ESE of Kabayan, Philippines
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 263km SSE of Sigave, Wallis and Futuna
There was also a 1.19 quarry blast on 4 in the afternoon of May 22 at 13km SE of Tehachapi, CA
A shallow 47.59 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at East of the Kuril Islands
A shallow 21.55 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 110km ENE of Hihifo, Tonga
An intermediate 224.4 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km W of Abra Pampa, Argentina
A shallow 25.11 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 249km ESE of Kamaishi, Japan
A shallow 42.48 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 107km SSE of Hihifo, Tonga
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km ENE of Georgetown, Saint Helena
A shallow 12.31 km depth and 5.17 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km NNW of Borrego Springs, CA
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km S of Somotillo, Nicaragua
A shallow 28.45 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 20km WNW of Auki, Solomon Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SSW of Somotillo, Nicaragua
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km E of Puerto Morazan, Nicaragua
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km NNE of Tela, Honduras
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km S of Somotillo, Nicaragua
A shallow 10.0 km depth and 6.1 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 17km E of Puerto Morazan, Nicaragua
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 251km NNE of Chichi-shima, Japan
A shallow 35.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 183km NNE of Fais, Micronesia
An intermediate 110.48 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 51km S of Molibagu, Indonesia
There was also a 1.41 quarry blast on 4 in the afternoon of May 22 at 44km NNW of Los Algodones, B.C., MX
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km ENE of We, New Caledonia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
There was also a 1.45 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
There was also a 1.11 quarry blast on 4 in the afternoon of May 22 at 13km W of Mojave, CA
There was also a 1.9 explosion on 4 in the afternoon of May 22 at 1km S of Princeton, Canada
A shallow 11.82 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 131km NNW of Kiunga, Papua New Guinea
An intermediate 138.55 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 201km NW of Saumlaki, Indonesia
A shallow 8.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km WNW of Uddiawan, Philippines
There was also a 1.42 quarry blast on 4 in the afternoon of May 22 at 7km SSW of Mojave, CA
There was also a 1.45 quarry blast on 4 in the afternoon of May 22 at 1km SSE of Quarry near Aromas, CA
An intermediate 155.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km NNW of Chilecito, Argentina
There was also a 1.55 quarry blast on 4 in the afternoon of May 22 at 28km SE of Virginia City, Montana
There was also a 1.63 explosion on 4 in the afternoon of May 22 at 23km NNW of Baker City, Oregon
A shallow 40.91 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 218km ENE of Neiafu, Tonga
A shallow 32.19 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 35km WSW of Kiska Volcano, Alaska
A shallow 36.55 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km SSW of Bogorawatu, Indonesia
A shallow 38.67 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km SSW of Bogorawatu, Indonesia
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 206km ESE of Hachijo-jima, Japan
A deep 505.74 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 29.89 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 284km S of Kute, Indonesia
An intermediate 71.19 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km SSW of Tawun, Indonesia
A shallow 16.99 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km S of Turija, Serbia
There was also a 1.72 quarry blast on 4 in the afternoon of May 22 at 47km NE of Holtville, CA
There was also a 1.93 explosion on 4 in the afternoon of May 22 at 6km SSW of Princeton, Canada
There was also a 1.3 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
A shallow 38.57 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km SSW of Champerico, Guatemala
An intermediate 104.03 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 65km NNW of Barranca, Peru
There was also a 1.0 explosion on 4 in the afternoon of May 22 at 16km ESE of Enumclaw, Washington
There was also a 1.57 explosion on 4 in the afternoon of May 22 at 5km SW of Napavine, Washington
There was also a 1.8 quarry blast on 4 in the afternoon of May 22 at 7km SSE of Home Gardens, CA
A shallow 11.94 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 70km W of Coquimbo, Chile
A shallow 28.94 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 287km E of Namie, Japan
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
A deep 348.15 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 50km SSE of Korsakov, Russia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Mid-Indian Ridge
A shallow 51.95 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 38km S of Puerto San Jose, Guatemala
A shallow 32.3 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km SW of Puerto El Triunfo, El Salvador
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 170km SSE of Naze, Japan
A shallow 8.33 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 175km NNE of Esperance, Australia
A shallow 5.39 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 149km SSE of Naze, Japan
An intermediate 117.8 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 44km SSW of Ashkasham, Afghanistan
A shallow 44.36 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km WNW of Kota Ternate, Indonesia
An intermediate 266.89 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km NNE of Sangiang, Indonesia
A shallow 21.28 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km S of Nishinoomote, Japan
There was also a 1.55 quarry blast on 4 in the afternoon of May 22 at 0km N of Quarry near Portola Valley, CA
There was also a 1.28 explosion on 4 in the afternoon of May 22 at 3km E of West Side Highway, Washington
A deep 563.47 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
There was also a 2.1 explosion on 4 in the afternoon of May 22 at 1km WSW of Princeton, Canada
A shallow 40.09 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 118km WNW of Kota Ternate, Indonesia
There was also a 1.95 explosion on 4 in the afternoon of May 22 at 32km E of Shady Cove, Oregon
A shallow 30.68 km depth and 6.3 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 128km E of Bitung, Indonesia
An intermediate 90.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km NE of Diego de Almagro, Chile
There was also a 1.44 quarry blast on 4 in the afternoon of May 22 at 0km E of Quarry near Atascadero, CA
An intermediate 84.17 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 14km SE of El Valle, Dominican Republic
An intermediate 177.23 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 252km NE of Kuril'sk, Russia
There was also a 1.6 quarry blast on 4 in the afternoon of May 22 at 8km W of Townsend, Montana
An intermediate 88.99 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 29km SW of Kimbe, Papua New Guinea
A deep 593.71 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Fiji region
An intermediate 100.97 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 76km ESE of Culaman, Philippines
A shallow 65.78 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km SSW of Abancay, Peru
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 156km SSW of San Patricio, Mexico
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km SSW of San Patricio, Mexico
A shallow 10.0 km depth and 6.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 102km SSW of San Patricio, Mexico
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km SW of San Patricio, Mexico
A shallow 40.95 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km S of Chignik Lake, Alaska
A deep 525.24 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 112km ENE of Ndoi Island, Fiji
A deep 523.02 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 10.03 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 104km E of Shikotan, Russia
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km ESE of Demirtas, Turkey
A shallow 36.07 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 70km WNW of Te Anau, New Zealand
A shallow 9.73 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km WSW of Kota Ternate, Indonesia
An intermediate 80.48 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km ESE of Raoul Island, New Zealand
A shallow 12.28 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km W of Te Anau, New Zealand
There was also a 1.63 quarry blast on 4 in the afternoon of May 22 at 43km NNW of Los Algodones, B.C., MX
There was also a 1.35 quarry blast on 4 in the afternoon of May 22 at 5km NNW of Boron, CA
didn't work 70.42 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 53km WNW of Porgera, Papua New Guinea
There was also a 1.47 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
An intermediate 158.84 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km S of Las Choapas, Mexico
There was also a 1.77 quarry blast on 4 in the afternoon of May 22 at 4km E of Butte, Montana
There was also a 1.1 quarry blast on 4 in the afternoon of May 22 at 2km SW of Quarry near San Rafael, CA
There was also a 1.09 quarry blast on 4 in the afternoon of May 22 at 13km SE of Tehachapi, CA
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km ESE of Mucuchies, Venezuela
An intermediate 87.4 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 85km E of Iquique, Chile
A shallow 13.91 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km S of Muisne, Ecuador
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of Panama
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 222km N of Chichi-shima, Japan
A shallow 40.08 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km WNW of Polis, Cyprus
A shallow 36.69 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km E of Namie, Japan
A shallow 20.84 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km WSW of Coquimbo, Chile
A shallow 22.78 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km SW of Coquimbo, Chile
A shallow 12.57 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 159km SSW of Biha, Indonesia
A shallow 36.72 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km NW of La Ligua, Chile
An intermediate 217.18 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 161km NNW of Atambua, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km NE of Roshtqal'a, Tajikistan
A shallow 35.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km SE of Santa Catarina Juquila, Mexico
A shallow 67.25 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km SE of Ocos, Guatemala
A shallow 43.83 km depth and 6.1 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 84km S of Raoul Island, New Zealand
A deep 597.74 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 226km SE of Lambasa, Fiji
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 53km NE of Sulangan, Philippines
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
An intermediate 96.8 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km ENE of Mazamari, Peru
A deep 535.38 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 45.04 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 202km NE of Neiafu, Tonga
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
A shallow 23.18 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km W of Canoas, Costa Rica
There was also a 2.0 explosion on 4 in the afternoon of May 22 at 6km SSE of Princeton, Canada
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km SSW of Foca, Turkey
A deep 428.96 km depth and 6.3 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 133km SW of Leksula, Indonesia
A shallow 31.29 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km E of Palu, Indonesia
An intermediate 97.41 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 145km SSE of Putre, Chile
An intermediate 135.89 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 261km ESE of Sarangani, Philippines
A shallow 11.46 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 124km W of Airbuaya, Indonesia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central East Pacific Rise
A shallow 15.19 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km NW of Coquimbo, Chile
An intermediate 149.85 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km NNE of Jayune, Peru
An intermediate 217.58 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 105km NNW of False Pass, Alaska
A shallow 33.5 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km SE of Acari, Peru
An intermediate 183.8 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 141km WNW of Naze, Japan
A deep 320.91 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Fiji region
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km SW of Santiago Pinotepa Nacional, Mexico
An intermediate 195.41 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 79km W of San Antonio de los Cobres, Argentina
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km SW of San Juan Cacahuatepec, Mexico
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km N of San Pedro Amuzgos, Mexico
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km S of Makry Gialos, Greece
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 7km NW of Cabrera, Dominican Republic
A shallow 45.18 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 34km W of Illapel, Chile
A shallow 35.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 60km SSW of Port-Vila, Vanuatu
A shallow 26.09 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km WNW of Tobelo, Indonesia
There was also a 1.93 explosion on 4 in the afternoon of May 22 at 3km S of Princeton, Canada
A shallow 34.33 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 54km S of Hukumati Dahanah-ye Ghori, Afghanistan
A shallow 16.3 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km WSW of Lixourion, Greece
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest of Sumatra, Indonesia
A shallow 21.12 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km WSW of Kota Ternate, Indonesia
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 61km ESE of Kerman, Iran
A shallow 32.67 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 81km NE of Hihifo, Tonga
A deep 470.7 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km E of Ndoi Island, Fiji
A shallow 6.14 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km S of Fukue, Japan
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central Mid-Atlantic Ridge
A shallow 43.87 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km S of La Libertad, El Salvador
A shallow 31.99 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 64km SW of Pasarbaru, Indonesia
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 88km WNW of Polis, Cyprus
There was also a 1.09 explosion on 4 in the afternoon of May 22 at 5km N of Fern Prairie, Washington
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 145km ENE of L'Esperance Rock, New Zealand
A deep 525.34 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A deep 623.14 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km NNW of Congkar, Indonesia
A shallow 15.25 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 180km NNW of Yunaska Island, Alaska
An intermediate 290.12 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
There was also a 1.76 quarry blast on 4 in the afternoon of May 22 at 46km NNW of Los Algodones, B.C., MX
A shallow 18.18 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 242km ESE of Nikol'skoye, Russia
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 131km ESE of Hirara, Japan
A shallow 25.1 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km WNW of Illapel, Chile
A deep 580.41 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SSE of Charagua, Bolivia
There was also a 1.82 explosion on 4 in the afternoon of May 22 at 0km SW of Dundee, Oregon
There was also a 1.52 quarry blast on 4 in the afternoon of May 22 at 4km SE of Home Gardens, CA
A shallow 58.18 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 72km W of Pasirnangka, Indonesia
There was also a 1.38 quarry blast on 4 in the afternoon of May 22 at 13km W of Mojave, CA
There was also a 1.84 quarry blast on 4 in the afternoon of May 22 at 5km ENE of Butte, Montana
There was also a 1.24 quarry blast on 4 in the afternoon of May 22 at 2km WSW of Quarry near Clayton, CA
A shallow 19.07 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 245km ESE of Nikol'skoye, Russia
There was also a 1.53 explosion on 4 in the afternoon of May 22 at 22km NNE of Pasco, Washington
A shallow 33.53 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 265km SE of Nikol'skoye, Russia
A shallow 14.99 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 250km ESE of Nikol'skoye, Russia
A shallow 14.97 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South Indian Ocean
There was also a 1.07 quarry blast on 4 in the afternoon of May 22 at 6km ENE of Tehachapi, CA
A shallow 15.63 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 239km W of Port-Olry, Vanuatu
A shallow 40.24 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km S of Arica, Chile
A shallow 6.59 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km ESE of Sucua, Ecuador
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of Tasmania
A shallow 29.17 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Fiji region
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 141km W of Itbayat, Philippines
A deep 330.17 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 227km W of Hihifo, Tonga
A shallow 38.33 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 180km SSE of Naze, Japan
A shallow 40.03 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km S of Chignik Lake, Alaska
An intermediate 100.7 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 60km S of Little Sitkin Island, Alaska
A shallow 47.7 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 25km N of Pujocucho, Peru
An intermediate 200.22 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km SE of Ina, Japan
A shallow 57.02 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km SSW of Abepura, Indonesia
A shallow 16.47 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km NW of Port-Olry, Vanuatu
A shallow 29.69 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 101km S of La Libertad, El Salvador
An intermediate 107.2 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 147km N of Calama, Chile
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Owen Fracture Zone region
A shallow 59.62 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 39km NE of Palu, Indonesia
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 113km ESE of Port-Vila, Vanuatu
A deep 402.82 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 155km ENE of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 284km NE of Port Mathurin, Mauritius
There was also a 1.37 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
There was also a 2.0 explosion on 4 in the afternoon of May 22 at 25km SW of Cheney, Washington
There was also a 2.08 explosion on 4 in the afternoon of May 22 at 2km NE of Coos Bay, Oregon
A shallow 22.79 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km NNE of Hamza, Uzbekistan
There was also a 1.02 quarry blast on 4 in the afternoon of May 22 at 3km SSE of San Marcos, CA
There was also a 1.05 quarry blast on 4 in the afternoon of May 22 at 6km SSW of Mojave, CA
There was also a 1.53 quarry blast on 4 in the afternoon of May 22 at 20km S of Quarry near Atascadero, CA
There was also a 1.33 quarry blast on 4 in the afternoon of May 22 at 7km ESE of Butte, Montana
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 119km WSW of Itbayat, Philippines
There was also a 1.35 explosion on 4 in the afternoon of May 22 at 5km E of Buckley, Washington
An intermediate 107.03 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 41km S of Boal Atas, Indonesia
There was also a 1.34 quarry blast on 4 in the afternoon of May 22 at 12km SE of Tehachapi, CA
An intermediate 123.75 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 241km NNW of Farallon de Pajaros, Northern Mariana Islands
A deep 346.72 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 217km SW of L'Esperance Rock, New Zealand
An intermediate 91.78 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 71km S of Molibagu, Indonesia
A deep 484.26 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km NNW of Labuhankananga, Indonesia
An intermediate 255.06 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
A shallow 31.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 205km SW of San Patricio, Mexico
A shallow 37.72 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 178km SW of San Patricio, Mexico
A shallow 10.0 km depth and 5.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 179km SW of San Patricio, Mexico
A shallow 9.26 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km NNW of Pujocucho, Peru
There was also a 1.56 quarry blast on 4 in the afternoon of May 22 at 5km NNW of Boron, CA
A shallow 50.54 km depth and 6.6 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 79km W of Sungaipenuh, Indonesia
There was also a 1.42 explosion on 4 in the afternoon of May 22 at 14km S of Leavenworth, Washington
A shallow 63.13 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 1km ESE of Yachimata, Japan
A shallow 10.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km WNW of Ain Bessem, Algeria
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Carlsberg Ridge
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km WSW of Coquimbo, Chile
There was also a 1.34 quarry blast on 4 in the afternoon of May 22 at 3km SSE of Home Gardens, CA
An intermediate 78.88 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 82km S of Huancavelica, Peru
There was also a 1.81 explosion on 4 in the afternoon of May 22 at 12km S of Princeton, Canada
There was also a 1.01 quarry blast on 4 in the afternoon of May 22 at 7km E of Lebec, CA
There was also a 1.4 quarry blast on 4 in the afternoon of May 22 at 7km SE of Bonita, CA
A shallow 59.39 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SSE of Pujiharjo, Indonesia
A shallow 46.15 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km NE of Chernabura Island, Alaska
There was also a 2.3 quarry blast on 4 in the afternoon of May 22 at 17km N of Orofino, Idaho
There was also a 1.26 quarry blast on 4 in the afternoon of May 22 at 4km SE of Home Gardens, CA
There was also a 1.35 quarry blast on 4 in the afternoon of May 22 at 6km SSE of Valley Center, CA
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
An intermediate 220.91 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 29km S of Jarm, Afghanistan
An intermediate 128.42 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km E of Visokoi Island, South Georgia and the South Sandwich Islands
There was also a 1.21 explosion on 4 in the afternoon of May 22 at 16km W of Winston, Oregon
A shallow 43.85 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km S of Raoul Island, New Zealand
A shallow 56.39 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km SSW of Kokopo, Papua New Guinea
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 54km WNW of Pedernales, Ecuador
A shallow 27.05 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km SW of San Patricio, Mexico
A shallow 28.8 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 63km WSW of Amatignak Island, Alaska
A shallow 26.91 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 44km WNW of Pedernales, Ecuador
A shallow 10.0 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 192km SW of San Patricio, Mexico
A shallow 40.49 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 148km SW of San Patricio, Mexico
A shallow 32.78 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 194km SW of San Patricio, Mexico
A shallow 66.15 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 40km W of Amatignak Island, Alaska
An intermediate 254.96 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km ESE of Taquile, Peru
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 161km SSE of L'Esperance Rock, New Zealand
An intermediate 264.75 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km N of Nanao, Japan
There was also a 1.18 explosion on 4 in the afternoon of May 22 at 3km E of Kelso, Washington
There was also a 1.56 quarry blast on 4 in the afternoon of May 22 at 8km ESE of Bonita, CA
There was also a 1.41 quarry blast on 4 in the afternoon of May 22 at 45km NE of Holtville, CA
There was also a 1.23 quarry blast on 4 in the afternoon of May 22 at 12km E of Quarry near Portola Valley, CA
There was also a 1.57 explosion on 4 in the afternoon of May 22 at 2km SSW of Princeton, Canada
A shallow 39.22 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 92km S of Chignik Lake, Alaska
There was also a 1.41 quarry blast on 4 in the afternoon of May 22 at 4km N of Norco, CA
There was also a 2.04 quarry blast on 4 in the afternoon of May 22 at 28km N of Orofino, Idaho
There was also a 1.2 quarry blast on 4 in the afternoon of May 22 at 7km SSW of Mojave, CA
A shallow 14.4 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km SW of Lakhdaria, Algeria
A shallow 61.35 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km SE of Mamburao, Philippines
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 32km WNW of Pedernales, Ecuador
An intermediate 172.62 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km NW of Cempa, Indonesia
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 196km NNE of Chichi-shima, Japan
A shallow 16.4 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 103km NNE of Chignik Lake, Alaska
A shallow 59.12 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km NNW of Cortes, Philippines
A shallow 10.0 km depth and 5.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
A shallow 57.82 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km NW of Namatanai, Papua New Guinea
A shallow 41.55 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km WNW of Port-Olry, Vanuatu
A shallow 34.17 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km S of Parrita, Costa Rica
An intermediate 244.11 km depth and 6.4 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 93km ENE of Keelung, Taiwan
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 45.13 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 98km S of La Libertad, El Salvador
A shallow 27.07 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 33km W of Andalgala, Argentina
An intermediate 200.8 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km S of King Salmon, Alaska
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 176km ENE of L'Esperance Rock, New Zealand
A shallow 16.54 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km ENE of L'Esperance Rock, New Zealand
A deep 579.93 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 263km ESE of Lambasa, Fiji
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 93km NE of Visokoi Island, South Georgia and the South Sandwich Islands
An intermediate 156.58 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 10km WSW of Piedecuesta, Colombia
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 92km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 41.87 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 111km W of Rabaul, Papua New Guinea
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 82km SE of Amahai, Indonesia
An intermediate 153.03 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km NW of Nakanojo, Japan
An intermediate 74.15 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Off the east coast of the North Island of New Zealand
A shallow 8.93 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 4km W of Castel Viscardo, Italy
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 254km ENE of Olonkinbyen, Svalbard and Jan Mayen
An intermediate 102.7 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km SE of Old Iliamna, Alaska
A shallow 43.71 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km WSW of Yonakuni, Japan
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 134km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 154km SW of Kavieng, Papua New Guinea
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South Shetland Islands
A shallow 47.73 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 85km SE of Cabiraoan, Philippines
An intermediate 231.38 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 99km NE of Tobelo, Indonesia
A shallow 48.72 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km W of Illapel, Chile
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at West Chile Rise
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 117km E of L'Esperance Rock, New Zealand
A shallow 29.06 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 116km S of Raoul Island, New Zealand
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 126km ESE of Hirara, Japan
A shallow 14.21 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southern Mid-Atlantic Ridge
A shallow 35.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km E of L'Esperance Rock, New Zealand
A shallow 32.18 km depth and 5.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km S of Raoul Island, New Zealand
An intermediate 203.7 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 62km NE of Atka, Alaska
A shallow 34.4 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 127km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km SSW of Merizo Village, Guam
A shallow 11.85 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km NE of Hualian, Taiwan
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 122km SSW of Merizo Village, Guam
A shallow 27.85 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 252km NNW of Tual, Indonesia
A shallow 35.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km E of Taniwel, Indonesia
A shallow 37.03 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km SSW of Gra Liyia, Greece
An intermediate 108.13 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 78km N of Iwo Jima, Japan
A deep 588.2 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km SE of Ndoi Island, Fiji
A deep 472.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km SSW of Kavieng, Papua New Guinea
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km W of Illapel, Chile
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km WNW of Ain Bessem, Algeria
There was also a 2.23 explosion on 4 in the afternoon of May 22 at 10km S of Princeton, Canada
An intermediate 156.89 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 277km WNW of Saumlaki, Indonesia
A shallow 38.86 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 83km ENE of Lar, Iran
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 94km S of La Libertad, El Salvador
An intermediate 102.01 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 107km NNE of Anatahan, Northern Mariana Islands
A shallow 38.51 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 59km S of Hirara, Japan
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Tuamotu Archipelago, French Polynesia region
An intermediate 86.3 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km ESE of Iquique, Chile
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 204km E of `Ohonua, Tonga
A shallow 65.09 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 132km SW of Kokopo, Papua New Guinea
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 138km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 28.4 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km ENE of Visokoi Island, South Georgia and the South Sandwich Islands
An intermediate 164.09 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Kuril Islands
A shallow 53.89 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Kermadec Islands
An intermediate 153.95 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 51km ENE of Port-Olry, Vanuatu
A deep 509.49 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 132km ENE of Ndoi Island, Fiji
An intermediate 80.69 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 84km WNW of Kirakira, Solomon Islands
An intermediate 93.28 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 6km NE of `Alaqahdari-ye Kiran wa Munjan, Afghanistan
A deep 565.74 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 10km SSE of Boyuibe, Bolivia
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Northern Mid-Atlantic Ridge
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km WSW of Ain Bessem, Algeria
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 154km ESE of Hasaki, Japan
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 148km W of Itbayat, Philippines
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 10km WSW of Huagai, China
A shallow 26.09 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 60km SSE of Lakatoro, Vanuatu
A shallow 10.0 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km S of Lakatoro, Vanuatu
An intermediate 167.33 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 36km NW of Kizukuri, Japan
A shallow 35.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 68km WSW of Puerto Madero, Mexico
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km WNW of Ain Bessem, Algeria
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 86km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 11.43 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 16km SSW of Lakhdaria, Algeria
A shallow 42.34 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 90km W of Vallenar, Chile
There was also a 1.66 explosion on 4 in the afternoon of May 22 at 2km S of Princeton, Canada
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 120km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 33.94 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 119km E of Aileu, East Timor
A shallow 16.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km NE of Poros, Greece
There was also a 1.84 explosion on 4 in the afternoon of May 22 at 7km NE of Abbotsford, Canada
A deep 560.16 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 193km NE of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Prince Edward Islands region
A shallow 10.6 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km SE of Shardara, Kazakhstan
A shallow 19.05 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 115km S of Nabire, Indonesia
A shallow 21.61 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 137km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 8.69 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 166km NNE of Esperance, Australia
A shallow 9.74 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 170km NNE of Esperance, Australia
A shallow 54.33 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 121km SSW of Raoul Island, New Zealand
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 97km NE of Visokoi Island, South Georgia and the South Sandwich Islands
A deep 513.7 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 119km NE of Ndoi Island, Fiji
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km ENE of L'Esperance Rock, New Zealand
An intermediate 222.3 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km W of Ashkasham, Afghanistan
An intermediate 188.55 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
An intermediate 78.0 km depth and 7.2 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 53km NNE of Visokoi Island, South Georgia and the South Sandwich Islands
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 33km NNW of Nagarkot, Nepal
A shallow 49.99 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 8km N of Funaishikawa, Japan
An intermediate 150.3 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 74km N of Hachijo-jima, Japan
A deep 416.79 km depth and 6.6 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 161km SSE of Ndoi Island, Fiji
A shallow 10.0 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central Mid-Atlantic Ridge
A shallow 27.56 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 43km WNW of Lebu, Chile
An intermediate 156.67 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 244km NW of Saumlaki, Indonesia
There was also a 1.55 explosion on 4 in the afternoon of May 22 at 3km SW of Drain, Oregon
A deep 634.05 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 288km NNE of Ndoi Island, Fiji
An intermediate 109.45 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 136km ENE of Iquique, Chile
An intermediate 172.94 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 56km NE of Port-Olry, Vanuatu
There was also a 1.2 quarry blast on 4 in the afternoon of May 22 at 0km S of Quarry near Vallejo, CA
A deep 621.89 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 300km N of Ndoi Island, Fiji
A shallow 18.47 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km WSW of Ferndale, California
There was also a 1.79 explosion on 4 in the afternoon of May 22 at 5km SSE of Princeton, Canada
A shallow 34.24 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 223km NNW of Tual, Indonesia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Southwest Indian Ridge
An intermediate 129.61 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km NNW of Visokoi Island, South Georgia and the South Sandwich Islands
There was also a 1.37 quarry blast on 4 in the afternoon of May 22 at 7km SSW of Mojave, CA
There was also a 1.48 quarry blast on 4 in the afternoon of May 22 at 6km ESE of Butte, Montana
An intermediate 84.78 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 176km NE of Thang, India
A shallow 60.41 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 186km SSW of Ust'-Kamchatsk Staryy, Russia
A shallow 57.85 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 104km SSE of Lolayan, Indonesia
A shallow 26.08 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 72km SW of Ovalle, Chile
There was also a 1.31 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
A shallow 59.7 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km SSE of Kokopo, Papua New Guinea
An intermediate 123.34 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km NE of Yelizovo, Russia
A shallow 44.21 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 108km E of Pagan, Northern Mariana Islands
A shallow 51.08 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 114km N of Kendari, Indonesia
An intermediate 85.86 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km NNW of Finschhafen, Papua New Guinea
An intermediate 131.68 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 97km N of Tobelo, Indonesia
An intermediate 117.6 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 142km ENE of Taltal, Chile
A shallow 35.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 21km WNW of Piura, Peru
An intermediate 132.38 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 13km WNW of Campoverde, Peru
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 96km NW of Port-Vila, Vanuatu
An intermediate 74.83 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 103km ESE of Khonsa, India
A deep 572.13 km depth and 6.4 degree strong to mayor earthquake was reported 4 in the afternoon ofMay 22 at 19km S of Ndoi Island, Fiji
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 172km SSE of Naze, Japan
A shallow 10.0 km depth and 5.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 165km SSE of Naze, Japan
A shallow 39.81 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km SE of Lukatan, Philippines
An intermediate 202.87 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km W of Pangai, Tonga
A deep 459.23 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 123km W of L'Esperance Rock, New Zealand
A shallow 35.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 15km N of Amahai, Indonesia
There was also a 1.63 quarry blast on 4 in the afternoon of May 22 at 46km NNW of Los Algodones, B.C., MX
A deep 538.35 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
There was also a 1.57 quarry blast on 4 in the afternoon of May 22 at 4km NNW of Boron, CA
There was also a 1.99 explosion on 4 in the afternoon of May 22 at 5km SSE of Princeton, Canada
There was also a 1.96 quarry blast on 4 in the afternoon of May 22 at 11km ESE of Santa Ynez, CA
A shallow 10.16 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km W of Coquimbo, Chile
An intermediate 128.21 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 34km N of Yigo Village, Guam
There was also a 1.31 quarry blast on 4 in the afternoon of May 22 at 6km ENE of Three Forks, Montana
A shallow 50.42 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 136km SSE of Shizunai, Japan
A shallow 27.73 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 237km SE of Vostok, Russia
There was also a 1.44 explosion on 4 in the afternoon of May 22 at 19km SE of Cottage Grove, Oregon
There was also a 1.08 explosion on 4 in the afternoon of May 22 at 24km SE of Sweet Home, Oregon
An intermediate 130.8 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km ESE of Madang, Papua New Guinea
There was also a 1.94 quarry blast on 4 in the afternoon of May 22 at 10km N of Oroville, California
There was also a 1.08 quarry blast on 4 in the afternoon of May 22 at 13km SE of Tehachapi, CA
An intermediate 128.62 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 65km S of Visokoi Island, South Georgia and the South Sandwich Islands
A deep 524.88 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 243km NNE of Ndoi Island, Fiji
An intermediate 173.56 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 220km NE of Kuril'sk, Russia
A shallow 10.0 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 282km SSE of L'Esperance Rock, New Zealand
A shallow 10.0 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Timor Sea
An intermediate 194.62 km depth and 5.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 2km S of Moyogalpa, Nicaragua
A shallow 35.62 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 22km WNW of Massy, Kyrgyzstan
An intermediate 104.02 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km ENE of Anatahan, Northern Mariana Islands
An intermediate 119.7 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 77km SSE of Putre, Chile
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 248km N of Chichi-shima, Japan
A shallow 10.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 232km W of Riverton, New Zealand
A shallow 19.0 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 55km ESE of Siracusa, Italy
A shallow 33.56 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 53km NNE of Naze, Japan
An intermediate 120.6 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 15km WNW of Palomares, Mexico
A shallow 29.4 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 247km E of Miyako, Japan
An intermediate 105.67 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km ENE of Rota, Northern Mariana Islands
There was also a 1.13 quarry blast on 4 in the afternoon of May 22 at 8km ENE of Lebec, CA
A shallow 34.03 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 95km SW of Mapastepec, Mexico
A shallow 24.32 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 88km SSW of Pijijiapan, Mexico
There was also a 1.85 quarry blast on 4 in the afternoon of May 22 at 4km ENE of Butte, Montana
A shallow 49.3 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km E of Marihatag, Philippines
There was also a 1.49 quarry blast on 4 in the afternoon of May 22 at 7km SSE of Home Gardens, CA
A shallow 39.18 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 106km S of Bristol Island, South Sandwich Islands
There was also a 1.23 quarry blast on 4 in the afternoon of May 22 at 10km NNW of Big Bear City, CA
A deep 519.64 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Fiji Islands
An intermediate 127.49 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 190km NW of Farallon de Pajaros, Northern Mariana Islands
A shallow 28.09 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 38km WNW of Hengchun, Taiwan
A shallow 15.74 km depth and 4.03 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 41km NNW of Duchesne, Utah
A shallow 28.21 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km ENE of Lakatoro, Vanuatu
An intermediate 149.81 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km SSW of Hidalgotitlan, Mexico
A shallow 20.23 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 112km SSW of Dadali, Solomon Islands
A shallow 37.34 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 246km NNW of Tobelo, Indonesia
A shallow 23.5 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km SW of Kato Mazarakion, Greece
A shallow 10.0 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 20km S of Palaikastron, Greece
An intermediate 77.3 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km NNE of Piedra Blanca, Dominican Republic
An intermediate 280.66 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 37km SW of Sarangani, Philippines
A shallow 55.87 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 81km ENE of Misawa, Japan
A shallow 28.44 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SE of Hasaki, Japan
An intermediate 132.42 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 181km WNW of Saumlaki, Indonesia
There was also a 1.03 quarry blast on 4 in the afternoon of May 22 at 1km WSW of Quarry near Milpitas, CA
There was also a 1.21 quarry blast on 4 in the afternoon of May 22 at 45km NNW of Los Algodones, B.C., MX
There was also a 1.64 explosion on 4 in the afternoon of May 22 at 14km SE of McCleary, Washington
A deep 517.03 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 49km WSW of Agrihan, Northern Mariana Islands
There was also a 2.03 explosion on 4 in the afternoon of May 22 at 7km S of Princeton, Canada
There was also a 1.35 explosion on 4 in the afternoon of May 22 at 10km SE of Graham, Washington
A shallow 10.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km ESE of Muisne, Ecuador
An intermediate 163.42 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 1km E of Aileu, East Timor
There was also a 1.01 quarry blast on 4 in the afternoon of May 22 at 14km W of Mojave, CA
A deep 578.24 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SSW of Ndoi Island, Fiji
There was also a 1.08 quarry blast on 4 in the afternoon of May 22 at 5km NE of Rancho San Diego, CA
There was also a 1.31 quarry blast on 4 in the afternoon of May 22 at 2km SW of Quarry near Clayton, CA
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 100km SW of Chirovanga, Solomon Islands
A shallow 50.05 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 58km SSE of Ofunato, Japan
A shallow 29.22 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 24km NE of Bojnurd, Iran
A shallow 10.0 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 12km W of Dhi Na`im, Yemen
An intermediate 90.94 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km SE of Azogues, Ecuador
A shallow 8.17 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 9km ESE of Taradale, New Zealand
A shallow 48.78 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km SE of Kishtwar, India
A shallow 35.0 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km N of Miyako, Japan
A deep 353.98 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 150km SE of Ndoi Island, Fiji
An intermediate 73.0 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 45km SW of San Francisco Menendez, El Salvador
A shallow 35.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 64km E of L'Esperance Rock, New Zealand
A shallow 13.98 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at South of the Kermadec Islands
An intermediate 110.52 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 50km ESE of Cold Bay, Alaska
An intermediate 123.25 km depth and 4.9 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 51km SSE of Putre, Chile
An intermediate 75.24 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 3km SSW of Pilar, Philippines
There was also a 1.49 quarry blast on 4 in the afternoon of May 22 at 6km NNW of Boron, CA
There was also a 1.79 quarry blast on 4 in the afternoon of May 22 at 46km NNW of Los Algodones, B.C., MX
A shallow 37.48 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 159km SSE of Hachijo-jima, Japan
An intermediate 134.28 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 52km E of Port-Olry, Vanuatu
There was also a 2.55 explosion on 4 in the afternoon of May 22 at 11km S of Agassiz, Canada
There was also a 1.05 quarry blast on 4 in the afternoon of May 22 at 1km WNW of Quarry near Vallejo, CA
There was also a 1.5 quarry blast on 4 in the afternoon of May 22 at 11km E of Quarry near Portola Valley, CA
A deep 508.52 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 177km NNW of Dili, East Timor
There was also a 1.4 quarry blast on 4 in the afternoon of May 22 at 5km N of Lake Elsinore, CA
A shallow 68.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 129km SW of Abepura, Indonesia
An intermediate 124.03 km depth and 5.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 19km W of Cintalapa de Figueroa, Mexico
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 18km W of Kirtipur, Nepal
There was also a 1.33 quarry blast on 4 in the afternoon of May 22 at 7km SSW of Mojave, CA
An intermediate 127.12 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 169km NNW of Farallon de Pajaros, Northern Mariana Islands
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 30km W of Gyangkar, China
There was also a 1.6 explosion on 4 in the afternoon of May 22 at 5km WNW of Junction City, Oregon
A deep 419.42 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 255km WNW of Ozernovskiy, Russia
A shallow 10.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Northern Mid-Atlantic Ridge
There was also a 1.17 quarry blast on 4 in the afternoon of May 22 at 13km SE of Tehachapi, CA
A shallow 50.38 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 7km SSW of Yachimata, Japan
An intermediate 123.53 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 71km NNE of Dili, East Timor
A shallow 15.47 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 100km W of Makurazaki, Japan
A shallow 52.53 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 35km SE of Hitachi, Japan
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Northern Mid-Atlantic Ridge
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at Central Mid-Atlantic Ridge
A shallow 10.54 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 75km WNW of La Ligua, Chile
A shallow 20.59 km depth and 4.6 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 66km NNE of Pangai, Tonga
An intermediate 189.96 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 80km W of San Antonio de los Cobres, Argentina
A deep 626.84 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 71km SW of Ndoi Island, Fiji
A shallow 35.0 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at East of the Kuril Islands
A deep 621.39 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 15km SSW of Ndoi Island, Fiji
An intermediate 93.02 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 91km SSE of Isangel, Vanuatu
An intermediate 174.56 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 134km NE of San Pedro de Atacama, Chile
A shallow 60.12 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 6km S of Bogorawatu, Indonesia
A shallow 10.0 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 125km S of Attu Station, Alaska
An intermediate 82.24 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 23km ESE of Jarm, Afghanistan
A shallow 14.7 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 142km W of Itbayat, Philippines
An intermediate 108.28 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 249km E of Enarotali, Indonesia
There was also a 1.6 explosion on 4 in the afternoon of May 22 at 4km S of Princeton, Canada
An intermediate 98.64 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 162km ESE of Sarangani, Philippines
An intermediate 194.11 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 37km SSW of Jarm, Afghanistan
An intermediate 76.62 km depth and 5.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 37km SE of Iztapa, Guatemala
An intermediate 72.91 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 127km N of Saumlaki, Indonesia
An intermediate 151.55 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 11km SSW of Piedecuesta, Colombia
A shallow 10.0 km depth and 4.7 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at North of Severnaya Zemlya
A shallow 10.0 km depth and 4.2 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 50km S of Bambanglipuro, Indonesia
A shallow 9.52 km depth and 5.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 47km WNW of Tartagal, Argentina
A shallow 25.4 km depth and 5.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 46km W of Ovalle, Chile
A shallow 9.77 km depth and 4.5 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 160km WSW of San Antonio, Chile
A shallow 35.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 102km ESE of Ust'-Kamchatsk Staryy, Russia
An intermediate 185.67 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 31km NW of Agrihan, Northern Mariana Islands
A shallow 16.71 km depth and 4.8 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 33km W of Chaoyang, China
A shallow 10.0 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 5km ENE of Strumyani, Bulgaria
A shallow 55.04 km depth and 4.4 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 38km ESE of Kamaishi, Japan
A shallow 34.67 km depth and 4.3 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 198km NNW of Sola, Vanuatu
A shallow 16.82 km depth and 4.0 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 7km WSW of Atalanti, Greece
A shallow 24.81 km depth and 4.1 degree shallow to moderate earthquake was reported 4 in the afternoon ofMay 22 at 126km ESE of Iwaki, Japan

In [ ]: